/* General Styles */
* {
    box-sizing: border-box;
}

body {
    background-color: #000;
    font-family: Lato;

}
.row{
    place-content: center;
}
.container-form{
    width:100%;
}
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    text-align: center;
    padding: 0px 40px;
}
.form-container{
    background-image: linear-gradient(#00000096, #000000cf),url(/assets/img/2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding-bottom: 100px;
    background-position-y: 60%;
    background-position-x: 50%;
    background-size:160%;
}
/* Text */
a{
    color:#ff173d;
}
.text{
    color: #fff;
    text-decoration: none !important;
}
.title-text-p{
    font-size: 28px;
}
.title-text h1,p{
    color:#fff !important;
}
/* Form Title Text*/
::placeholder {
    color: #000;
}
.form-title-txt{
    text-align: center;
    margin: 100px auto 50px auto;
}
.form-title-bottom-txt{
    text-align: center;
}
.form-title-txt,form-title-bottom-txt h1{
    font-size: 64px;
}
.container-completed-txt {
    position: relative;
    top: 50%;
}
.form-title-txt p{
    font-size: 20px;
}
.addidional-info{
    text-align: center;
}
.addidional-info p{
    font-size: 24px;
    color: #e7a20e;
    font-weight: bold;
}
/* Contact form */
input[type="checkbox"]{
 accent-color:#ff173d;
}
button{
    width:100%;
    background-color: #ff173d;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    border-radius: 10px;
}
#multiStepForm{
    background-color: transparent;
    margin: auto;
    padding: 0px 40px;
    min-width: 300px;
    color: #fff;
}
input:focus{
    outline: none;
}
.phone-input{
display: flex;
    align-items: stretch;
}
select{
    font-size: 24px;
    color: #000;
    border-radius: 10px 0px 0px 10px;
    padding: 15px;
    border: 2px solid #ff173d;
    border-right: 0px;
    background-color:#fff;
}
input {
    font-size: 24px;
    padding: 15px;
    width: 100%;
    background-color: #fff;
    color: #000;
    border-radius: 0px 10px 10px 0px;
    border: 2px solid #ff173d;
    border-left: 0px;
}
label{
    font-size: 12px;
}
.label-steps{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    display: block;
    padding-bottom: 10px;
}
/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #b12020;
}
button:hover {
    opacity: 0.8;
}
.step-buttons{
    display: flex;
    justify-content: space-between;
    gap:70px;
}
#prevBtn {
    background-color: #bbbbbb;
}

 .step { display: none; }
.step.active { display: block; }
.step-buttons { margin-top: 20px; }
.step-buttons button { margin-right: 10px; }


.step.active {
    opacity: 1;
}
/* Terms */
.checkbox-terms{
    display: flex;
    flex-direction: column ;
    gap: 15px;
}
.single-term{
    display: flex;
}
.form-terms{
    gap: 20px;
    display: flex;
    flex-direction: column;
    padding: 20px 0px;
}
.text-span-separator{
color: #ff173d;
font-size:40px;
font-weight:bold;
}
@media screen and (max-width: 980px){
    .form-container{
        background-image: linear-gradient(#00000096, #000000cf), url(/assets/img/mobile-background.jpg);
background-size:cover;
    }
.text-span-separator{
font-size:28px;
}
    #multiStepForm{
        padding: 10px;
    }
    .form-title-txt{
        margin: 100px auto 30px;
    }
    .form-title-txt h1 {
        font-size: 40px;
    }
    .form-title-txt p {
        font-size: 20px;
    }
    label {
        font-size: 12px;
    }
    label span {
        font-size: 6px;
    }
select{
font-size: 18px;
}
    input {
        font-size: 18px;
    }
    .iti__flag-container {
        font-size: 18px;
    }
    .slide_viewer{
        height: 400px;
    }
    .directional_nav{
        top: -200px;
    }
    .slider-text{
        padding-bottom: 0px;
    }
    .car-info-single{
        justify-content: space-around;
    }
}
.social-button-single {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.social-button-single::before {
    content: attr(data-number);
    position: absolute;
    left: 25px;
    font-weight: bold;
}

.social-button-single span {
    display: inline-block;
    margin: 0 auto;
}
.popup-close{
    width: 20px;
    position: absolute;
    top: 10px;
    right: 15px;
    fill: #ff173d;
}
.popup-text{
    color: #fff;
    font-size: 12px;
    padding: 20px;
}
/* Style for the popup */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000;
    border: 1px solid #000;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    max-height: 80%; /* Limiting the maximum height of the popup */
    overflow-y: auto; /* Adding vertical scrollbar if content exceeds max height */
    width: 80%; /* Set width to 80% of the screen */
    border-radius: 10px;
}