
.footer__inner, .page, .page-404, .thank-you {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal
}

.footer__logo, .header__logo {
    max-width: 130px;
    width: 100%;
}

body {
    font-family: Roboto, sans-serif;
    margin: 0;
    font-size: 16px;
    color: #222
}

body.popup-opened {
  overflow: hidden;
}

.datepicker {
    padding: .375rem .75rem !important
}

.datepicker table tr td.active {
    background-color: #a91919 !important;
    background-image: none !important
}

.datepicker table tr td.active:hover {
    background-color: #660f0f !important
}

.btn-primary, .form-check-input:checked {
    background-color: #a91919;
    border-color: #a91919
}

.btn-primary:active, .btn-primary:hover {
    background-color: #660f0f !important;
    border-color: #660f0f !important
}

.page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh
}

.header {
    background-color: #a91919;
    padding: 15px 0;
    color: #fff
}

.header__inner {
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
}

.header a {
    color: inherit;
    text-decoration: none;
}
.header a:hover {
    
    text-decoration: underline;
}

.tail {
    padding: 60px 0;
    flex: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tail__disclaimer {
    background-color: #fafafa;
    padding: 30px;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.tail__disclaimer-footer {
    text-align: center;
margin-top: 30px;
    
}

.tail__disclaimer-footer .btn {
    margin: 5px 10px;
}


.tail__disclaimer p {
    margin: 0 0 10px
}

.tail__disclaimer .btn {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center
}

.overlay {
    display: none;
    background-color: rgba(0, 0, 0, .55);
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 7
}

@supports ((-webkit-backdrop-filter:none) or (backdrop-filter:none)) {
    .overlay {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        background-color: rgba(0, 0, 0, .55)
    }
}

.popup {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    overflow: auto;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out
}

.popup__container {
    display: table;
    width: 100%;
    height: 100%
}

.popup__wrapper {
    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;
    height: 100%;
    padding: 80px
}

.popup__inner {
    background: #fff;
    padding: 50px;
    position: relative;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
    opacity: 0;
    width: 100%;
    max-width: 900px;
    border-radius: 20px
}

.popup__close {
    position: absolute;
    top: -63px;
    right: 0;
    width: 48px;
    height: 48px;
    background-color: transparent;
    border: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: 1;
    cursor: pointer
}

.popup__close:hover path {
    fill: #a91919
}

.popup__close svg {
    max-width: 100%;
    height: 100%
}

.popup__title {
    font-weight: 700;
    font-size: 50px;
    margin: 0 0 50px;
    line-height: 1;
    max-width: 200px
}

.popup__footer {
    text-align: center;
    margin-top: 60px
}

.popup.opened .popup__inner {
    opacity: 1;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition-timing-function: cubic-bezier(.25, 1, .5, 1);
    -o-transition-timing-function: cubic-bezier(.25, 1, .5, 1);
    transition-timing-function: cubic-bezier(.25, 1, .5, 1)
}

.popup .form__submit {
    text-align: center
}

.popup .form .button {
    width: auto
}

@media screen and (max-width: 991px) {
    .popup__inner {
        padding: 20px;
        max-width: 500px;
        border-radius: 20px
    }

    .popup__wrapper {
        padding: 50px 20px 20px
    }

    .popup__close {
        width: 24px;
        height: 24px;
        top: -34px
    }

    .popup__title {
        margin: 0 0 30px;
        font-size: 28px;
        line-height: 28px
    }

    .popup__footer {
        margin-top: 37px
    }

    .popup__pic {
        max-width: 150px;
        top: 0;
        right: 0
    }

    .popup__pic * {
        -webkit-animation-name: none;
        animation-name: none
    }

    .popup--fluid .popup__inner {
        padding: 30px 20px !important
    }

    .popup--fluid .popup__title {
        margin: 0 0 30px !important
    }
}

.level__inner {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.level__table {
    width: 100%;
    border-radius: .375rem;
    border: 1px solid #494949;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 700px;
    background-image: -o-linear-gradient(270deg, rgba(221, 101, 71, .5), rgba(150, 209, 72, .5));
    background-image: linear-gradient(270deg, rgba(221, 101, 71, .5), rgba(150, 209, 72, .5))
}

.level__table .level__table-body > *, .level__table .level__table-header > * {
    border: 1px solid #494949;
    color: #333;
    text-align: center
}

.level__table-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.level__table-header > * {
    padding: 10px 3px;
    font-weight: 500;
    font-size: 15px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap
}

.level__table-header > :nth-child(1) {
    -webkit-box-flex: 3;
    -ms-flex: 3 1 30%;
    flex: 3 1 30%
}

.level__table-header > :nth-child(2) {
    -webkit-box-flex: 2;
    -ms-flex: 2 1 20%;
    flex: 2 1 20%
}

.level__table-header > :nth-child(3) {
    -webkit-box-flex: 2;
    -ms-flex: 2 1 20%;
    flex: 2 1 20%
}

.level__table-header > :nth-child(4) {
    -webkit-box-flex: 3;
    -ms-flex: 3 1 30%;
    flex: 3 1 30%
}

.level__table-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.level__table-body > * {
    background-color: #fff;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 10%;
    flex: 1 1 10%
}

.level__table-body > * label {
    padding: 10px 15px;
    cursor: pointer
}

.level__table-body > * input {
    display: none
}

.level__table-body > .checked, .level__table-body > :hover {
    background-color: transparent
}

@media screen and (max-width: 991px) {
    .level__inner {
        overflow: hidden;
        display: block
    }

    .level__table {
        min-width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
         background-image: -o-linear-gradient(0deg, rgba(221, 101, 71, .5), rgba(150, 209, 72, .5));
    background-image: linear-gradient(0deg, rgba(221, 101, 71, .5), rgba(150, 209, 72, .5))
    }

    .level__table-body, .level__table-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-flex: 50%;
        -ms-flex: 50%;
        flex: 50%
    }
}

.footer {
    background-color: #222;
    padding: 80px 0;
    color: #fff;
    margin-top: auto
}

.footer__inner, .page-404, .thank-you {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer__logo {
    margin-bottom: 50px
}

.footer__text {
    color: #666;
    font-size: 12px;
    margin: 0
}

.form-label {
    font-weight: 500
}

.form-check-input:focus, .form-control:focus, .form-select:focus {
    border-color: #e02e2e;
    outline: 0;
    -webkit-box-shadow: 0 0 0 .25rem rgba(169, 25, 25, .25);
    box-shadow: 0 0 0 .25rem rgba(169, 25, 25, .25)
}

.error-msg {
    display: none;
    margin-top: 5px
}

.has-error .error-msg {
    display: block
}

.page-404__title, .thank-you__title {
    font-size: 80px;
    color: #a91919;
    margin: 0 0 30px
}

.page-404__subtitle, .thank-you__subtitle {
    margin: 0 0 30px
}

@media screen and (max-width: 991px) {
    .thank-you__title {
        font-size: 35px
    }
}
.captcha-error {
    display: none
}

.invalid-captcha .captcha-error {
    display: block
}