.promo-skibob {
    position: relative;
    min-height: 100vh;
}
.promo-skibob::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/promo-signup/img/background_promo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}
.contact-form__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.contact-form__item {
    width: 100%;
    max-width: 776px;
}
.contact-form__item.form-container {
    background-color: #F9F9F9;
    border-radius: 0 0 40px 40px;
}
.contact-form__item.banner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00174B;
    padding: 22px;
}

.contact-form__item.banner::after {
    content: '';
    position: absolute;
    left: calc(50% - 2px);
    top: 17px;
    height: 100px;
    width: 2px;
    background-color: #fff;
}
.contact-form__banner-content h1,
.contact-form__banner-content p {
    font-family: 'Cyr', sans-serif;
    font-weight: 900;
    font-size: 28px;
    line-height: 1;    
}
.contact-form__banner-content {
    color: #fff;
    padding-left: 0;
}
.form-container .form {
    padding: 40px;
}
.form-container .input__field {
    border: 1px solid #00174b;
    border-radius: 8px;
    width: 100%;
    height: 65px;
    padding: 10px;
    font-size: 20px;
}
.form-container .input__field:focus {
    border-color: var(--bwt-pink);
}
label.input {
    font-weight: 700;
    font-size: 15px;
    color: #00174b;
}
.form__bottom {
    justify-content: center;
}
.form-container .form__submit {
    padding: 15px 16px;
    font-weight: 700;
    font-family: 'Cyr', sans-serif;
    font-size: 16px;
    background: #ff88bd;
    border-radius: 10px;
    margin: 0;
}
.form-container .two-cols__form_item {
    margin-bottom: 4px;
}
.input-required::before {
    display: none;
}
.input-required span {
    position: relative;
    font-family: 'Cyr', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 15px;
}
.input-required span::before {
    color: #FF0000;
    content: "*";
    right: -8px;
    position: absolute;
    top: 0px;
}
div.body-wrapper {
    max-width: 100%;
}
.contact-form__banner-image img {
    width: 225px;
}

.form-container .input__message {
    color: #00174B;
    font-family: 'Cyr', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;    
}

.contact-form__item.banner {
    border-radius: 40px 40px 0 0;
    padding: 23px 76px;
}

.popup-success {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
    opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-success.active {
	opacity: 1;
	visibility: visible;
}
.popup-success__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(2px);
	z-index: 1;
}
.popup-success__wrapper {
	position: relative;
	z-index: 2;
	max-width: 600px;
	width: 90%;
}
.popup-success__window{
	width: 100%;
	padding: 30px 20px;
	text-align: center;
	background: white;
	border-radius: 25px;
	display: none;
}
.popup-success__window p{
	margin-top: 25px;
	margin-bottom: 0;
	color: rgba(0, 23, 75, 1);
	font-style: 16px;
	font-family: CeraPro-Medium,sans-serif;
}
.form__checkboxes {
    margin: 33px 0;
    width: 100%;
}
.input__message.error .error-message {
    opacity: 1;
}
.error-message {
    color: red;
    opacity: 0;
    height: 24px;
    padding-left: 24px;
}

.form-container .checkbox-flex .checkbox__custom {
    border: 1px solid #00174B;
    border-radius: 3px;
    height: 21px;
    width: 21px;
    min-width: 21px;
}

.form-container .checkbox-box .checkbox__custom:after {
    background-color: #00174B;
    background-image: none;
    border-radius: 1px;
    content: "";
    height: 11px;
    left: 50%;
    top: 50%;
    width: 11px;
}

@media(max-width: 992px) {
    .contact-form__banner-content h1,
    .contact-form__banner-content p {
        font-size: 24px;
    }

    .contact-form__item.banner {
        padding: 40px;
    }
}

@media(max-width: 768px) {
    .contact-form__banner-content h1,
    .contact-form__banner-content p {
        font-size: 20px;
    }

    .contact-form__item.banner {
        padding: 40px;
    }

    .contact-form__banner-image img {
        width: 180px;
    }
}

@media(max-width: 490px) {
    .promo-skibob .container {
        padding: 0;
    }
    .contact-form__banner-image img {
        width: 126px;
    }
    .contact-form__banner-content h1,
    .contact-form__banner-content p {
        font-size: 15px;
    }
}

@media(max-width: 380px) {
    .contact-form__banner-image img {
        width: 110px;
    }
    .contact-form__banner-content h1,
    .contact-form__banner-content p {
        font-size: 12px;
    }
}


