/* form  & success */
.showForm{
    display: none;
}
.showForm.show{
    display: block;
}
.formulair_title_zone {
    width: var(--rn-width1);
    margin: auto;
    padding: 25px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
}


.formulair_title_zone .formulair_step{
    font-family: 'ReadLight';
    margin: 0;
}
.formulair_title_zone .formulair_title {
    font-family: 'DaciaBlock';
    font-size: 25px;
    margin: 0;
}
.form_mini_container{
    width: var(--rn-width1);
    margin: auto;
    display: flex;
    gap: 5%;
}
/* success */
.success{
    display: none;
}
.success.show{
    display: flex;
    width: 50%;
    font-family: 'ReadMedium';
    flex-direction: column;
}
.success .text{
    font-family: 'ReadMedium';
    text-align: center;
}
.success .title{
    font-size: 20px;
    font-family: 'DaciaBlock';
    text-align: center;
}
.success svg{
    background-color: var(--Green);
    padding: 10px;
    border-radius: 50%;
    margin: 10px auto;
}
.downloadBrochure{
    background-color: var(--Green);
    border: 1px solid var(--Green);
    color: white;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin: auto;
    font-family: 'ReadMedium';
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.5s, color 0.5s;
}
.downloadBrochure:hover {
    background-color: white;
    color: var(--Green);
    border: 1px solid var(--Green);
}
/* success end */
/* form */
.form_inputs{
    display: flex;
    justify-content: space-between;
}
.form_mini_container .form{
    display: none;
}
.form_mini_container .form.show{
    display: block;
    width: 100%;
    font-family: 'ReadMedium';
}
.error-message{
    font-size: 12px;
    color: red;
    margin: 0;
    display: none;
}
.form_mini_container .form .form_desc{
    margin: 0;
    font-size: 14px;
    margin-bottom: 15px;
}
.form_mini_container .form .inputZone{
    margin: 28px 0;
}
.form_mini_container .form input[type="text"]{
    border: none;
    border-bottom: 1px solid var(--LightGray);
    width: 100%;
}
.form_mini_container .form .buttonEnv{
    height: 46px;
    width: 100%;
    background-color: var(--Green);
    color: white;
    margin-top: 25px;
    font-family: 'DaciaBlock';
    border: 1px solid var(--Green);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.form_mini_container .form .buttonEnv:hover{
    background-color: white;
    color: var(--Green);
    border: 1px solid var(--Green);
}
.form_mini_container .form .champOb{
    color: var(--LightGray);
    font-size: 11px;
}
.checkbox_zone{
    display: flex;
    font-size: 14px;
    align-items: flex-start;
    position: relative;
    gap: 8px;
}
.checkbox_zone .check{
    margin-bottom: 5px;
}
.checkbox_zone .check svg{
    width: 20px;
    height: 20px;
}
.checkbox_zone .check:hover .check {
    stroke-dashoffset: 0;
}
.checkbox_zone .check .background {
    fill: #ccc;
    transition: ease all 0.6s;
    -webkit-transition: ease all 0.6s;
}
.checkbox_zone .check .stroke {
    fill: none;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: 2px;
    stroke-dashoffset: 100;
    stroke-dasharray: 100;
    transition: ease all 0.6s;
    -webkit-transition: ease all 0.6s;
}
.checkbox_zone .check .check {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3px;
    stroke-dashoffset: 22;
    stroke-dasharray: 22;
    transition: ease all 0.6s;
    -webkit-transition: ease all 0.6s;
}
.checkbox_zone .check input[type=checkbox] {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    margin: 0;
    opacity: 0;
    -webkit-appearance: none;
}
.checkbox_zone .check input[type=checkbox]:hover {
    cursor: pointer;
}
.checkbox_zone .check input[type=checkbox]:checked + svg .background {
    fill: var(--Green);
}
.checkbox_zone .check input[type=checkbox]:checked + svg .stroke {
    stroke-dashoffset: 0;
}
.checkbox_zone .check input[type=checkbox]:checked + svg .check {
    stroke-dashoffset: 0;
}
.form_mini_container .imageText{
    display: none;
}
.form_mini_container .imageText.show{
    display: block;
    width: 45%;
}
.imageText .carImage{
    background-color: var(--veryLightGray);
    display: flex;
    align-items: center;
    justify-content: center;
}
.inputsCol1{
    display: block;
    width: 48%;
}
.inputsCol2{
    display: block;
    width: 48%;
}
.CNDP{
    font-family: 'ReadMedium';
    color: var(--LightGray);
    font-size: 11px;
}
/* form end */
/* form  & success end */
/*/------------------ loader ------------/*/
.formLoaderContact {
    position: relative;
    border: none;
    margin: auto;
    --height-of-loader: 4px;
    --loader-color: #646B52;
    width: 100px;
    bottom: 0px;
    height: var(--height-of-loader);
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}  
.formLoaderContact::before {
    content: "";
    position: absolute;
    background: var(--loader-color);
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 30px;
    animation: moving 1s ease-in-out infinite;
}  
@keyframes moving {
    50% {
      width: 100%;
    }
  
    100% {
      width: 0;
      right: 0;
      left: unset;
    }
}       
/*/------------------ loader end ------------/*/


@media(max-width: 1225px){
    /* form */
    .form_mini_container .form .form_desc {
        font-size: 13px;
    }
    .checkbox_zone {
        font-size: 12px;
    }
    .inputsCol2 .CNDP {
        font-size: 10px;
    }
    .form_mini_container .form .buttonEnv {
        font-size: 14px;
        height: 38px;
        margin-top: 8px;
    }
    /* form end */

    /* success */
    .success .title {
        font-size: 17px;
        text-align: center;
    }
    .success .text {
        font-size: 13px;
    }
    /* success end */
}

@media(max-width: 846px){
    /* form */
    .form_mini_container .form .form_desc {
        font-size: 11px;
    }
    .inputsCol2 .CNDP {
        font-size: 9px;
    }
    .checkbox_zone {
        font-size: 11px;
    }
    .checkbox_zone .check svg {
        width: 18px;
        height: 18px;
    }
    .formulair_title_zone {
        padding: 13px;
    }
    /* form end */
}

@media(max-width: 600px){
    /* form */
    .form_mini_container {
        flex-direction: column;
        gap: 25px;
    }
    .form_mini_container .form.show {
        width: 100%;
    }
    /* form end */

    /* success end */
    .success.show {
        width: 100%;
    }
    /* success end */
}

@media(max-width: 440px){
    .formulair_title_zone .formulair_title {
        font-size: 23px;
    }
    .formulair_title_zone .formulair_step {
        font-size: 13px;
        margin: 5px 0;
    }

    .inputsCol2 .CNDP {
        font-size: 7px;
    }
    .form_inputs{
        display: flex;
        flex-direction: column;
    }
    .inputsCol1.two, .inputsCol2.two {
        margin: 10px 0;
    }
    .inputsCol1, .inputsCol2 {
        width: 100%;
    }
}