.e-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #a1a1a1;
    display: inline-block;
    overflow: hidden
}

.e-avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.e-avatar span {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    line-height: 1
}

.e-background-image {
    position: relative;
    overflow: hidden
}

.e-background-image__img {
    width: 100%;
    height: auto;
    overflow: hidden
}

.e-background-image__img img {
    display: block;
    width: 100%;
    height: auto
}

.e-background-image__img.background-image {
    position: absolute;
    height: 100%
}

.e-background-image__img.background-image>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.e-background-image__img.background-image+.e-background-image__content {
    position: relative;
    min-height: 100%;
    height: auto;
    overflow: visible
}

.e-background-image__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    color: #fff
}

.e-background-image__fullscreen-btn {
    position: absolute;
    right: 16px;
    bottom: 16px;
    color: #E3242B;
    border: 1px solid #E3242B;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform .6s ease
}

.e-background-image__fullscreen-btn .e-icon {
    position: absolute;
    left: calc(50% - 5px);
    top: calc(50% - 5px);
    transition: transform .6s ease
}

.e-background-image__fullscreen-btn .e-icon svg {
    width: 10px;
    height: 10px
}

.e-background-image__fullscreen-btn .e-icon:first-child {
    transform: rotate(-135deg) translateX(8px)
}

.e-background-image__fullscreen-btn .e-icon:last-child {
    transform: rotate(45deg) translateX(8px)
}

.e-background-image__fullscreen-btn:hover {
    background-color: #E3242B;
    color: #000
}

.e-background-image__fullscreen-btn:hover .e-icon:first-child {
    transform: rotate(-135deg) translateX(15px)
}

.e-background-image__fullscreen-btn:hover .e-icon:last-child {
    transform: rotate(45deg) translateX(15px)
}

.e-background-image__fullscreen-view {
    position: fixed;
    z-index: 12;
    background: #000;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    overflow: hidden
}

.e-background-image__fullscreen-box {
    width: 100%;
    height: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    background: #000;
    overflow-scrolling: touch;
    display: flex;
    align-items: center
}

.e-background-image__fullscreen-box.dragging {
    cursor: grabbing
}

.e-background-image__fullscreen-box.narrow {
    overflow-x: hidden;
    overflow-y: scroll
}

.e-background-image__fullscreen-img {
    min-height: 100%;
    width: auto;
    height: 100%;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -o-object-position: center;
    object-position: center
}

.e-background-image__fullscreen-img.narrow {
    width: 100%;
    height: auto
}

.e-background-image__fullscreen-view-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #E3242B;
    border: 1px solid #E3242B;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform .6s ease
}

.e-background-image__fullscreen-view-btn .e-icon {
    position: absolute;
    left: calc(50% - 5px);
    top: calc(50% - 5px);
    transition: transform .6s ease
}

.e-background-image__fullscreen-view-btn .e-icon svg {
    width: 10px;
    height: 10px
}

.e-background-image__fullscreen-view-btn .e-icon:first-child {
    transform: rotate(-135deg) translateX(-15px)
}

.e-background-image__fullscreen-view-btn .e-icon:last-child {
    transform: rotate(45deg) translateX(-15px)
}

.e-background-image__fullscreen-view-btn:hover {
    background-color: #E3242B;
    color: #000
}

.e-background-image__fullscreen-view-btn:hover .e-icon:first-child {
    transform: rotate(-135deg) translateX(-8px)
}

.e-background-image__fullscreen-view-btn:hover .e-icon:last-child {
    transform: rotate(45deg) translateX(-8px)
}

.e-background-image.use-content-height .e-background-image__content {
    position: relative;
    height: auto;
    overflow: visible
}

.e-background-image.has-animation .e-background-image__img:before {
    content: "";
    display: block;
    height: 100%;
    background-color: #101724;
    box-shadow: 0 2px 2px #101724;
    transition: height 2s cubic-bezier(.38, .015, 0, .995)
}

.e-background-image.has-animation.in-screen .e-background-image__img:before {
    height: 0
}

.e-background-image.has-animation.enlargement:hover .e-background-image__img {
    transform: scale(1.25)
}

.e-background-image.has-animation.enlargement.out-screen .e-background-image__img {
    transform: scale(1)
}

@keyframes bounce-In {
    0% {
        transform: scale(1)
    }

    to {
        transform: scale(1.25)
    }
}

@media(min-width:992px) {
    .e-background-image__fullscreen-box {
        justify-content: center
    }
}

.e-block-summary__title {
    padding: 16px 0
}

.e-block-summary__title:empty {
    display: none
}

.e-block-summary__main {
    background: #282828;
    color: #fff
}

.e-block-summary__main .e-label-value {
    padding-left: 16px;
    padding-right: 16px
}

.e-block-summary__main .e-label-value+.e-label-value {
    border-top: 2px solid #262626
}

.e-block-summary__main .e-label-value.size-small {
    font-size: 12px;
    padding: 8px 16px
}

.e-block-summary.size-small {
    font-size: 12px
}

.e-block-summary.size-small .e-block-summary__title {
    padding: 8px 0
}

.e-form-checkbox.rtl {
    direction: rtl
}

.e-form-checkbox__title {
    margin-bottom: 24px
}

.e-form-checkbox__main {
    display: flex;
    gap: 20px
}

.e-form-checkbox__text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.e-form-checkbox__label-title {
    color: #262626;
    font-weight: 500
}

.e-form-checkbox__label-title:empty {
    display: none
}

.e-form-checkbox__check {
    width: 24px;
    height: 24px;
    border: 1px solid #b8b8b8;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    transition: all .2s ease
}

.e-form-checkbox__check .e-icon {
    opacity: 0;
    transition: all .2s ease;
    transform: scale(.5)
}

.e-form-checkbox__check .e-icon svg {
    width: 18px;
    height: 18px
}

.e-form-checkbox__label {
    cursor: pointer;
    flex-grow: 1;
    color: #757575;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 24px
}

.e-form-checkbox__label a {
    color: #2f2f2f;
    text-decoration: underline
}

.e-form-checkbox.checked .e-form-checkbox__check {
    background: #101724;
    border-color: #101724;
    color: #E3242B
}

.e-form-checkbox.checked .e-form-checkbox__check .e-icon {
    opacity: 1;
    transform: scale(1)
}

.e-form-checkbox.has-error .e-form-checkbox__label {
    color: #e25043
}

.e-form-checkbox.disabled {
    color: #a1a1a1
}

.e-form-checkbox.disabled .e-form-checkbox__check {
    background: #f2f1f0;
    border-color: #f2f1f0;
    cursor: default
}

.e-form-checkbox.disabled .e-form-checkbox__label {
    cursor: default
}

.e-form-checkbox__wrapper.bordered {
    border: 1px solid #e3e3e3;
    padding: 16px
}

.e-form-checkbox__wrapper.bordered .e-site-accordion {
    border-color: #e3e3e3;
    border-bottom-width: 0;
    padding: 0 8px
}

.e-form-checkbox.switch-like {
    margin-bottom: 0
}

.e-form-checkbox.switch-like .e-form-checkbox__main {
    flex-direction: row-reverse
}

.e-form-checkbox.switch-like .e-form-checkbox__label {
    color: #000
}

.e-form-checkbox.switch-like .e-form-checkbox__check {
    width: 54px;
    height: 27px;
    background-image: radial-gradient(53.07% 79.17% at 50% 100%, rgba(95, 95, 95, .6) 0, rgba(46, 46, 46, .8) 100%);
    background-color: transparent;
    background-repeat: no-repeat;
    position: relative;
    border: 1px solid #4f4f4f;
    border-radius: 13.5px
}

.e-form-checkbox.switch-like .e-form-checkbox__check .e-icon {
    width: 22.5px;
    height: 22.5px;
    border-radius: 100%;
    background: #f2f1f0;
    position: absolute;
    left: 2px;
    top: 50%;
    transition: all .2s cubic-bezier(.38, .015, 0, .995);
    opacity: 1;
    transform: scale(1) translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center
}

.e-form-checkbox.switch-like .e-form-checkbox__check .e-icon svg {
    height: 14px;
    color: #000;
    opacity: 0;
    transition: all .2s cubic-bezier(.38, .015, 0, .995)
}

.e-form-checkbox.switch-like.checked .e-form-checkbox__check .e-icon {
    left: 28.5px;
    background-image: linear-gradient(40deg, #fff200 35.92%, #fcff6a 93.86%);
    filter: drop-shadow(0 4.5px 6.75px rgba(0, 0, 0, .25))
}

.e-form-checkbox.switch-like.checked .e-form-checkbox__check .e-icon svg {
    opacity: 1
}

.e-form-checkbox.switch-like+.e-form-checkbox.switch-like {
    background: #E3242B
}

.e-form-checkbox.switch-like+.e-form-checkbox.switch-like .e-form-checkbox__wrapper {
    border-top-width: 0 !important
}

.s-dynamic-form__item.switch+.s-dynamic-form__item.switch .e-form-checkbox .e-form-checkbox__wrapper.bordered {
    border-top-width: 0
}

.e-check-list {
    position: relative;
    padding-bottom: 40px
}

.e-check-list__label {
    margin-bottom: 20px
}

.e-check-list__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 20px;
    grid-column-gap: 20px
}

.e-check-list__error-box {
    height: 40px;
    padding-top: 8px;
    text-align: end
}

.e-check-list__error-msg {
    font-size: 12px;
    color: #e25043
}

.e-check-list.has-error .e-check-list__label {
    color: #e25043
}

.e-check-list.has-error .e-check-list__label * {
    color: #e25043 !important
}

.e-ct-selector__options {
    display: flex
}

