.datepicker-dropdown {
    width: 243px;
}

.table-condensed {
    width: 100%;
}

.datepicker table tr td.today {
    background-image: linear-gradient(0deg, #e6af5d 0%, #e6af5d 100%) !important;

}

.form-container {
    flex-basis: 446px;
    margin-left: -150px;
}

button[disabled] {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}


.error{
    border: 2px solid red!important;
}

.success-form {
    display:none;
    font-size: large;
}
.form-holder {
    padding: 20px 27px;
    border: none;
    background-color: #fff;
    color:var(--text-third-color);
    cursor: pointer;
    border: 1px solid #cacdce;
    box-shadow: none;
}

.form-body {
    padding: 30px 5px 15px 5px;
}

.form-header {
    text-transform: uppercase;
    color: var(--primary-color); 
    padding:30px 15px 0px 15px;
    font-size: 22px;
    
}



.cta-holder .sub {
    margin-top: 15px;
    position: relative;
    clear: both;
}


.form-holder:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
}



.titref {
    color: #acacac;
    text-align: justify;
    line-height: 1.5em !important;
    font: 700 11px Roboto, sans-serif;
    padding: 20px 3% 10px
}

select.custom {
    background-image: url(../img/drop.png)
        ;
    padding-right: 20px;
    background-repeat: no-repeat;
    background-position: 95% center;
    -webkit-appearance: none;
    -moz-appearance: none
}

select.custom::-ms-expand {
    display: none
}

::placeholder {
    /* Firefox, Chrome, Opera */
    color:var(--placeholder-color)!important;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color:var(--placeholder-color)!important;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color:var(--placeholder-color)!important;
}

.c-code {
    display: flex;
    gap:15px;
}

.c-code #indic {
    width: 30%;
}


.form-control {
    height:var(--input-height);
    border-radius: 0px;
    margin-bottom: 10px;
    color:var(--placeholder-color);
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    font-size:16px;
}

.form-control:focus {
    border-color:var(--secondary-color);
    background-color: #fbfbfb;
    border-width: 2px;
    color:var(--primary-color);
    box-shadow: none;
}

.sub {
    border-radius: 0px;
    text-transform: uppercase;
    font-size: 16px;
    background:var(--secondary-color);
    border: none;
    color: var(--wht);
    font-weight: 400;
    padding: 14px 20px;
    background-size: 100% 100%;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.sub:hover,.sub:focus {
    background:var(--accent-color);
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    color:#fff;
}


.error {
    border: 2px solid red !important;
    animation-name: shake;
    animation-duration: 0.2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 2;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}


.mention-form,
.mention-form:hover,
.mention-form:focus,
.mention-form:visited {
    color: #1860de;
    text-decoration: none;
}




/*Checkboxes styles*/
input[type="checkbox"] {
    display: none;
}

input[type="checkbox"] + label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-weight: 400;
 

    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

input[type="checkbox"] + label:last-child {
    margin-bottom: 0;
}

input[type="checkbox"] + label:before {
    content: '';
    display: inline;
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-color);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.lu-txt {
    font-size: 13px;
    text-align: left;
}

.terms {
    padding:20px 0px;
}