@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;1,400;1,700&display=swap");

html {
    -webkit-text-size-adjust: 100%;
    height: 100vh;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.4;
    color: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
body {
    background-color: #000000;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}
* {
    box-sizing: border-box;
}
a {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    text-decoration: underline;
    color: inherit;
}
input,
button,
select {
    font-size: 1em;
    font-family: "Montserrat", sans-serif;
}
img {
    max-width: 100%;
}
input:focus,
select:focus,
textarea:focus,
button {
    outline: none;
}
button::-moz-focus-inner {
    border: 0;
}
select::-ms-expand {
    display: none;
}
.pxl,
.hidden {
    display: none !important;
}
p,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
figure {
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: normal;
}
.container {
    margin: 0 auto;
}
.bg-items {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}
.bg-items > div {
    position: absolute;
    width: 166px;
    height: 166px;
    display: flex;
    padding: 33px;
}
.bg-items > div::after {
    content: "";
    position: absolute;
    height: 8px;
    width: 100%;
    background-color: #7b838b;
}
.bg-items > div::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 100%;
    background-color: #7b838b;
}
.bg-items .item-left-top {
    top: 35px;
    left: 35px;
    align-items: flex-start;
}
.bg-items .item-left-top::after {
    top: 0px;
    left: 0px;
}
.bg-items .item-left-top::before {
    top: 0px;
    left: 0px;
}
.bg-items .item-right-top {
    top: 35px;
    right: 35px;
}
.bg-items .item-right-top::after {
    top: 0px;
    right: 0px;
}
.bg-items .item-right-top::before {
    top: 0px;
    right: 0px;
}
.bg-items .item-right-bottom {
    bottom: 35px;
    right: 35px;
    color: #7b838b;
    font-size: 44px;
    align-items: flex-end;
    line-height: 1;
}
.bg-items .item-right-bottom .hour {
    margin-left: -78px;
}
.bg-items .item-right-bottom::after {
    bottom: 0px;
    right: 0px;
}
.bg-items .item-right-bottom::before {
    bottom: 0px;
    right: 0px;
}
.bg-items .item-left-bottom {
    bottom: 35px;
    left: 35px;
    align-items: flex-end;
}
.bg-items .item-left-bottom::after {
    bottom: 0px;
    left: 0px;
}
.bg-items .item-left-bottom::before {
    bottom: 0px;
    left: 0px;
}
.bg-items img {
    max-width: 100%;
    height: auto;
}
.rec-circle {
    min-width: 33px;
    min-height: 33px;
    background-color: #580b15;
    border-radius: 100%;
    margin-top: -4px;
    margin-right: 10px;
    -webkit-animation: blink 2s linear infinite;
    animation: blink 2s linear infinite;
}
@-webkit-keyframes blink {
    50% {
        background-color: #580b15;
    }
    51% {
        background-color: rgba(255, 13, 14, 0);
    }
    100% {
        background-color: rgba(255, 13, 14, 0);
    }
}
@keyframes blink {
    50% {
        background-color: #580b15;
    }
    51% {
        background-color: rgba(255, 13, 14, 0);
    }
    100% {
        background-color: rgba(255, 13, 14, 0);
    }
}
@media (min-width: 768px) and (min-height: 600px) {
    .container {
        max-width: 90vw;
    }
}
@media (min-width: 1300px) {
    .container {
        max-width: 86vw;
    }
}
@media (min-width: 1800px) {
    body {
        font-size: 18px;
    }
}
@media (max-width: 767px), (max-height: 400px) {
    .bg-items {
        display: none;
    }
}

/* -- buttons -- */
.btn-male label,
.btn-female label {
    transition: opacity 300ms linear;
    background-color: #fed201;
    color: #000000;
}
.btn-male input,
.btn-female input {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
.btn-male label:hover,
.btn-female label:hover {
    text-decoration: none;
    opacity: 0.8;
}
.btn-male label {
    background-image: url(../images/icon-man.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 35px center;
}
.btn-female label {
    background-image: url(../images/icon-woman.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 15px center;
}
.btn-active.btn-male label {
    background-color: #000000;
    color: #ffffff;
    background-image: url(../images/icon-man-active.png);
}
.btn-active.btn-female label {
    background-color: #000000;
    color: #ffffff;
    background-image: url(../images/icon-woman-active.png);
}
@media (max-width: 767px), (max-height: 400px) {
    .btn-male label,
    .btn-female label {
        border: 2px solid #000000;
        background-color: transparent;
        color: #000000;
    }
}

/* -- main -- */
.main-title {
    font-size: 40px;
    text-align: center;
    font-weight: 500;
}
.main-title .color {
    color: #fed201;
}
.gift {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 70px;
}
.gift-img {
    min-width: 104px;
    height: auto;
    margin-right: 20px;
}
.gift-text {
    max-width: 450px;
    padding: 20px 30px;
    background-color: #ffffff;
    border-radius: 50px;
    color: #000;
    font-size: 22px;
    position: relative;
    margin-bottom: 10px;
    font-style: italic;
}
.gift-text::after {
    content: "";
    position: absolute;
    left: 8px;
    bottom: -5px;
    background-image: url(../images/gift-arrow.png);
    background-repeat: no-repeat;
    width: 25px;
    height: 14px;
}
@media (max-width: 767px), (max-height: 400px) {
    .main-title {
        font-size: 25px;
        max-width: 300px;
        margin: 0 auto;
        line-height: 1.2;
    }
    .gift {
        margin-top: 20px;
    }
    .gift-img {
        min-width: 55px;
        width: 55px;
    }
    .gift-text {
        padding: 10px;
        border-radius: 20px;
        font-size: 15px;
    }
    .gift-text::after {
        left: -2px;
        bottom: -6px;
    }
}

/* -- form -- */



/* -- header -- */
.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 1em 15px;
    position: relative;
    z-index: 10;
    padding-left: 245px;
}
.header .btn-history-back {
    display: none;
}
.terms-page .header .btn-history-back {
    display: block;
    transform: rotateZ(-135deg);
    height: 18px;
    width: 18px;
    border-style: solid;
    border-color: #fff;
    border-width: 3px 3px 0 0;
    cursor: pointer;
    margin-right: 20px;
}
.header .logo {
    text-align: center;
    display: block;
    text-decoration: none;
    max-width: 100%;
}
.header .logo img {
    min-width: 100%;
    height: auto;
}
@media (max-width: 767px), (max-height: 400px) {
    .header {
        padding-left: 0;
        justify-content: center;
    }
}
@media (min-width: 992px) {
    .header {
        font-size: 1vw;
    }
    .header .logo img {
        min-height: 0;
    }
}
@media (max-width: 767px) {
    .header {
        padding: 10px 0 0;
    }
    .header .logo img {
        max-width: 200px;
    }
    .terms-page .header .btn-history-back {
        top: 24px;
        position: absolute;
        left: 15px;
    }
}

.registration-form-builder-wrapper {
    position: relative;
    z-index: 10;
    padding: 0 1em 1em;
}
.registration-form-builder {
    margin-top: 1em;
    min-height: 195px;
}
.registration-form-builder-inner {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}
@media (max-width: 767px), (max-height: 400px) {
    .registration-form-builder-wrapper {
        margin-top: auto;
        padding-bottom: 10px;
        background-color: #000;
    }
}

.step {
    transition: opacity 300ms linear;
}
.step {
    -webkit-animation: flip-in-hor-bottom 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: flip-in-hor-bottom 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes flip-in-hor-bottom {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes flip-in-hor-bottom {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.step-hidden {
    display: none;
}
.step-title {
    font-size: 1.2em;
    text-align: center;
    padding-top: 1.5em;
    margin-bottom: 16px;
    letter-spacing: 0.045em;
}
@media (max-width: 767px), (max-height: 400px) {
    .step {
        background-color: #ffffff;
        border-radius: 15px;
        margin-top: 15px;
        padding-bottom: 10px;
    }
    .step-title {
        color: #000000;
        font-size: 1.1em;
        padding-top: 15px;
        margin-bottom: 5px;
    }
}
.form-group-radio-buttons .form-group-inner{
    display: flex;
    flex-direction: row;
}
.form-group-radio-buttons .radio-button{
    flex: 1;
    text-align: center;
}
.form-group-radio-buttons .form-group-inner {
    margin: 0 -0.3em;
}
.form-group-flex .form-group-inner-last {
    flex-wrap: wrap;
}
.form-group-flex .form-group-inner-last .form-group-item {
    flex-basis: 100%;
    max-width: 100%;
    text-align: center;
    margin: 10px auto;
}
.form-group-inner-last .form-group-item .form-control {
    max-width: 333px;
}
.form-group-radio-buttons .radio-button label {
    display: block;
    padding: 0.1em;
    width: 100%;
    height: 3em;
    line-height: 2.75em;
    border-radius: 10px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1.15em;
    position: relative;
}
.form-group {
    padding: 0.3em;
}
.form-control {
    display: block;
    margin: 0 auto;
    padding: 0 0.25em;
    width: 100%;
    height: 2em;
    border: none;
    border-bottom: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    border-radius: 0;
    font-size: 1.222em;
    line-height: 1.8;
}
select.form-control {
    padding-left: 1.25em;
    padding-right: 1.25em;
    min-width: 65px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}
select option {
    color: #111;
}
textarea.form-control {
    resize: vertical;
    font-family: "Montserrat", sans-serif;
}
.form-control-wrapper .form-control.error {
    border-color: #ff0000;
}
.form-group-inner {
    justify-content: center;
}
.form-group-flex .form-group-inner {
    display: flex;
}
.form-group-flex .form-group-item {
    width: 100%;
    padding: 0 13px;
    max-width: 333px;
    position: relative;
}
.form-group-radio-buttons .form-group-item {
    max-width: 200px;
}
.form-group-flex.multiple-items .form-group-item {
    padding: 0 5px;
}
.contact-form .form-group-item {
    max-width: 333px;
    margin: 0 auto 20px;
    position: relative;
}
.contact-form .form-label {
    width: 100%;
    display: block;
    padding-bottom: 10px;
}
.form-group-flex .btn-next,
.form-group-item .btn-next {
    height: 2.75em;
    border-radius: 10px;
    border: 0;
    width: 100%;
    cursor: pointer;
    color: #000;
    text-transform: uppercase;
    font-size: 1.222em;
    background-color: #fed201;
    transition: opacity 300ms linear;
    max-width: 333px;
    margin: auto;
}
.form-group-flex .btn-next,
.form-group-item .btn-next {
    opacity: 0.8;
}
.hint {
    font-size: 0.667em;
    text-align: center;
    display: block;
    width: 100%;
    margin-top: 0.5em;
}
.form-group-item .alert-msg {
    color: #e46d6f;
    font-size: 10px;
    line-height: 1.4;
    display: block;
    padding-left: 1em;
    padding-top: 1px;
}
.form-group-item.has-error .form-control {
    border-color: #e46d6f;
}
.btn-mob {
    display: none;
}
@media (max-width: 767px), (max-height: 400px) {
    .form-group-inner {
        flex-wrap: wrap;
    }
    .form-group-flex .form-group-item {
        margin-bottom: 1em;
    }
    .form-group-radio-buttons .radio-button label {
        text-transform: none;
        font-size: 1em;
        padding-left: 20px;
    }
    .form-group-radio-buttons .form-group-item {
        max-width: 140px;
    }
    .form-group-flex .form-group-inner-last .form-group-item {
        margin-top: 0;
        margin-bottom: 15px;
    }
    .form-group-radio-buttons .btn-group {
        max-width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
    }
    .form-group-flex .form-group-item {
        padding: 0 1px;
    }
    .form-group-flex .btn-next,
    .form-group-item .btn-next {
        font-size: 1em;
        font-weight: bold;
    }
    .btn-mob {
        display: block;
    }
    .form-control {
        border-bottom: 1px solid #000;
        color: #000;
        font-size: 1em;
    }
    .contact-form .form-control {
        border-bottom: 1px solid #fff;
        color: #fff;
    }
    .form-group-item .alert-msg {
        left: 0;
        top: 100%;
        position: absolute;
        text-align: center;
        width: 100%;
    }
}

.footer {
    padding: 1em 15px;
    font-size: 16px;
    text-align: center;
    position: relative;
    z-index: 10;
}
.footer a {
    text-decoration: underline;
    color: #fff;
    margin: 0 10px;
}
.footer a:hover {
    text-decoration: none;
}
@media (max-width: 767px), (max-height: 400px) {
    .footer a {
        margin: 0 5px;
    }
}
@media (max-width: 360px) {
    .footer {
        font-size: 14px;
    }
    .footer a {
        margin: 0 3px;
    }
}

.section-text {
    background-color: rgba(0, 0, 0, 0.7);
    width: calc(100% - 100px);
    height: calc(100vh - 177px);
    padding: 20px;
    overflow-y: auto;
    margin: 0 auto;
    position: relative;
    z-index: 30;
    border-radius: 10px;
}
.section-text .wrap {
    padding: 20px 15px;
    max-width: 1000px;
    margin: 0 auto;
}
.section-text .section-title {
    font-size: 2em;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1em;
}
.section-text .subtitle {
    font-size: 1em;
    font-weight: 600;
    margin-top: 1.3em;
    margin-bottom: 0.5em;
}
.section-text p {
    line-height: 1.4;
    margin-bottom: 0.5em;
}
.section-text ul {
    margin-bottom: 1em;
    text-indent: 1em;
}
.section-text ul li {
    line-height: 1.4;
    margin-bottom: 0.5em;
    list-style: disc;
}
.section-text a {
    color: #fdc10e;
}
.section-text b {
    font-weight: bold;
}
@media (max-width: 767px), (max-height: 400px) {
    .section-text {
        width: calc(100% - 10px);
        padding: 10px;
    }
}


/* autocomplete */

.registration-form-builder .autocomplete {
    position: absolute;
    right: -60px;
    z-index: 1;
    min-width: 120px;
    max-height: 180px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    background-color: #ffffff;
    color: #333333;
}
.registration-form-builder .autocomplete li {
    padding: 0.3em;
    line-height: 25px;
    text-align: left;
    white-space: nowrap;
    cursor: pointer;
}
.registration-form-builder .autocomplete li:hover {
    background-color: #f6f6f6;
}
.registration-form-builder .autocomplete li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.registration-form-builder .autocomplete.autocomplete-loading {
    overflow-y: hidden;
}
.autocomplete-loading li {
    width: 200px;
}
.autocomplete-loading li:before {
    content: "";
    display: block;
    margin: 0 auto;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #009700;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
@media (min-width: 480px) {
    .registration-form-builder .autocomplete {
        right: auto;
    }
}
@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@media (max-width: 767px), (max-height: 400px) {
    .form-group-radio-buttons .radio-button {
        padding: 0 5px;
    }
}

/* Modal */
.overlay-modal {
    background: rgba(0, 0, 0, 0.8);
    bottom: 0;
    cursor: pointer;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
}
.success-modal {
    background: #ffffff;
    display: none;
    left: 50%;
    max-width: 677px;
    ms-transform: translate(-50%, -50%);
    padding: 55px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    webkit-transform: translate(-50%, -50%);
    width: 100%;
    z-index: 30;
}
.success-modal .modal-icon-wrap {
    display: block;
    margin: 0 auto 45px;
    max-width: 132px;
}
.success-modal .modal-icon-wrap img {
    display: block;
    height: auto;
    width: 100%;
}
.success-modal .modal-title {
    color: #494949;
    font-size: 36px;
    font-weight: bold;
    line-height: 40px;
    margin-bottom: 18px;
    text-align: center;
}
.success-modal .modal-text {
    color: #494949;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}
.success-modal .modal-btn-row {
    margin-top: 45px;
}
.success-modal .modal-btn-row .btn-modal {
    display: block;
    margin: 0 auto;
    max-width: 300px;
    padding-bottom: 10px;
    padding-top: 14px;
    width: 100%;
    text-align: center;
    height: 2.75em;
    border-radius: 10px;
    border: 0;
    width: 100%;
    cursor: pointer;
    color: #000;
    text-transform: uppercase;
    font-size: 1.222em;
    background-color: #fed201;
    transition: opacity 300ms linear;
}
.success-modal .modal-btn-row .btn-modal:hover {
    opacity: 0.8;
}
.success-modal .modal-clouse {
    background: url("../images/modal-clouse-icon.png") no-repeat center;
    cursor: pointer;
    display: block;
    height: 24px;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 24px;
}
@media only screen and (max-width: 767px) {
    .success-modal {
        max-width: 550px;
        max-width: calc(100% - 24px);
        padding: 35px 30px;
    }
    .success-modal .modal-icon-wrap {
        margin-bottom: 30px;
        max-width: 110px;
    }
    .success-modal .modal-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 12px;
    }
    .success-modal .modal-text {
        font-size: 16px;
        line-height: 22px;
    }
    .success-modal .modal-btn-row {
        margin-top: 30px;
    }
}
@media only screen and (max-width: 500px) {
    .success-modal .modal-clouse {
        background-size: 17px;
        height: 22px;
        right: 11px;
        top: 11px;
        width: 22px;
    }
    .success-modal {
        padding: 30px 15px;
    }
    .success-modal .modal-icon-wrap {
        max-width: 90px;
    }
    .success-modal .modal-title {
        font-size: 22px;
        line-height: 28px;
    }
    .success-modal .modal-text {
        font-size: 14px;
        line-height: 20px;
    }
    .success-modal .modal-btn-row .btn-modal {
        max-width: 230px;
    }
}
@-webkit-keyframes slide-in-bottom {
    0% {
        transform: translateY(1000px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slide-in-bottom {
    0% {
        transform: translateY(1000px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.video-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}
.video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
}
@media only screen and (max-width: 767px) {
    .video-container {
        top: 60px;
    }
    .video {
        min-height: auto;
        max-height: calc(100% - 320px);
    }
}