.e-ct-selector__option {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid #b8b8b8;
    padding: 16px 24px;
    cursor: pointer;
    transition: all .2s cubic-bezier(.38, .015, 0, .995);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.e-ct-selector__option:not(:first-child) {
    border-left: none
}

.e-ct-selector__option .e-icon {
    color: #E3242B;
    filter: drop-shadow(0 0 12px #E3242B);
    transition: all .2s cubic-bezier(.055, .215, 0, 1)
}

.e-ct-selector__option.active {
    border-color: #000;
    background: radial-gradient(85.19% 85.19% at 50.83% 0, rgba(46, 46, 46, .8) 0, #000 100%);
    color: #fff
}

@media(min-width:1200px) {
    .e-ct-selector__options {
        row-gap: 8px;
        flex-wrap: wrap
    }

    .e-ct-selector__option {
        flex-basis: fit-content;
        flex-grow: unset;
        min-width: 150px
    }
}

.e-c-type-selector__label[data-v-5786278b] {
    display: block;
    color: #757575;
    margin-bottom: 16px
}

.e-c-type-selector__items[data-v-5786278b] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 60px
}

.e-c-type-selector__item[data-v-5786278b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 16px 12px 16px;
    border: 1px solid #b8b8b8;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all .2s cubic-bezier(.055, .215, 0, 1)
}

.e-c-type-selector__item .e-icon[data-v-5786278b] {
    margin-bottom: 8px;
    color: #E3242B;
    filter: drop-shadow(0 0 12px #E3242B);
    opacity: 0;
    transition: all .2s cubic-bezier(.055, .215, 0, 1)
}

.e-c-type-selector__item.active[data-v-5786278b] {
    border-color: #000;
    background: radial-gradient(85.19% 85.19% at 50.83% 0, rgba(46, 46, 46, .8) 0, #000 100%);
    color: #fff
}

.e-c-type-selector__item.active .e-icon[data-v-5786278b] {
    opacity: 1
}

.e-c-type-selector__item+.e-c-type-selector__item[data-v-5786278b] {
    border-left-width: 0
}

.e-c-type-selector__item.disabled[data-v-5786278b] {
    background-color: rgba(75, 75, 75, .3);
    cursor: not-allowed
}

.e-icon {
    font-size: 0;
    letter-spacing: -3px;
    vertical-align: middle
}

.e-icon,
.e-icon>svg {
    display: inline-block
}

.e-icon>svg {
    fill: currentColor;
    width: auto
}

.e-icon.size-xs,
.e-icon.size-xs>svg {
    height: 12px
}

.e-icon.size-small,
.e-icon.size-small>svg,
.e-icon.size-tiny,
.e-icon.size-tiny>svg {
    height: 16px
}

.e-icon.size-l,
.e-icon.size-l>svg {
    height: 18px
}

.e-icon.size-xl,
.e-icon.size-xl>svg {
    height: 20px
}

.e-icon.size-large,
.e-icon.size-large>svg {
    height: 28px
}

.e-icon.size-large-x,
.e-icon.size-large-x>svg {
    height: 30px
}

.e-icon.size-auto>svg {
    width: 100%;
    height: 100%
}

.e-icon.not-fill>svg {
    fill: none
}

@media(min-width:1200px) {

    .e-icon.size-tiny,
    .e-icon.size-tiny>svg {
        height: 16px
    }

    .e-icon.size-small,
    .e-icon.size-small>svg {
        height: 24px
    }

    .e-icon.size-large,
    .e-icon.size-large>svg {
        height: 40px
    }

    .e-icon.size-large-x,
    .e-icon.size-large-x>svg {
        height: 56px
    }
}

.e-site-button {
    width: -moz-fit-content;
    width: fit-content;
    height: 56px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    gap: 8px;
    border: 1px solid transparent;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    color: currentColor;
    background: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 24px;
    transition-timing-function: cubic-bezier(.38, .015, 0, .995)
}

.e-site-button__text {
    line-height: 1;
    padding-top: 2px
}

.e-site-button__icon {
    transition-timing-function: cubic-bezier(.38, .015, 0, .995)
}

.e-site-button__icon svg {
    height: 16px
}

.e-site-button.primary-button {
    border-color: #E3242B;
    background-color: #E3242B;
    color: #000;
    padding: 0 24px 0 48px;
    transition: background-color .3s
}

.e-site-button.primary-button .e-site-button__icon {
    opacity: 1;
    transform: translateX(0)
}

.e-site-button.primary-button:focus {
    background-color: #f5e900
}

.e-site-button.primary-button.with-ani .e-site-button__icon {
    opacity: 0;
    transition: opacity .3s, transform .3s
}

.e-site-button.primary-button.with-ani:hover {
    background-color: #f5e900
}

.e-site-button.primary-button.with-ani:hover .e-site-button__icon {
    opacity: 1;
    transform: translateX(8px)
}

.e-site-button.primary-button.with-ani:hover.reverse .e-site-button__icon {
    transform: rotate(180deg) translateX(8px)
}

.e-site-button.primary-button.theme-white {
    color: #000
}

.e-site-button.primary-button.theme-white.disabled {
    border-color: #f2f1f0 !important;
    background: #f2f1f0 !important;
    color: hsla(0, 0%, 45.9%, .3) !important
}

.e-site-button.primary-button.theme-black {
    color: #000
}

.e-site-button.primary-button.theme-black.disabled {
    border-color: #f2f1f0 !important;
    background: #f2f1f0 !important;
    color: hsla(0, 0%, 45.9%, .3) !important
}

.e-site-button.secondary-button {
    padding: 0 24px 0 48px;
    transition: color .3s, border-color .3s
}

.e-site-button.secondary-button .e-site-button__icon {
    opacity: 1;
    transform: translateX(0)
}

.e-site-button.secondary-button.theme-black {
    border-color: #000;
    color: #000
}

.e-site-button.secondary-button.theme-white {
    border-color: #fff;
    color: #fff
}

.e-site-button.secondary-button.with-ani .e-site-button__icon {
    opacity: 0;
    transition: opacity .3s, transform .3s
}

.e-site-button.secondary-button.with-ani:hover .e-site-button__icon {
    opacity: 1;
    transform: translateX(8px)
}

.e-site-button.secondary-button.with-ani:hover.reverse .e-site-button__icon {
    transform: rotate(180deg) translateX(8px)
}

.e-site-button.secondary-button.disabled {
    border-color: #757575 !important;
    color: #757575 !important
}

.e-site-button.tertiary-button {
    padding: 0;
    border-color: transparent;
    gap: 8px;
    justify-content: flex-start;
    transition: color .3s
}

.e-site-button.tertiary-button.theme-black {
    color: #000
}

.e-site-button.tertiary-button.theme-white {
    color: #fff
}

.e-site-button.tertiary-button.theme-white:hover {
    color: #f5e900
}

.e-site-button.tertiary-button .e-site-button__icon {
    transform: translateX(0)
}

.e-site-button.tertiary-button.with-ani .e-site-button__icon {
    transition: transform .3s
}

.e-site-button.tertiary-button.with-ani:hover .e-site-button__icon {
    transform: translateX(8px)
}

.e-site-button.tertiary-button.with-ani:hover.reverse .e-site-button__icon {
    transform: rotate(180deg) translateX(8px)
}

.e-site-button.tertiary-button.disabled {
    color: hsla(0, 0%, 45.9%, .3) !important
}

.e-site-button.reverse {
    gap: 8px
}

.e-site-button.reverse .e-site-button__text {
    order: 2
}

.e-site-button.reverse.primary-button .e-site-button__icon,
.e-site-button.reverse.secondary-button .e-site-button__icon,
.e-site-button.reverse.tertiary-button .e-site-button__icon {
    opacity: 1;
    transform: rotate(180deg) translateX(0)
}

.e-site-button.size-small {
    height: 40px;
    font-size: 12px;
    line-height: 1;
    gap: 4px
}

.e-site-button.size-.primary-button,
.e-site-button.size-.secondary-button {
    padding: 0 12px 0 28px
}

.e-site-button.size-.tertiary-button {
    gap: 8px
}

.e-site-button.loading {
    padding: 0 48px
}

.e-site-button.loading.size-small {
    padding: 0 28px
}

.e-site-button.fullWidthOnMobile {
    width: 100%
}

@media(min-width:992px) {
    .e-site-button.fullWidthOnMobile {
        width: -moz-fit-content;
        width: fit-content
    }
}

@media(min-width:1200px) {
    .e-site-button.tertiary-button {
        gap: 8px
    }

    .e-site-button.tertiary-button .e-site-button__icon {
        opacity: 1
    }

    .e-site-button.size-small {
        gap: 4px
    }

    .e-site-button.size-small .e-site-button__icon svg {
        width: 12px;
        height: 12px
    }

    .e-site-button.size-small.tertiary-button {
        gap: 8px
    }

    .e-site-button.reverse .e-site-button__icon {
        opacity: 1
    }

    .e-site-button.reverse.primary-button,
    .e-site-button.reverse.secondary-button {
        padding: 0 48px 0 24px
    }

    .e-site-button.reverse.size-small.primary-button,
    .e-site-button.reverse.size-small.secondary-button {
        padding: 0 28px 0 12px
    }

    .e-site-button.reverse.loading {
        padding: 0 48px
    }

    .e-site-button.reverse.loading.size-small {
        padding: 0 28px
    }
}

html.rtl .e-site-button {
    direction: rtl
}

html.rtl .e-site-button__icon {
    transform: rotate(180deg) translateX(0)
}

html.rtl .e-site-button.primary-button,
html.rtl .e-site-button.secondary-button {
    padding: 0 24px 0 48px
}

html.rtl .e-site-button.size-small.primary-button,
html.rtl .e-site-button.size-small.secondary-button {
    padding: 0 12px 0 28px
}

html.rtl .e-site-button.reverse.primary-button,
html.rtl .e-site-button.reverse.secondary-button {
    padding: 0 48px 0 24px
}

html.rtl .e-site-button.reverse.size-small.primary-button,
html.rtl .e-site-button.reverse.size-small.secondary-button {
    padding: 0 28px 0 12px
}

html.rtl .e-site-button.reverse.loading {
    padding: 0 48px
}

html.rtl .e-site-button.reverse.loading.size-small {
    padding: 0 28px
}

.e-menu-button {
    display: inline-flex;
    padding: 12px 30px;
    font-size: 12px;
    cursor: pointer;
    justify-content: center;
    align-items: center
}

.e-menu-button .e-spinner {
    opacity: .7
}

.e-menu-button.primary-button {
    background: #E3242B;
    border: 1px solid #E3242B;
    color: #000
}

.e-menu-button.primary-button.theme-light {
    background: #fff;
    border-color: #fff;
    color: #000
}

.e-menu-button.primary-button.theme-dark {
    background: #000;
    border-color: #000;
    color: #fff
}

.e-menu-button.primary-button.disabled {
    background-color: #f2f1f0;
    border-color: #f2f1f0;
    color: #757575
}

.e-menu-button.secondary-button {
    border: 1px solid #000;
    background: transparent;
    color: #000
}

.e-menu-button.secondary-button.theme-yellow {
    border-color: #E3242B;
    color: #E3242B
}

.e-menu-button.secondary-button.theme-light {
    border-color: #fff;
    color: #fff
}

.e-menu-button.secondary-button.theme-dark {
    border-color: #000;
    color: #000
}

.e-menu-button.secondary-button.disabled {
    background-color: #f2f1f0;
    border-color: #f2f1f0;
    color: #757575
}

.e-back-button.e-site-button .e-site-button__text {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px
}

.e-rich-text.has-link-animation a[href] {
    display: inline-block;
    text-decoration: underline;
    position: relative;
    box-shadow: inset 0 0 0 0 #E3242B;
    transition: all .6s cubic-bezier(.355, .005, .26, 1)
}

.e-rich-text.has-link-animation a[href]:hover {
    box-shadow: inset 500px 0 0 0 #E3242B;
    color: #000
}

.e-rich-text h1,
.e-rich-text h2,
.e-rich-text h3,
.e-rich-text h4,
.e-rich-text h5,
.e-rich-text h6 {
    margin: 0
}

.e-video-player {
    position: relative;
    height: 100%
}

.e-video-player.has-animation {
    overflow: hidden
}

.e-video-player.has-animation:before {
    content: "";
    display: block;
    height: 100%;
    background: rgba(16, 23, 36, .9);
    box-shadow: 0 2px 2px #101724;
    transition: all 1s linear
}

.e-video-player.has-animation.in-screen:before {
    height: 0
}

.e-video-player .vjs-poster {
    background-size: cover;
    background-position: 50%;
    background-color: transparent
}

.e-video-player__content {
    position: absolute;
    top: 0;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: 1
}

.e-video-player__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    margin-left: -25px;
    margin-top: -25px;
    background: rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: btn-fadeout .5s linear 1 normal forwards
}

.e-video-player .video-js {
    width: 100%;
    height: 100%
}

.e-video-player .video-js .vjs-loading-spinner {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border: 0;
    border-radius: 50px
}

.e-video-player .video-js .vjs-loading-spinner:after,
.e-video-player .video-js .vjs-loading-spinner:before {
    display: none !important
}

.e-video-player .video-js .vjs-big-play-button {
    display: none
}

.e-video-player .video-js video {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.e-video-player .video-js .vjs-control-bar .vjs-volume-panel {
    right: 54px !important
}

.e-video-player .video-js .vjs-control-bar .vjs-volume-panel .vjs-volume-control .vjs-control .vjs-volume-horizontal {
    display: none
}

.e-video-player .video-js .vjs-control-bar:after {
    width: 100%;
    height: 80px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, .6), transparent)
}

.e-video-player .video-js .vjs-control-bar .vjs-button>.vjs-icon-placeholder:before {
    font-size: 2.4em;
    line-height: 1.26
}

.e-video-player .video-js button {
    font-size: 10px !important
}

.e-video-player.disable-fullscreen .vjs-fullscreen-control,
.e-video-player.disable-unmute .vjs-volume-panel {
    display: none !important
}

@media(min-width:992px) {
    .e-video-player .video-js .vjs-control-bar .vjs-volume-panel {
        right: 80px !important
    }

    .e-video-player .video-js .vjs-control-bar:after {
        height: 160px
    }

    .e-video-player .video-js .vjs-control-bar .vjs-button>.vjs-icon-placeholder:before {
        font-size: 3.2em;
        line-height: .9
    }

    .e-video-player .video-js video {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center
    }
}

@keyframes btn-fadeout {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: scale(2)
    }
}

.e-video-player-v2 {
    position: relative;
    height: 100%
}

.e-video-player-v2.has-animation {
    overflow: hidden
}

.e-video-player-v2.has-animation:before {
    content: "";
    display: block;
    height: 100%;
    background: rgba(16, 23, 36, .9);
    box-shadow: 0 2px 2px #101724;
    transition: all 1s linear
}

.e-video-player-v2.has-animation.in-screen:before {
    opacity: 0
}

.e-video-player-v2 .vjs-poster {
    background-size: cover;
    background-position: 50%;
    background-color: transparent
}

.e-video-player-v2__content {
    position: absolute;
    top: 0;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: 1
}

.e-video-player-v2__play-btn {
    position: absolute;
    bottom: 48px;
    right: 48px;
    z-index: 1;
    cursor: pointer
}

.e-video-player-v2__play-btn .e-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: transparent
}

.e-video-player-v2__play-btn.full {
    bottom: 50%;
    right: 50%;
    transform: translate3d(50%, 50%, 0)
}

.e-video-player-v2 .video-js {
    width: 100%;
    height: 100%
}

.e-video-player-v2 .video-js .vjs-loading-spinner {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border: 0;
    border-radius: 50px
}

.e-video-player-v2 .video-js .vjs-loading-spinner:after,
.e-video-player-v2 .video-js .vjs-loading-spinner:before {
    display: none !important
}

.e-video-player-v2 .video-js .vjs-big-play-button {
    display: none
}

