
/* Form */

.lds-roller {
    margin: 0 auto;
    margin-bottom: 20px;
}

.btn[disabled] {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
    color: #FFFFFF;
    background-color: var(--accent-color);
    border: 2px solid transparent;
}

.error {
    color: red;
    border-color: red!important;
    border-width: 2px !important;

}

.success-form {
    display: none;
    font-size: large;
}



.form-holder {
    background-color: #FFFFFF;
    box-shadow: var(--box-shadow);
    border-radius: 5px;
}

.form-container {
    padding: 30px;
}

.form-control {
    height: 50px;
    margin-bottom: 10px;
    background-color: #FFFFFF;
    border-radius: 5px;
}

.form-header {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 500;
    padding: 30px 30px 0 30px;
}





.cta-holder{
    text-align: center;
}

.sub {
    display: flex;
    flex-direction: column-reverse;
}



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
}



input[type=text] {   
    /* Remove First */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-control {
    height:55px;
    margin-bottom: 10px;
    color: #111111;
    background-color: #ffffff;
    border: 1px solid #707070;
    border-radius:0px;
    font-size: 16px;
}

.form-control:focus {
    border-color: #000000;
    background-color: #fbfbfb;
    border-width: 1.5px;
    color: #111111;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}




/* check */


/*Checkboxes styles*/
input[type="checkbox"] {
    display: none;
}

input[type="checkbox"] + label {
    display: inline;
    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(--accent-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);
}

textarea {
    resize: vertical;

}

.lu-txt {
    font-size: 13px;
    text-align: left;
    color: #000;
}

.terms {
    padding: 20px 0px;
}