::-webkit-input-placeholder {
    font-size: 16px;
}

::-moz-placeholder {
    font-size: 16px;
}

:-moz-placeholder {
    font-size: 16px;
}

:-ms-input-placeholder {
    font-size: 16px;
}

:focus::-webkit-input-placeholder {
    opacity: 0;
}

:focus::-moz-placeholder {
    opacity: 0;
}

:focus:-moz-placeholder {
    opacity: 0;
}

:focus:-ms-input-placeholder {
    opacity: 0;
}

.form-at {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    font-size: 0;
    letter-spacing: 0;

}

.form-at * {
    box-sizing: border-box;
    font-family: Verdana, sans-serif;
}

.validate-input-at,
.no-validate-input-at {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.validate-input-at.w-50,
.no-validate-input-at.w-50 {
    width: 100%;

}

/* .validate-input-at.w-50:first-child,
.no-validate-input-at.w-50:first-child {
    margin-right: 20px;
} */

.input-at {
    display: block;
    width: 100%;
    font-weight: 200;
    font-size: 15px;
    line-height: 179.4%;
    color: #fff;
    background: #323232;
    border: 1px solid #323232;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
    border-radius: 0.75em;
}

input.input-at {
    height: 50px;
    padding: 0 20px 0 20px;
    font-size: 16px;
    outline: none;
}

textarea.input-at {
    min-height: 170px;
    padding: 18px 20px;
    font-size: 16px;
    line-height: 22px;
    outline: none;
    resize: none;
}

.focus-input-at {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 2px solid #D75308;
    border-radius: 2px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
    transform: scaleX(1.1) scaleY(1.3);
}

.contact__br {
    margin-top: 20px;
}

.contact__police {
    color: #3B8DD7;
}

.form-at-btn {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    background: #c5a47e;
    border-radius: 0.75em;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;

    color: #FEFEFE;

    text-transform: uppercase;
    line-height: 1.2;
    transition: all 0.4s;
    margin: 0 auto;
    outline: none;
    border: none;
    cursor: pointer;
}

.form-at-btn:hover {
    background: #323232;
}

.form-at-btn[disabled] {
    opacity: .6;
    cursor: not-allowed;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #9F6D42;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    pointer-events: none;
    color: #9F6D42;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "\f129";
    font-family: "FontAwesome";
    display: block;
    position: absolute;
    color: #D75308;
    font-size: 18px;
    font-weight: bold;
    top: 50%;
    transform: translateY(-50%);
    right: 22px;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}

.error-at {
    color: red;
    padding: 10px 0;
}

.success-at {
    color: #c5a47e;
    font-size: 28px;
    padding: 20px 0;
    text-align: center;
}

.form-at input[type=checkbox] {
    display: none;
}

.form-at input[type=checkbox]+label {
    display: block;
    position: relative;
    margin: 0 0 20px 34px;
    font-size: 13px;
    line-height: 24px;
    color: #fff;
}

.form-at input[type=checkbox]+label:before {
    box-sizing: border-box;
    position: absolute;
    content: '';
    width: 26px;
    height: 26px;
    line-height: 22px;
    left: -34px;
    border: 2px solid #F7FF00;
    border-radius: 2px;
}

.form-at input[type=checkbox]:checked+label:before {
    content: '\2714';
    color: #c5a47e;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    border: 2px solid #c5a47e;
}

@media (max-width: 768px) {
    .validate-input-at.w-50 {
        width: 100%;
    }

    .validate-input-at.w-50:first-child {
        margin-right: 0;
    }

    .alert-validate::before {
        visibility: visible;
        opacity: 1;
    }
}