.e-video-player-v2 .video-js video {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.e-video-player-v2 .video-js .vjs-control-bar {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    z-index: 3;
    background-color: transparent
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-play-control {
    display: none;
    position: absolute;
    top: 0;
    left: 32px
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-play-control .vjs-icon-placeholder {
    width: 25px;
    height: 25px;
    overflow: hidden
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-play-control .vjs-icon-placeholder:before {
    content: none
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-play-control .vjs-icon-placeholder>svg {
    transform: translate(calc(-50% + 13px), calc(-50% + 12px))
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-current-time {
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    top: 0;
    left: 20px;
    display: block
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-time-divider {
    position: absolute;
    top: 0;
    left: 50px;
    display: inline-block
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-duration {
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    top: 0;
    left: 60px;
    display: inline-block
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-volume-panel {
    width: 40px;
    position: absolute;
    top: 0;
    right: 54px
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-volume-panel .vjs-mute-control .vjs-icon-placeholder {
    width: 26px;
    height: 26px;
    overflow: hidden
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-volume-panel .vjs-mute-control .vjs-icon-placeholder:before {
    content: none
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-volume-panel .vjs-mute-control .vjs-icon-placeholder>svg {
    transform: translate(calc(-50% + 13px), calc(-50% + 13px))
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-fullscreen-control {
    position: absolute;
    top: 0;
    right: 12px;
    width: 25px;
    height: 25px;
    overflow: hidden
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-fullscreen-control:before {
    content: none
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-fullscreen-control>svg {
    transform: translate(calc(-50% + 13px), calc(-50% + 12px))
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-progress-control {
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: -8px;
    left: 0
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-progress-control .vjs-progress-holder {
    height: 2px;
    width: 100%;
    margin: 0;
    background-color: hsla(0, 0%, 100%, .3)
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-progress-control .vjs-progress-holder .vjs-play-progress {
    background-color: #E3242B
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-progress-control .vjs-progress-holder .vjs-play-progress:before {
    color: #E3242B;
    top: -.2em;
    opacity: 0
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-progress-control .vjs-progress-holder .vjs-load-progress {
    background: hsla(0, 0%, 100%, .5)
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-progress-control:hover,
.e-video-player-v2 .video-js .vjs-control-bar .vjs-progress-control:hover .vjs-progress-holder {
    height: 5px
}

.e-video-player-v2 .video-js .vjs-control-bar .vjs-progress-control:hover .vjs-progress-holder .vjs-play-progress:before {
    opacity: 1
}

.e-video-player-v2 .video-js .vjs-control-bar:after {
    content: "";
    width: 100%;
    height: 80px;
    position: absolute;
    bottom: -12px;
    left: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(0, 0, 0, .6), transparent)
}

.e-video-player-v2 .video-js .vjs-control.vjs-button>.vjs-icon-placeholder:before {
    font-size: 2.4em;
    line-height: 1.26
}

.e-video-player-v2.disable-fullscreen .vjs-fullscreen-control,
.e-video-player-v2.disable-unmute .vjs-volume-panel {
    display: none !important
}

@media(min-width:992px) {
    .e-video-player-v2__play-btn {
        transition: all .8s cubic-bezier(.075, .82, .165, 1)
    }

    .e-video-player-v2__play-btn .e-icon {
        width: 131px;
        height: 131px
    }

    .e-video-player-v2__play-btn:hover .e-icon {
        transform: scale(1.2)
    }

    .e-video-player-v2 .video-js .vjs-control-bar {
        animation: fade-out 4s linear forwards
    }

    .e-video-player-v2 .video-js .vjs-control-bar .vjs-play-control {
        position: absolute;
        top: 0;
        left: 32px;
        display: block
    }

    .e-video-player-v2 .video-js .vjs-control-bar .vjs-current-time {
        width: -moz-fit-content;
        width: fit-content;
        position: absolute;
        top: 0;
        left: 66px;
        display: block
    }

    .e-video-player-v2 .video-js .vjs-control-bar .vjs-time-divider {
        position: absolute;
        top: 0;
        left: 96px;
        display: inline-block
    }

    .e-video-player-v2 .video-js .vjs-control-bar .vjs-duration {
        width: -moz-fit-content;
        width: fit-content;
        position: absolute;
        top: 0;
        left: 106px;
        display: inline-block
    }

    .e-video-player-v2 .video-js .vjs-control-bar .vjs-volume-panel {
        width: 40px;
        position: absolute;
        top: 0;
        right: 140px;
        display: flex
    }

    .e-video-player-v2 .video-js .vjs-control-bar .vjs-volume-panel .vjs-volume-horizontal {
        width: 50px;
        opacity: 1
    }

    .e-video-player-v2 .video-js .vjs-control-bar .vjs-fullscreen-control {
        position: absolute;
        top: 0;
        right: 32px
    }

    .e-video-player-v2 .video-js .vjs-control-bar:after {
        height: 160px
    }

    .e-video-player-v2 .video-js .vjs-control.vjs-button>.vjs-icon-placeholder:before {
        font-size: 3.2em;
        line-height: .9
    }

    .e-video-player-v2 .video-js video {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center
    }

    .e-video-player-v2:hover .video-js .vjs-control-bar {
        display: flex;
        animation: fade-in .2s linear forwards
    }
}

@keyframes fade-out {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.e-modal {
    position: fixed;
    z-index: 12;
    display: flex;
    justify-content: center;
    align-items: center
}

.e-modal,
.e-modal__mask {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.e-modal__mask {
    position: absolute;
    background: rgba(0, 0, 0, .5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0
}

.e-modal__content {
    max-height: 100%;
    overflow-y: auto;
    transform: translateY(100%);
    position: relative
}

.e-modal__content,
.e-modal__content.theme-white {
    background: #fff;
    color: #000
}

.e-modal__content.theme-light-grey {
    background: #f2f1f0;
    color: #000
}

.e-modal__content.theme-neutral-grey {
    background: #4f4f4f;
    color: #fff
}

.e-modal__content.theme-yellow {
    background: #E3242B;
    color: #000
}

.e-modal__content.theme-night-blue {
    background: #101724;
    color: #E3242B
}

.e-modal__content.theme-black {
    background: #000;
    color: #fff
}

.e-modal__content.theme-black .active {
    color: #fff
}

.e-modal__content.theme-yellow-white {
    background-image: linear-gradient(180deg, #E3242B, #fff 60%);
    color: #000
}

.e-modal__content.theme-white-yellow {
    background-image: linear-gradient(180deg, #fff, #E3242B 60%);
    color: #000
}

.e-modal__content.hasLabel {
    overflow: initial
}

.e-modal__close {
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    color: currentColor
}

.e-modal__close .e-icon svg {
    width: 20px;
    height: 20px
}

.e-modal__close-label {
    position: absolute;
    top: 0;
    right: 0;
    width: -moz-fit-content;
    width: fit-content;
    padding: 12px 32px;
    transform: translateY(-100%);
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer
}

.e-modal__close-label-text {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px
}

.e-modal.ani-right-skew-in {
    justify-content: flex-end
}

.e-modal.ani-right-skew-in .e-modal__content {
    width: 100%;
    transform: translate(150%)
}

.e-modal.ani-left-slide-in {
    justify-content: flex-start
}

.e-modal.ani-left-slide-in .e-modal__close {
    top: 32px;
    right: 28px
}

.e-modal.ani-left-slide-in .e-modal__content {
    height: 100vh;
    width: 100%;
    padding-top: 96px
}

.e-modal.ani-right-slide-in {
    justify-content: flex-end
}

.e-modal.ani-right-slide-in .e-modal__close {
    top: 32px;
    right: 28px
}

.e-modal.ani-right-slide-in .e-modal__content {
    height: 100vh;
    width: 100%;
    padding-top: 96px
}

@media(min-width:992px) {
    .e-modal__close {
        top: 20px;
        right: 20px
    }

    .e-modal__close-label {
        top: 52px;
        right: -102px;
        transform: rotate(-90deg)
    }

    .e-modal__content {
        width: calc(83.33333vw + 6.66667px)
    }

    .e-modal.ani-left-slide-in .e-modal__content,
    .e-modal.ani-right-slide-in .e-modal__content {
        width: calc(33.33333vw + 2.66667px);
        min-width: 500px;
        max-width: 595px
    }

    .e-modal.ani-right-skew-in {
        justify-content: flex-end
    }

    .e-modal.ani-right-skew-in .e-modal__content {
        width: calc(41.66667vw + 3.33333px);
        transform: translate(150%)
    }
}

.e-tag {
    width: 30px;
    height: 30px
}

.e-tag.overall-pd-top-tiny {
    padding-top: 16px
}

@media(min-width:768px) {
    .e-tag.overall-pd-top-tiny {
        padding-top: 20px
    }
}

@media(min-width:992px) {
    .e-tag.overall-pd-top-tiny {
        padding-top: 30px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-pd-top-tiny {
        padding-top: 30px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-pd-top-tiny {
        padding-top: 40px
    }
}

.e-tag.overall-pd-bottom-tiny {
    padding-bottom: 16px
}

@media(min-width:768px) {
    .e-tag.overall-pd-bottom-tiny {
        padding-bottom: 20px
    }
}

@media(min-width:992px) {
    .e-tag.overall-pd-bottom-tiny {
        padding-bottom: 30px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-pd-bottom-tiny {
        padding-bottom: 30px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-pd-bottom-tiny {
        padding-bottom: 40px
    }
}

.e-tag.overall-pd-top-small {
    padding-top: 20px
}

@media(min-width:768px) {
    .e-tag.overall-pd-top-small {
        padding-top: 30px
    }
}

@media(min-width:992px) {
    .e-tag.overall-pd-top-small {
        padding-top: 40px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-pd-top-small {
        padding-top: 40px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-pd-top-small {
        padding-top: 60px
    }
}

.e-tag.overall-pd-bottom-small {
    padding-bottom: 20px
}

@media(min-width:768px) {
    .e-tag.overall-pd-bottom-small {
        padding-bottom: 30px
    }
}

@media(min-width:992px) {
    .e-tag.overall-pd-bottom-small {
        padding-bottom: 40px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-pd-bottom-small {
        padding-bottom: 40px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-pd-bottom-small {
        padding-bottom: 60px
    }
}

.e-tag.overall-pd-top-normal {
    padding-top: 40px
}

@media(min-width:768px) {
    .e-tag.overall-pd-top-normal {
        padding-top: 60px
    }
}

@media(min-width:992px) {
    .e-tag.overall-pd-top-normal {
        padding-top: 80px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-pd-top-normal {
        padding-top: 100px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-pd-top-normal {
        padding-top: 120px
    }
}

.e-tag.overall-pd-bottom-normal {
    padding-bottom: 40px
}

@media(min-width:768px) {
    .e-tag.overall-pd-bottom-normal {
        padding-bottom: 60px
    }
}

@media(min-width:992px) {
    .e-tag.overall-pd-bottom-normal {
        padding-bottom: 80px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-pd-bottom-normal {
        padding-bottom: 100px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-pd-bottom-normal {
        padding-bottom: 120px
    }
}

.e-tag.overall-pd-top-large {
    padding-top: 60px
}

@media(min-width:768px) {
    .e-tag.overall-pd-top-large {
        padding-top: 80px
    }
}

@media(min-width:992px) {
    .e-tag.overall-pd-top-large {
        padding-top: 100px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-pd-top-large {
        padding-top: 120px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-pd-top-large {
        padding-top: 180px
    }
}

.e-tag.overall-pd-bottom-large {
    padding-bottom: 60px
}

@media(min-width:768px) {
    .e-tag.overall-pd-bottom-large {
        padding-bottom: 80px
    }
}

@media(min-width:992px) {
    .e-tag.overall-pd-bottom-large {
        padding-bottom: 100px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-pd-bottom-large {
        padding-bottom: 120px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-pd-bottom-large {
        padding-bottom: 180px
    }
}

.e-tag.overall-pd-top-huge {
    padding-top: 140px
}

@media(min-width:768px) {
    .e-tag.overall-pd-top-huge {
        padding-top: 140px
    }
}

@media(min-width:992px) {
    .e-tag.overall-pd-top-huge {
        padding-top: 180px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-pd-top-huge {
        padding-top: 210px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-pd-top-huge {
        padding-top: 280px
    }
}

.e-tag.overall-pd-bottom-huge {
    padding-bottom: 140px
}

@media(min-width:768px) {
    .e-tag.overall-pd-bottom-huge {
        padding-bottom: 140px
    }
}

@media(min-width:992px) {
    .e-tag.overall-pd-bottom-huge {
        padding-bottom: 180px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-pd-bottom-huge {
        padding-bottom: 210px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-pd-bottom-huge {
        padding-bottom: 280px
    }
}

.e-tag.overall-mg-top-overlap {
    margin-top: -40px
}

@media(min-width:768px) {
    .e-tag.overall-mg-top-overlap {
        margin-top: -60px
    }
}

@media(min-width:992px) {
    .e-tag.overall-mg-top-overlap {
        margin-top: -80px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-mg-top-overlap {
        margin-top: -100px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-mg-top-overlap {
        margin-top: -120px
    }
}

.e-tag.overall-mg-bottom-overlap {
    margin-bottom: -40px
}

@media(min-width:768px) {
    .e-tag.overall-mg-bottom-overlap {
        margin-bottom: -60px
    }
}

@media(min-width:992px) {
    .e-tag.overall-mg-bottom-overlap {
        margin-bottom: -80px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-mg-bottom-overlap {
        margin-bottom: -100px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-mg-bottom-overlap {
        margin-bottom: -120px
    }
}

.e-tag.overall-mg-top-small {
    margin-top: 20px
}

@media(min-width:768px) {
    .e-tag.overall-mg-top-small {
        margin-top: 30px
    }
}

@media(min-width:992px) {
    .e-tag.overall-mg-top-small {
        margin-top: 40px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-mg-top-small {
        margin-top: 40px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-mg-top-small {
        margin-top: 60px
    }
}

.e-tag.overall-mg-bottom-small {
    margin-bottom: 20px
}

@media(min-width:768px) {
    .e-tag.overall-mg-bottom-small {
        margin-bottom: 30px
    }
}

@media(min-width:992px) {
    .e-tag.overall-mg-bottom-small {
        margin-bottom: 40px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-mg-bottom-small {
        margin-bottom: 40px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-mg-bottom-small {
        margin-bottom: 60px
    }
}

.e-tag.overall-mg-top-normal {
    margin-top: 40px
}

@media(min-width:768px) {
    .e-tag.overall-mg-top-normal {
        margin-top: 60px
    }
}

@media(min-width:992px) {
    .e-tag.overall-mg-top-normal {
        margin-top: 80px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-mg-top-normal {
        margin-top: 100px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-mg-top-normal {
        margin-top: 120px
    }
}

.e-tag.overall-mg-bottom-normal {
    margin-bottom: 40px
}

@media(min-width:768px) {
    .e-tag.overall-mg-bottom-normal {
        margin-bottom: 60px
    }
}

@media(min-width:992px) {
    .e-tag.overall-mg-bottom-normal {
        margin-bottom: 80px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-mg-bottom-normal {
        margin-bottom: 100px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-mg-bottom-normal {
        margin-bottom: 120px
    }
}

.e-tag.overall-mg-top-large {
    margin-top: 60px
}

@media(min-width:768px) {
    .e-tag.overall-mg-top-large {
        margin-top: 80px
    }
}

@media(min-width:992px) {
    .e-tag.overall-mg-top-large {
        margin-top: 100px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-mg-top-large {
        margin-top: 120px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-mg-top-large {
        margin-top: 180px
    }
}

.e-tag.overall-mg-bottom-large {
    margin-bottom: 60px
}

@media(min-width:768px) {
    .e-tag.overall-mg-bottom-large {
        margin-bottom: 80px
    }
}

@media(min-width:992px) {
    .e-tag.overall-mg-bottom-large {
        margin-bottom: 100px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-mg-bottom-large {
        margin-bottom: 120px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-mg-bottom-large {
        margin-bottom: 180px
    }
}

.e-tag.overall-mg-top-huge {
    margin-top: 140px
}

@media(min-width:768px) {
    .e-tag.overall-mg-top-huge {
        margin-top: 140px
    }
}

@media(min-width:992px) {
    .e-tag.overall-mg-top-huge {
        margin-top: 180px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-mg-top-huge {
        margin-top: 210px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-mg-top-huge {
        margin-top: 280px
    }
}

.e-tag.overall-mg-bottom-huge {
    margin-bottom: 140px
}

@media(min-width:768px) {
    .e-tag.overall-mg-bottom-huge {
        margin-bottom: 140px
    }
}

@media(min-width:992px) {
    .e-tag.overall-mg-bottom-huge {
        margin-bottom: 180px
    }
}

@media(min-width:1200px) {
    .e-tag.overall-mg-bottom-huge {
        margin-bottom: 210px
    }
}

@media(min-width:1600px) {
    .e-tag.overall-mg-bottom-huge {
        margin-bottom: 280px
    }
}

.e-tag.theme-white {
    background: #fff;
    color: #000
}

.e-tag.theme-light-grey {
    background: #f2f1f0;
    color: #000
}

.e-tag.theme-neutral-grey {
    background: #4f4f4f;
    color: #fff
}

.e-tag.theme-yellow {
    background: #E3242B;
    color: #000
}

.e-tag.theme-night-blue {
    background: #101724;
    color: #E3242B
}

.e-tag.theme-black {
    background: #000;
    color: #fff
}

.e-tag.theme-black .active {
    color: #fff
}

.e-tag.theme-yellow-white {
    background-image: linear-gradient(180deg, #E3242B, #fff 60%);
    color: #000
}

.e-tag.theme-white-yellow {
    background-image: linear-gradient(180deg, #fff, #E3242B 60%);
    color: #000
}

@media(min-width:992px) {
    .e-tag {
        width: 40px;
        height: 40px
    }
}

.e-tag__text {
    font-size: 14px;
    line-height: 1.3
}

@media(min-width:1200px) {
    .e-tag__text {
        font-size: 16px;
        line-height: 1.5
    }
}

.e-radio-list__overline {
    margin-bottom: 16px
}

.e-radio-list__label {
    margin-bottom: 20px
}

.e-radio-list__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 20px;
    grid-column-gap: 20px
}

.e-radio-list__item {
    display: flex;
    align-items: center;
    gap: 16px
}

.e-radio-list__item-label {
    padding-top: 1px
}

.e-radio-list__item-label.clickable {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer
}

.e-radio-list__error-box {
    height: 40px;
    text-align: end;
    padding-top: 8px
}

.e-radio-list__error-msg {
    color: #e25043;
    font-size: 12px;
    line-height: 1.3
}

@media(min-width:1200px) {
    .e-radio-list__error-msg {
        font-size: 12px;
        line-height: 1.5
    }
}

.e-form-input__wrapper {
    display: flex;
    position: relative
}

.e-form-input__main {
    flex-grow: 1
}

.e-form-input__main-input {
    height: 56px;
    display: flex;
    align-items: center;
    border: 1px solid currentColor;
    padding: 0 15px;
    transition: all .2s linear
}

.e-form-input__title {
    margin-bottom: 24px;
    font-size: 26px;
    font-weight: 500
}

.e-form-input__title:empty {
    display: none
}

.e-form-input__label {
    margin-bottom: 4px
}

.e-form-input__input {
    background: transparent;
    border: none !important;
    outline-width: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    color: currentColor;
    width: 100%;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield
}

.e-form-input__input::-moz-placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

.e-form-input__input:-ms-input-placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

.e-form-input__input::placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

@media(min-width:1200px) {
    .e-form-input__input::-moz-placeholder {
        font-size: 16px;
        line-height: 1.5
    }

    .e-form-input__input:-ms-input-placeholder {
        font-size: 16px;
        line-height: 1.5
    }

    .e-form-input__input::placeholder {
        font-size: 16px;
        line-height: 1.5
    }
}

.e-form-input__input:focus {
    border: none;
    outline: none
}

.e-form-input__input::-webkit-inner-spin-button,
.e-form-input__input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0
}

.e-form-input__desc {
    font-size: 12px;
    color: #757575;
    margin-top: 2px
}

.e-form-input__side {
    margin-left: 16px;
    width: 65px;
    flex-shrink: 0
}

.e-form-input__side .e-site-button {
    width: 100%;
    min-width: auto !important;
    height: 56px !important
}

.e-form-input__side:empty {
    display: none
}

.e-form-input__messages {
    font-size: 12px;
    line-height: 1.3;
    height: 40px;
    padding-top: 8px;
    text-align: end
}

@media(min-width:1200px) {
    .e-form-input__messages {
        font-size: 12px;
        line-height: 1.5
    }
}

.e-form-input__messages .e-icon {
    align-self: center
}

.e-form-input__msg {
    margin-top: 1px
}

.e-form-input__error-msg {
    font-size: 12px;
    color: #e25043;
    display: flex;
    justify-content: flex-end;
    gap: 8px
}

.e-form-input.has-error .e-form-input__main-input {
    border-color: #e25043;
    border-bottom-width: 2px
}

.e-form-input.succeed .e-form-input__main-input {
    border-color: #09c
}

.e-form-input__success-msg {
    color: #16bac5
}

.e-form-input.active .e-form-input__main-input {
    border-color: #2f2f2f
}

.e-form-input.has-icon .e-form-input__main {
    padding: 0
}

.e-form-input.has-icon .e-form-input__input {
    padding-right: 20px
}

.e-form-input__icon {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.e-form-input.reverse.has-icon .e-form-input__main {
    padding-right: 0;
    padding-left: 50px
}

.e-form-input.reverse .e-form-input__icon {
    left: 0;
    right: unset
}

.e-form-input.disabled .e-form-input__main-input {
    background: #f2f1f0;
    border-color: #f2f1f0
}

@media(min-width:992px) {
    .e-form-input__main-input {
        padding: 0 20px
    }

    .e-form-input__side {
        width: 140px
    }
}

.e-form-pick-up__main {
    position: relative
}

.e-form-pick-up__main-input {
    height: 56px;
    display: flex;
    align-items: center;
    border: 1px solid currentColor;
    padding: 0 15px;
    transition: all .2s linear
}

.e-form-pick-up__main-input input {
    background: transparent;
    border: none !important;
    outline-width: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    color: currentColor;
    width: 100%;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield
}

.e-form-pick-up__main-input input::-moz-placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

.e-form-pick-up__main-input input:-ms-input-placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

.e-form-pick-up__main-input input::placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

@media(min-width:1200px) {
    .e-form-pick-up__main-input input::-moz-placeholder {
        font-size: 16px;
        line-height: 1.5
    }

    .e-form-pick-up__main-input input:-ms-input-placeholder {
        font-size: 16px;
        line-height: 1.5
    }

    .e-form-pick-up__main-input input::placeholder {
        font-size: 16px;
        line-height: 1.5
    }
}

.e-form-pick-up__main-input input:focus {
    border: none;
    outline: none
}

.e-form-pick-up__options-wrapper {
    position: absolute;
    top: 55px;
    box-shadow: 0 1px 2px hsla(0, 0%, 100%, .5);
    z-index: 1;
    width: 100%;
    border: 1px solid #000;
    background: #fff
}

.e-form-pick-up__options {
    max-height: 200px;
    overflow-y: auto
}

.e-form-pick-up__option {
    height: 40px;
    line-height: 40px;
    background: #fff;
    color: #000;
    padding: 0 20px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.e-form-pick-up__option.selected {
    background: #000;
    color: #fff
}

.e-form-pick-up__option.placeholder {
    background: #fff;
    color: #a1a1a1
}

.e-form-pick-up__option:empty {
    display: none
}

.e-form-pick-up__option:hover {
    font-weight: 700
}

.e-form-pick-up__unmatched {
    height: 40px;
    line-height: 40px;
    background: #fff;
    color: #4f4f4f;
    padding: 0 20px
}

.e-form-pick-up__messages {
    font-size: 12px;
    line-height: 1.3;
    height: 40px;
    padding-top: 8px;
    text-align: end
}

@media(min-width:1200px) {
    .e-form-pick-up__messages {
        font-size: 12px;
        line-height: 1.5
    }
}

.e-form-pick-up__messages .e-icon {
    align-self: center
}

.e-form-pick-up__error-msg {
    font-size: 12px;
    color: #e25043;
    display: flex;
    justify-content: flex-end;
    gap: 8px
}

.e-form-pick-up.has-error .e-form-pick-up__main {
    border-color: #e25043;
    border-bottom-width: 2px
}

.e-form-pick-up.focus {
    z-index: 1
}

.e-form-textarea__wrapper {
    display: flex;
    align-items: center;
    position: relative
}

.e-form-textarea__main {
    flex-grow: 1;
    border: 1px solid currentColor;
    transition: all .2s linear
}

.e-form-textarea__limit {
    display: flex;
    padding-right: 15px;
    padding-bottom: 10px;
    justify-content: flex-end
}

.e-form-textarea__input {
    display: block;
    min-height: 40px;
    padding: 10px 15px !important;
    border: none !important;
    outline-width: 0 !important;
    margin-bottom: 0 !important;
    resize: none
}

.e-form-textarea__input.resizable {
    resize: vertical
}

.e-form-textarea__label {
    margin-bottom: 4px
}

.e-form-textarea__input {
    background: transparent;
    border: none;
    color: currentColor;
    width: 100%
}

.e-form-textarea__input::-moz-placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

.e-form-textarea__input:-ms-input-placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

.e-form-textarea__input::placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

@media(min-width:1200px) {
    .e-form-textarea__input::-moz-placeholder {
        font-size: 16px;
        line-height: 1.5
    }

    .e-form-textarea__input:-ms-input-placeholder {
        font-size: 16px;
        line-height: 1.5
    }

    .e-form-textarea__input::placeholder {
        font-size: 16px;
        line-height: 1.5
    }
}

.e-form-textarea__input:focus {
    border: none;
    outline: none
}

.e-form-textarea__side {
    margin-left: 16px;
    width: 65px;
    flex-shrink: 0
}

.e-form-textarea__side .e-site-button {
    width: 100%;
    min-width: auto !important;
    height: 40px !important
}

.e-form-textarea__side:empty {
    display: none
}

.e-form-textarea__error-box {
    height: 40px;
    padding-top: 8px;
    text-align: end
}

.e-form-textarea__error-msg {
    font-size: 12px;
    color: #e25043
}

.e-form-textarea__info-msg {
    font-size: 12px;
    line-height: 20px;
    color: #757575
}

.e-form-textarea.has-error .e-form-textarea__main {
    border-color: #e25043
}

.e-form-textarea.focus .e-form-textarea__wrapper {
    border-color: #09c
}

.e-form-textarea.disabled .e-form-textarea__main {
    background: #f2f1f0
}

@media(min-width:992px) {
    .e-form-textarea__input {
        padding: 10px 20px
    }

    .e-form-textarea__side {
        width: 100px
    }
}

.e-accordion-toggle {
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    cursor: pointer
}

.e-accordion-toggle__content {
    width: 16px;
    height: 16px;
    position: relative;
    transition: all .2s linear
}

.e-accordion-toggle__content:after,
.e-accordion-toggle__content:before {
    content: "";
    background: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .2s linear
}

.e-accordion-toggle__content:before {
    width: 100%;
    height: 2px
}

.e-accordion-toggle__content:after {
    width: 2px;
    height: 100%
}

.e-accordion-toggle__content.active {
    transform: rotate(90deg)
}

.e-accordion-toggle__content.active:before {
    width: 0
}

.e-dropdown {
    position: relative
}

.e-dropdown__title {
    margin-bottom: 16px;
    font-size: 26px;
    font-weight: 500
}

.e-dropdown__title:empty {
    display: none
}

.e-dropdown__label {
    margin-bottom: 4px
}

.e-dropdown__label:empty {
    display: none
}

.e-dropdown__placeholder {
    font-size: 14px;
    line-height: 1.3;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #a1a1a1
}

@media(min-width:1200px) {
    .e-dropdown__placeholder {
        font-size: 16px;
        line-height: 1.5
    }
}

.e-dropdown__main {
    position: relative
}

.e-dropdown__main.active {
    z-index: 2
}

.e-dropdown__main.active .e-dropdown__selection {
    border-color: #2f2f2f
}

.e-dropdown__main.active .e-dropdown__selection .e-icon {
    transform: rotate(180deg)
}

.e-dropdown__selection {
    height: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border: 1px solid currentColor;
    cursor: pointer;
    padding: 5px 50px 5px 15px;
    tab-index: -1
}

.e-dropdown__text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.e-dropdown__arrow {
    position: absolute;
    right: 15px
}

.e-dropdown__arrow>svg {
    height: 20px
}

.e-dropdown__options-wrapper {
    box-shadow: 0 1px 2px hsla(0, 0%, 100%, .5);
    position: absolute;
    z-index: 1;
    width: 100%;
    border: 1px solid #000
}

.e-dropdown__search {
    padding: 16px;
    background: #f2f1f0
}

.e-dropdown__search-control {
    background: #fff;
    color: #000;
    display: flex;
    padding: 4px 16px
}

.e-dropdown__search-control>input {
    flex-grow: 1;
    background: transparent;
    border: none !important;
    outline-width: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important
}

.e-dropdown__search-control .e-icon {
    margin-right: 16px;
    color: #a1a1a1
}

.e-dropdown__options {
    max-height: 200px;
    background-color: #fff;
    overflow-y: auto
}

.e-dropdown__option {
    height: 40px;
    line-height: 40px;
    background: #fff;
    color: #000;
    padding: 0 20px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.e-dropdown__option.selected {
    background: #000;
    color: #fff
}

.e-dropdown__option.placeholder {
    background: #fff;
    color: #a1a1a1
}

.e-dropdown__option:empty {
    display: none
}

.e-dropdown__option:hover {
    font-weight: 700
}

.e-dropdown__desc {
    font-size: 12px;
    padding-top: 4px;
    margin-bottom: 4px
}

.e-dropdown__error-box {
    height: 40px;
    padding-top: 8px;
    text-align: end
}

.e-dropdown__error-msg {
    font-size: 12px;
    color: #e25043;
    display: flex;
    justify-content: flex-end;
    gap: 8px
}

.e-dropdown.has-error .e-dropdown__selection {
    border-color: #e25043;
    border-bottom-width: 2px
}

.e-dropdown.disabled .e-dropdown__selection {
    border-color: #f2f1f0;
    background: #f2f1f0;
    cursor: default
}

.e-dropdown.disabled .e-dropdown__arrow {
    color: #b8b8b8
}

.e-dropdown.theme-search-grey .e-dropdown__error-box,
.e-dropdown.theme-search-grey .e-dropdown__search {
    display: none
}

.e-dropdown.theme-search-grey .e-dropdown__selection {
    height: 40px;
    color: #000
}

.e-dropdown.theme-search-grey .e-dropdown__placeholder {
    color: #000
}

.e-dropdown.theme-search-grey .e-dropdown__options-wrapper {
    min-width: 100%;
    width: auto;
    box-shadow: none
}

.e-dropdown.theme-search-grey .e-dropdown__options {
    background: #4f4f4f;
    border-color: #4f4f4f;
    max-height: 400px
}

.e-dropdown.theme-search-grey .e-dropdown__option {
    background: #4f4f4f;
    color: #fff;
    position: relative;
    z-index: 1;
    border-right: 2px solid #000;
    padding: 16px;
    height: auto;
    line-height: 1
}

.e-dropdown.theme-search-grey .e-dropdown__option:not(:last-child):after {
    content: "";
    position: absolute;
    left: 16px;
    bottom: 0;
    width: calc(100% - 32px);
    height: 2px;
    box-shadow: inset 0 1px 0 0 hsla(0, 0%, 100%, .16)
}

.e-dropdown.theme-search-grey .e-dropdown__option.placeholder {
    display: none
}

.e-dropdown.theme-search-grey .e-dropdown__option.selected {
    background: #4f4f4f;
    border-right-color: #E3242B
}

@media(min-width:1200px) {
    .e-dropdown.active {
        z-index: 4
    }
}

.e-dropdown__options-modal {
    align-items: flex-end
}

.e-dropdown__options-modal .e-modal__content {
    width: 100%;
    background: #fff;
    color: #000;
    padding: 40px 0 0
}

.e-dropdown__options-modal .e-modal__close {
    top: 12px
}

.e-dropdown__options-modal__content {
    max-height: 72vh;
    min-height: 40vh;
    overflow: auto
}

.e-dropdown__options-modal__search {
    padding: 16px;
    background: #f2f1f0
}

.e-dropdown__options-modal__search-control {
    background: #fff;
    color: #000;
    display: flex;
    padding: 4px 16px
}

.e-dropdown__options-modal__search-control>input {
    flex-grow: 1;
    background: transparent;
    border: none !important;
    outline-width: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important
}

.e-dropdown__options-modal__search-control .e-icon {
    margin-right: 16px;
    color: #a1a1a1
}

.e-dropdown__options-modal__option {
    text-align: center;
    padding: 12px 20px
}

.e-dropdown__options-modal__option:empty {
    display: none
}

.e-dropdown__options-modal__item.selected {
    background-color: #000;
    color: #fff
}

.e-dropdown__options-modal__item.placeholder {
    background: #fff;
    color: #a1a1a1
}

.e-site-radio {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #b8b8b8;
    position: relative;
    cursor: pointer;
    flex-shrink: 0
}

.e-site-radio,
.e-site-radio:before {
    transition: all .2s cubic-bezier(0, 0, .4, .2)
}

.e-site-radio:before {
    content: "";
    background: #E3242B;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    opacity: 0
}

.e-site-radio.checked {
    background: #000;
    border-color: #000
}

.e-site-radio.checked:before {
    width: 50%;
    height: 50%;
    opacity: 1
}

.e-menu-trigger {
    position: relative;
    width: 18px;
    height: 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer
}

.e-menu-trigger>span {
    display: block;
    width: 18px;
    height: 2px;
    margin-top: 4px;
    background: #fff;
    transform-origin: center;
    transition: all .2s linear
}

.e-menu-trigger>span:first-child {
    margin-top: 0
}

.e-menu-trigger.theme-black>span,
.e-menu-trigger.theme-white>span,
.e-menu-trigger.theme-yellow>span {
    background: #000
}

.e-menu-trigger.active>span {
    position: absolute;
    margin: 0
}

.e-menu-trigger.active>span:first-child {
    transform: rotate(-45deg)
}

.e-menu-trigger.active>span:nth-child(2) {
    width: 0
}

.e-menu-trigger.active>span:nth-child(3) {
    transform: rotate(45deg)
}

.e-text-animate {
    position: relative
}

.e-text-animate.animate:before {
    opacity: 0;
    width: 0
}

.e-text-animate:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #fff;
    opacity: 1;
    transition: all 1s linear
}

.e-site-switch {
    width: 44px;
    height: 26px;
    border-radius: 12.5px;
    position: relative;
    background: #f2f1f0;
    border: 1px solid #d8d8d8;
    overflow: hidden;
    transition: all .2s;
    cursor: pointer
}

.e-site-switch:after,
.e-site-switch:before {
    content: "";
    display: block;
    border-radius: 50%;
    background: #858585;
    position: absolute
}

.e-site-switch:before {
    width: 22px;
    height: 22px;
    opacity: 1;
    left: 1px;
    top: 1px
}

.e-site-switch:after {
    width: 0;
    height: 0;
    opacity: 0;
    right: 11px;
    top: 11px
}

.e-site-switch.checked {
    background: #fefdeb
}

.e-site-switch.checked:after,
.e-site-switch.checked:before {
    background: #E3242B
}

.e-site-switch.checked:before {
    width: 0;
    height: 0;
    opacity: 0;
    left: 11.5px
}

.e-site-switch.checked:after {
    top: 1px;
    right: 1px;
    width: 22px;
    height: 22px;
    opacity: 1
}

.e-phone-input {
    width: 100%;
    position: relative
}

.e-phone-input__label {
    margin-bottom: 4px
}

.e-phone-input__wrapper {
    display: flex;
    position: relative;
    z-index: 1
}

.e-phone-input__main {
    flex-grow: 1
}

.e-phone-input__main-input {
    height: 56px;
    display: flex;
    align-items: center;
    border: 1px solid currentColor
}

.e-phone-input__region {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px
}

.e-phone-input__down {
    flex-shrink: 0
}

.e-phone-input__down>svg {
    height: 20px
}

.e-phone-input__region-val {
    width: 24px;
    height: 18px;
    overflow: hidden
}

.e-phone-input__region-val>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.e-phone-input__code {
    width: 110px;
    flex-shrink: 0;
    border-right: 1px solid #b8b8b8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 8px;
    cursor: pointer
}

.e-phone-input__mobile {
    flex-grow: 1;
    padding-left: 10px
}

.e-phone-input__mobile>input {
    width: 100%;
    border: none !important;
    outline-width: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important
}

.e-phone-input__mobile>input::-moz-placeholder {
    font-size: 14px;
    line-height: 1.3;
    color: #a1a1a1
}

.e-phone-input__mobile>input:-ms-input-placeholder {
    font-size: 14px;
    line-height: 1.3;
    color: #a1a1a1
}

.e-phone-input__mobile>input::placeholder {
    font-size: 14px;
    line-height: 1.3;
    color: #a1a1a1
}

@media(min-width:1200px) {
    .e-phone-input__mobile>input::-moz-placeholder {
        font-size: 16px;
        line-height: 1.5
    }

    .e-phone-input__mobile>input:-ms-input-placeholder {
        font-size: 16px;
        line-height: 1.5
    }

    .e-phone-input__mobile>input::placeholder {
        font-size: 16px;
        line-height: 1.5
    }
}

.e-phone-input__mobile>input:focus {
    border: none !important;
    outline-width: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important
}

.e-phone-input__search {
    padding: 16px;
    background: #f2f1f0
}

.e-phone-input__search-control {
    background: #fff;
    color: #000;
    display: flex;
    padding: 4px 16px
}

.e-phone-input__search-control>input {
    flex-grow: 1;
    background: transparent;
    border: none !important;
    outline-width: 0 !important
}

.e-phone-input__search-control .e-icon {
    margin-right: 16px;
    color: #a1a1a1
}

.e-phone-input__countries {
    box-shadow: 0 1px 2px hsla(0, 0%, 100%, .5);
    position: absolute;
    top: 55px;
    left: 0;
    border: 1px solid #000;
    width: 500px
}

.e-phone-input__country-options {
    max-height: 200px;
    background-color: #fff;
    overflow-y: auto
}

.e-phone-input__country-option {
    height: 40px;
    line-height: 40px;
    background: #fff;
    color: #000;
    padding: 0 20px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.e-phone-input__country-option.selected {
    background: #000;
    color: #fff
}

.e-phone-input__country-option:hover {
    font-weight: 700
}

.e-phone-input__country-option:last-child {
    margin-bottom: 8px
}

.e-phone-input__country-icon {
    width: 28px;
    height: 21px;
    overflow: hidden
}

.e-phone-input__country-icon>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.e-phone-input__side {
    margin-left: 16px;
    width: 65px;
    flex-shrink: 0
}

.e-phone-input__side .e-site-button {
    width: 100%;
    min-width: auto !important;
    height: 56px !important
}

.e-phone-input__side:empty {
    display: none
}

.e-phone-input__messages {
    font-size: 12px;
    line-height: 1.3;
    height: 40px;
    padding-top: 8px;
    text-align: end
}

@media(min-width:1200px) {
    .e-phone-input__messages {
        font-size: 12px;
        line-height: 1.5
    }
}

.e-phone-input__error-msg {
    color: #e25043;
    display: flex;
    justify-content: flex-end;
    gap: 8px
}

.e-phone-input__success-msg {
    color: #16bac5
}

.e-phone-input.has-error .e-phone-input__main-input {
    border-color: #e25043;
    border-bottom-width: 2px
}

.e-phone-input.disabled .e-phone-input__main-input {
    background: #f2f1f0
}

.e-phone-input__phone-modal {
    align-items: flex-end
}

.e-phone-input__phone-modal .e-modal__content {
    width: 100%;
    padding: 40px 0 0
}

.e-phone-input__phone-modal .e-modal__close {
    top: 12px
}

.e-phone-input__phone-modal__content {
    height: 280px;
    overflow-y: auto;
    padding-top: 8px
}

.e-phone-input__phone-modal__search {
    padding: 16px;
    background: #f2f1f0
}

.e-phone-input__phone-modal__input {
    padding: 8px 16px;
    background: #fff;
    color: #000;
    display: flex
}

.e-phone-input__phone-modal__input .e-icon {
    margin-right: 8px;
    color: #a1a1a1
}

.e-phone-input__phone-modal__input input {
    flex-grow: 1;
    background: transparent;
    border: none
}

.e-phone-input__phone-modal__country {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px
}

.e-phone-input__phone-modal__country.selected {
    background-color: #000;
    color: #fff
}

.e-phone-input__phone-modal .swiper {
    height: 300px;
    background: #fff;
    color: #000;
    position: relative;
    top: -130px
}

.e-phone-input__phone-modal .swiper .swiper-slide {
    opacity: .5;
    height: 36px
}

.e-phone-input__phone-modal .swiper .swiper-slide-active {
    opacity: 1;
    background: #000;
    color: #fff
}

@media(min-width:992px) {
    .e-phone-input__code {
        width: 104px
    }

    .e-phone-input__side {
        width: 140px
    }
}

html.rtl .e-phone-input__code {
    border-left: 1px solid #b8b8b8;
    padding-left: 8px
}

html.rtl .e-phone-input__mobile {
    padding-left: 0;
    padding-right: 10px
}

html.rtl .e-phone-input__phone-modal__input .e-icon {
    margin-right: 0;
    margin-left: 8px
}

.e-autocomplete-input__content {
    position: relative
}

.e-autocomplete-input__content.active {
    z-index: 3
}

.e-autocomplete-input__title {
    margin-bottom: 24px;
    font-size: 26px;
    font-weight: 500
}

.e-autocomplete-input__title:empty {
    display: none
}

.e-autocomplete-input__label {
    display: block;
    line-height: 1.3;
    margin-bottom: 4px
}

.e-autocomplete-input__main {
    height: 56px;
    border: 1px solid currentColor;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    gap: 8px
}

.e-autocomplete-input__main input {
    border: none !important;
    outline-width: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    flex-grow: 1
}

.e-autocomplete-input__main input::-moz-placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

.e-autocomplete-input__main input:-ms-input-placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

.e-autocomplete-input__main input::placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

@media(min-width:1200px) {
    .e-autocomplete-input__main input::-moz-placeholder {
        font-size: 16px;
        line-height: 1.5
    }

    .e-autocomplete-input__main input:-ms-input-placeholder {
        font-size: 16px;
        line-height: 1.5
    }

    .e-autocomplete-input__main input::placeholder {
        font-size: 16px;
        line-height: 1.5
    }
}

.e-autocomplete-input__messages {
    height: 40px;
    line-height: 1.3;
    font-size: 12px;
    padding-top: 8px;
    text-align: end
}

.e-autocomplete-input__error-msg {
    color: #e25043
}

.e-autocomplete-input.has-error .e-autocomplete-input__main {
    border-color: #e25043
}

.e-autocomplete-input__options {
    position: absolute;
    top: 55px;
    width: 100%;
    border: 1px solid #000;
    padding: 0 15px;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .4)
}

.e-autocomplete-input__option {
    padding: 16px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 16px
}

.e-autocomplete-input__option-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.e-autocomplete-input__option+.e-autocomplete-input__option {
    border-top: 1px solid #b8b8b8
}

.e-autocomplete-input__modal {
    align-items: flex-end
}

.e-autocomplete-input__modal.e-modal .e-modal__content {
    width: 100%;
    padding: 48px 0 24px 0
}

.e-autocomplete-input__modal-search {
    background: #f2f1f0;
    padding: 16px
}

.e-autocomplete-input__modal-input {
    height: 32px;
    border: 1px solid transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    background: #fff
}

.e-autocomplete-input__modal-input input {
    border: none !important;
    outline-width: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    flex-grow: 1
}

.e-autocomplete-input__modal-input input::-moz-placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

.e-autocomplete-input__modal-input input:-ms-input-placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

.e-autocomplete-input__modal-input input::placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

@media(min-width:1200px) {
    .e-autocomplete-input__modal-input input::-moz-placeholder {
        font-size: 16px;
        line-height: 1.5
    }

    .e-autocomplete-input__modal-input input:-ms-input-placeholder {
        font-size: 16px;
        line-height: 1.5
    }

    .e-autocomplete-input__modal-input input::placeholder {
        font-size: 16px;
        line-height: 1.5
    }
}

.e-autocomplete-input__modal-input .e-icon {
    color: #a1a1a1
}

.e-autocomplete-input__modal-input .e-icon svg {
    height: 16px
}

.e-autocomplete-input__modal-options {
    max-height: 320px;
    min-height: 40vh;
    padding-top: 8px;
    overflow-y: auto
}

.e-autocomplete-input__modal-option {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.e-autocomplete-input__modal-option-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.e-num-stepper {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    vertical-align: middle;
    padding: 2px;
    border: 1px solid #000;
    width: -moz-fit-content;
    width: fit-content
}

.e-num-stepper .e-icon {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center
}

.e-num-stepper .e-icon.disabled {
    color: #b8b8b8
}

.e-num-stepper>input {
    border: none;
    width: 36px;
    text-align: center;
    font-size: 14px
}

.e-animated-content.animating {
    overflow: hidden
}

.e-animated-content__main.at-front {
    opacity: 0
}

.e-animated-content__main.open-curtain {
    position: relative;
    opacity: 1;
    overflow: hidden
}

.e-animated-content__main.open-curtain:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #101724;
    box-shadow: 0 2px 2px #101724
}

.e-animated-content__main.open-curtain:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9)
}

.e-animated-content__main.standstill {
    opacity: 1
}

.e-animated-content__main.visible {
    transform-origin: left top;
    animation-duration: var(--duration);
    animation-fill-mode: forwards;
    animation-delay: var(--delay);
    animation-timing-function: var(--ease)
}

.e-animated-content__main.visible.skew-in {
    animation-name: skew-in;
    transform-origin: left center
}

.e-animated-content__main.visible.bottom-fade-in {
    animation-name: bottom-fade-in
}

.e-animated-content__main.visible.bottom-fade-out {
    animation-name: bottom-fade-out
}

.e-animated-content__main.visible.left-fade-in-little {
    animation-name: left-fade-in-little
}

.e-animated-content__main.visible.fade-in {
    animation-name: fade-in
}

.e-animated-content__main.visible.slide-in-left {
    animation-name: slide-in-left
}

.e-animated-content__main.visible.slide-in-right {
    animation-name: slide-in-right
}

.e-animated-content__main.visible.slide-in-up {
    animation-name: slide-in-up
}

.e-animated-content__main.visible.rotate-in-up-left-10 {
    animation-name: rotate-in-up-left-10;
    transform-origin: left bottom
}

.e-animated-content__main.visible.fade-in-top-left {
    animation-name: fade-in-top-left
}

.e-animated-content__main.visible.open-curtain:before {
    animation-name: open-curtain;
    animation-duration: var(--duration);
    animation-fill-mode: forwards;
    animation-delay: var(--delay)
}

.e-animated-content__main.visible.open-curtain:after {
    animation-name: open-curtain-shadow;
    animation-duration: var(--duration);
    animation-fill-mode: forwards;
    animation-delay: var(--delay)
}

.e-animated-content__main.visible.scale-up {
    opacity: 1;
    animation-name: scale-up;
    transform-origin: center center
}

@keyframes skew-in {
    0% {
        opacity: 0;
        transform: rotate(6deg)
    }

    to {
        opacity: 1;
        transform: rotate(0)
    }
}

@keyframes bottom-fade-in {
    0% {
        opacity: 0;
        transform: translateY(100%)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes bottom-fade-out {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    to {
        opacity: 0;
        transform: translateY(100%)
    }
}

@keyframes left-fade-in-little {
    0% {
        opacity: 0;
        transform: translateX(-10px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-100%);
        opacity: 0
    }

    to {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes slide-in-right {
    0% {
        transform: translateX(100%);
        opacity: 0
    }

    to {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes slide-in-up {
    0% {
        transform: translateY(100%);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes rotate-in-up-left-10 {
    0% {
        transform: rotate(6deg);
        opacity: 0
    }

    to {
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes fade-in-top-left {
    0% {
        opacity: 0;
        transform: translate3d(-100%, -100%, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes open-curtain {
    0% {
        box-shadow: 0 2px 2px #101724;
        transform: translateY(0) translateZ(1px)
    }

    to {
        box-shadow: 0 0 0 transparent;
        transform: translateY(-100%) translateZ(0)
    }
}

@keyframes open-curtain-shadow {
    0% {
        opacity: 1;
        z-index: 1;
        filter: blur(1px)
    }

    to {
        opacity: 0;
        filter: blur(0);
        z-index: -1
    }
}

.e-kvslide__triggerCenter {
    height: 60%;
    bottom: 0
}

.e-kvslide,
.e-kvslide__triggerCenter {
    position: absolute;
    width: 100%;
    z-index: 0;
    left: 0;
    overflow: hidden
}

.e-kvslide {
    height: 100%;
    top: 0
}

.e-kvslide img {
    display: block;
    width: 100%;
    height: auto
}

.e-kvslide.e-kvslide--relative {
    position: relative
}

.e-kvslideimg-out,
.e-kvslideimg-out--varHeight {
    z-index: 0;
    bottom: 0
}

.e-kvslideimg,
.e-kvslideimg-out,
.e-kvslideimg-out--varHeight {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    overflow: hidden
}

.e-kvslideimg {
    top: 0;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat
}

.e-kvslideimg.e-kvslide--scale {
    transform: scale(1.1);
    transition: transform 1s ease .2s
}

.e-kvslidebg {
    background: #101724;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    transition: height 1s
}

.e-kvslidebg.e-kvslidebg--up {
    height: 0
}

.e-adaptive-media {
    position: relative;
    height: 100%
}

.e-adaptive-media__image {
    display: flex;
    width: 100%;
    background-color: #101724;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%
}

.e-adaptive-media__image>img {
    width: 100%;
    height: auto
}

.e-adaptive-media__image.as-bg {
    overflow: hidden
}

.e-adaptive-media__image.as-bg>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.e-adaptive-media__main {
    background-color: #101724
}

.e-adaptive-media__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.e-adaptive-media .open-curtain__image.animation-finished {
    animation: scale-up .6s ease forwards
}

@keyframes scale-up {
    0% {
        transform: scale(1)
    }

    to {
        transform: scale(1.1)
    }
}

.e-adaptive-media.gradient-black {
    position: relative
}

.e-adaptive-media.gradient-black.gradient-btt .e-adaptive-media__content,
.e-adaptive-media.gradient-black.gradient-ltr .e-adaptive-media__content,
.e-adaptive-media.gradient-black.gradient-rtl .e-adaptive-media__content,
.e-adaptive-media.gradient-black.gradient-ttb .e-adaptive-media__content {
    z-index: 1;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-black.gradient-btt .e-adaptive-media__image,
.e-adaptive-media.gradient-black.gradient-ltr .e-adaptive-media__image,
.e-adaptive-media.gradient-black.gradient-rtl .e-adaptive-media__image,
.e-adaptive-media.gradient-black.gradient-ttb .e-adaptive-media__image {
    position: relative
}

.e-adaptive-media.gradient-black.gradient-btt .e-adaptive-media__image:before,
.e-adaptive-media.gradient-black.gradient-ltr .e-adaptive-media__image:before,
.e-adaptive-media.gradient-black.gradient-rtl .e-adaptive-media__image:before,
.e-adaptive-media.gradient-black.gradient-ttb .e-adaptive-media__image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-black.gradient-btt .video-js,
.e-adaptive-media.gradient-black.gradient-ltr .video-js,
.e-adaptive-media.gradient-black.gradient-rtl .video-js,
.e-adaptive-media.gradient-black.gradient-ttb .video-js {
    position: relative
}

.e-adaptive-media.gradient-black.gradient-btt .video-js:before,
.e-adaptive-media.gradient-black.gradient-ltr .video-js:before,
.e-adaptive-media.gradient-black.gradient-rtl .video-js:before,
.e-adaptive-media.gradient-black.gradient-ttb .video-js:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-black.gradient-ltr .e-adaptive-media__image:before,
.e-adaptive-media.gradient-black.gradient-ltr .video-js:before {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-black.gradient-rtl .e-adaptive-media__image:before,
.e-adaptive-media.gradient-black.gradient-rtl .video-js:before {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-black.gradient-ttb .e-adaptive-media__image:before,
.e-adaptive-media.gradient-black.gradient-ttb .video-js:before {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-black.gradient-btt .e-adaptive-media__image:before,
.e-adaptive-media.gradient-black.gradient-btt .video-js:before {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-light-grey {
    position: relative
}

.e-adaptive-media.gradient-light-grey.gradient-btt .e-adaptive-media__content,
.e-adaptive-media.gradient-light-grey.gradient-ltr .e-adaptive-media__content,
.e-adaptive-media.gradient-light-grey.gradient-rtl .e-adaptive-media__content,
.e-adaptive-media.gradient-light-grey.gradient-ttb .e-adaptive-media__content {
    z-index: 1;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-light-grey.gradient-btt .e-adaptive-media__image,
.e-adaptive-media.gradient-light-grey.gradient-ltr .e-adaptive-media__image,
.e-adaptive-media.gradient-light-grey.gradient-rtl .e-adaptive-media__image,
.e-adaptive-media.gradient-light-grey.gradient-ttb .e-adaptive-media__image {
    position: relative
}

.e-adaptive-media.gradient-light-grey.gradient-btt .e-adaptive-media__image:before,
.e-adaptive-media.gradient-light-grey.gradient-ltr .e-adaptive-media__image:before,
.e-adaptive-media.gradient-light-grey.gradient-rtl .e-adaptive-media__image:before,
.e-adaptive-media.gradient-light-grey.gradient-ttb .e-adaptive-media__image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-light-grey.gradient-btt .video-js,
.e-adaptive-media.gradient-light-grey.gradient-ltr .video-js,
.e-adaptive-media.gradient-light-grey.gradient-rtl .video-js,
.e-adaptive-media.gradient-light-grey.gradient-ttb .video-js {
    position: relative
}

.e-adaptive-media.gradient-light-grey.gradient-btt .video-js:before,
.e-adaptive-media.gradient-light-grey.gradient-ltr .video-js:before,
.e-adaptive-media.gradient-light-grey.gradient-rtl .video-js:before,
.e-adaptive-media.gradient-light-grey.gradient-ttb .video-js:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-light-grey.gradient-ltr .e-adaptive-media__image:before,
.e-adaptive-media.gradient-light-grey.gradient-ltr .video-js:before {
    background-image: linear-gradient(90deg, rgba(242, 241, 240, .75), rgba(242, 241, 240, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-light-grey.gradient-rtl .e-adaptive-media__image:before,
.e-adaptive-media.gradient-light-grey.gradient-rtl .video-js:before {
    background-image: linear-gradient(270deg, rgba(242, 241, 240, .75), rgba(242, 241, 240, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-light-grey.gradient-ttb .e-adaptive-media__image:before,
.e-adaptive-media.gradient-light-grey.gradient-ttb .video-js:before {
    background-image: linear-gradient(180deg, rgba(242, 241, 240, .75), rgba(242, 241, 240, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-light-grey.gradient-btt .e-adaptive-media__image:before,
.e-adaptive-media.gradient-light-grey.gradient-btt .video-js:before {
    background-image: linear-gradient(0deg, rgba(242, 241, 240, .75), rgba(242, 241, 240, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-neutral-grey {
    position: relative
}

.e-adaptive-media.gradient-neutral-grey.gradient-btt .e-adaptive-media__content,
.e-adaptive-media.gradient-neutral-grey.gradient-ltr .e-adaptive-media__content,
.e-adaptive-media.gradient-neutral-grey.gradient-rtl .e-adaptive-media__content,
.e-adaptive-media.gradient-neutral-grey.gradient-ttb .e-adaptive-media__content {
    z-index: 1;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-neutral-grey.gradient-btt .e-adaptive-media__image,
.e-adaptive-media.gradient-neutral-grey.gradient-ltr .e-adaptive-media__image,
.e-adaptive-media.gradient-neutral-grey.gradient-rtl .e-adaptive-media__image,
.e-adaptive-media.gradient-neutral-grey.gradient-ttb .e-adaptive-media__image {
    position: relative
}

.e-adaptive-media.gradient-neutral-grey.gradient-btt .e-adaptive-media__image:before,
.e-adaptive-media.gradient-neutral-grey.gradient-ltr .e-adaptive-media__image:before,
.e-adaptive-media.gradient-neutral-grey.gradient-rtl .e-adaptive-media__image:before,
.e-adaptive-media.gradient-neutral-grey.gradient-ttb .e-adaptive-media__image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-neutral-grey.gradient-btt .video-js,
.e-adaptive-media.gradient-neutral-grey.gradient-ltr .video-js,
.e-adaptive-media.gradient-neutral-grey.gradient-rtl .video-js,
.e-adaptive-media.gradient-neutral-grey.gradient-ttb .video-js {
    position: relative
}

.e-adaptive-media.gradient-neutral-grey.gradient-btt .video-js:before,
.e-adaptive-media.gradient-neutral-grey.gradient-ltr .video-js:before,
.e-adaptive-media.gradient-neutral-grey.gradient-rtl .video-js:before,
.e-adaptive-media.gradient-neutral-grey.gradient-ttb .video-js:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-neutral-grey.gradient-ltr .e-adaptive-media__image:before,
.e-adaptive-media.gradient-neutral-grey.gradient-ltr .video-js:before {
    background-image: linear-gradient(90deg, rgba(79, 79, 79, .75), rgba(79, 79, 79, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-neutral-grey.gradient-rtl .e-adaptive-media__image:before,
.e-adaptive-media.gradient-neutral-grey.gradient-rtl .video-js:before {
    background-image: linear-gradient(270deg, rgba(79, 79, 79, .75), rgba(79, 79, 79, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-neutral-grey.gradient-ttb .e-adaptive-media__image:before,
.e-adaptive-media.gradient-neutral-grey.gradient-ttb .video-js:before {
    background-image: linear-gradient(180deg, rgba(79, 79, 79, .75), rgba(79, 79, 79, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-neutral-grey.gradient-btt .e-adaptive-media__image:before,
.e-adaptive-media.gradient-neutral-grey.gradient-btt .video-js:before {
    background-image: linear-gradient(0deg, rgba(79, 79, 79, .75), rgba(79, 79, 79, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-night-blue {
    position: relative
}

.e-adaptive-media.gradient-night-blue.gradient-btt .e-adaptive-media__content,
.e-adaptive-media.gradient-night-blue.gradient-ltr .e-adaptive-media__content,
.e-adaptive-media.gradient-night-blue.gradient-rtl .e-adaptive-media__content,
.e-adaptive-media.gradient-night-blue.gradient-ttb .e-adaptive-media__content {
    z-index: 1;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-night-blue.gradient-btt .e-adaptive-media__image,
.e-adaptive-media.gradient-night-blue.gradient-ltr .e-adaptive-media__image,
.e-adaptive-media.gradient-night-blue.gradient-rtl .e-adaptive-media__image,
.e-adaptive-media.gradient-night-blue.gradient-ttb .e-adaptive-media__image {
    position: relative
}

.e-adaptive-media.gradient-night-blue.gradient-btt .e-adaptive-media__image:before,
.e-adaptive-media.gradient-night-blue.gradient-ltr .e-adaptive-media__image:before,
.e-adaptive-media.gradient-night-blue.gradient-rtl .e-adaptive-media__image:before,
.e-adaptive-media.gradient-night-blue.gradient-ttb .e-adaptive-media__image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-night-blue.gradient-btt .video-js,
.e-adaptive-media.gradient-night-blue.gradient-ltr .video-js,
.e-adaptive-media.gradient-night-blue.gradient-rtl .video-js,
.e-adaptive-media.gradient-night-blue.gradient-ttb .video-js {
    position: relative
}

.e-adaptive-media.gradient-night-blue.gradient-btt .video-js:before,
.e-adaptive-media.gradient-night-blue.gradient-ltr .video-js:before,
.e-adaptive-media.gradient-night-blue.gradient-rtl .video-js:before,
.e-adaptive-media.gradient-night-blue.gradient-ttb .video-js:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-night-blue.gradient-ltr .e-adaptive-media__image:before,
.e-adaptive-media.gradient-night-blue.gradient-ltr .video-js:before {
    background-image: linear-gradient(90deg, rgba(16, 23, 36, .75), rgba(16, 23, 36, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-night-blue.gradient-rtl .e-adaptive-media__image:before,
.e-adaptive-media.gradient-night-blue.gradient-rtl .video-js:before {
    background-image: linear-gradient(270deg, rgba(16, 23, 36, .75), rgba(16, 23, 36, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-night-blue.gradient-ttb .e-adaptive-media__image:before,
.e-adaptive-media.gradient-night-blue.gradient-ttb .video-js:before {
    background-image: linear-gradient(180deg, rgba(16, 23, 36, .75), rgba(16, 23, 36, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-night-blue.gradient-btt .e-adaptive-media__image:before,
.e-adaptive-media.gradient-night-blue.gradient-btt .video-js:before {
    background-image: linear-gradient(0deg, rgba(16, 23, 36, .75), rgba(16, 23, 36, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-white {
    position: relative
}

.e-adaptive-media.gradient-white.gradient-btt .e-adaptive-media__content,
.e-adaptive-media.gradient-white.gradient-ltr .e-adaptive-media__content,
.e-adaptive-media.gradient-white.gradient-rtl .e-adaptive-media__content,
.e-adaptive-media.gradient-white.gradient-ttb .e-adaptive-media__content {
    z-index: 1;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-white.gradient-btt .e-adaptive-media__image,
.e-adaptive-media.gradient-white.gradient-ltr .e-adaptive-media__image,
.e-adaptive-media.gradient-white.gradient-rtl .e-adaptive-media__image,
.e-adaptive-media.gradient-white.gradient-ttb .e-adaptive-media__image {
    position: relative
}

.e-adaptive-media.gradient-white.gradient-btt .e-adaptive-media__image:before,
.e-adaptive-media.gradient-white.gradient-ltr .e-adaptive-media__image:before,
.e-adaptive-media.gradient-white.gradient-rtl .e-adaptive-media__image:before,
.e-adaptive-media.gradient-white.gradient-ttb .e-adaptive-media__image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-white.gradient-btt .video-js,
.e-adaptive-media.gradient-white.gradient-ltr .video-js,
.e-adaptive-media.gradient-white.gradient-rtl .video-js,
.e-adaptive-media.gradient-white.gradient-ttb .video-js {
    position: relative
}

.e-adaptive-media.gradient-white.gradient-btt .video-js:before,
.e-adaptive-media.gradient-white.gradient-ltr .video-js:before,
.e-adaptive-media.gradient-white.gradient-rtl .video-js:before,
.e-adaptive-media.gradient-white.gradient-ttb .video-js:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-white.gradient-ltr .e-adaptive-media__image:before,
.e-adaptive-media.gradient-white.gradient-ltr .video-js:before {
    background-image: linear-gradient(90deg, hsla(0, 0%, 100%, .75), hsla(0, 0%, 100%, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-white.gradient-rtl .e-adaptive-media__image:before,
.e-adaptive-media.gradient-white.gradient-rtl .video-js:before {
    background-image: linear-gradient(270deg, hsla(0, 0%, 100%, .75), hsla(0, 0%, 100%, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-white.gradient-ttb .e-adaptive-media__image:before,
.e-adaptive-media.gradient-white.gradient-ttb .video-js:before {
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, .75), hsla(0, 0%, 100%, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-white.gradient-btt .e-adaptive-media__image:before,
.e-adaptive-media.gradient-white.gradient-btt .video-js:before {
    background-image: linear-gradient(0deg, hsla(0, 0%, 100%, .75), hsla(0, 0%, 100%, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-yellow {
    position: relative
}

.e-adaptive-media.gradient-yellow.gradient-btt .e-adaptive-media__content,
.e-adaptive-media.gradient-yellow.gradient-ltr .e-adaptive-media__content,
.e-adaptive-media.gradient-yellow.gradient-rtl .e-adaptive-media__content,
.e-adaptive-media.gradient-yellow.gradient-ttb .e-adaptive-media__content {
    z-index: 1;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-yellow.gradient-btt .e-adaptive-media__image,
.e-adaptive-media.gradient-yellow.gradient-ltr .e-adaptive-media__image,
.e-adaptive-media.gradient-yellow.gradient-rtl .e-adaptive-media__image,
.e-adaptive-media.gradient-yellow.gradient-ttb .e-adaptive-media__image {
    position: relative
}

.e-adaptive-media.gradient-yellow.gradient-btt .e-adaptive-media__image:before,
.e-adaptive-media.gradient-yellow.gradient-ltr .e-adaptive-media__image:before,
.e-adaptive-media.gradient-yellow.gradient-rtl .e-adaptive-media__image:before,
.e-adaptive-media.gradient-yellow.gradient-ttb .e-adaptive-media__image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-yellow.gradient-btt .video-js,
.e-adaptive-media.gradient-yellow.gradient-ltr .video-js,
.e-adaptive-media.gradient-yellow.gradient-rtl .video-js,
.e-adaptive-media.gradient-yellow.gradient-ttb .video-js {
    position: relative
}

.e-adaptive-media.gradient-yellow.gradient-btt .video-js:before,
.e-adaptive-media.gradient-yellow.gradient-ltr .video-js:before,
.e-adaptive-media.gradient-yellow.gradient-rtl .video-js:before,
.e-adaptive-media.gradient-yellow.gradient-ttb .video-js:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: translateZ(1px)
}

.e-adaptive-media.gradient-yellow.gradient-ltr .e-adaptive-media__image:before,
.e-adaptive-media.gradient-yellow.gradient-ltr .video-js:before {
    background-image: linear-gradient(90deg, rgba(253, 239, 0, .75), rgba(253, 239, 0, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-yellow.gradient-rtl .e-adaptive-media__image:before,
.e-adaptive-media.gradient-yellow.gradient-rtl .video-js:before {
    background-image: linear-gradient(270deg, rgba(253, 239, 0, .75), rgba(253, 239, 0, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-yellow.gradient-ttb .e-adaptive-media__image:before,
.e-adaptive-media.gradient-yellow.gradient-ttb .video-js:before {
    background-image: linear-gradient(180deg, rgba(253, 239, 0, .75), rgba(253, 239, 0, .5) 25%, transparent 60%, transparent) !important
}

.e-adaptive-media.gradient-yellow.gradient-btt .e-adaptive-media__image:before,
.e-adaptive-media.gradient-yellow.gradient-btt .video-js:before {
    background-image: linear-gradient(0deg, rgba(253, 239, 0, .75), rgba(253, 239, 0, .5) 25%, transparent 60%, transparent) !important
}

.e-label-value {
    padding: 16px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.e-label-value__label {
    text-transform: capitalize
}

.e-label-value__label-desc {
    font-size: 12px;
    color: #b8b8b8
}

.e-label-value__label-desc:empty {
    display: none
}

.e-label-value__right {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.e-label-value__desc {
    font-size: 12px;
    margin-right: 16px
}

.e-label-value__desc:empty {
    display: none
}

.e-label-value.bordered {
    border-top: 1px solid #f2f1f0
}

.e-label-value.bordered:last-child {
    border-bottom: 1px solid #f2f1f0
}

.e-label-value.theme-night.bordered {
    border-top: 1px solid #2f2f2f
}

.e-label-value.theme-night.bordered:last-child {
    border-bottom: 1px solid #2f2f2f
}

.e-label-value.size-small {
    font-size: 12px;
    padding: 8px 0
}

.e-flipped-number {
    display: flex;
    overflow: hidden
}

.e-flipped-number__card {
    max-height: 64px
}

.e-flipped-number__card,
.e-flipped-number__other {
    line-height: 1
}

.e-flipped-number__card-flow>span {
    display: block;
    text-align: center
}

.e-youtube-video-player {
    position: relative;
    background: #000
}

.e-youtube-video-player__frame {
    display: block;
    height: 100%
}

.e-youtube-video-player__mute {
    color: #fff;
    display: none
}

.e-youtube-video-player.ready {
    height: 56.25vw
}

.e-youtube-video-player.ready .e-youtube-video-player__mute {
    position: absolute;
    top: 60px;
    right: 60px;
    display: block
}

@media(min-width:992px) {
    .e-youtube-video-player.ready {
        height: 100vh
    }
}

.e-date-input__wrapper {
    display: flex;
    position: relative
}

.e-date-input__main {
    flex-grow: 1
}

.e-date-input__main-input {
    height: 56px;
    display: flex;
    align-items: center;
    border: 1px solid currentColor;
    padding: 0 15px;
    transition: all .2s linear
}

.e-date-input__label {
    margin-bottom: 4px
}

.e-date-input__input {
    background: transparent;
    border: none !important;
    outline-width: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    color: currentColor;
    width: 100%
}

.e-date-input__input::-moz-placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

.e-date-input__input:-ms-input-placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

.e-date-input__input::placeholder {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.3
}

@media(min-width:1200px) {
    .e-date-input__input::-moz-placeholder {
        font-size: 16px;
        line-height: 1.5
    }

    .e-date-input__input:-ms-input-placeholder {
        font-size: 16px;
        line-height: 1.5
    }

    .e-date-input__input::placeholder {
        font-size: 16px;
        line-height: 1.5
    }
}

.e-date-input__input:focus {
    border: none;
    outline: none
}

.e-date-input__side {
    margin-left: 16px;
    width: 65px;
    flex-shrink: 0
}

.e-date-input__side .e-site-button {
    width: 100%;
    min-width: auto !important;
    height: 56px !important
}

.e-date-input__side:empty {
    display: none
}

.e-date-input__messages {
    font-size: 12px;
    line-height: 1.3;
    height: 40px;
    padding-top: 8px;
    text-align: end
}

@media(min-width:1200px) {
    .e-date-input__messages {
        font-size: 12px;
        line-height: 1.5
    }
}

.e-date-input__error-msg {
    font-size: 12px;
    color: #e25043
}

.e-date-input.has-error .e-date-input__main {
    border-color: #e25043
}

.e-date-input__success-msg {
    color: #16bac5
}

.e-date-input.focus .e-date-input__main-input {
    border-color: #2f2f2f
}

.e-date-input.has-icon .e-date-input__main {
    padding: 0
}

.e-date-input.has-icon .e-date-input__input {
    padding-right: 20px
}

.e-date-input__icon {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.e-date-input.reverse.has-icon .e-date-input__main {
    padding-right: 0;
    padding-left: 50px
}

.e-date-input.reverse .e-date-input__icon {
    left: 0;
    right: unset
}

.e-date-input.disabled .e-date-input__main {
    background: #f2f1f0
}

@media(min-width:992px) {
    .e-date-input__main-input {
        padding: 0 20px
    }

    .e-date-input__side {
        width: 100px
    }
}

.s-notice-modal.e-modal {
    align-items: flex-end
}

.s-notice-modal.e-modal .e-modal__content {
    width: 100%;
    padding: 32px 24px 24px 24px
}

.s-notice-modal__title {
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 2px solid #E3242B
}

.s-notice-modal__body {
    margin-bottom: 60px
}

.s-notice-modal__buttons {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    gap: 24px
}

.s-notice-modal__buttons .e-site-button {
    width: 100% !important
}

.s-notice-modal__buttons .e-site-button[data-code=close],
.s-notice-modal__buttons .e-site-button[data-code=no],
.s-notice-modal__buttons .e-site-button[data-code=refuse] {
    color: #757575 !important
}

.s-notice-modal__buttons .e-site-button[data-code=close] .e-site-button__icon,
.s-notice-modal__buttons .e-site-button[data-code=no] .e-site-button__icon,
.s-notice-modal__buttons .e-site-button[data-code=refuse] .e-site-button__icon {
    display: none
}

@media(min-width:992px) {
    .s-notice-modal.e-modal {
        align-items: center
    }

    .s-notice-modal.e-modal .e-modal__content {
        width: calc(33.33333vw + 2.66667px);
        padding: 40px 32px 32px 32px
    }

    .s-notice-modal__buttons {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap
    }

    .s-notice-modal__buttons .e-site-button {
        width: -moz-fit-content !important;
        width: fit-content !important;
        flex-grow: 1;
        flex-shrink: 0;
        overflow: hidden
    }
}

.e-captcha-input__label {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 4px
}

.e-captcha-input__boxes {
    display: flex;
    width: 100%
}

.e-captcha-input__boxes input {
    font-size: 18px;
    line-height: 1.3;
    flex-grow: 1;
    flex-shrink: 0;
    width: 44px;
    height: 56px;
    border: 1px solid #000 !important;
    border-radius: 0;
    outline-width: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    text-align: center;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield
}

@media(min-width:992px) {
    .e-captcha-input__boxes input {
        font-size: 20px
    }
}

@media(min-width:1200px) {
    .e-captcha-input__boxes input {
        font-size: 24px;
        line-height: 1.1
    }
}

.e-captcha-input__boxes input::-webkit-inner-spin-button,
.e-captcha-input__boxes input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0
}

.e-captcha-input__boxes input+input {
    margin-left: 12px
}

.e-captcha-input__messages {
    margin-top: 20px
}

.e-captcha-input__message {
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1
}

.e-captcha-input__message.error {
    color: #dc3232
}

.e-captcha-input__message.success {
    color: #0f863f
}

.e-captcha-input__description {
    margin-top: 16px
}

.e-captcha-input.success .e-captcha-input__boxes input {
    border-color: #0f863f
}

.e-captcha-input.error .e-captcha-input__boxes input {
    border-color: #dc3232
}

html.rtl .e-captcha-input__boxes input+input {
    margin-left: 0;
    margin-right: 12px
}

html.rtl .e-captcha-input__message-icon {
    float: right;
    margin-right: 0;
    margin-left: 12px
}

.e-site-accordion {
    border-bottom: 1px solid #b8b8b8
}

.e-site-accordion:first-child {
    border-top: 1px solid #b8b8b8
}

.e-site-accordion__title {
    font-size: 16px;
    text-transform: capitalize
}

.e-site-accordion__content {
    padding: 16px 0
}

.e-site-accordion__content:empty {
    display: none
}

.e-site-accordion__content .e-block-summary__main .e-label-value,
.e-site-accordion__content .e-block-summary__title,
.e-site-accordion__content .e-label-value {
    padding-left: 16px
}

.e-site-accordion__header {
    display: flex;
    justify-content: space-between;
    padding: 16px 32px 16px 0;
    cursor: pointer;
    position: relative;
    gap: 24px
}

.e-site-accordion__icon {
    position: absolute;
    right: 0;
    top: calc(50% - 8px);
    height: 16px;
    transform-origin: center;
    transition: all .4s cubic-bezier(.055, .215, 0, 1)
}

.e-site-accordion__icon svg {
    height: 16px
}

.e-site-accordion__summary {
    font-size: 12px;
    color: #757575;
    padding-top: 2px;
    text-align: end
}

.e-site-accordion.theme-black {
    color: #fff;
    border-bottom: 1px solid #262626
}

.e-site-accordion.theme-black:first-child {
    border-top: 1px solid #262626
}

.e-site-accordion.active .e-site-accordion__icon {
    transform: rotate(-180deg)
}

.e-site-accordion.disabled .e-site-accordion__icon {
    opacity: .2
}

.e-notification {
    position: fixed;
    left: calc(8.33333vw + .66667px);
    top: 50vh;
    transform: translateY(50%);
    z-index: 15;
    width: calc(83.33333vw + 6.66667px);
    transition: all .2s cubic-bezier(.55, 0, .1, 1)
}

.e-notification__content {
    display: flex;
    justify-content: center;
    align-items: center
}

.e-notification__message {
    position: absolute;
    margin: 0 auto;
    padding: 14px 16px;
    border: 1px solid #4f4f4f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .5s cubic-bezier(.55, 0, .1, 1);
    background: radial-gradient(60.41% 90% at 49.82% 140%, rgba(46, 46, 46, .64) 0, rgba(0, 0, 0, .8) 100%);
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .2);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 2px
}

.e-notification__message-left {
    display: flex;
    align-items: flex-start
}

.e-notification__message-body {
    font-size: 12px;
    color: #fff;
    line-height: 24px
}

.e-notification__message-icon {
    margin-right: 8px;
    width: 24px;
    height: 24px
}

.e-notification__message-icon.notificationError svg {
    fill: #ff3837
}

.e-notification__message-icon .notificationSuccess svg {
    fill: #00b148
}

.e-notification__message-icon .notificationFail svg {
    fill: #ffa900
}

.e-notification__message-icon .notificationWarn svg {
    fill: #fff200
}

.e-notification__message-icon svg {
    width: 24px;
    height: 24px
}

.e-notification__message-close {
    cursor: pointer;
    margin-left: 24px;
    color: #fff
}

.e-notification__message.error,
.e-notification__message.success {
    color: #fff
}

.e-notification__message+.e-notification__message {
    margin-top: 8px
}

.e-notification .list-fade-enter-from {
    opacity: 0
}

.e-notification .list-fade-leave-to {
    opacity: 0;
    transform: scaleY(.1) translateY(-30px)
}

.e-notification .list-fade-leave-active {
    position: absolute
}

@media(min-width:992px) {
    .e-notification {
        left: calc(8.33333vw + .66667px);
        width: calc(83.33333vw + 6.66667px)
    }
}

.e-site-loading {
    width: 120px;
    height: 120px
}

.e-dealer-radio-list {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.e-dealer-radio-list .s-dealer-card-v2+.s-dealer-card-v2,
.e-dealer-radio-list .s-dealer-card-v4+.s-dealer-card-v4 {
    margin-top: -24px
}

.e-dealer-radio-list.list-only {
    margin-top: 24px
}

.e-dealer-select-modal {
    justify-content: flex-end
}

.e-dealer-select-modal.e-modal .e-modal__content {
    width: 100%;
    height: 100vh;
    padding: 0 24px 24px
}

.e-dealer-select-modal__header {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    padding-top: 24px;
    background-color: #fff
}

.e-dealer-select-modal__close {
    cursor: pointer
}

.e-dealer-select-modal__close svg {
    height: 32px
}

.e-dealer-select-modal__form {
    position: sticky;
    top: 40px;
    background: #fff;
    padding: 40px 0 0 0
}

.e-dealer-select-modal .e-dealer-radio-list__dealer:first-child {
    padding-top: 0
}

@media(min-width:992px) {
    .e-dealer-select-modal.e-modal .e-modal__close {
        top: 36px;
        right: calc(4.16667vw + .33333px)
    }

    .e-dealer-select-modal.e-modal .e-modal__content {
        width: calc(41.66667vw + 3.33333px);
        padding: 0 calc(4.16667vw + .33333px) 24px calc(4.16667vw + .33333px)
    }
}

.e-dealer-selector__main[data-v-5777544d] {
    display: flex;
    justify-content: space-between;
    gap: 24px
}

.e-dealer-selector__info[data-v-5777544d] {
    display: flex;
    justify-content: space-between;
    gap: 8px
}

.e-dealer-selector__name[data-v-5777544d] {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    padding-top: 2px
}

.e-dealer-selector__btn[data-v-5777544d] {
    font-weight: 700;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    box-shadow: inset 0 0 0 #E3242B;
    transition: all .2s cubic-bezier(0, 0, .4, .2);
    border-bottom: 1px solid #000;
    align-self: center
}

.e-dealer-selector__btn[data-v-5777544d]:hover {
    box-shadow: inset 200px 0 0 #E3242B;
    color: #000
}

.e-dealer-selector__message[data-v-5777544d] {
    height: 40px;
    position: relative;
    font-size: 12px
}

.e-dealer-selector__error[data-v-5777544d] {
    position: absolute;
    right: 0;
    top: 4px;
    color: #e25043
}

.e-help-content {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.e-help-content__title {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 2px
}

.e-help-content__body {
    color: #4f4f4f
}

.e-help-content__links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px
}

.e-help-content__links .e-site-link {
    display: flex;
    align-items: center;
    gap: 16px
}

.e-help-content__links .e-site-link .e-icon svg {
    height: 24px
}

.e-help-content__link-text {
    font-weight: 700
}

.s-payment-modal .s-content-loading {
    min-height: 70vh;
    padding: 40px 16px
}

.s-payment-modal .s-content-loading.loading {
    overflow: hidden
}

.s-payment-modal.e-modal {
    align-items: flex-end
}

.s-payment-modal.e-modal .e-modal__mask {
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px)
}

.s-payment-modal.e-modal .e-modal__close svg {
    width: 16px;
    height: 16px
}

.s-payment-modal__price {
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: 2px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E3242B
}

@media(min-width:992px) {
    .s-payment-modal__price {
        font-size: 28px
    }
}

@media(min-width:1200px) {
    .s-payment-modal__price {
        font-size: 32px
    }
}

.s-payment-modal__title {
    margin-top: 16px
}

.s-payment-modal__info {
    background: #f2f1f0;
    padding: 12px;
    margin-top: 16px
}

.s-payment-modal__body {
    margin-top: 16px
}

.s-payment-modal__item {
    display: flex;
    justify-content: space-between
}

.s-payment-modal__item+.s-payment-modal__item {
    margin-top: 8px
}

@media(min-width:992px) {
    .s-payment-modal .s-content-loading {
        padding: 40px 24px;
        min-height: 300px
    }

    .s-payment-modal.e-modal {
        align-items: center
    }

    .s-payment-modal.e-modal .e-modal__content {
        width: calc(33.33333vw + 2.66667px)
    }

    .s-payment-modal.e-modal .e-modal__close svg {
        width: 24px;
        height: 24px
    }

    .s-payment-modal__price {
        font-size: 26px;
        line-height: 1.1;
        letter-spacing: 2px
    }
}

@media(min-width:992px)and (min-width:992px) {
    .s-payment-modal__price {
        font-size: 28px
    }
}

@media(min-width:992px)and (min-width:1200px) {
    .s-payment-modal__price {
        font-size: 32px
    }
}

.e-store-info {
    padding: 64px 24px 40px 24px
}

.e-store-info__title {
    text-transform: uppercase
}

.e-store-info__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
}

.e-store-info__main .e-icon>svg {
    height: 18px
}

.e-store-info__schedule {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
}

.e-store-info__link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px
}

.e-store-info__link-text {
    text-decoration: underline
}

.e-store-info__times {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.e-store-info__time {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    color: #757575
}

.e-store-info.theme-black {
    background-color: #000;
    color: #fff
}

.e-store-info.theme-black .e-store-info__time,
.e-store-info.theme-black .text-desc {
    color: #b8b8b8
}

@media(min-width:992px) {
    .e-store-info {
        padding: 64px 0 60px 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-column-gap: 8px
    }
}

@media(min-width:992px)and (min-width:992px) {
    .e-store-info {
        grid-template-columns: repeat(24, 1fr)
    }
}

@media(min-width:992px) {
    .e-store-info__title {
        grid-column-start: 3;
        grid-column-end: 24;
        grid-row-start: 1
    }
}

@media(min-width:992px) {
    .e-store-info__main {
        grid-column-start: 3;
        grid-column-end: 13;
        grid-row-start: 2
    }
}

@media(min-width:992px) {
    .e-store-info__schedule {
        grid-column-start: 15;
        grid-column-end: 23;
        grid-row-start: 2
    }
}

.e-linked-out-card {
    display: block
}

.e-linked-out-card .e-background-image {
    width: 100%
}

.e-icon-link {
    display: flex;
    gap: 24px;
    line-height: 24px
}

.e-icon-link .e-icon>svg {
    width: auto;
    height: 24px
}

.s-pop-menu {
    position: relative;
    width: 20px;
    height: 20px
}

.s-pop-menu__name {
    width: 20px;
    cursor: pointer
}

.s-pop-menu__name-icon {
    width: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px
}

.s-pop-menu__name-icon span {
    display: block;
    width: 4px;
    height: 4px;
    background-color: #000
}

.s-pop-menu__items {
    position: absolute;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    border: 1px solid #4f4f4f;
    border-radius: 2px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: radial-gradient(49.87% 50% at 50.13% 100%, rgba(46, 46, 46, .8) 0, #000 100%);
    color: #fff;
    padding: 0
}

.s-pop-menu__items.pos-bottom-left {
    top: calc(100% + 4px);
    right: 8px
}

.s-pop-menu__item {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 12px;
    cursor: pointer
}

.s-pop-menu__item .e-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #E3242B
}

.s-pop-menu__item-text {
    flex-grow: 1;
    white-space: nowrap
}

.s-pop-menu__item:hover {
    color: #E3242B
}

.s-pop-menu__item+.s-pop-menu__item {
    border-top: 1px solid #4f4f4f
}

.s-pop-menu__modal {
    align-items: flex-end
}

.s-pop-menu__modal .e-modal__content {
    width: 100%;
    color: #fff
}

.s-pop-menu__modal .s-pop-menu__items {
    position: static;
    border: none;
    padding-top: 40px
}

.s-pop-menu__modal .s-pop-menu__item {
    justify-content: center
}

.s-pop-menu__modal .s-pop-menu__item-text {
    flex-grow: unset
}

.s-pop-menu.active {
    z-index: 5
}

.e-dealer-picker {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.e-dealer-picker__messages {
    height: 40px;
    font-size: 12px;
    margin-top: -12px
}

.e-dealer-picker__message.error {
    color: #e25043
}