*[data-popup]{
    cursor: pointer;
}
.popup-form {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1112;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: auto;
    padding: 30px 15px; }
.popup-form.js--popup-show {
    opacity: 1;
    pointer-events: auto; }
.popup-form__overflow {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5); }
.popup-form__close {
    position: absolute;
    right: 25px;
    top: 25px;
    -webkit-transition: 0.15s;
    -o-transition: 0.15s;
    transition: 0.15s;
    font-size: 0;
    line-height: 0;
    cursor: pointer; }
.popup-form__close:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }
.popup-form__form {
    position: absolute;
    z-index: 4;
    width: 400px;
    max-width: calc( 100% - 30px);
    padding: 0 25px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 4px;
    background-color: #ffffff; }
.popup-form__form-header {
    border-radius: 4px 4px 0 0;
    background-color: #ff3939;
    padding: 25px 25px 10px;
    margin: 0 -25px;
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px; }
.popup-form__form-header div {
    font-weight: 600;
    font-size: 22px;
    line-height: 26px; }
.popup-form__form label.label-checkbox {
    font-size: 13px;
    color: #5b6677;
    margin-top: 15px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
.popup-form__form input[type="checkbox"] {
    width: 16px;
    height: 16px;
    -ms-flex-preferred-size: 16px;
    flex-basis: 16px; }
.popup-form__form input[type="text"], .popup-form__form input[type="email"], .popup-form__form input[type="tel"] {
    margin: 20px 0;
    padding: 8px 0;
    display: block;
    width: 100%;
    color: #808996;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    border-width: 0;
    border-bottom: 1px solid #cccccc; }
.popup-form__form input[type="text"]:focus, .popup-form__form input[type="email"]:focus, .popup-form__form input[type="tel"]:focus {
    outline: none;
    border-color: #000; }
.popup-form__form-footer {
    border-radius: 0 0 4px 4px;
    margin-top: 25px;
    padding-bottom: 10px; }
.popup-form__form-footer button {
    width: 100%; }

label.label-checkbox {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #000000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px; }
@media (max-width: 767px) {
    label.label-checkbox {
        margin-bottom: 20px; } }
label.label-checkbox input {
    width: 14px;
    height: 14px;
    margin: 0 12px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14px;
    flex: 0 0 14px; }
label.label-checkbox a {
    color: #676767;
    text-decoration: none; }
label.label-checkbox a:hover {
    text-decoration: underline; }