.verification-block {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 85px 70px;
    background: rgb(24 24 24 / 81%);
    backdrop-filter: blur(5px);
    color: #fff;
    border-radius: 8px;
    max-width: 700px;
    width: auto;
    box-sizing: border-box;
}

/* Заголовок */
.verification-title {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

/* Подзаголовок */
.verification-subtitle {
    margin: 0 0 30px 0;
    text-align: center;
    color: #ccc;
    font-size: 16px;
}

.email-span {
    color: #fff;
}

/* Контейнер инпутов */
.code-inputs-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: nowrap;
}

/* Один инпут */
.code-input {
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    background: #333;
    color: #fff;
    border: 2px solid #555;
    border-radius: 8px;
    outline: none;
}

/* Контейнер таймера и ссылки */
.resend-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}



/* Кнопка */
.verify-btn {
    padding: 15px 40px;
    background: none;
    color: white;
    border: 1px solid #c64040;
    border-radius: 100px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
}



#verificationBlock h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

#verificationBlock p {
    margin: 0 0 30px 0;
    text-align: center;
    color: #ccc;
    font-size: 16px;
}

#verificationBlock p span {
    color: #fff; /* Белый для email */
    font-weight: bold;
}

#codeInputsContainer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: nowrap; /* Всегда в одну строку, без переноса */
    overflow-x: auto; /* Если не влезет, горизонтальный скролл (редко) */
    width: 100%;
}

.code-input {
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    background: #333;
    color: #fff;
    border: 2px solid #555;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
    flex-shrink: 0; /* Не сжимать inputs */
}

.code-input:focus {
    border-color: #ffd700; /* Желтый фокус */
}

.code-input.input-error {
    border-color: #c64040 !important;
    animation: shake 0.4s ease-in-out;
}


#timerSpan {
    padding-right: 10px;
    font-size: 16px;
    color: #8f8f8f;
    text-align: left;
}

#resendText {
    text-decoration: underline;
    cursor: not-allowed;
    color: #e8e8e8;
    opacity: 0.6;
    font-size: 14px;
    transition: all 0.3s ease;
}

#resendText.enabled {
    cursor: pointer;
    opacity: 1;
}

#resendText.enabled:hover {
    color: #ffffff;
}


/* Анимация тряски */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Для login-modal inputs */
.login-modal input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.login-modal input.input-error {
    border-color: #dc3545 !important;
    animation: shake 0.4s ease-in-out;
}

/* Адаптив: для мобильных устройств (телефонов) */
@media (max-width: 480px) {
    #verificationBlock {
        padding: 60px 20px;
        margin: 10px;
        width: 90%;
        max-width: 100%;
        border-radius: 5px; /* Полноэкранно на мобильных */
    }

    #verificationBlock h3 {
        font-size: 20px;
    }

    #verificationBlock p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    #codeInputsContainer {
        gap: 5px; /* Меньший gap для мобильных */
        margin-bottom: 20px;
        padding: 0 10px; /* Отступы для скролла если нужно */
    }

    .code-input {
        width: 40px; /* Меньший размер для влезания в ряд */
        height: 40px;
        font-size: 18px;
    }

    #verifyBtn {
        padding: 12px 20px;
        font-size: 16px;
    }

    #timerSpan {
        font-size: 14px;
    }

    #resendText {
        font-size: 12px;
    }

    .login-modal input {
        padding: 12px;
        font-size: 16px; /* Для мобильных клавиатуры */
    }
}

/* Для планшетов и средних экранов */
@media (min-width: 481px) and (max-width: 768px) {
    #verificationBlock {


    }

    .code-input {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    #codeInputsContainer {
        gap: 8px;
    }
}
/*-=========================================================================-*/


.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}


.login-modal {
    background: rgba(30, 30, 35, .5);
    border: 1px solid rgba(220, 51, 51, .5);
    border-radius: 16px;
    padding: 80px 60px;
    width: 90%;
    max-width: 440px;
    color: #f5f5f5;
    text-align: center;
    box-shadow: 0 0 25px rgba(255, 85, 85, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.login-modal h2 {
    text-align: start;
    font-size: 15px;
    margin-bottom: 26px;
    color: #fd4444;
    font-weight: 600;
}


.login-modal p {
    text-align: start;
    font-size: 20px;
    font-weight: 700; /* Жирный заголовок */

    margin-bottom: 30px;
    color: #ddd;
    line-height: 1.4;
}


.login-modal input {
    width: 100%;
    margin-bottom: 8px;
    padding: 10px 14px;
    border-radius: 100px;
    border: 1px solid #444;
    outline: none;
    background: #ffffff;
    color: #000000;
    font-size: 14px;
    transition: 0.2s;
}

.login-modal input:focus {
    border-color: #ff5555;
    box-shadow: 0 0 6px rgba(255, 85, 85, 0.4);
}


.login-modal button {
    margin-top: 40px;

    width: 100%;
    padding: 10px 0;
    border-radius: 100px;

    background: rgba(255, 85, 85, 0);
    color: #D4D4D5;
    border: 1px solid #6c6c7a;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.login-modal button:hover {
    background: #ffffff12;
    transform: scale(1.03);
}

/* --- Адаптивность --- */
@media (max-width: 480px) {
    .login-modal {
        max-width: 90%;
        padding: 70px 18px;
        border-radius: 12px;
    }

    .login-modal h2 {
        font-size: 13px;
    }

    .login-modal p {
        font-size: 17px;
    }

    .login-modal button {
        padding: 9px 0;
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    .login-modal {
        padding: 115px 75px;
        max-width: 450px;
    }

    .login-modal h2 {
        font-size: 15px;
    }

    .login-modal p {
        font-size: 20px;
    }

    .login-modal button {
        font-size: 15px;
    }
}


._home-section-featured-tournaments .card-item {
    width: 300px;
}

:root {
    --swiper-theme-color: #007aff
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-container-vertical > .swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
    transform: translateZ(0)
}

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap
}

.swiper-container-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-container-pointer-events {
    touch-action: pan-y
}

.swiper-container-pointer-events.swiper-container-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-container-3d {
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: normal;
    line-height: 1
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
    --swiper-navigation-color: #fff
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
    --swiper-navigation-color: #000
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: opacity .3s;
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: transform .2s, top .2s
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, left .2s
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, right .2s
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-white {
    --swiper-pagination-color: #fff
}

.swiper-pagination-black {
    --swiper-pagination-color: #000
}

.swiper-pagination-lock {
    display: none
}

@charset "utf-8";
[lang=es], [lang=es] body, [lang=fr], [lang=fr] body {
    font-family: Roboto, San Francisco, Arial, sans-serif
}

[lang=zh], [lang=zh] body {
    font-family: Helvetica, Noto Sans CJK, SimSun, PingFang SC, Microsoft YaHei, 微软雅黑, sans-serif
}

[lang=de], [lang=de] body, [lang=et], [lang=et] body, [lang=fi], [lang=fi] body, [lang=hu], [lang=hu] body, [lang=id], [lang=id] body, [lang=lv], [lang=lv] body, [lang=nl], [lang=nl] body, [lang=pl], [lang=pl] body, [lang=pt-br], [lang=pt-br] body, [lang=ro], [lang=ro] body, [lang=ru], [lang=ru] body, [lang=th], [lang=th] body, [lang=tr], [lang=tr] body, [lang=uk], [lang=uk] body, [lang=vi], [lang=vi] body {
    font-family: Roboto, San Francisco, Arial, sans-serif
}

[lang=ja], [lang=ja] body {
    font-family: Meiryo, Hiragino Kaku Gothic Pro, Yu Gothic, Noto Sans JP, ヒラギノ角ゴ Pro W3, Osaka, メイリオ, MS PGothic, ＭＳ Ｐゴシック, sans-serif
}

[lang=ar], [lang=ar] body, [lang=fa], [lang=fa] body {
    font-family: Roboto, Droid Arabic Naskh, Arial, sans-serif
}

body {
    -webkit-text-size-adjust: none;
    word-wrap: break-word;
    -webkit-tap-highlight-color: transparent
}

* {
    max-height: 1000000px
}

article, aside, details, figcaption, figure, footer, header, menu, nav, section {
    display: block
}

fieldset, iframe, img, table, td, textArea, tr {
    border: 0
}

caption, legend {
    display: none
}

table {
    width: 100%;
    border: 0;
    border-spacing: 0;
    border-collapse: collapse
}

table th {
    font-weight: 400
}

textarea {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border: 0;
    resize: none
}

ol:not(.not), ul:not(.not) {
    list-style: none
}

hr {
    border: none;
    height: 0
}

i {
    font-style: normal
}

s {
    text-decoration: none
}

em {
    font-style: normal
}

a {
    color: inherit
}

q:after, q:before {
    display: none;
    content: none
}

button {
    border: 0;
    cursor: pointer
}

input, select {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    vertical-align: middle
}

input:checked[type=checkbox] {
    background-color: #666;
    -webkit-appearance: checkbox
}

input[type=search]::-webkit-search-cancel-button {
    -webkit-appearance: none
}

input[type=submit] {
    cursor: pointer
}

input::-ms-clear, select::-ms-expand {
    display: none
}

img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -ms-user-drag: none;
    user-drag: none;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

:focus {
    outline: 0
}

[data-link-type=download] *, [data-link-type=open-signup] * {
    pointer-events: none
}

.input-btn-x {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    right: 30px;
    top: 50%;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    position: absolute;
    z-index: 4;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .2)
}

.input-btn-x svg {
    width: 12px;
    height: 12px
}

.input-btn-x svg path {
    fill: #fff
}

.input-btn-x [font-icon] {
    font-size: 16px !important
}

.GOLD [drop-list-box] .list-holder .list-box .item.active {
    background-color: #a98545
}

[drop-list-box] {
    position: fixed;
    left: 0;
    top: -1px;
    right: auto;
    bottom: auto;
    width: 100%;
    transition: opacity .2s 0s;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    opacity: 0
}

[drop-list-box].animated {
    transition: none
}

[drop-list-box].down .list-box, [drop-list-box].on .list-box {
    border-radius: 0 0 4px 4px
}

[drop-list-box].up .list-box {
    border-radius: 0 0 0 0
}

[drop-list-box] .list-holder {
    height: 100%
}

[drop-list-box] .list-holder .list-box {
    overflow: hidden;
    padding-top: 12px;
    padding-right: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    background-color: hsla(0, 0%, 100%, .1);
    border: 1px solid #fff;
    border-top: 0;
    overflow-y: auto;
    height: 100%;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px)
}

[drop-list-box] .list-holder .list-box .item {
    padding-top: 3px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-left: 10px;
    font-size: 14px;
    line-height: 24px;
    cursor: pointer;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

[drop-list-box] .list-holder .list-box .item:not(:first-of-type) {
    border-top: 1px solid rgba(0, 0, 0, .1)
}

[drop-list-box] .list-holder .list-box .item.check-all {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 4px
}

[drop-list-box] .list-holder .list-box .item:hover {
    background-color: hsla(0, 0%, 100%, .3);
    color: #fff;
    border-radius: 4px
}

[drop-list-box] .list-holder .list-box .item.none-data {
    padding-top: 15px;
    padding-right: 0;
    padding-bottom: 15px;
    padding-left: 0;
    cursor: default;
    justify-content: center
}

[drop-list-box] .list-holder .list-box .item.none-data:hover {
    background-color: transparent
}

[drop-list-box] .list-holder .list-box .item.active {
    color: #fff
}

[drop-list-box] .list-holder .list-box .tree-item {
    font-size: 14px;
    cursor: pointer
}

[drop-list-box] .list-holder .list-box .tree-item.hide {
    padding: 0;
    border-top: 0
}

[drop-list-box] .list-holder .list-box .tree-item.hide > .item-holder {
    display: none
}

[drop-list-box] .list-holder .list-box .tree-item.hide > * {
    padding: 0
}

[drop-list-box] .list-holder .list-box .tree-item .item-holder {
    display: flex;
    align-items: center;
    padding-left: 6px
}

[drop-list-box] .list-holder .list-box .tree-item .item-holder > * {
    padding-top: 6px;
    padding-right: 0;
    padding-bottom: 6px;
    padding-left: 0
}

[drop-list-box] .list-holder .list-box .tree-item .children {
    padding-left: 20px
}

[drop-list-box].active {
    visibility: visible;
    pointer-events: all;
    opacity: 1
}

[drop-list-box] [checkbox-item] {
    width: 100%;
    height: 100%
}

[drop-list-box] .active {
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
    border-radius: 4px
}

[drop-list-box]::-webkit-scrollbar {
    width: 0
}

[drop-list-box]::-webkit-scrollbar-track {
    background-color: transparent
}

[drop-list-box]::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 2px
}

[drop-list-box]::-webkit-scrollbar-thumb:hover {
    background-color: transparent
}

[drop-list-box] .drop-multi-line {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    padding-top: 3px;
    padding-bottom: 3px
}

[drop-list-box] .drop-multi-line > p {
    font-size: 13px;
    line-height: 16px;
    white-space: normal;
    margin-top: 6px;
    font-weight: 400
}

.plus > .icon {
    width: 100%;
    height: 100%;
    background-position: 50%;
    background-size: 50% 2px, 2px 50%;
    background-repeat: no-repeat
}

.minus > .icon {
    width: 100%;
    height: 100%;
    background-position: 50%;
    background-size: 50% 2px, 2px 50%;
    background-repeat: no-repeat
}

.angle.icon {
    position: absolute;
    border-top: 5px solid #000;
    border-right: 5px solid #000;
    transform: rotate(315deg)
}

[color-button].primary {
    display: inline-flex;
    height: 48px;
    padding-top: 0;
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px;
    gap: 8px;
    border-radius: 80px;
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    font-weight: 500;
    background-color: #d30000
}

.no-touch [color-button].primary:hover:not(.hover-disable) {
    background-color: #c00000;
    border: 0
}

.no-touch [color-button].primary:active:not(.hover-disable) {
    background-color: #960000
}

[color-button].primary i {
    font-size: 24px;
    color: #fff
}

[color-button].primary .svg-icon {
    width: 24px;
    height: 24px
}

[color-button].icon {
    border-radius: 100%;
    background-color: hsla(0, 0%, 100%, .2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px)
}

[color-button].icon i {
    font-size: 24px !important
}

[color-button].icon i.icon-arrow_left_24.up {
    transform: rotate(90deg)
}

[color-button].download {
    border-radius: 100%;
    background-color: hsla(0, 0%, 100%, .2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background-color: #d30000;
    border-radius: 56px;
    white-space: nowrap;
    overflow: hidden
}

[color-button].download i {
    font-size: 24px !important
}

[color-button].download i.icon-arrow_left_24.up {
    transform: rotate(90deg)
}

[color-button].download > span {
    display: none;
    color: #fff
}

.no-touch [color-button].download:hover:not(.hover-disable) {
    background-color: #c00000;
    border: 0
}

.no-touch [color-button].download:active:not(.hover-disable) {
    background-color: #960000
}

[color-button].line-black {
    display: inline-flex;
    height: 48px;
    padding-top: 0;
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px;
    gap: 8px;
    border-radius: 80px;
    padding: 24px;
    font-size: 12px;
    line-height: 14px;
    border: 1px solid #000;
    color: #000;
    background-color: #fff;
    border-radius: 64px
}

[color-button].purple {
    display: inline-flex;
    height: 48px;
    padding-top: 0;
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px;
    gap: 8px;
    border-radius: 80px;
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    font-weight: 500;
    background-color: #d30000;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 22px;
    background-color: #6750a3;
    font-weight: 400
}

.no-touch [color-button].purple:hover:not(.hover-disable) {
    background-color: #c00000;
    border: 0
}

.no-touch [color-button].purple:active:not(.hover-disable) {
    background-color: #960000
}

[color-button].purple i {
    font-size: 24px;
    color: #fff
}

[color-button].purple .svg-icon {
    width: 24px;
    height: 24px
}

.no-touch [color-button].purple:hover:not(.hover-disable), [color-button].purple:active {
    background-color: #6750a3
}

[color-button].gray {
    display: inline-flex;
    height: 48px;
    padding-top: 0;
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px;
    gap: 8px;
    border-radius: 80px;
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    font-weight: 500;
    background-color: #d30000;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 22px;
    background-color: #3f3f46;
    font-weight: 400
}

.no-touch [color-button].gray:hover:not(.hover-disable) {
    background-color: #c00000;
    border: 0
}

.no-touch [color-button].gray:active:not(.hover-disable) {
    background-color: #960000
}

[color-button].gray i {
    font-size: 24px;
    color: #fff
}

[color-button].gray .svg-icon {
    width: 24px;
    height: 24px
}

.no-touch [color-button].gray:hover:not(.hover-disable), [color-button].gray:active {
    background-color: #3f3f46
}

[color-button].gray-line {
    height: 40px;
    padding-right: 24px;
    padding-left: 24px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .48px;
    font-weight: 500;
    color: #d4d4d4;
    border: 1px solid #54545f;
    background-color: transparent;
    transition: none
}

@media (min-width: 768px) {
    [color-button].gray-line {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    [color-button].gray-line {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

.no-touch [color-button].gray-line:hover:not(.hover-disable), [color-button].gray-line.active, [color-button].gray-line:active {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff
}

[color-button].white-line-sm {
    height: 32px;
    padding-top: 4px;
    padding-right: 8px;
    padding-bottom: 4px;
    padding-left: 20px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
    transition: none
}

@media (min-width: 768px) {
    [color-button].white-line-sm {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    [color-button].white-line-sm {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

[color-button].white-line-sm [font-icon] {
    font-size: 20px !important
}

.no-touch [color-button].white-line-sm:hover:not(.hover-disable), [color-button].white-line-sm.active, [color-button].white-line-sm:active {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff
}

.no-touch [color-button].white-line-sm:hover:not(.hover-disable) .svg-icon path, [color-button].white-line-sm.active .svg-icon path, [color-button].white-line-sm:active .svg-icon path {
    stroke: #262626
}

[color-button].white-sm {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #000;
    background-color: #fff;
    height: 40px;
    padding-left: 30px;
    white-space: nowrap
}

@media (min-width: 768px) {
    [color-button].white-sm {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    [color-button].white-sm {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

[color-button].white-sm i {
    font-size: 20px !important;
    color: #000;
    margin-left: 10px
}

.no-touch [color-button].white-sm:hover:not(.hover-disable) {
    background-color: #fff
}

@media (min-width: 1244px) {
    [color-button].white-sm {
        height: 30px;
        padding-left: 20px
    }

    [color-button].white-sm i {
        margin-left: 8px
    }
}

[color-button].prev-next {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #6c6c7a;
    border-radius: 100%
}

[color-button].prev-next .svg-icon {
    width: 20px;
    height: 20px
}

[color-button].prev-next .svg-icon path {
    stroke: #d4d4d4
}

[color-button].prev-next > span {
    display: none;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #d4d4d4
}

@media (min-width: 768px) {
    [color-button].prev-next > span {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    [color-button].prev-next > span {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

.no-touch [color-button].prev-next:hover:not(.hover-disable), [color-button].prev-next:active {
    background-color: transparent;
    border: 1px solid #fff
}

.no-touch [color-button].prev-next:hover:not(.hover-disable) > span, [color-button].prev-next:active > span {
    color: #fff
}

[color-button].prev-next[disabled] {
    opacity: 1;
    border: 1px solid #525252
}

[color-button].prev-next[disabled] > span {
    color: #525252
}

[color-button].prev-next[disabled] .svg-icon path {
    stroke: #525252
}

@media (min-width: 768px) {
    [color-button].prev-next {
        gap: 4px;
        width: auto;
        height: 32px;
        min-width: 128px;
        border-radius: 16px;
        padding: 0
    }

    [color-button].prev-next .icon {
        font-size: 20px !important;
        color: #fff
    }

    [color-button].prev-next > span {
        flex: 1;
        display: inline-block
    }

    [color-button].prev-next.btn-prev {
        padding-top: 0;
        padding-right: 16px;
        padding-bottom: 0;
        padding-left: 8px
    }

    [color-button].prev-next.btn-next {
        padding-top: 0;
        padding-right: 8px;
        padding-bottom: 0;
        padding-left: 16px
    }
}

[drop-select] {
    transition: none
}

[drop-select].gray {
    height: 48px;
    background-color: #24242a;
    border: 0;
    border-radius: 8px
}

[drop-select].gray label input {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    padding-right: 16px;
    padding-left: 16px;
    color: #fff;
    font-weight: 400
}

@media (min-width: 768px) {
    [drop-select].gray label input {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    [drop-select].gray label input {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

[drop-select].gray > .angle {
    width: 10px;
    height: 10px;
    right: 19px
}

[drop-select].gray > .angle .icon {
    border-width: 2px;
    border-color: #fff
}

.no-touch [drop-select].gray:hover:not(.hover-disable), [drop-select].gray:active {
    border: 0
}

[drop-select].gray.open {
    border-radius: 8px 8px 0 0
}

[drop-list-box].gray .list-holder {
    padding-top: 24px;
    padding-right: 32px;
    padding-bottom: 24px;
    padding-left: 32px;
    border-top: 1px solid #000;
    background-color: #24242a;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, .3)
}

[drop-list-box].gray .list-holder .list-box {
    padding: 0;
    background-color: transparent;
    border: 0
}

[drop-list-box].gray .list-holder .list-box .item {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding-top: 4px;
    padding-right: 8px;
    padding-bottom: 4px;
    padding-left: 8px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    color: #d4d4d4;
    border-top: 0
}

@media (min-width: 768px) {
    [drop-list-box].gray .list-holder .list-box .item {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    [drop-list-box].gray .list-holder .list-box .item {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

[drop-list-box].gray .list-holder .list-box .item:hover {
    color: #fff;
    background-color: transparent
}

[drop-list-box].gray .list-holder .list-box .item.active {
    background-color: transparent;
    text-decoration: underline;
    color: #fff
}

[pagination] {
    margin-top: 32px;
    gap: 4px;
    justify-content: center
}

[pagination] a {
    width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #a3a3a3;
    margin-right: 0;
    margin-left: 0;
    opacity: 1
}

@media (min-width: 768px) {
    [pagination] a {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    [pagination] a {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

.no-touch [pagination] a:hover:not(.hover-disable), [pagination] a:active {
    color: #fff
}

[pagination] a.active {
    color: #fff;
    opacity: 1;
    background-color: #24242a;
    border-radius: 100%
}

[pagination] a.active:after {
    display: none
}

[pagination] span .svg-icon path {
    stroke: #737373
}

[pagination] span button:not([disabled]) .svg-icon path {
    stroke: #fff
}

[pagination] span.left {
    margin-right: 16px
}

[pagination] span.left button:first-child {
    display: none
}

[pagination] span.right {
    margin-left: 16px
}

[pagination] span.right button:last-child {
    display: none
}

[accordion-view].line label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0
}

[accordion-view].line .title {
    position: relative;
    display: block;
    padding-top: 28px;
    padding-bottom: 28px;
    transition: padding-bottom .25s ease-out;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: .66px;
    font-weight: 500
}

@media (min-width: 768px) {
    [accordion-view].line .title {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: .72px
    }
}

@media (min-width: 1244px) {
    [accordion-view].line .title {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: .84px
    }
}

[accordion-view].line .title:after, [accordion-view].line .title:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    transition: width .25s ease-in-out
}

[accordion-view].line .title:before {
    width: 0;
    height: 2px;
    background-color: #d30000;
    border-radius: 2px
}

[accordion-view].line .title:after {
    height: 1px;
    right: 100%;
    background-color: hsla(0, 0%, 100%, .2)
}

[accordion-view].line .icon {
    position: absolute;
    right: 0;
    top: 50%;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    font-size: 40px !important
}

[accordion-view].line .content {
    padding-top: 28px;
    padding-right: 16px;
    padding-bottom: 28px;
    padding-left: 16px;
    overflow-y: scroll;
    max-height: 1200px
}

[accordion-view].line .content::-webkit-scrollbar {
    width: 4px
}

[accordion-view].line .content::-webkit-scrollbar-thumb:hover, [accordion-view].line .content::-webkit-scrollbar-track {
    background-color: transparent
}

[accordion-view].line .content::-webkit-scrollbar-thumb {
    background-color: hsla(0, 0%, 100%, .5);
    border-radius: 2px
}

[accordion-view].line.open .title {
    padding-bottom: 28px
}

[accordion-view].line.open .title:before {
    width: 80px
}

[accordion-view].line.open .title:after {
    right: 0
}

[accordion-view].line.open .icon:before {
    content: "\e917"
}

[accordion-view].line + [accordion-view].line {
    border-top: 1px solid #fff
}

@media (min-width: 768px) {
    [accordion-view].line .content {
        padding-right: 24px;
        padding-left: 24px
    }
}

@media (min-width: 1244px) {
    [accordion-view].line .title {
        padding-top: 40px;
        padding-bottom: 40px
    }

    [accordion-view].line .content {
        padding-top: 24px;
        padding-right: 24px;
        padding-bottom: 48px;
        padding-left: 24px
    }

    [accordion-view].line.open .title {
        padding-bottom: 24px
    }
}

[accordion-view].label-desc label {
    display: flex;
    align-items: center;
    height: 40px
}

.no-touch [accordion-view].label-desc label:hover:not(.hover-disable) .title {
    color: #fff;
    transition: color .25s ease-out
}

[accordion-view].label-desc .title {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: .66px;
    font-weight: 500;
    color: #737373
}

@media (min-width: 768px) {
    [accordion-view].label-desc .title {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: .72px
    }
}

@media (min-width: 1244px) {
    [accordion-view].label-desc .title {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: .84px
    }
}

[accordion-view].label-desc .svg-icon {
    flex: none;
    width: 32px;
    height: 32px;
    transform: translateX(-50%);
    opacity: 0
}

[accordion-view].label-desc .svg-icon.ds {
    display: none
}

[accordion-view].label-desc .context-box {
    position: relative;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #d4d4d4;
    padding-top: 12px
}

@media (min-width: 768px) {
    [accordion-view].label-desc .context-box {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    [accordion-view].label-desc .context-box {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

[accordion-view].label-desc .context-box a {
    color: #fff;
    font-weight: 500;
    text-decoration: underline
}

[accordion-view].label-desc .context-box:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
    right: 100%;
    height: 0;
    background: linear-gradient(90deg, #d30000 -2.21%, #525252 50%)
}

[accordion-view].label-desc + [accordion-view].label-desc {
    margin-top: 32px
}

[accordion-view].label-desc.open .svg-icon {
    transform: translateX(0);
    opacity: 1;
    transition: opacity .25s ease-in-out .25s, transform .25s ease-in-out .25s
}

[accordion-view].label-desc.open .title {
    color: #fff
}

[accordion-view].label-desc.open .context-box:before {
    right: 0;
    height: 2px;
    transition: right .25s ease-in-out
}

@media (min-width: 768px) {
    [accordion-view].label-desc label {
        height: auto;
        max-height: none
    }

    [accordion-view].label-desc .context-box {
        padding-top: 32px
    }

    [accordion-view].label-desc .context-box:before {
        top: 16px
    }
}

@media (min-width: 1244px) {
    [accordion-view].label-desc .svg-icon {
        width: 40px;
        height: 40px
    }

    [accordion-view].label-desc .svg-icon.m {
        display: none
    }

    [accordion-view].label-desc .svg-icon.ds {
        display: inline-block
    }

    [accordion-view].label-desc .svg-icon:before {
        content: "\e90e"
    }
}

[dir=rtl] [accordion-view].label-desc .context-box:before {
    left: 100%;
    right: 0;
    background: linear-gradient(240deg, #d30000 -2.21%, #525252 50%)
}

[dir=rtl] [accordion-view].label-desc.open .context-box:before {
    left: 0;
    height: 2px;
    transition: left .25s ease-in-out
}

[accordion-view].line-thumb label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0
}

.no-touch [accordion-view].line-thumb label:hover:not(.hover-disable) .icon, [accordion-view].line-thumb label:active .icon {
    color: #fff
}

.no-touch [accordion-view].line-thumb label:hover:not(.hover-disable) .icon path, [accordion-view].line-thumb label:active .icon path {
    stroke: #fff
}

[accordion-view].line-thumb .title {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: .36px;
    font-weight: 400;
    color: #737373;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

[accordion-view].line-thumb .title:after, [accordion-view].line-thumb .title:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    transition: right .35s ease-in-out
}

[accordion-view].line-thumb .title:before {
    left: 0;
    right: 100%;
    border-radius: 0;
    z-index: 1;
    height: 2px;
    background: linear-gradient(90deg, #d30000 -2.21%, #3c3c44 50%)
}

[accordion-view].line-thumb .title:after {
    height: 1px;
    right: 0;
    background-color: hsla(0, 0%, 100%, .2)
}

[accordion-view].line-thumb .title strong {
    font-size: 26px;
    line-height: 34px;
    letter-spacing: .78px;
    font-weight: 500;
    color: #737373
}

@media (min-width: 768px) {
    [accordion-view].line-thumb .title strong {
        font-size: 30px;
        line-height: 38px;
        letter-spacing: .9px
    }
}

@media (min-width: 1244px) {
    [accordion-view].line-thumb .title strong {
        font-size: 42px;
        line-height: 48px;
        letter-spacing: 1.26px
    }
}

[accordion-view].line-thumb .icon {
    position: absolute;
    right: 0;
    top: 50%;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    width: 40px;
    height: 40px
}

[accordion-view].line-thumb .icon path {
    stroke: #737373
}

[accordion-view].line-thumb .svg-icon-minus {
    display: none
}

[accordion-view].line-thumb .container {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    padding-top: 32px
}

[accordion-view].line-thumb .container .item {
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 24px;
    column-gap: 24px
}

[accordion-view].line-thumb .container .item figure {
    flex: none;
    width: 80px;
    height: 80px;
    background-color: #24242a;
    border-radius: 16px
}

[accordion-view].line-thumb .container .item figure img {
    width: 100%;
    height: auto;
    transform-origin: center left
}

[accordion-view].line-thumb .container .item figure.cards {
    position: relative;
    background-color: #24242a;
    border-radius: 16px
}

[accordion-view].line-thumb .container .item figure.cards img {
    position: absolute;
    top: 20px;
    width: 30px;
    height: auto;
    border-radius: 4px
}

[accordion-view].line-thumb .container .item figure.cards img:first-child {
    left: 8px;
    transform: rotate(-10deg);
    transform-origin: left top
}

[accordion-view].line-thumb .container .item figure.cards img:last-child {
    right: 8px;
    transform: rotate(10deg);
    transform-origin: right top
}

[accordion-view].line-thumb .container .item figure.cards:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 10px;
    right: auto;
    top: auto;
    z-index: 1;
    width: 68px;
    height: 24px;
    transform: translateX(-50%);
    background: url('../images/card_badge.webp') 50% 50%/cover no-repeat
}

[accordion-view].line-thumb .container .item figure.cards:after {
    content: attr(data-label);
    position: absolute;
    left: 50%;
    top: 20px;
    right: auto;
    bottom: auto;
    transform: translateX(-50%);
    width: 50px;
    text-align: center;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0;
    font-weight: 500;
    text-transform: uppercase;
    font-weight: 900;
    background: linear-gradient(99deg, #836825 12.65%, #9f7d2b 27.32%, #fdd977 42.43%, #fde57b 53.8%, #e8c35e 61.72%, #836825 78.92%, #e8c35e 92.44%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

[accordion-view].line-thumb .container .item h5 {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: .66px;
    font-weight: 500;
    font-weight: 400;
    color: #fff
}

@media (min-width: 768px) {
    [accordion-view].line-thumb .container .item h5 {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: .72px
    }
}

@media (min-width: 1244px) {
    [accordion-view].line-thumb .container .item h5 {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: .84px
    }
}

[accordion-view].line-thumb .container .item p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #d4d4d4
}

@media (min-width: 768px) {
    [accordion-view].line-thumb .container .item p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    [accordion-view].line-thumb .container .item p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

[accordion-view].line-thumb.open .title {
    color: #fff
}

[accordion-view].line-thumb.open .title:before {
    right: 0
}

[accordion-view].line-thumb.open .title strong {
    color: #fff
}

[accordion-view].line-thumb.open .svg-icon path {
    stroke: #fff
}

[accordion-view].line-thumb.open .svg-icon-plus {
    display: none
}

[accordion-view].line-thumb.open .svg-icon-minus {
    display: inline-block
}

@media (min-width: 768px) {
    [accordion-view].line-thumb .title {
        font-size: 60px;
        line-height: 64px;
        letter-spacing: 0
    }

    [accordion-view].line-thumb .container {
        row-gap: 40px;
        padding-top: 40px
    }

    [accordion-view].line-thumb .container .item figure {
        width: 128px;
        height: 128px
    }

    [accordion-view].line-thumb .container .item figure.cards img {
        top: 31px;
        width: 48px;
        height: auto
    }

    [accordion-view].line-thumb .container .item figure.cards img:first-child {
        left: 14px
    }

    [accordion-view].line-thumb .container .item figure.cards img:last-child {
        right: 14px
    }

    [accordion-view].line-thumb .container .item figure.cards:before {
        left: 50%;
        bottom: 17px;
        right: auto;
        top: auto;
        width: 110px;
        height: 39px
    }

    [accordion-view].line-thumb .container .item figure.cards:after {
        width: 100px;
        top: 36px;
        font-size: 18px;
        line-height: 16px;
        letter-spacing: -.36px
    }
}

@media (min-width: 1244px) {
    [accordion-view].line-thumb .title {
        font-size: 68px;
        line-height: 72px;
        letter-spacing: 0
    }

    [accordion-view].line-thumb .container {
        display: grid;
        grid-template-columns:repeat(2, 1fr);
        -moz-column-gap: 72px;
        column-gap: 72px
    }

    [accordion-view].line-thumb .container .item {
        -moz-column-gap: 32px;
        column-gap: 32px
    }
}

[accordion-view].faq a.title {
    text-decoration: none
}

[accordion-view].faq label {
    position: relative;
    padding-bottom: 16px
}

[accordion-view].faq label .title {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .6px;
    font-weight: 500;
    color: #737373
}

@media (min-width: 768px) {
    [accordion-view].faq label .title {
        font-size: 22px;
        line-height: 26px;
        letter-spacing: .66px
    }
}

@media (min-width: 1244px) {
    [accordion-view].faq label .title {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: .72px
    }
}

[accordion-view].faq label .svg-icon {
    width: 40px;
    height: 40px
}

[accordion-view].faq label .svg-icon path {
    stroke: #737373
}

[accordion-view].faq label .svg-icon-minus {
    display: none
}

[accordion-view].faq label:after, [accordion-view].faq label:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto
}

[accordion-view].faq label:before {
    height: 1px;
    right: 0;
    background-color: hsla(0, 0%, 100%, .2)
}

[accordion-view].faq label:after {
    height: 2px;
    right: 100%;
    background: linear-gradient(90deg, #d30000 -2.21%, #525252 50%);
    transition: right .25s ease-in-out
}

.no-touch [accordion-view].faq label:hover:not(.hover-disable) .title, [accordion-view].faq label:active .title {
    color: #fff
}

.no-touch [accordion-view].faq label:hover:not(.hover-disable) .svg-icon path, [accordion-view].faq label:active .svg-icon path {
    stroke: #fff
}

[accordion-view].faq .content {
    padding-top: 32px
}

[accordion-view].faq.open label .title {
    color: #fff
}

[accordion-view].faq.open label .svg-icon path {
    stroke: #fff
}

[accordion-view].faq.open label .svg-icon-plus {
    display: none
}

[accordion-view].faq.open label .svg-icon-minus {
    display: inline-block
}

[accordion-view].faq.open label:after {
    right: 0
}

@media (min-width: 768px) {
    [accordion-view].faq label {
        padding-bottom: 24px
    }

    [accordion-view].faq .content {
        padding-top: 24px
    }
}

[dir=rtl] [accordion-view].faq label:after {
    left: 100%;
    right: 0;
    background: linear-gradient(240deg, #d30000 -2.21%, #525252 50%);
    transition: left .25s ease-in-out
}

[dir=rtl] [accordion-view].faq.open label:after {
    left: 0
}

.inline-modal.redirection > .panel, [modal].redirection > .panel {
    max-width: 327px;
    padding-top: 0;
    padding-right: 16px;
    padding-bottom: 0;
    padding-left: 16px;
    border-radius: 16px;
    background-color: #2a2a2d;
    box-shadow: none
}

.inline-modal.redirection > .panel > .header, [modal].redirection > .panel > .header {
    position: static !important;
    padding: 0 !important;
    border-radius: 0;
    background-color: transparent
}

.inline-modal.redirection > .panel > .header .close, [modal].redirection > .panel > .header .close {
    position: absolute;
    right: 0;
    top: 0;
    left: auto;
    bottom: auto;
    padding: 16px
}

.inline-modal.redirection > .panel > .header .close svg, [modal].redirection > .panel > .header .close svg {
    width: 24px;
    height: 24px
}

.inline-modal.redirection > .panel > .scroll-area, [modal].redirection > .panel > .scroll-area {
    padding-right: 0;
    padding-left: 0
}

.inline-modal.redirection .redirection-wrap, [modal].redirection .redirection-wrap {
    padding-top: 48px;
    padding-bottom: 48px;
    text-align: center
}

.inline-modal.redirection .redirection-header, [modal].redirection .redirection-header {
    padding-top: 32px
}

.inline-modal.redirection .redirection-header h2, [modal].redirection .redirection-header h2 {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .6px;
    font-weight: 500;
    color: #fff;
    padding-right: 12px;
    padding-left: 12px
}

@media (min-width: 768px) {
    .inline-modal.redirection .redirection-header h2, [modal].redirection .redirection-header h2 {
        font-size: 22px;
        line-height: 26px;
        letter-spacing: .66px
    }
}

@media (min-width: 1244px) {
    .inline-modal.redirection .redirection-header h2, [modal].redirection .redirection-header h2 {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: .72px
    }
}

.inline-modal.redirection .redirection-header p, [modal].redirection .redirection-header p {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #d4d4d4;
    margin-top: 16px
}

@media (min-width: 768px) {
    .inline-modal.redirection .redirection-header p, [modal].redirection .redirection-header p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    .inline-modal.redirection .redirection-header p, [modal].redirection .redirection-header p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

.inline-modal.redirection .redirection-buttons, [modal].redirection .redirection-buttons {
    padding-top: 32px
}

.inline-modal.redirection .redirection-buttons [color-button], [modal].redirection .redirection-buttons [color-button] {
    height: 40px;
    min-width: 240px;
    margin-left: auto;
    margin-right: auto
}

.inline-modal.redirection .redirection-links, [modal].redirection .redirection-links {
    padding-top: 8px
}

.inline-modal.redirection .redirection-links a, [modal].redirection .redirection-links a {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .56px;
    text-decoration: underline;
    font-weight: 500;
    color: #fff
}

@media (min-width: 768px) {
    .inline-modal.redirection > .panel, [modal].redirection > .panel {
        min-width: 560px;
        padding-right: 32px;
        padding-left: 32px
    }

    .inline-modal.redirection .redirection-wrap, [modal].redirection .redirection-wrap {
        height: 100%;
        display: flex;
        flex-direction: column;
        padding-top: 64px;
        padding-bottom: 64px
    }

    .inline-modal.redirection .redirection-wrap > figure, [modal].redirection .redirection-wrap > figure {
        flex: none
    }

    .inline-modal.redirection .redirection-wrap > figure img, [modal].redirection .redirection-wrap > figure img {
        width: 160px;
        height: 160px
    }

    .inline-modal.redirection .redirection-content, [modal].redirection .redirection-content {
        flex: 1
    }

    .inline-modal.redirection .redirection-buttons, [modal].redirection .redirection-buttons {
        flex: none
    }

    .inline-modal.redirection .redirection-buttons [color-button], [modal].redirection .redirection-buttons [color-button] {
        min-width: 320px
    }

    .inline-modal.redirection .redirection-links, [modal].redirection .redirection-links {
        padding-top: 16px
    }
}

.inline-modal.sep > .panel, [modal].sep > .panel {
    max-width: 560px;
    padding-top: 48px;
    padding-right: 16px;
    padding-bottom: 48px;
    padding-left: 16px;
    border-radius: 16px;
    background-color: #2a2a2d;
    box-shadow: none
}

.inline-modal.sep > .panel > .header, [modal].sep > .panel > .header {
    position: static;
    padding: 0;
    border-radius: 0;
    background-color: transparent
}

.inline-modal.sep > .panel > .header .close, [modal].sep > .panel > .header .close {
    position: absolute;
    right: 0;
    top: 0;
    left: auto;
    bottom: auto;
    padding: 16px
}

.inline-modal.sep > .panel > .header .close svg, [modal].sep > .panel > .header .close svg {
    width: 24px;
    height: 24px
}

.inline-modal.sep > .panel > .scroll-area, [modal].sep > .panel > .scroll-area {
    padding: 0
}

.inline-modal.sep .sep-wrap, [modal].sep .sep-wrap {
    padding-bottom: 48px;
    text-align: left;
    max-height: 50vh
}

.inline-modal.sep .sep-wrap h3, [modal].sep .sep-wrap h3 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .54px;
    font-weight: 500;
    color: #fff
}

@media (min-width: 768px) {
    .inline-modal.sep .sep-wrap h3, [modal].sep .sep-wrap h3 {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .54px
    }
}

@media (min-width: 1244px) {
    .inline-modal.sep .sep-wrap h3, [modal].sep .sep-wrap h3 {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: .6px
    }
}

.inline-modal.sep .sep-wrap section, [modal].sep .sep-wrap section {
    margin-top: 24px
}

.inline-modal.sep .sep-wrap article, [modal].sep .sep-wrap article {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #d4d4d4
}

@media (min-width: 768px) {
    .inline-modal.sep .sep-wrap article, [modal].sep .sep-wrap article {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    .inline-modal.sep .sep-wrap article, [modal].sep .sep-wrap article {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

.inline-modal.sep .sep-wrap article h4, [modal].sep .sep-wrap article h4 {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .48px;
    font-weight: 500;
    color: #fee78a
}

@media (min-width: 768px) {
    .inline-modal.sep .sep-wrap article h4, [modal].sep .sep-wrap article h4 {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    .inline-modal.sep .sep-wrap article h4, [modal].sep .sep-wrap article h4 {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

.inline-modal.sep .sep-wrap article h5, [modal].sep .sep-wrap article h5 {
    font-weight: 500;
    margin-top: 12px
}

.inline-modal.sep .sep-wrap article h6, [modal].sep .sep-wrap article h6 {
    font-weight: 400;
    margin-top: 12px
}

.inline-modal.sep .sep-wrap article h6.add, [modal].sep .sep-wrap article h6.add {
    color: #009733
}

.inline-modal.sep .sep-wrap article h6.del, [modal].sep .sep-wrap article h6.del {
    color: #ff0505
}

.inline-modal.sep .sep-wrap article p strong, [modal].sep .sep-wrap article p strong {
    font-weight: 400
}

.inline-modal.sep .sep-wrap article ul, [modal].sep .sep-wrap article ul {
    margin-top: 12px;
    margin-bottom: 12px
}

.inline-modal.sep .sep-wrap article ul > li, [modal].sep .sep-wrap article ul > li {
    position: relative;
    padding-left: 16px
}

.inline-modal.sep .sep-wrap article ul > li:before, [modal].sep .sep-wrap article ul > li:before {
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    top: 10px;
    right: auto;
    bottom: auto;
    width: 3px;
    height: 3px;
    background-color: #d4d4d4;
    border-radius: 3px
}

[lang=ar] .inline-modal.sep .sep-wrap article ul > li, [lang=ar] [modal].sep .sep-wrap article ul > li {
    padding-right: 16px
}

[lang=ar] .inline-modal.sep .sep-wrap article ul > li:before, [lang=ar] [modal].sep .sep-wrap article ul > li:before {
    right: 5px;
    top: 10px;
    left: auto;
    bottom: auto
}

.inline-modal.sep .sep-wrap article + article, [modal].sep .sep-wrap article + article {
    margin-top: 24px
}

.inline-modal.sep .sep-buttons, [modal].sep .sep-buttons {
    padding-top: 32px;
    text-align: center
}

.inline-modal.sep .sep-buttons button, [modal].sep .sep-buttons button {
    width: 240px
}

@media (min-width: 768px) {
    .inline-modal.sep > .panel, [modal].sep > .panel {
        min-width: 560px;
        padding-top: 64px;
        padding-right: 32px;
        padding-bottom: 64px;
        padding-left: 32px
    }

    .inline-modal.sep .sep-wrap, [modal].sep .sep-wrap {
        height: 100%;
        display: flex;
        flex-direction: column
    }

    .inline-modal.sep .sep-buttons, [modal].sep .sep-buttons {
        padding-top: 40px
    }

    .inline-modal.sep .sep-buttons button, [modal].sep .sep-buttons button {
        width: 320px
    }
}

.inline-modal.guinness-certificate > .panel, [modal].guinness-certificate > .panel {
    overflow: visible;
    display: inline-flex;
    width: auto;
    border-radius: 0;
    padding: 0;
    box-shadow: none
}

.inline-modal.guinness-certificate > .panel > .header, [modal].guinness-certificate > .panel > .header {
    position: static;
    padding: 0;
    border-radius: 0;
    background-color: transparent
}

.inline-modal.guinness-certificate > .panel > .header .close, [modal].guinness-certificate > .panel > .header .close {
    position: absolute;
    right: 0;
    top: -20px;
    left: auto;
    bottom: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 100%;
    background-color: hsla(0, 0%, 100%, .2)
}

.inline-modal.guinness-certificate > .panel > .header .close svg, [modal].guinness-certificate > .panel > .header .close svg {
    width: 24px;
    height: 24px
}

.inline-modal.guinness-certificate > .panel > .scroll-area, [modal].guinness-certificate > .panel > .scroll-area {
    padding-right: 0;
    padding-left: 0;
    max-height: inherit !important;
    overflow: visible
}

.inline-modal.guinness-certificate > .panel ._responsive-img-new img, [modal].guinness-certificate > .panel ._responsive-img-new img {
    width: 334px;
    height: 458px;
    max-width: 100%
}

@media (min-width: 768px) {
    .inline-modal.guinness-certificate > .panel > .header .close, [modal].guinness-certificate > .panel > .header .close {
        position: absolute;
        right: 7px;
        top: 49px;
        left: auto;
        bottom: auto
    }

    .inline-modal.guinness-certificate > .panel ._responsive-img-new img, [modal].guinness-certificate > .panel ._responsive-img-new img {
        width: 592px;
        height: 811px
    }
}

@media (min-width: 1244px) {
    .inline-modal.guinness-certificate > .panel ._responsive-img-new img, [modal].guinness-certificate > .panel ._responsive-img-new img {
        width: 631px;
        height: 857px
    }
}

._text-content {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    color: #d4d4d4
}

@media (min-width: 768px) {
    ._text-content {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._text-content {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._text-content.base a {
    text-decoration: underline
}

.no-touch ._text-content.base a:hover:not(.hover-disable) {
    color: #fff
}

._text-content.base a[href^="mailto://"] {
    text-decoration: none
}

._text-content.base > h2 {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: .66px;
    font-weight: 500;
    font-weight: 400;
    margin-bottom: 24px
}

@media (min-width: 768px) {
    ._text-content.base > h2 {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: .72px
    }
}

@media (min-width: 1244px) {
    ._text-content.base > h2 {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: .84px
    }
}

._text-content.base > h3 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .54px;
    font-weight: 500;
    font-weight: 400;
    margin-bottom: 24px
}

@media (min-width: 768px) {
    ._text-content.base > h3 {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .54px
    }
}

@media (min-width: 1244px) {
    ._text-content.base > h3 {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: .6px
    }
}

._text-content.base > h4 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .54px;
    font-weight: 500;
    margin-bottom: 24px
}

@media (min-width: 768px) {
    ._text-content.base > h4 {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .54px
    }
}

@media (min-width: 1244px) {
    ._text-content.base > h4 {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: .6px
    }
}

._text-content.base > h5 {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .48px;
    font-weight: 500;
    margin-bottom: 24px
}

@media (min-width: 768px) {
    ._text-content.base > h5 {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    ._text-content.base > h5 {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

._text-content.base > h6 {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 500;
    margin-bottom: 24px
}

@media (min-width: 768px) {
    ._text-content.base > h6 {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._text-content.base > h6 {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._text-content.base > p + h5, ._text-content.base > p + h6, ._text-content.base > p + p {
    margin-top: 24px
}

._text-content.base > p + h4 {
    margin-top: 48px
}

._text-content.base > ul:not(.not) {
    margin-top: 26px;
    margin-bottom: 48px
}

._text-content.base > ul:not(.not) > li {
    position: relative;
    padding-left: 16px
}

._text-content.base > ul:not(.not) > li:before {
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    top: 10px;
    right: auto;
    bottom: auto;
    width: 3px;
    height: 3px;
    background-color: #d4d4d4;
    border-radius: 3px
}

[lang=ar] ._text-content.base > ul:not(.not) > li {
    padding-right: 16px
}

[lang=ar] ._text-content.base > ul:not(.not) > li:before {
    right: 5px;
    top: 10px;
    left: auto;
    bottom: auto
}

._text-content.base + .base:not(.no-space) {
    margin-top: 48px
}

@media (min-width: 1244px) {
    ._text-content.base > h2, ._text-content.base > h3, ._text-content.base > h4, ._text-content.base > h5, ._text-content.base > h6 {
        margin-bottom: 26px
    }

    ._text-content.base > p + h5, ._text-content.base > p + h6, ._text-content.base > p + p {
        margin-top: 26px
    }

    ._text-content.base > p + h4 {
        margin-top: 52px
    }

    ._text-content.base > ul {
        margin-top: 26px;
        margin-bottom: 52px
    }

    ._text-content.base + .base:not(.no-space) {
        margin-top: 52px
    }
}

._text-content.article-content, ._text-content.article-content .v-html {
    display: flex;
    flex-direction: column;
    row-gap: 24px
}

._text-content.article-content.gap-20, ._text-content.article-content.gap-20.v-html {
    row-gap: 20px
}

._text-content.article-content a {
    text-decoration: underline;
    font-weight: 500;
    color: #fff
}

._text-content.article-content h3 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .54px;
    font-weight: 500;
    font-weight: 400
}

@media (min-width: 768px) {
    ._text-content.article-content h3 {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .54px
    }
}

@media (min-width: 1244px) {
    ._text-content.article-content h3 {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: .6px
    }
}

._text-content.article-content h4 {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .48px;
    font-weight: 500
}

@media (min-width: 768px) {
    ._text-content.article-content h4 {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    ._text-content.article-content h4 {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

._text-content.article-content h4.regular {
    font-weight: 400;
    color: #fff
}

._text-content.article-content h5 {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .6px;
    font-weight: 500;
    font-weight: 400;
    color: #d4d4d4
}

@media (min-width: 768px) {
    ._text-content.article-content h5 {
        font-size: 22px;
        line-height: 26px;
        letter-spacing: .66px
    }
}

@media (min-width: 1244px) {
    ._text-content.article-content h5 {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: .72px
    }
}

._text-content.article-content h6 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .54px;
    font-weight: 500;
    font-weight: 400;
    color: #fff
}

@media (min-width: 768px) {
    ._text-content.article-content h6 {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .54px
    }
}

@media (min-width: 1244px) {
    ._text-content.article-content h6 {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: .6px
    }
}

._text-content.article-content ul:not([social],.small) > li {
    position: relative;
    padding-left: 22px
}

._text-content.article-content ul:not([social],.small) > li:before {
    content: "";
    display: block;
    position: absolute;
    left: 7px;
    top: 7px;
    right: auto;
    bottom: auto;
    width: 4px;
    height: 4px;
    border: 2px solid #737373;
    border-radius: 8px
}

@media (min-width: 1244px) {
    ._text-content.article-content ul:not([social],.small) > li {
        padding-left: 24px
    }
}

[lang=ar] ._text-content.article-content ul:not([social],.small) > li {
    padding-right: 22px
}

[lang=ar] ._text-content.article-content ul:not([social],.small) > li:before {
    right: 7px;
    top: 7px;
    left: auto;
    bottom: auto
}

@media (min-width: 1244px) {
    [lang=ar] ._text-content.article-content ul:not([social],.small) > li {
        padding-right: 24px
    }
}

._text-content.article-content ul:not([social],.small) ul > li {
    position: relative;
    padding-left: 16px
}

._text-content.article-content ul:not([social],.small) ul > li:before {
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    top: 10px;
    width: 3px;
    height: 3px;
    background-color: #d4d4d4;
    border-radius: 3px
}

[lang=ar] ._text-content.article-content ul:not([social],.small) ul > li {
    padding-right: 16px
}

[lang=ar] ._text-content.article-content ul:not([social],.small) ul > li:before {
    right: 5px;
    top: 10px;
    left: auto;
    bottom: auto
}

._text-content.article-content ul:not([social],.small) ul > li:before {
    left: 4px;
    top: 8px;
    right: auto;
    bottom: auto;
    border: 0;
    width: 6px;
    height: 6px;
    background-color: #a3a3a3
}

._text-content.article-content ul.small > li {
    position: relative;
    padding-left: 16px
}

._text-content.article-content ul.small > li:before {
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    top: 10px;
    right: auto;
    bottom: auto;
    width: 3px;
    height: 3px;
    background-color: #d4d4d4;
    border-radius: 3px
}

[lang=ar] ._text-content.article-content ul.small > li {
    padding-right: 16px
}

[lang=ar] ._text-content.article-content ul.small > li:before {
    right: 5px;
    top: 10px;
    left: auto;
    bottom: auto
}

._text-content.article-content ul.small ul {
    margin-left: 4px
}

._text-content.article-content ul.small ul > li {
    position: relative;
    padding-left: 16px
}

._text-content.article-content ul.small ul > li:before {
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    top: 10px;
    right: auto;
    bottom: auto;
    background-color: #d4d4d4;
    border-radius: 3px
}

[lang=ar] ._text-content.article-content ul.small ul > li {
    padding-right: 16px
}

[lang=ar] ._text-content.article-content ul.small ul > li:before {
    right: 5px;
    top: 10px;
    left: auto;
    bottom: auto
}

._text-content.article-content ul.small ul > li:before {
    border: 0;
    width: 3px;
    height: 3px
}

._text-content.article-content .no-margin {
    margin-top: -22px !important
}

._text-content.article-content figure {
    display: block
}

._text-content.blog-posts .title {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: .36px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize
}

@media (min-width: 768px) {
    ._text-content.blog-posts .title {
        font-size: 60px;
        line-height: 64px;
        letter-spacing: .6px
    }
}

@media (min-width: 1244px) {
    ._text-content.blog-posts .title {
        font-size: 68px;
        line-height: 72px;
        letter-spacing: .68px
    }
}

._text-content.blog-posts .tags {
    margin-top: 24px
}

._text-content.blog-posts section {
    margin-top: 40px;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .54px;
    font-weight: 500
}

@media (min-width: 768px) {
    ._text-content.blog-posts section {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .54px
    }
}

@media (min-width: 1244px) {
    ._text-content.blog-posts section {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: .6px
    }
}

._text-content.blog-posts section a {
    text-decoration: underline
}

._text-content.blog-posts section h1, ._text-content.blog-posts section h2, ._text-content.blog-posts section h3, ._text-content.blog-posts section h4, ._text-content.blog-posts section h5 {
    color: #fff
}

._text-content.blog-posts section h1 {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: .96px;
    font-weight: 700;
    text-transform: capitalize
}

@media (min-width: 768px) {
    ._text-content.blog-posts section h1 {
        font-size: 42px;
        line-height: 52px;
        letter-spacing: 1.26px
    }
}

@media (min-width: 1244px) {
    ._text-content.blog-posts section h1 {
        font-size: 48px;
        line-height: 58px;
        letter-spacing: 1.44px
    }
}

._text-content.blog-posts section h2 {
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 26px;
    line-height: 34px;
    letter-spacing: .78px;
    font-weight: 500
}

@media (min-width: 768px) {
    ._text-content.blog-posts section h2 {
        font-size: 30px;
        line-height: 38px;
        letter-spacing: .9px
    }
}

@media (min-width: 1244px) {
    ._text-content.blog-posts section h2 {
        font-size: 42px;
        line-height: 48px;
        letter-spacing: 1.26px
    }
}

._text-content.blog-posts section h3 {
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: .66px;
    font-weight: 500
}

@media (min-width: 768px) {
    ._text-content.blog-posts section h3 {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: .72px
    }
}

@media (min-width: 1244px) {
    ._text-content.blog-posts section h3 {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: .84px
    }
}

._text-content.blog-posts section h4 {
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .6px;
    font-weight: 500
}

@media (min-width: 768px) {
    ._text-content.blog-posts section h4 {
        font-size: 22px;
        line-height: 26px;
        letter-spacing: .66px
    }
}

@media (min-width: 1244px) {
    ._text-content.blog-posts section h4 {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: .72px
    }
}

._text-content.blog-posts section h5 {
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .54px;
    font-weight: 500;
    font-weight: 400
}

@media (min-width: 768px) {
    ._text-content.blog-posts section h5 {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .54px
    }
}

@media (min-width: 1244px) {
    ._text-content.blog-posts section h5 {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: .6px
    }
}

._text-content.blog-posts section p {
    font-weight: 400
}

._text-content.blog-posts section p + h5, ._text-content.blog-posts section p + p {
    margin-top: 26px
}

._text-content.blog-posts section p + h4 {
    margin-top: 52px
}

._text-content.blog-posts section ul {
    margin-top: 26px;
    margin-bottom: 52px
}

._text-content.blog-posts section img {
    max-width: 100%;
    margin-top: 24px;
    margin-bottom: 24px
}

._text-content.ggteam-view h1 {
    font-size: 26px;
    line-height: 34px;
    letter-spacing: .78px;
    font-weight: 500;
    color: #fff
}

@media (min-width: 768px) {
    ._text-content.ggteam-view h1 {
        font-size: 30px;
        line-height: 38px;
        letter-spacing: .9px
    }
}

@media (min-width: 1244px) {
    ._text-content.ggteam-view h1 {
        font-size: 42px;
        line-height: 48px;
        letter-spacing: 1.26px
    }
}

._text-content.ggteam-view h1 br {
    display: none
}

._text-content.ggteam-view h1 small {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .6px;
    font-weight: 500;
    font-weight: 400
}

@media (min-width: 768px) {
    ._text-content.ggteam-view h1 small {
        font-size: 22px;
        line-height: 26px;
        letter-spacing: .66px
    }
}

@media (min-width: 1244px) {
    ._text-content.ggteam-view h1 small {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: .72px
    }
}

._text-content.ggteam-view h2 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .54px;
    font-weight: 500;
    font-weight: 400;
    color: #fff
}

@media (min-width: 768px) {
    ._text-content.ggteam-view h2 {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .54px
    }
}

@media (min-width: 1244px) {
    ._text-content.ggteam-view h2 {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: .6px
    }
}

._text-content.ggteam-view h3 {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .6px;
    font-weight: 500;
    font-weight: 400;
    color: #fff
}

@media (min-width: 768px) {
    ._text-content.ggteam-view h3 {
        font-size: 22px;
        line-height: 26px;
        letter-spacing: .66px
    }
}

@media (min-width: 1244px) {
    ._text-content.ggteam-view h3 {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: .72px
    }
}

._text-content.ggteam-view ul > li {
    position: relative;
    padding-left: 22px
}

._text-content.ggteam-view ul > li:before {
    content: "";
    display: block;
    position: absolute;
    left: 7px;
    top: 7px;
    right: auto;
    bottom: auto;
    width: 4px;
    height: 4px;
    border: 2px solid #737373;
    border-radius: 8px
}

@media (min-width: 1244px) {
    ._text-content.ggteam-view ul > li {
        padding-left: 24px
    }
}

[lang=ar] ._text-content.ggteam-view ul > li {
    padding-right: 22px
}

[lang=ar] ._text-content.ggteam-view ul > li:before {
    right: 7px;
    top: 7px;
    left: auto;
    bottom: auto
}

@media (min-width: 1244px) {
    [lang=ar] ._text-content.ggteam-view ul > li {
        padding-right: 24px
    }
}

._text-content.ggteam-view p {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #d4d4d4
}

@media (min-width: 768px) {
    ._text-content.ggteam-view p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._text-content.ggteam-view p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

#app {
    color: #fff
}

#app .contents-holder {
    min-height: 100vh;
    overflow: hidden
}

body {
    font-family: Roboto, Helvetica Neue, Helvetica, Apple Gothic, HY Gulim, MalgunGothic, Arial, sans-serif
}

html {
    background-color: #18181a;
    scroll-behavior: smooth
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-size: inherit;
    word-break: keep-all;
    word-wrap: break-word;
    -webkit-overflow-scrolling: touch
}

::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-track {
    background-color: transparent
}

::-webkit-scrollbar-thumb {
    background-color: #666;
    border-radius: 2px
}

.ol:not(.not) li, ul:not(.not) li {
    list-style: none
}

a {
    text-decoration: none;
    cursor: pointer
}

a label {
    pointer-events: none
}

a:active, a:focus, a:hover, a:visited {
    outline: none;
    outline: 0;
    text-decoration: none
}

img {
    vertical-align: middle
}

img.br16 {
    border-radius: 16px
}

input {
    outline: none;
    border: 0
}

.swiper-container, .swiper-container .swiper-wrapper {
    width: 100%
}

button {
    background-color: transparent;
    color: #fff;
    font-family: inherit
}

.disabled {
    cursor: not-allowed
}

#app {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto
}

._slider .swiper-pagination-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    bottom: 20px
}

._slider .swiper-pagination-circle .pagination-nav {
    display: none
}

._slider .swiper-pagination-circle .pagination-list {
    display: flex;
    align-items: center;
    gap: 12px
}

._slider .swiper-pagination-circle .pagination-item {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: hsla(0, 0%, 100%, .3)
}

._slider .swiper-pagination-circle .pagination-item.active {
    background-color: #fff
}

@media (min-width: 768px) {
    ._slider .swiper-pagination-circle {
        bottom: 56px
    }

    ._slider .swiper-pagination-circle .pagination-list {
        gap: 32px
    }

    ._slider .swiper-pagination-circle .pagination-item {
        width: 20px;
        height: 20px
    }
}

@media (min-width: 1244px) {
    ._slider .swiper-pagination-circle {
        bottom: 40px
    }

    ._slider .swiper-pagination-circle .pagination-list {
        gap: 12px
    }

    ._slider .swiper-pagination-circle .pagination-item {
        width: 12px;
        height: 12px
    }
}

.c-w {
    color: #fff
}

.c-prize200 {
    color: #fee78a !important
}

strong.c-prize200 {
    font-weight: 500
}

.img-rendering {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: crisp-edges
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0, 0, 0, 0)
}

.sr-only.active, .sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal
}

#beacon-container {
    --hs-beacon-v-offset: 85px;
    --hs-beacon-h-offset-right: 22px;
    --hs-beacon-window-v-offset: calc(var(--hs-beacon-v-offset) + 65px)
}

#beacon-container .BeaconFabButtonFrame {
    bottom: 85px;
    right: 22px;
    transform: scale(.82) !important
}

.client-nav-1 #beacon-container, .client-nav-1 ._app-footer, .client-nav-1 ._app-nav-gnb, .client-nav-1 ._app-nav-header ._app-nav-signup, .client-nav-1 ._app-nav-header ._app-nav-toggle, .client-nav-1 ._app-nav-header ._app-record-holder, .client-nav-1 ._app-nav-sub, .client-nav-1 ._app-quick button:not(.btn-top), .client-nav-logo #beacon-container, .client-nav-logo ._app-footer, .client-nav-logo ._app-nav-gnb, .client-nav-logo ._app-nav-header ._app-nav-signup, .client-nav-logo ._app-nav-header ._app-nav-toggle, .client-nav-logo ._app-nav-header ._app-record-holder, .client-nav-logo ._app-nav-sub, .client-nav-logo ._app-quick button:not(.btn-top) {
    display: none
}

.client-nav-1 ._app-nav-utils, .client-nav-logo ._app-nav-utils {
    display: flex
}

.client-nav-1 ._app-nav-utils .util-group:first-of-type > :not(._app-nav-languages), .client-nav-1 ._app-nav-utils .util-group:nth-of-type(2), .client-nav-logo ._app-nav-utils .util-group:first-of-type > :not(._app-nav-languages), .client-nav-logo ._app-nav-utils .util-group:nth-of-type(2) {
    display: none
}

.client-nav-1 > div:not(.home) div._app-nav-mega:not(.no-sub), .client-nav-logo > div:not(.home) div._app-nav-mega:not(.no-sub) {
    height: 72px
}

.client-nav-1 ._app-nav-utils ._app-nav-regions, .client-nav-logo ._app-nav-utils ._app-nav-regions {
    display: flex
}

.client-nav-1 [page-prev-next] button, .client-nav-logo [page-prev-next] button {
    display: none
}

@media (min-width: 1244px) {
    .client-nav-1 ._app-nav-header, .client-nav-logo ._app-nav-header {
        min-height: 90px;
        height: 90px
    }

    .client-nav-1 ._app-nav-mega, .client-nav-logo ._app-nav-mega {
        padding-top: 90px
    }

    .client-nav-1 ._app-nav-utils, .client-nav-logo ._app-nav-utils {
        height: 90px
    }

    .client-nav-1 ._app-nav-utils ._app-nav-languages.nav-header, .client-nav-logo ._app-nav-utils ._app-nav-languages.nav-header {
        display: flex
    }

    .client-nav-1 ._app-nav-mega.no-sub, .client-nav-1 .home ._app-nav-mega, .client-nav-1 > div:not(.home) ._app-nav-mega:not(.no-sub), .client-nav-logo ._app-nav-mega.no-sub, .client-nav-logo .home ._app-nav-mega, .client-nav-logo > div:not(.home) ._app-nav-mega:not(.no-sub) {
        height: 90px
    }
}

.client-nav-1 ._app-nav-logo.nav-header a {
    pointer-events: none
}

.client-nav-1 ._app-nav-logo.nav-header a img {
    width: 112px;
    height: auto;
    opacity: 1
}

.client-nav-1 ._app-nav-logo.nav-header a .svg-icon {
    opacity: 0;
    pointer-events: none
}

@media (min-width: 1244px) {
    .client-nav-1 ._app-nav-logo.nav-header {
        top: 20px
    }

    .client-nav-1 ._app-nav-logo.nav-header a img {
        width: 180px;
        height: auto
    }

    [dir=rtl] .client-nav-1 ._app-nav-logo.nav-header {
        left: 40px;
        right: auto
    }
}

.client-nav-all ._app-footer, .client-nav-all ._app-nav-header, .client-nav-all ._app-quick button:not(.btn-top), .client-nav-logo ._app-nav-header ._app-nav-logo {
    display: none
}

[data-service=legal] ._app-footer {
    display: block
}

.blind {
    position: absolute;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    width: 1px
}

.btn-link-more, a.btn-link-more {
    background-color: #d30000;
    display: inline-flex;
    min-width: 327px;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding-top: 8px;
    padding-right: 24px;
    padding-bottom: 8px;
    padding-left: 24px;
    gap: 8px;
    border-radius: 8px;
    line-height: 22px
}

.btn-link-more strong, a.btn-link-more strong {
    flex: 1;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: .6px;
    font-weight: 500;
    text-align: left
}

.btn-link-more:after, a.btn-link-more:after {
    content: "";
    flex: none;
    display: block;
    width: 24px;
    height: 24px;
    background-image: url('../images/giveaway_button_more_arrow_icon.webp');
    background-size: cover;
    background-repeat: no-repeat
}

@media (min-width: 768px) {
    .btn-link-more, a.btn-link-more {
        min-width: inherit
    }
}

.svg-icon.black-stroke path {
    stroke: #000
}

.svg-icon.black-fill path {
    fill: #000
}

._app-nav-header {
    position: fixed;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
    right: 0;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding-top: 0;
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px;
    background: linear-gradient(180deg, #161616 -12.11%, rgba(28, 28, 28, .5) 86.21%, rgba(27, 27, 27, .2) 117.19%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px)
}

._app-nav-header:has(+[blog-category]), ._app-nav-header:has(+[blog-search]), ._app-nav-header:has(+[blog-view]), ._app-nav-header:has(+[blog]) {
    background-color: #000
}

@media (min-width: 768px) {
    ._app-nav-header {
        min-height: 72px
    }
}

@media (min-width: 1244px) {
    ._app-nav-header {
        min-height: 120px;
        padding-right: 40px;
        padding-left: 40px
    }
}

[data-service=legal] ._app-nav-logo {
    pointer-events: none
}

._app-nav-logo.nav-header {
    position: absolute;
    left: 24px;
    top: 18px;
    right: auto;
    bottom: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1
}

._app-nav-logo.nav-header a {
    position: relative;
    display: inline-block
}

._app-nav-logo.nav-header a img {
    width: 24px;
    height: 24px;
    opacity: 0
}

._app-nav-logo.nav-header a .svg-icon {
    position: absolute;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
    width: 24px;
    height: 24px
}

.home ._app-nav-logo.nav-header a img {
    width: 112px;
    height: auto;
    opacity: 1
}

.home ._app-nav-logo.nav-header a .svg-icon {
    display: none
}

@media (min-width: 768px) {
    ._app-nav-logo.nav-header a .svg-icon {
        top: 2px
    }

    .home ._app-nav-logo.nav-header a {
        margin-top: 0
    }
}

@media (min-width: 1244px) {
    ._app-nav-logo.nav-header {
        left: 40px;
        top: 44px;
        right: auto;
        bottom: auto
    }

    ._app-nav-logo.nav-header a img {
        width: 180px;
        height: auto;
        opacity: 1
    }

    ._app-nav-logo.nav-header a .svg-icon {
        display: none
    }

    .home ._app-nav-logo.nav-header a img {
        width: 180px;
        height: auto
    }
}

@media (min-width: 768px) {
    ._app-nav-logo.collapse .svg-icon {
        display: none
    }

    ._app-nav-logo.collapse img {
        width: 112px;
        height: auto
    }
}

@media (min-width: 1244px) {
    ._app-nav-logo.collapse img {
        width: 169px;
        height: auto
    }

    [dir=rtl] ._app-nav-logo.nav-header {
        left: auto;
        right: 40px
    }
}

[locale-link][disabled] {
    pointer-events: none
}

._app-record-holder {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    overflow: hidden;
    cursor: pointer
}

._app-record-holder.logo {
    width: 24px;
    height: 24px;
    margin-bottom: -4px;
    opacity: 0;
    pointer-events: none
}

._app-record-holder.logo img {
    width: 100%;
    height: 100%
}

._app-record-holder.collapse {
    display: none
}

@media (min-width: 768px) {
    ._app-record-holder {
        width: auto;
        height: auto
    }

    ._app-record-holder.nav-header, ._app-record-holder.nav-header .ds {
        display: none
    }
}

@media (min-width: 1244px) {
    ._app-record-holder.logo {
        display: none
    }

    ._app-record-holder.nav-header {
        display: block;
        width: auto;
        height: 38px
    }

    ._app-record-holder.nav-header .m {
        display: none
    }

    ._app-record-holder.nav-header .ds {
        width: 100%;
        display: inline-block !important
    }
}

.home ._app-record-holder.logo {
    opacity: 1;
    pointer-events: auto
}

._app-nav-mega {
    width: 100%;
    height: 120px;
    padding-top: 64px;
    transition: height .25s ease-in-out
}

._app-nav-mega.no-sub, .home ._app-nav-mega {
    height: 64px
}

._app-nav-mega.no-sub > ._app-nav-sub [slider], .home ._app-nav-mega > ._app-nav-sub [slider] {
    display: none
}

@media (min-width: 768px) {
    ._app-nav-mega.no-sub, .home ._app-nav-mega {
        height: 128px;
        padding-top: 72px
    }

    ._app-nav-mega.no-sub.no-sub, .home ._app-nav-mega.no-sub, .home .home ._app-nav-mega {
        height: 72px
    }
}

@media (min-width: 1244px) {
    ._app-nav-mega {
        position: static;
        width: 100%;
        height: auto;
        padding-top: 120px
    }

    ._app-nav-mega.no-sub, .home ._app-nav-mega {
        height: 120px
    }

    ._app-nav-mega.no-sub > ._app-nav-sub, .home ._app-nav-mega > ._app-nav-sub {
        display: none
    }
}

.scroll-up > div:not(.home) ._app-nav-mega:not(.no-sub) {
    height: 120px
}

.scroll-up > div:not(.home) ._app-nav-sub .holder [slider] {
    transform: translateY(0);
    opacity: 1;
    height: 48px;
    pointer-events: auto;
    transition: .25s ease-in-out
}

@media (min-width: 768px) {
    .scroll-up > div:not(.home) ._app-nav-mega:not(.no-sub) {
        height: 128px
    }
}

@media (min-width: 1244px) {
    .scroll-up > div:not(.home) ._app-nav-mega:not(.no-sub) {
        height: 184px
    }

    .scroll-up > div:not(.home) ._app-nav-sub .holder ._slider, .scroll-up > div:not(.home) ._app-nav-sub .holder .title {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        transition: transform .25s 0s
    }
}

.scroll-down ._app-nav-mega:not(.no-sub) {
    height: 60px
}

.scroll-down ._app-nav-sub .holder:before {
    display: none
}

.scroll-down ._app-nav-sub .holder ._slider {
    opacity: 0;
    height: 1px;
    pointer-events: none
}

@media (min-width: 768px) {
    .scroll-down ._app-nav-mega:not(.no-sub) {
        height: 72px
    }
}

@media (min-width: 1244px) {
    .scroll-down ._app-nav-mega:not(.no-sub) {
        height: 120px
    }

    .scroll-down ._app-nav-sub .holder ._slider, .scroll-down ._app-nav-sub .holder .title {
        transform: translateY(-50%);
        opacity: 0;
        pointer-events: none
    }
}

.fade-enter-active, .fade-leave-active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: clip-path .25s ease-out, opacity .25s ease-in-out
}

.fade-enter-active .holder, .fade-leave-active .holder {
    opacity: 1;
    transform: translateY(0);
    transition: transform .25s ease-in-out, opacity .25s ease-in-out
}

.fade-enter, .fade-leave-to {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0)
}

.fade-enter .holder, .fade-leave-to .holder {
    opacity: 0;
    transform: translateY(4px)
}

._app-nav-gnb {
    display: none;
    position: absolute;
    left: 0;
    top: 68px;
    right: auto;
    bottom: auto;
    right: 0
}

._app-nav-gnb .nav-inner {
    position: relative;
    width: 1200px;
    margin-left: auto;
    margin-right: auto
}

._app-nav-gnb .nav-inner > ul {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: flex-start
}

._app-nav-gnb .nav-inner > ul > li > .main-menu {
    position: relative;
    z-index: 1;
    height: 52px;
    display: flex;
    margin-right: 24px;
    align-items: flex-start;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: .64px;
    font-weight: 500;
    color: #fff;
    -moz-column-gap: 4px;
    column-gap: 4px;
    cursor: pointer
}

._app-nav-gnb .nav-inner > ul > li.none-child > a {
    padding-right: 0
}

._app-nav-gnb .nav-inner > ul > li.none-child > a:after {
    display: none
}

._app-nav-gnb .nav-inner > ul > li.active > a:before, ._app-nav-gnb .nav-inner > ul > li.active > label:before, ._app-nav-gnb .nav-inner > ul > li.hover > a:before, ._app-nav-gnb .nav-inner > ul > li.hover > label:before {
    right: 0;
    height: 2.5px;
    bottom: 1px;
    z-index: 2;
    border-radius: 2px
}

._app-nav-gnb .nav-inner > ul > li.active > a .svg-icon, ._app-nav-gnb .nav-inner > ul > li.active > label .svg-icon, ._app-nav-gnb .nav-inner > ul > li.hover > a .svg-icon, ._app-nav-gnb .nav-inner > ul > li.hover > label .svg-icon {
    transform: rotate(180deg)
}

._app-nav-gnb .nav-inner > ul > li.active .mega-wrap, ._app-nav-gnb .nav-inner > ul > li.hover .mega-wrap {
    visibility: visible;
    pointer-events: auto
}

._app-nav-gnb .nav-inner .bar {
    display: none;
    position: absolute;
    left: 0;
    bottom: 1px;
    right: auto;
    top: auto;
    height: 2px;
    z-index: 1;
    background-color: #d30000;
    transition: width .25s ease-in-out, transform .25s ease-in-out
}

._app-nav-gnb .mega-wrap {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 104px;
    background-color: #fff;
    box-shadow: 0 7px 22px -4px rgba(154, 164, 184, .15), 0 1px 4px -2px rgba(154, 164, 184, .04)
}

._app-nav-gnb .mega-wrap .holder {
    display: flex;
    -moz-column-gap: 96px;
    column-gap: 96px;
    width: 1200px;
    margin-left: auto;
    margin-right: auto
}

._app-nav-gnb .mega-wrap .sub-item {
    display: flex;
    flex-direction: column;
    row-gap: 32px
}

._app-nav-gnb .mega-wrap .sub-item > a {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .54px;
    font-weight: 500;
    color: #000;

    width: fit-content
}

@media (min-width: 768px) {
    ._app-nav-gnb .mega-wrap .sub-item > a {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .54px
    }
}

@media (min-width: 1244px) {
    ._app-nav-gnb .mega-wrap .sub-item > a {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: .6px
    }
}

._app-nav-gnb .mega-wrap .sub-item > a:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    right: 100%;
    height: 1px;
    background-color: #000;
    transition: right .25s ease-in-out
}

._app-nav-gnb .mega-wrap .sub-item > a.active:after, ._app-nav-gnb .mega-wrap .sub-item > a:active:after, .no-touch ._app-nav-gnb .mega-wrap .sub-item > a:hover:not(.hover-disable):after {
    right: 0
}

._app-nav-gnb .mega-wrap .sub-item > ul {
    display: flex;
    flex-direction: column;
    row-gap: 16px
}

._app-nav-gnb .mega-wrap .sub-item > ul a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #404040;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 191px
}

@media (min-width: 768px) {
    ._app-nav-gnb .mega-wrap .sub-item > ul a {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._app-nav-gnb .mega-wrap .sub-item > ul a {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._app-nav-gnb .mega-wrap .sub-item > ul a.router-link-exact-active, ._app-nav-gnb .mega-wrap .sub-item > ul a:active, .no-touch ._app-nav-gnb .mega-wrap .sub-item > ul a:hover:not(.hover-disable) {
    color: #262626
}

._app-nav-gnb .mega-wrap .sub-item > ul a.router-link-exact-active:after, ._app-nav-gnb .mega-wrap .sub-item > ul a:active:after, .no-touch ._app-nav-gnb .mega-wrap .sub-item > ul a:hover:not(.hover-disable):after {
    background-color: #171717;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: ""
}

._app-nav-gnb .mega-wrap .sub-item > ul li.icon-new {
    position: relative;
    display: flex;
    align-items: center
}

._app-nav-gnb .mega-wrap .sub-item > ul li.icon-new:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    margin-left: 4px;
    background: url('../images/icon-nav-new.png') 0 0 no-repeat
}

._app-nav-gnb .mega-wrap .ggteam {
    display: flex;
    -moz-column-gap: 16px;
    column-gap: 16px
}

._app-nav-gnb .mega-wrap .ggteam a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 176px;
    height: 248px;
    border-radius: 16px;
    background: #f1f1f4 url('../images/icon_gg_white_GGPRO.webp') 50% 16px no-repeat
}

._app-nav-gnb .mega-wrap .ggteam a:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 2px solid transparent;
    border-radius: inherit;
    transition: border-color .15s ease-out, transform .25s ease-in-out
}

._app-nav-gnb .mega-wrap .ggteam a figure {
    display: block
}

._app-nav-gnb .mega-wrap .ggteam a figure img {
    width: auto;
    height: 192px;
    transform: scale(1);
    transition: transform .25s ease-in-out;
    transform-origin: bottom
}

._app-nav-gnb .mega-wrap .ggteam a .svg-icon {
    position: absolute;
    right: 12px;
    bottom: 42px;
    left: auto;
    top: auto
}

._app-nav-gnb .mega-wrap .ggteam a strong {
    position: relative;
    display: block;
    padding-right: 24px;
    padding-left: 24px;
    text-align: center;
    height: 56px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #404040;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

@media (min-width: 768px) {
    ._app-nav-gnb .mega-wrap .ggteam a strong {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._app-nav-gnb .mega-wrap .ggteam a strong {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._app-nav-gnb .mega-wrap .ggteam a strong:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ea0000 50%, transparent)
}

._app-nav-gnb .mega-wrap .ggteam a.show-all strong {
    text-align: right
}

._app-nav-gnb .mega-wrap .ggteam a.show-all strong:after {
    display: none
}

._app-nav-gnb .mega-wrap .ggteam a:active:before, .no-touch ._app-nav-gnb .mega-wrap .ggteam a:hover:not(.hover-disable):before {
    border-color: #dc3333
}

._app-nav-gnb .mega-wrap .ggteam a:active figure img, .no-touch ._app-nav-gnb .mega-wrap .ggteam a:hover:not(.hover-disable) figure img {
    transform: scale(1.025);
    transition-duration: 1.5s
}

._app-nav-gnb .mega-wrap .ggteam a > strong {
    line-height: 56px
}

._app-nav-gnb .mega-wrap.active {
    visibility: visible;
    pointer-events: auto;
    height: auto
}

._app-nav-gnb .mega-wrap.active-id-1 .holder {
    -moz-column-gap: 40px;
    column-gap: 40px
}

._app-nav-gnb .mega-wrap.active-id-3 .sub-item > ul a {
    max-width: 258px
}

@media (min-width: 1244px) {
    ._app-nav-gnb, ._app-nav-gnb .nav-inner .bar {
        display: block
    }

    [dir=rtl] ._app-nav-gnb .nav-inner .bar {
        display: none
    }
}

@media (min-width: 1244px) and (max-width: 1672px) {
    ._app-nav-gnb > .nav-inner {
        margin-left: 234px
    }

    ._app-nav-gnb > .mega-wrap .holder {
        margin-left: 40px
    }

    [dir=rtl] ._app-nav-gnb > .nav-inner {
        margin-left: 0;
        margin-right: 234px
    }

    [dir=rtl] ._app-nav-gnb > .mega-wrap .holder {
        margin-left: 0;
        margin-right: 40px
    }
}

._app-nav-sub .holder {
    position: relative;
    width: 100%;
    padding-top: 8px
}

._app-nav-sub .holder:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 1px;
    opacity: .3;
    background-color: #fff
}

._app-nav-sub .holder .title {
    position: absolute;
    left: 64px;
    top: -64px;
    right: 64px;
    height: 64px;
    padding-bottom: 4px;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .54px;
    font-weight: 500;
    font-weight: 400;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 64px;
    text-align: center
}

@media (min-width: 768px) {
    ._app-nav-sub .holder .title {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .54px
    }
}

@media (min-width: 1244px) {
    ._app-nav-sub .holder .title {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: .6px
    }
}

._app-nav-sub .holder .title:after {
    content: "";
    display: block;
    position: absolute;
    right: 26px;
    top: 50%;
    left: auto;
    bottom: auto;
    width: 4px;
    height: 4px;
    border-radius: 1px;
    margin-top: -1px;
    background-color: #fff;
    display: none
}

._app-nav-sub .holder ._slider {
    flex: 1;
    position: relative;
    height: 48px;
    max-width: 100%
}

._app-nav-sub .holder ._slider .swiper-button-next, ._app-nav-sub .holder ._slider .swiper-button-prev {
    display: none
}

._app-nav-sub .holder ._slider .swiper-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

._app-nav-sub .holder ._slider a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    padding-top: 12px;
    padding-right: 0;
    padding-bottom: 12px;
    padding-left: 0;
    height: 48px;
    color: hsla(0, 0%, 100%, .3);
    transition: color .25s ease-out
}

._app-nav-sub .holder ._slider a:active, .no-touch ._app-nav-sub .holder ._slider a:hover:not(.hover-disable) {
    background-color: transparent;
    color: #fff
}

._app-nav-sub .holder ._slider a:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    right: 100%;
    height: 1px;
    background-color: #fff
}

._app-nav-sub .holder ._slider a.active {
    color: #fff
}

._app-nav-sub .holder ._slider a.active:after {
    right: 0
}

._app-nav-sub .holder ._slider .swiper-slide {
    width: auto;
    max-width: none;
    margin-right: 24px
}

@media (min-width: 768px) {
    ._app-nav-sub .holder .title {
        top: -72px;
        height: 72px;
        line-height: 72px
    }
}

@media (min-width: 1244px) {
    ._app-nav-sub .holder {
        width: 1200px;
        padding-top: 16px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        align-items: center
    }

    ._app-nav-sub .holder:before {
        left: 0;
        top: -1px;
        right: auto;
        bottom: auto;
        width: 783px;
        background: linear-gradient(90deg, #fff 50%, hsla(0, 0%, 100%, 0) 99.11%)
    }

    ._app-nav-sub .holder .title {
        flex: none;
        position: relative;
        left: auto;
        top: auto;
        right: auto;
        height: auto;
        display: block;
        padding-right: 56px;
        padding-bottom: 0;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px;
        font-weight: 500;
        color: hsla(0, 0%, 100%, .3)
    }

    ._app-nav-sub .holder .title:after {
        content: "";
        display: block;
        position: absolute;
        right: 26px;
        top: 50%;
        left: auto;
        bottom: auto;
        width: 4px;
        height: 4px;
        border-radius: 1px;
        margin-top: -1px;
        background-color: #fff
    }
}

@media (min-width: 1244px) and (min-width: 768px) {
    ._app-nav-sub .holder .title {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) and (min-width: 1244px) {
    ._app-nav-sub .holder .title {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) and (max-width: 1436px) {
    ._app-nav-sub .holder {
        width: auto
    }
}

@media (min-width: 1244px) and (max-width: 1672px) {
    ._app-nav-sub .holder {
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 194px
    }
}

.home ._app-nav-sub .holder:before {
    display: none
}

[dir=rtl] ._app-nav-sub .holder:before {
    left: auto;
    right: 0;
    background: linear-gradient(240deg, #fff 50%, hsla(0, 0%, 100%, 0) 99.11%)
}

@media (min-width: 1244px) and (max-width: 1672px) {
    [dir=rtl] ._app-nav-sub .holder {
        margin-top: 0;
        margin-right: 218px;
        margin-bottom: 0;
        margin-left: 0
    }
}

@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-container-vertical > .swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
    transform: translateZ(0)
}

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap
}

.swiper-container-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-container-pointer-events {
    touch-action: pan-y
}

.swiper-container-pointer-events.swiper-container-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-container-3d {
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: normal;
    line-height: 1
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
    --swiper-navigation-color: #fff
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
    --swiper-navigation-color: #000
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: opacity .3s;
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: transform .2s, top .2s
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, left .2s
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, right .2s
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-white {
    --swiper-pagination-color: #fff
}

.swiper-pagination-black {
    --swiper-pagination-color: #000
}

.swiper-pagination-lock {
    display: none
}

._slider {
    position: relative
}

._slider .swiper-button-next, ._slider .swiper-button-prev {
    z-index: 2;
    margin-top: 0
}

._slider .swiper-button-next:after, ._slider .swiper-button-prev:after {
    display: none
}

._slider .swiper-button-next .stroke-target, ._slider .swiper-button-prev .stroke-target {
    stroke: #fff
}

._slider .swiper-button i {
    width: 60px;
    height: 60px
}

._slider .swiper-button-prev {
    left: 0
}

._slider .swiper-button-prev i {
    position: relative;
    display: block;
    transform: scale(1.25)
}

._slider .swiper-button-prev i:before {
    transform-origin: 1.5px 100%;
    top: 50%;
    transform: translateY(-100%) rotate(45deg)
}

._slider .swiper-button-prev i:after, ._slider .swiper-button-prev i:before {
    position: absolute;
    left: 35%;
    display: block;
    width: 4px;
    height: 22px;
    background: #fff;
    border-radius: 3px;
    content: ""
}

._slider .swiper-button-prev i:after {
    transform-origin: 1.5px 100%;
    top: calc(50% - 2px);
    transform: translateY(-100%) rotate(135deg)
}

._slider .swiper-button-next {
    right: 0
}

._slider .swiper-button-next i {
    position: relative;
    display: block;
    transform: scale(1.25) rotate(180deg)
}

._slider .swiper-button-next i:before {
    transform-origin: 1.5px 100%;
    top: 50%;
    transform: translateY(-100%) rotate(45deg)
}

._slider .swiper-button-next i:after, ._slider .swiper-button-next i:before {
    position: absolute;
    left: 35%;
    display: block;
    width: 4px;
    height: 22px;
    background: #fff;
    border-radius: 3px;
    content: ""
}

._slider .swiper-button-next i:after {
    transform-origin: 1.5px 100%;
    top: calc(50% - 2px);
    transform: translateY(-100%) rotate(135deg)
}

._slider .swiper-button-more, ._slider .swiper-navigation.more .swiper-button-next.swiper-button-disabled {
    display: none
}

._slider .swiper-navigation.more .swiper-button-next.swiper-button-disabled + .swiper-button-more {
    display: flex
}

._slider .swiper-navigation.more .swiper-button-next.swiper-button-disabled + .swiper-button-more .stroke-target {
    stroke: #d30000
}

._slider .swiper-scrollbar {
    background-color: hsla(0, 0%, 100%, .1);
    height: 4px
}

._slider .swiper-scrollbar .swiper-scrollbar-drag {
    background-color: #d30000
}

._slider .swiper-pagination {
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    z-index: 2;
    text-align: center
}

._app-nav-utils {
    position: absolute;
    right: 24px;
    top: 0;
    left: auto;
    bottom: auto;
    z-index: 2;
    height: 64px;
    display: flex;
    align-items: center
}

._app-nav-utils a, ._app-nav-utils label {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 500;
    color: #fff
}

@media (min-width: 768px) {
    ._app-nav-utils a, ._app-nav-utils label {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._app-nav-utils a, ._app-nav-utils label {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._app-nav-utils ._app-nav-util.nav-header {
    display: none
}

._app-nav-utils ._app-nav-regions {
    order: 2;
    display: none
}

._app-nav-utils ._app-nav-signup {
    order: 1;
    display: none
}

._app-nav-utils ._app-nav-toggle {
    order: 3
}

._app-nav-utils .util-group-1 {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px
}

._app-nav-utils .util-group-1 ._app-record-holder {
    pointer-events: none
}

._app-nav-utils .util-group-1 ._app-record-holder .m {
    display: none
}

._app-nav-utils .util-group-2 {
    display: none;
    float: right
}

.home ._app-nav-utils ._app-nav-signup {
    display: block
}

@media (min-width: 768px) {
    ._app-nav-utils {
        height: 72px
    }
}

@media (min-width: 1244px) {
    ._app-nav-utils {
        position: absolute;
        right: 40px;
        top: 0;
        left: auto;
        bottom: auto;
        display: block
    }

    ._app-nav-utils ._app-nav-util.nav-header {
        display: flex
    }

    ._app-nav-utils ._app-nav-regions, ._app-nav-utils ._app-nav-signup {
        order: inherit;
        display: block
    }

    ._app-nav-utils ._app-nav-toggle {
        order: inherit
    }

    ._app-nav-utils .util-group-1 {
        padding-top: 8px;
        padding-bottom: 8px;
        gap: 24px;
        z-index: 1
    }

    ._app-nav-utils .util-group-1 ._app-record-holder {
        pointer-events: auto
    }

    ._app-nav-utils .util-group-2 {
        padding-top: 5px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 16px
    }
}

[dir=rtl] ._app-nav-utils .util-group-1 {
    flex-direction: row-reverse
}

@media (min-width: 1244px) {
    [dir=rtl] ._app-nav-utils .util-group-2 {
        position: fixed;
        left: calc(50% - 600px);
        top: 47px;
        right: auto;
        bottom: auto
    }
}

._app-nav-util.nav-header {
    display: flex;
    align-items: center;
    gap: 24px
}

._app-nav-util.nav-header li {
    position: relative
}

._app-nav-util.nav-header li > a {
    display: flex;
    align-items: center;
    gap: 4px
}

._app-nav-util.nav-header li > a.disabled {
    pointer-events: none
}

@media (min-width: 1244px) {
    ._app-nav-util.nav-header li > ul {
        display: none;
        flex-direction: column;
        gap: 12px;
        position: absolute;
        right: 0;
        top: calc(100% + 11px);
        left: auto;
        bottom: auto;
        padding: 28px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .05)
    }

    ._app-nav-util.nav-header li > ul a {
        color: #000;
        white-space: nowrap
    }

    ._app-nav-util.nav-header li.children:before {
        content: "";
        display: block;
        position: absolute;
        top: 24px;
        right: 0;
        bottom: -12px;
        left: 0
    }

    ._app-nav-util.nav-header li.active .svg-icon {
        transform: rotate(180deg)
    }

    ._app-nav-util.nav-header li.active ul {
        display: flex
    }

    ._app-nav-util.nav-header li.active ul a:active, .no-touch ._app-nav-util.nav-header li.active ul a:hover:not(.hover-disable) {
        text-decoration: underline
    }
}

._app-nav-util.collapse {
    display: flex;
    flex-direction: column;
    margin-top: 64px;
    row-gap: 24px
}

._app-nav-util.collapse > li .svg-icon {
    display: none
}

._app-nav-util.collapse > li a {
    display: block;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .48px;
    font-weight: 500;
    color: #000
}

@media (min-width: 768px) {
    ._app-nav-util.collapse > li a {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    ._app-nav-util.collapse > li a {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

._app-nav-util.collapse > li > a {
    display: flex;
    align-items: center;
    gap: 12px
}

._app-nav-util.collapse > li > a:before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-position-x: 0;
    background-position-y: 0;
    background-size: cover;
    background-repeat: no-repeat
}

._app-nav-util.collapse > li.AboutUs {
    order: 1
}

._app-nav-util.collapse > li.AboutUs a:before {
    background-image: url('../images/icon-alert-circle-24.png')
}

._app-nav-util.collapse > li.Contact {
    order: 2
}

._app-nav-util.collapse > li.Contact a:before {
    background-image: url('../images/icon-mail-24.png')
}

._app-nav-util.collapse > li.StreamerMode a:before {
    background-image: url('../images/icon-streamer-mode-24.png')
}

._app-nav-util.collapse > li.Partners {
    order: 99
}

._app-nav-util.collapse > li.Partners a:before {
    background-image: url('../images/icon-heart-handshake-24.png')
}

._app-nav-util.collapse > li.Help {
    order: 3
}

._app-nav-util.collapse > li.Help a:before {
    background-image: url('../images/icon-headset-24.png')
}

._app-nav-util.collapse > li.children ul {
    margin-top: 16px
}

._app-nav-util.collapse > li.children ul a {
    font-weight: 400;
    color: #404040;
    padding-right: 36px;
    padding-left: 36px
}

._app-nav-util.collapse > li.children li + li {
    margin-top: 12px
}

._app-nav-toggle {
    display: flex;
    align-items: center
}

._app-nav-toggle.collapse {
    color: #000
}

._app-nav-toggle.collapse .svg-icon-close path {
    stroke: #000
}

button._app-nav-download.nav-header {
    height: 40px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: .64px;
    font-weight: 500;
    color: #fff
}

button._app-nav-download.nav-header span {
    font-size: inherit;
    font-weight: 500
}

button._app-nav-download.collapse {
    height: 48px;
    margin-top: 16px;
    margin-right: 24px;
    margin-bottom: 24px;
    margin-left: 24px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: .64px;
    font-weight: 500;
    color: #fff;
    flex: 1
}

button._app-nav-download.collapse svg {
    display: none
}

._color-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    height: 48px;
    padding-top: 0;
    padding-right: 16px;
    padding-bottom: 0;
    padding-left: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 80px;
    box-sizing: border-box;
    gap: 8px;
    border: 0;
    transition: background-color .25s ease-in-out, border-color .24s ease-in-out
}

._color-button:active, .no-touch ._color-button:hover:not(.hover-disable) {
    background-color: hsla(0, 0%, 100%, .3)
}

._color-button[readonly] {
    cursor: auto
}

._color-button[readonly]:active, .no-touch ._color-button[readonly]:hover:not(.hover-disable) {
    background-color: transparent
}

._color-button[disabled] {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none
}

._color-button.red, ._color-button.red:active, .no-touch ._color-button.red:hover:not(.hover-disable) {
    background-color: #d30000
}

._color-button.gray-line-blur {
    background-color: hsla(0, 0%, 100%, .1);
    border: 1px solid hsla(0, 0%, 100%, .1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px)
}

._color-button.gray-line-blur:active, .no-touch ._color-button.gray-line-blur:hover:not(.hover-disable) {
    background-color: hsla(0, 0%, 100%, .3)
}

._color-button.line {
    color: #000
}

._color-button.line, ._color-button.line:active, .no-touch ._color-button.line:hover:not(.hover-disable) {
    background-color: #fff;
    border: 1px solid #000
}

._color-button.icon {
    width: 48px;
    height: 48px;
    padding: 0
}

._color-button.icon i {
    font-size: 24px !important
}

._home section:not(.not) {
    padding-right: 24px;
    padding-left: 24px
}

._home .inner {
    height: 100%
}

._home .buttons {
    display: flex
}

._home .btn-fill, ._home .btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 80px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: .64px;
    font-weight: 500;
    padding-top: 9px;
    padding-right: 24px;
    padding-bottom: 9px;
    padding-left: 24px;
    width: 220px;
    transition: background-color .25s ease-in-out, border-color .24s ease-in-out
}

._home .btn-line {
    border: 1px solid #ff0505;
    color: #ff0505;
    box-shadow: inset 0 0 0 1px transparent;
    transition: box-shadow .25s ease-in-out
}

.no-touch ._home .btn-line:hover:not(.hover-disable) {
    border-color: red;
    color: red;
    box-shadow: inset 0 0 0 1px red
}

.no-touch ._home .btn-line:active:not(.hover-disable) {
    border-color: #d30000;
    color: #d30000;
    box-shadow: inset 0 0 0 1px transparent
}

._home .btn-fill {
    background-color: #d30000;
    color: #fff
}

._home .btn-fill:active, .no-touch ._home .btn-fill:hover:not(.hover-disable) {
    background-color: red;
    border: 0
}

.no-touch ._home .btn-fill:active:not(.hover-disable) {
    background-color: #960000
}

._home .slider-buttons {
    position: absolute;
    z-index: 1;
    display: flex;
    gap: 20px
}

._home .slider-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: hsla(0, 0%, 100%, .2);
    border-radius: 100%;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: background-color .25s ease-in-out
}

._home .slider-buttons .btn:active, .no-touch ._home .slider-buttons .btn:hover:not(.hover-disable) {
    background-color: hsla(0, 0%, 100%, .3)
}

.no-touch ._home .slider-buttons .btn:active:not(.hover-disable) {
    background-color: hsla(0, 0%, 100%, .1)
}

._home-section-jumbotron {
    position: relative;
    height: 448px;
    padding-right: 0;
    padding-left: 0;
    overflow: visible !important
}

._home-section-jumbotron:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    right: auto;
    top: auto;
    right: 0;
    z-index: 2;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d30000 50%, transparent)
}

._home-section-jumbotron div.swiper-pagination {
    position: absolute;
    left: 0;
    bottom: 16px;
    right: auto;
    top: auto;
    z-index: 2;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

._home-section-jumbotron div.swiper-pagination .swiper-pagination-bullet {
    width: 29px;
    height: 4px;
    margin-right: 4px;
    margin-left: 4px;
    border-radius: 17px;
    background-color: hsla(0, 0%, 100%, .3);
    opacity: 1
}

._home-section-jumbotron div.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #d30000
}

._home-section-jumbotron .swiper-slide-prev article {
    transform: translateX(-160px)
}

._home-section-jumbotron .swiper-slide-prev .buttons, ._home-section-jumbotron .swiper-slide-prev article + article {
    transform: translateX(-80px)
}

._home-section-jumbotron .swiper-slide-active .buttons, ._home-section-jumbotron .swiper-slide-active article {
    transition: transform .65s cubic-bezier(.25, .46, .45, .94);
    transform: translateX(0)
}

._home-section-jumbotron .swiper-slide-next article {
    transform: translateX(160px)
}

._home-section-jumbotron .swiper-slide-next .buttons, ._home-section-jumbotron .swiper-slide-next article + article {
    transform: translateX(80px)
}

._home-section-jumbotron .swiper-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    display: none
}

._home-section-jumbotron .swiper-button img {
    opacity: .3;
    transition: opacity .25s ease-in-out
}

._home-section-jumbotron .swiper-button:active, .no-touch ._home-section-jumbotron .swiper-button:hover:not(.hover-disable) {
    background-color: hsla(0, 0%, 100%, .05)
}

._home-section-jumbotron .swiper-button:active img, .no-touch ._home-section-jumbotron .swiper-button:hover:not(.hover-disable) img {
    opacity: 1
}

.no-touch ._home-section-jumbotron .swiper-button:active:not(.hover-disable) {
    background-color: hsla(0, 0%, 100%, .01)
}

._home-section-jumbotron .swiper-button.swiper-button-prev {
    left: 40px
}

._home-section-jumbotron .swiper-button.swiper-button-prev img {
    transform: rotate(180deg)
}

._home-section-jumbotron .swiper-button.swiper-button-next {
    right: 40px
}

@media (min-width: 768px) {
    ._home-section-jumbotron {
        height: 640px
    }
}

@media (min-width: 1244px) {
    ._home-section-jumbotron {
        height: 720px
    }

    ._home-section-jumbotron .swiper-button {
        display: flex
    }
}

._home-section-jumbotron .item-jumbotron {
    background-color: #010101
}

._home-section-jumbotron .item-jumbotron .inner {
    position: relative;
    z-index: 1
}

._home-section-jumbotron .item-jumbotron .image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    max-height: 448px
}

._home-section-jumbotron .item-jumbotron .image img {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover
}

._home-section-jumbotron .item-jumbotron .buttons {
    position: absolute;
    left: 32px;
    bottom: 56px;
    right: auto;
    top: auto
}

._home-section-jumbotron .item-jumbotron .btn-more {
    display: inline-block;
    padding-top: 5px;
    padding-right: 24px;
    padding-bottom: 5px;
    padding-left: 24px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .56px;
    font-weight: 500;
    color: #fff;
    border-radius: 66px;
    background-color: hsla(0, 0%, 100%, .1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    text-align: center;
    transition: background-color .25s ease-in-out;
    border: 1px solid hsla(0, 0%, 100%, .1)
}

._home-section-jumbotron .item-jumbotron .btn-more:active, .no-touch ._home-section-jumbotron .item-jumbotron .btn-more:hover:not(.hover-disable) {
    background-color: hsla(0, 0%, 100%, .3)
}

.no-touch ._home-section-jumbotron .item-jumbotron .btn-more:active:not(.hover-disable) {
    background-color: hsla(0, 0%, 100%, .1)
}

@media (min-width: 768px) {
    ._home-section-jumbotron .item-jumbotron .image {
        max-height: 640px
    }

    ._home-section-jumbotron .item-jumbotron .btn-fill {
        padding-right: 42px;
        padding-left: 42px
    }
}

@media (min-width: 1244px) {
    ._home-section-jumbotron .item-jumbotron .image {
        max-height: 720px
    }

    ._home-section-jumbotron .item-jumbotron .buttons {
        left: 0;
        bottom: 80px;
        right: auto;
        top: auto
    }
}

._home-section-jumbotron .item-jumbotron.type-join .inner {
    padding-top: 96px;
    padding-right: 32px;
    padding-bottom: 32px;
    padding-left: 32px
}

._home-section-jumbotron .item-jumbotron.type-join .title {
    display: inline-block;
    font-size: 52px;
    line-height: 56px;
    letter-spacing: .52px;
    font-weight: 900;
    background: linear-gradient(90deg, #ad792f, #c9a559 15%, #ffefba 50%, #c9a559 85%, #ad792f);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: normal
}

._home-section-jumbotron .item-jumbotron.type-join .sub-title {
    margin-top: 8px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .48px;
    font-weight: 500;
    white-space: normal
}

._home-section-jumbotron .item-jumbotron.type-join .message {
    margin-top: 8px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .36px;
    font-weight: 400
}

._home-section-jumbotron .item-jumbotron.type-join .btn-signup {
    width: auto
}

._home-section-jumbotron .item-jumbotron.type-join .sign {
    display: none
}

._home-section-jumbotron .item-jumbotron.type-join .name {
    margin-top: 8px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 500;
    color: #fff
}

@media (min-width: 768px) {
    ._home-section-jumbotron .item-jumbotron.type-join .name {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-jumbotron .item-jumbotron.type-join .name {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._home-section-jumbotron .item-jumbotron.type-join .label {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: .36px;
    font-weight: 400;
    color: #a3a3a3
}

@media (min-width: 768px) {
    ._home-section-jumbotron .item-jumbotron.type-join .label {
        font-size: 12px;
        line-height: 18px;
        letter-spacing: .36px
    }
}

@media (min-width: 1244px) {
    ._home-section-jumbotron .item-jumbotron.type-join .label {
        font-size: 12px;
        line-height: 18px;
        letter-spacing: .36px
    }
}

._home-section-jumbotron .item-jumbotron.type-join .messages {
    margin-top: 16px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #d4d4d4;
    text-align: right;
    display: none
}

@media (min-width: 768px) {
    ._home-section-jumbotron .item-jumbotron.type-join .messages {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-jumbotron .item-jumbotron.type-join .messages {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 768px) {
    ._home-section-jumbotron .item-jumbotron.type-join .inner {
        padding-top: 144px;
        padding-right: 80px;
        padding-bottom: 80px;
        padding-left: 80px
    }

    ._home-section-jumbotron .item-jumbotron.type-join article + article {
        position: absolute;
        right: 32px;
        bottom: 60px;
        left: auto;
        top: auto;
        text-align: right
    }

    ._home-section-jumbotron .item-jumbotron.type-join .title {
        font-size: 82px;
        line-height: 76px;
        letter-spacing: .82px
    }

    ._home-section-jumbotron .item-jumbotron.type-join .sub-title {
        margin-top: 16px;
        font-size: 20px;
        line-height: 24px;
        letter-spacing: .6px;
        font-weight: 500;
        color: #fff
    }

    ._home-section-jumbotron .item-jumbotron.type-join .message {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px;
        font-weight: 400;
        color: #a3a3a3
    }

    ._home-section-jumbotron .item-jumbotron.type-join .sign {
        display: inline-block
    }

    ._home-section-jumbotron .item-jumbotron.type-join .name {
        font-size: 22px;
        line-height: 28px;
        letter-spacing: .66px;
        font-weight: 500
    }

    ._home-section-jumbotron .item-jumbotron.type-join .label {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }

    ._home-section-jumbotron .item-jumbotron.type-join .buttons {
        position: static;
        margin-top: 40px
    }
}

@media (min-width: 768px) and (min-width: 768px) {
    ._home-section-jumbotron .item-jumbotron.type-join .sub-title {
        font-size: 22px;
        line-height: 26px;
        letter-spacing: .66px
    }
}

@media (min-width: 768px) and (min-width: 1244px) {
    ._home-section-jumbotron .item-jumbotron.type-join .sub-title {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: .72px
    }
}

@media (min-width: 768px) and (min-width: 768px) {
    ._home-section-jumbotron .item-jumbotron.type-join .message {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 768px) and (min-width: 1244px) {
    ._home-section-jumbotron .item-jumbotron.type-join .message {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 768px) and (min-width: 768px) {
    ._home-section-jumbotron .item-jumbotron.type-join .name {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: .72px
    }
}

@media (min-width: 768px) and (min-width: 1244px) {
    ._home-section-jumbotron .item-jumbotron.type-join .name {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: .84px
    }
}

@media (min-width: 768px) and (min-width: 768px) {
    ._home-section-jumbotron .item-jumbotron.type-join .label {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 768px) and (min-width: 1244px) {
    ._home-section-jumbotron .item-jumbotron.type-join .label {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-jumbotron .item-jumbotron.type-join .inner {
        padding-top: 250px;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0
    }

    ._home-section-jumbotron .item-jumbotron.type-join .title {
        font-size: 88px;
        line-height: 82px;
        letter-spacing: .88px
    }

    ._home-section-jumbotron .item-jumbotron.type-join .sub-title {
        margin-top: 24px;
        font-size: 26px;
        line-height: 34px;
        letter-spacing: .78px;
        font-weight: 500
    }

    ._home-section-jumbotron .item-jumbotron.type-join .messages {
        display: inline-block
    }

    ._home-section-jumbotron .item-jumbotron.type-join .buttons {
        margin-top: 24px
    }

    ._home-section-jumbotron .item-jumbotron.type-join .btn-fill {
        padding-right: 24px;
        padding-left: 24px;
        min-width: 176px
    }
}

@media (min-width: 1244px) and (min-width: 768px) {
    ._home-section-jumbotron .item-jumbotron.type-join .sub-title {
        font-size: 30px;
        line-height: 38px;
        letter-spacing: .9px
    }
}

@media (min-width: 1244px) and (min-width: 1244px) {
    ._home-section-jumbotron .item-jumbotron.type-join .sub-title {
        font-size: 42px;
        line-height: 48px;
        letter-spacing: 1.26px
    }
}

._home-section-jumbotron .item-jumbotron:not(.type-join) .inner {
    padding-top: 96px;
    padding-right: 32px;
    padding-bottom: 0;
    padding-left: 32px
}

._home-section-jumbotron .item-jumbotron:not(.type-join) .message, ._home-section-jumbotron .item-jumbotron:not(.type-join) .title {
    white-space: normal
}

._home-section-jumbotron .item-jumbotron:not(.type-join) .title-small {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .6px;
    font-weight: 500;
    color: #d4d4d4
}

@media (min-width: 768px) {
    ._home-section-jumbotron .item-jumbotron:not(.type-join) .title-small {
        font-size: 22px;
        line-height: 26px;
        letter-spacing: .66px
    }
}

@media (min-width: 1244px) {
    ._home-section-jumbotron .item-jumbotron:not(.type-join) .title-small {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: .72px
    }
}

._home-section-jumbotron .item-jumbotron:not(.type-join) .title-small + .title {
    margin-top: 4px
}

._home-section-jumbotron .item-jumbotron:not(.type-join) .title {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: .36px;
    font-weight: 700;
    color: #fff
}

@media (min-width: 768px) {
    ._home-section-jumbotron .item-jumbotron:not(.type-join) .title {
        font-size: 60px;
        line-height: 64px;
        letter-spacing: .6px
    }
}

@media (min-width: 1244px) {
    ._home-section-jumbotron .item-jumbotron:not(.type-join) .title {
        font-size: 68px;
        line-height: 72px;
        letter-spacing: .68px
    }
}

._home-section-jumbotron .item-jumbotron:not(.type-join) .message {
    margin-top: 4px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 500;
    color: #fee78a
}

@media (min-width: 768px) {
    ._home-section-jumbotron .item-jumbotron:not(.type-join) .message {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-jumbotron .item-jumbotron:not(.type-join) .message {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._home-section-jumbotron .item-jumbotron:not(.type-join) .title-sub {
    color: #fff;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: .96px;
    font-weight: 700;
    text-transform: capitalize !important
}

@media (min-width: 768px) {
    ._home-section-jumbotron .item-jumbotron:not(.type-join) .title-sub {
        font-size: 42px;
        line-height: 52px;
        letter-spacing: 1.26px
    }
}

@media (min-width: 1244px) {
    ._home-section-jumbotron .item-jumbotron:not(.type-join) .title-sub {
        font-size: 48px;
        line-height: 58px;
        letter-spacing: 1.44px
    }
}

@media (min-width: 768px) {
    ._home-section-jumbotron .item-jumbotron:not(.type-join) .inner {
        padding-top: 113px;
        padding-right: 160px;
        padding-bottom: 80px;
        padding-left: 80px
    }

    ._home-section-jumbotron .item-jumbotron:not(.type-join) .message, ._home-section-jumbotron .item-jumbotron:not(.type-join) .title-small + .title {
        margin-top: 8px
    }

    ._home-section-jumbotron .item-jumbotron:not(.type-join) .message {
        font-size: 22px;
        line-height: 28px;
        letter-spacing: .66px;
        font-weight: 500
    }
}

@media (min-width: 768px) and (min-width: 768px) {
    ._home-section-jumbotron .item-jumbotron:not(.type-join) .message {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: .72px
    }
}

@media (min-width: 768px) and (min-width: 1244px) {
    ._home-section-jumbotron .item-jumbotron:not(.type-join) .message {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: .84px
    }
}

@media (min-width: 1244px) {
    ._home-section-jumbotron .item-jumbotron:not(.type-join) .inner {
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center
    }
}

._home-section-monthly-rewards {
    text-align: center;
    background-color: #18181b
}

._home-section-monthly-rewards .inner {
    padding-top: 56px;
    padding-bottom: 56px
}

._home-section-monthly-rewards .title {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: .78px;
    font-weight: 500;
    color: #fff
}

@media (min-width: 768px) {
    ._home-section-monthly-rewards .title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: .96px
    }
}

@media (min-width: 1244px) {
    ._home-section-monthly-rewards .title {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: 1.2px;
        font-weight: 700
    }
}

._home-section-monthly-rewards .message {
    margin-top: 8px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #a3a3a3
}

@media (min-width: 768px) {
    ._home-section-monthly-rewards .message {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-monthly-rewards .message {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._home-section-monthly-rewards .buttons {
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
    flex-direction: column
}

._home-section-monthly-rewards .buttons a {
    flex: 1;
    width: auto;
    max-width: none
}

._home-section-monthly-rewards .group {
    margin-top: 32px
}

._home-section-monthly-rewards .group h4 {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .6px;
    font-weight: 500;
    color: #fff;
    padding-bottom: 24px
}

@media (min-width: 768px) {
    ._home-section-monthly-rewards .group h4 {
        font-size: 22px;
        line-height: 26px;
        letter-spacing: .66px
    }
}

@media (min-width: 1244px) {
    ._home-section-monthly-rewards .group h4 {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: .72px
    }
}

._home-section-monthly-rewards .items {
    gap: 32px;
    text-align: left
}

._home-section-monthly-rewards .item {
    width: 100%;
    max-width: 704px;
    margin-left: auto;
    margin-right: auto
}

._home-section-monthly-rewards .item .image {
    border-radius: 8px
}

._home-section-monthly-rewards .item .image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: inherit
}

._home-section-monthly-rewards .item h5 {
    margin-top: 20px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .48px;
    font-weight: 500;
    color: #fff
}

@media (min-width: 768px) {
    ._home-section-monthly-rewards .item h5 {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    ._home-section-monthly-rewards .item h5 {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

._home-section-monthly-rewards .item p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #a3a3a3
}

@media (min-width: 768px) {
    ._home-section-monthly-rewards .item p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-monthly-rewards .item p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 768px) {
    ._home-section-monthly-rewards .inner {
        padding-top: 64px;
        padding-bottom: 64px
    }

    ._home-section-monthly-rewards .message {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }

    ._home-section-monthly-rewards .group {
        margin-top: 40px
    }

    ._home-section-monthly-rewards .buttons {
        flex-direction: row
    }
}

@media (min-width: 768px) and (min-width: 768px) {
    ._home-section-monthly-rewards .message {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 768px) and (min-width: 1244px) {
    ._home-section-monthly-rewards .message {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    ._home-section-monthly-rewards .inner {
        padding-top: 104px;
        padding-bottom: 104px
    }

    ._home-section-monthly-rewards .message {
        margin-top: 12px
    }

    ._home-section-monthly-rewards .group {
        margin-top: 72px
    }

    ._home-section-monthly-rewards .item {
        max-width: 382px
    }

    ._home-section-monthly-rewards .item p {
        height: 66px;
        overflow: hidden;
        text-after-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3
    }

    ._home-section-monthly-rewards .item .image {
        overflow: hidden
    }

    ._home-section-monthly-rewards .item .image img {
        transform: scale(1);
        transition: transform .65s cubic-bezier(.25, .46, .45, .94)
    }

    ._home-section-monthly-rewards .item:active img, .no-touch ._home-section-monthly-rewards .item:hover:not(.hover-disable) img {
        transform: scale(1.05);
        transition-duration: 3s
    }

    ._home-section-monthly-rewards .buttons a {
        flex: none;
        padding-left: 8px;
        padding-right: 8px;
        word-break: break-all;
        max-width: inherit;
        text-align: center
    }

    ._home-section-monthly-rewards .buttons a + a {
        flex: 1
    }
}

._grid {
    display: grid !important;
    grid-template-columns:repeat(1, minmax(0, 1fr))
}

._grid.base {
    gap: 20px
}

@media (min-width: 1244px) {
    ._grid.base {
        gap: 24px
    }
}

._grid.gap-16 {
    gap: 16px
}

._grid.gap-24 {
    gap: 24px
}

._grid.gap-32 {
    gap: 32px
}

@media (min-width: 1244px) {
    ._grid.gap-32 {
        gap: 24px
    }
}

@media (min-width: 414px) {
    ._grid[ml="1"] {
        grid-template-columns:repeat(1, minmax(0, 1fr)) !important
    }

    ._grid > [ml="1"] {
        grid-column: span 1/span 1 !important
    }

    ._grid > [ml-r="1"] {
        grid-row: span 1/span 1 !important
    }

    ._grid[ml="2"] {
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important
    }

    ._grid > [ml="2"] {
        grid-column: span 2/span 2 !important
    }

    ._grid > [ml-r="2"] {
        grid-row: span 2/span 2 !important
    }

    ._grid[ml="3"] {
        grid-template-columns:repeat(3, minmax(0, 1fr)) !important
    }

    ._grid > [ml="3"] {
        grid-column: span 3/span 3 !important
    }

    ._grid > [ml-r="3"] {
        grid-row: span 3/span 3 !important
    }

    ._grid[ml="4"] {
        grid-template-columns:repeat(4, minmax(0, 1fr)) !important
    }

    ._grid > [ml="4"] {
        grid-column: span 4/span 4 !important
    }

    ._grid > [ml-r="4"] {
        grid-row: span 4/span 4 !important
    }

    ._grid[ml="5"] {
        grid-template-columns:repeat(5, minmax(0, 1fr)) !important
    }

    ._grid > [ml="5"] {
        grid-column: span 5/span 5 !important
    }

    ._grid > [ml-r="5"] {
        grid-row: span 5/span 5 !important
    }
}

@media (min-width: 768px) {
    ._grid[tp="1"] {
        grid-template-columns:repeat(1, minmax(0, 1fr)) !important
    }

    ._grid > [tp="1"] {
        grid-column: span 1/span 1 !important
    }

    ._grid > [tp-r="1"] {
        grid-row: span 1/span 1 !important
    }

    ._grid[tp="2"] {
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important
    }

    ._grid > [tp="2"] {
        grid-column: span 2/span 2 !important
    }

    ._grid > [tp-r="2"] {
        grid-row: span 2/span 2 !important
    }

    ._grid[tp="3"] {
        grid-template-columns:repeat(3, minmax(0, 1fr)) !important
    }

    ._grid > [tp="3"] {
        grid-column: span 3/span 3 !important
    }

    ._grid > [tp-r="3"] {
        grid-row: span 3/span 3 !important
    }

    ._grid[tp="4"] {
        grid-template-columns:repeat(4, minmax(0, 1fr)) !important
    }

    ._grid > [tp="4"] {
        grid-column: span 4/span 4 !important
    }

    ._grid > [tp-r="4"] {
        grid-row: span 4/span 4 !important
    }

    ._grid[tp="5"] {
        grid-template-columns:repeat(5, minmax(0, 1fr)) !important
    }

    ._grid > [tp="5"] {
        grid-column: span 5/span 5 !important
    }

    ._grid > [tp-r="5"] {
        grid-row: span 5/span 5 !important
    }
}

@media (min-width: 1024px) {
    ._grid[tl="1"] {
        grid-template-columns:repeat(1, minmax(0, 1fr)) !important
    }

    ._grid > [tl="1"] {
        grid-column: span 1/span 1 !important
    }

    ._grid > [tl-r="1"] {
        grid-row: span 1/span 1 !important
    }

    ._grid[tl="2"] {
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important
    }

    ._grid > [tl="2"] {
        grid-column: span 2/span 2 !important
    }

    ._grid > [tl-r="2"] {
        grid-row: span 2/span 2 !important
    }

    ._grid[tl="3"] {
        grid-template-columns:repeat(3, minmax(0, 1fr)) !important
    }

    ._grid > [tl="3"] {
        grid-column: span 3/span 3 !important
    }

    ._grid > [tl-r="3"] {
        grid-row: span 3/span 3 !important
    }

    ._grid[tl="4"] {
        grid-template-columns:repeat(4, minmax(0, 1fr)) !important
    }

    ._grid > [tl="4"] {
        grid-column: span 4/span 4 !important
    }

    ._grid > [tl-r="4"] {
        grid-row: span 4/span 4 !important
    }

    ._grid[tl="5"] {
        grid-template-columns:repeat(5, minmax(0, 1fr)) !important
    }

    ._grid > [tl="5"] {
        grid-column: span 5/span 5 !important
    }

    ._grid > [tl-r="5"] {
        grid-row: span 5/span 5 !important
    }
}

@media (min-width: 1244px) {
    ._grid[ds="1"] {
        grid-template-columns:repeat(1, minmax(0, 1fr)) !important
    }

    ._grid > [ds="1"] {
        grid-column: span 1/span 1 !important
    }

    ._grid > [ds-r="1"] {
        grid-row: span 1/span 1 !important
    }

    ._grid[ds="2"] {
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important
    }

    ._grid > [ds="2"] {
        grid-column: span 2/span 2 !important
    }

    ._grid > [ds-r="2"] {
        grid-row: span 2/span 2 !important
    }

    ._grid[ds="3"] {
        grid-template-columns:repeat(3, minmax(0, 1fr)) !important
    }

    ._grid > [ds="3"] {
        grid-column: span 3/span 3 !important
    }

    ._grid > [ds-r="3"] {
        grid-row: span 3/span 3 !important
    }

    ._grid[ds="4"] {
        grid-template-columns:repeat(4, minmax(0, 1fr)) !important
    }

    ._grid > [ds="4"] {
        grid-column: span 4/span 4 !important
    }

    ._grid > [ds-r="4"] {
        grid-row: span 4/span 4 !important
    }

    ._grid[ds="5"] {
        grid-template-columns:repeat(5, minmax(0, 1fr)) !important
    }

    ._grid > [ds="5"] {
        grid-column: span 5/span 5 !important
    }

    ._grid > [ds-r="5"] {
        grid-row: span 5/span 5 !important
    }
}

@media (min-width: 1440px) {
    ._grid[dm="1"] {
        grid-template-columns:repeat(1, minmax(0, 1fr)) !important
    }

    ._grid > [dm="1"] {
        grid-column: span 1/span 1 !important
    }

    ._grid > [dm-r="1"] {
        grid-row: span 1/span 1 !important
    }

    ._grid[dm="2"] {
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important
    }

    ._grid > [dm="2"] {
        grid-column: span 2/span 2 !important
    }

    ._grid > [dm-r="2"] {
        grid-row: span 2/span 2 !important
    }

    ._grid[dm="3"] {
        grid-template-columns:repeat(3, minmax(0, 1fr)) !important
    }

    ._grid > [dm="3"] {
        grid-column: span 3/span 3 !important
    }

    ._grid > [dm-r="3"] {
        grid-row: span 3/span 3 !important
    }

    ._grid[dm="4"] {
        grid-template-columns:repeat(4, minmax(0, 1fr)) !important
    }

    ._grid > [dm="4"] {
        grid-column: span 4/span 4 !important
    }

    ._grid > [dm-r="4"] {
        grid-row: span 4/span 4 !important
    }

    ._grid[dm="5"] {
        grid-template-columns:repeat(5, minmax(0, 1fr)) !important
    }

    ._grid > [dm="5"] {
        grid-column: span 5/span 5 !important
    }

    ._grid > [dm-r="5"] {
        grid-row: span 5/span 5 !important
    }
}

._grid[m="1"] {
    grid-template-columns:repeat(1, minmax(0, 1fr))
}

._grid > [m="1"] {
    grid-column: span 1/span 1
}

._grid > [m-r="1"] {
    grid-row: span 1/span 1
}

@media (min-width: 1680px) {
    ._grid[dl="1"] {
        grid-template-columns:repeat(1, minmax(0, 1fr)) !important
    }

    ._grid > [dl="1"] {
        grid-column: span 1/span 1 !important
    }

    ._grid > [dl-r="1"] {
        grid-row: span 1/span 1 !important
    }
}

._grid[m="2"] {
    grid-template-columns:repeat(2, minmax(0, 1fr))
}

._grid > [m="2"] {
    grid-column: span 2/span 2
}

._grid > [m-r="2"] {
    grid-row: span 2/span 2
}

@media (min-width: 1680px) {
    ._grid[dl="2"] {
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important
    }

    ._grid > [dl="2"] {
        grid-column: span 2/span 2 !important
    }

    ._grid > [dl-r="2"] {
        grid-row: span 2/span 2 !important
    }
}

._grid[m="3"] {
    grid-template-columns:repeat(3, minmax(0, 1fr))
}

._grid > [m="3"] {
    grid-column: span 3/span 3
}

._grid > [m-r="3"] {
    grid-row: span 3/span 3
}

@media (min-width: 1680px) {
    ._grid[dl="3"] {
        grid-template-columns:repeat(3, minmax(0, 1fr)) !important
    }

    ._grid > [dl="3"] {
        grid-column: span 3/span 3 !important
    }

    ._grid > [dl-r="3"] {
        grid-row: span 3/span 3 !important
    }
}

._grid[m="4"] {
    grid-template-columns:repeat(4, minmax(0, 1fr))
}

._grid > [m="4"] {
    grid-column: span 4/span 4
}

._grid > [m-r="4"] {
    grid-row: span 4/span 4
}

@media (min-width: 1680px) {
    ._grid[dl="4"] {
        grid-template-columns:repeat(4, minmax(0, 1fr)) !important
    }

    ._grid > [dl="4"] {
        grid-column: span 4/span 4 !important
    }

    ._grid > [dl-r="4"] {
        grid-row: span 4/span 4 !important
    }
}

._grid[m="5"] {
    grid-template-columns:repeat(5, minmax(0, 1fr))
}

._grid > [m="5"] {
    grid-column: span 5/span 5
}

._grid > [m-r="5"] {
    grid-row: span 5/span 5
}

@media (min-width: 1680px) {
    ._grid[dl="5"] {
        grid-template-columns:repeat(5, minmax(0, 1fr)) !important
    }

    ._grid > [dl="5"] {
        grid-column: span 5/span 5 !important
    }

    ._grid > [dl-r="5"] {
        grid-row: span 5/span 5 !important
    }
}

._grid > .col-1 {
    grid-column: span 1/span 1
}

._grid > .row-1 {
    grid-row: span 1/span 1
}

._grid > .col-2 {
    grid-column: span 2/span 2
}

._grid > .row-2 {
    grid-row: span 2/span 2
}

._grid > .col-3 {
    grid-column: span 3/span 3
}

._grid > .row-3 {
    grid-row: span 3/span 3
}

._grid > .col-4 {
    grid-column: span 4/span 4
}

._grid > .row-4 {
    grid-row: span 4/span 4
}

._grid > .col-5 {
    grid-column: span 5/span 5
}

._grid > .row-5 {
    grid-row: span 5/span 5
}

._responsive-img-new {
    display: block
}

._responsive-img-new.br img {
    border-radius: 16px;
    outline: none;
    border: 0
}

._responsive-img-new.img-rendering img {

    transform: translateZ(0);
    backface-visibility: hidden
}

._home-section-featured-tournaments {
    text-align: center;
    background-color: #000;
    padding-right: 0 !important;
    padding-left: 0 !important
}

._home-section-featured-tournaments .inner {
    padding-top: 56px;
    padding-bottom: 56px
}

._home-section-featured-tournaments .message, ._home-section-featured-tournaments .title {
    padding-right: 24px;
    padding-left: 24px
}

._home-section-featured-tournaments .title {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: .78px;
    font-weight: 500;
    color: #fff
}

@media (min-width: 768px) {
    ._home-section-featured-tournaments .title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: .96px
    }
}

@media (min-width: 1244px) {
    ._home-section-featured-tournaments .title {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: 1.2px;
        font-weight: 700
    }
}

._home-section-featured-tournaments .message {
    margin-top: 8px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #a3a3a3
}

@media (min-width: 768px) {
    ._home-section-featured-tournaments .message {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-featured-tournaments .message {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._home-section-featured-tournaments .group {
    margin-top: 32px
}

._home-section-featured-tournaments .group h4 {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .6px;
    font-weight: 500;
    color: #fff;
    padding-bottom: 24px
}

@media (min-width: 768px) {
    ._home-section-featured-tournaments .group h4 {
        font-size: 22px;
        line-height: 26px;
        letter-spacing: .66px
    }
}

@media (min-width: 1244px) {
    ._home-section-featured-tournaments .group h4 {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: .72px
    }
}

._home-section-featured-tournaments .swiper-group {
    position: relative
}

._home-section-featured-tournaments .swiper-wrapper {
    gap: 16px
}

._home-section-featured-tournaments .swiper-container-initialized .swiper-wrapper {
    padding: 10px;
    gap: 0
}

._home-section-featured-tournaments .swiper-slide {
    flex: none;
    width: 300px;
    height: 290px
}

._home-section-featured-tournaments .slider-buttons {
    left: 0;
    top: 50%;
    right: auto;
    bottom: auto;
    right: 0;
    transform: translateY(-50%);
    visibility: hidden;
    pointer-events: none
}

._home-section-featured-tournaments .slider-buttons .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

._home-section-featured-tournaments .slider-buttons .btn.swiper-button-disabled {
    pointer-events: none;
    opacity: 0
}

._home-section-featured-tournaments .slider-buttons .btn-prev {
    left: -20px
}

._home-section-featured-tournaments .slider-buttons .btn-next {
    right: -20px
}

._home-section-featured-tournaments .card-item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 300px;
    text-align: left;
    border-radius: 16px;
    overflow: hidden
}

._home-section-featured-tournaments .card-item .image {
    width: inherit;
    height: 160px;
    overflow: hidden
}

._home-section-featured-tournaments .card-item .image img {
    width: inherit;
    height: inherit;
    transform: scale(1);
    transition: transform 1.5s cubic-bezier(.25, .46, .45, .94)
}

._home-section-featured-tournaments .card-item .info {
    flex: 1;
    padding-top: 16px;
    padding-right: 24px;
    padding-bottom: 16px;
    padding-left: 24px;
    background-color: #18181b
}

._home-section-featured-tournaments .card-item .info h5 {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .48px;
    font-weight: 500;
    color: #fff
}

@media (min-width: 768px) {
    ._home-section-featured-tournaments .card-item .info h5 {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    ._home-section-featured-tournaments .card-item .info h5 {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

._home-section-featured-tournaments .card-item .info p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #d4d4d4;
    overflow: hidden;
    text-after-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3
}

@media (min-width: 768px) {
    ._home-section-featured-tournaments .card-item .info p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-featured-tournaments .card-item .info p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._home-section-featured-tournaments .card-item .info-more {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 48px;
    left: -1px;
    padding: 32px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(48, 36, 32, .8);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    background-position: 50% 0;
    background-size: cover;
    background-repeat: no-repeat
}

._home-section-featured-tournaments .card-item .info-more ul {
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400
}

._home-section-featured-tournaments .card-item .info-more ul > li {
    position: relative;
    padding-left: 16px
}

._home-section-featured-tournaments .card-item .info-more ul > li:before {
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    top: 10px;
    right: auto;
    bottom: auto;
    width: 3px;
    height: 3px;
    background-color: #d4d4d4;
    border-radius: 3px
}

[lang=ar] ._home-section-featured-tournaments .card-item .info-more ul > li {
    padding-right: 16px
}

[lang=ar] ._home-section-featured-tournaments .card-item .info-more ul > li:before {
    right: 5px;
    top: 10px;
    left: auto;
    bottom: auto
}

@media (min-width: 768px) {
    ._home-section-featured-tournaments .card-item .info-more ul {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-featured-tournaments .card-item .info-more ul {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._home-section-featured-tournaments .card-item.color-red .info {
    background: linear-gradient(90deg, #6b2323 -3.78%, #18181b 102.6%)
}

._home-section-featured-tournaments .card-item.color-red .info-more {
    background-image: url('../images/home_section_featured_tournaments_card_item_bg_red.webp')
}

._home-section-featured-tournaments .card-item.color-yellow .info {
    background: linear-gradient(90deg, #675729, #18181b)
}

._home-section-featured-tournaments .card-item.color-yellow .info-more {
    background-image: url('../images/home_section_featured_tournaments_card_item_bg_yellow.webp')
}

._home-section-featured-tournaments .card-item.color-green .info {
    background: linear-gradient(90deg, #404b1e, #18181b)
}

._home-section-featured-tournaments .card-item.color-green .info-more {
    background-image: url('../images/home_section_featured_tournaments_card_item_bg_green.webp')
}

._home-section-featured-tournaments .card-item.color-brown .info {
    background: linear-gradient(90deg, #775207, #18181b)
}

._home-section-featured-tournaments .card-item.color-brown .info-more {
    background-image: url('../images/home_section_featured_tournaments_card_item_bg_brown.webp')
}

._home-section-featured-tournaments .card-item.color-red-brown .info {
    background: linear-gradient(90deg, #802906, #18181b)
}

._home-section-featured-tournaments .card-item.color-red-brown .info-more {
    background-image: url('../images/home_section_featured_tournaments_card_item_bg_red_brown.webp')
}

._home-section-featured-tournaments .card-item.tournaments .info h5 {
    overflow: hidden;
    text-after-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2
}

@media (min-width: 768px) {
    ._home-section-featured-tournaments .inner {
        padding-top: 64px;
        padding-bottom: 64px
    }

    ._home-section-featured-tournaments .group {
        margin-top: 56px
    }
}

@media (min-width: 1244px) {
    ._home-section-featured-tournaments .inner {
        padding-top: 104px;
        padding-bottom: 104px
    }

    ._home-section-featured-tournaments .message {
        margin-top: 12px
    }

    ._home-section-featured-tournaments .group {
        margin-top: 72px
    }

    ._home-section-featured-tournaments .swiper-wrapper {
        padding-left: 0;
        gap: 24px
    }

    ._home-section-featured-tournaments .swiper-container-initialized .swiper-wrapper {
        gap: 0
    }

    ._home-section-featured-tournaments .swiper-slide {
        height: 250px
    }

    ._home-section-featured-tournaments .slider-buttons {
        visibility: visible;
        pointer-events: auto
    }

    ._home-section-featured-tournaments .card-item {
        width: 384px
    }

    ._home-section-featured-tournaments .card-item .image {
        height: 202px
    }

    ._home-section-featured-tournaments .card-item .info {
        padding-top: 12px;
        padding-right: 32px;
        padding-bottom: 12px;
        padding-left: 32px
    }

    ._home-section-featured-tournaments .card-item .info p {
        display: none !important
    }

    ._home-section-featured-tournaments .card-item .info-more {
        transition: opacity .25s ease-in-out
    }

    ._home-section-featured-tournaments .card-item:active .image img, .no-touch ._home-section-featured-tournaments .card-item:hover:not(.hover-disable) .image img {
        transform: scale(1.03);
        transition-duration: .25s
    }

    ._home-section-featured-tournaments .card-item:active .info-more, .no-touch ._home-section-featured-tournaments .card-item:hover:not(.hover-disable) .info-more {
        visibility: visible;
        opacity: 1
    }
}

._home-section-unique-features {
    text-align: center;
    background-color: #18181b;
    padding-right: 0 !important;
    padding-left: 0 !important
}

._home-section-unique-features .inner {
    padding-bottom: 56px
}

._home-section-unique-features .message, ._home-section-unique-features .title {
    padding-right: 24px;
    padding-left: 24px;
    background-color: #262626
}

._home-section-unique-features .title {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: .78px;
    font-weight: 500;
    color: #fff;
    padding-top: 56px
}

@media (min-width: 768px) {
    ._home-section-unique-features .title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: .96px
    }
}

@media (min-width: 1244px) {
    ._home-section-unique-features .title {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: 1.2px;
        font-weight: 700
    }
}

._home-section-unique-features .message {
    padding-top: 8px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #a3a3a3;
    padding-bottom: 41px
}

@media (min-width: 768px) {
    ._home-section-unique-features .message {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-unique-features .message {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._home-section-unique-features .swiper-nav {
    min-height: 224px
}

._home-section-unique-features .swiper-nav .swiper-wrapper {
    gap: 16px
}

._home-section-unique-features .swiper-nav .swiper-container-initialized .swiper-wrapper {
    gap: 0
}

._home-section-unique-features .item-nav {
    cursor: pointer
}

._home-section-unique-features .item-nav.swiper-slide {
    transition: width .35s cubic-bezier(.25, .46, .45, .94)
}

._home-section-unique-features .item-nav figure {
    position: relative;
    display: inline-block;
    width: 90px;
    text-align: center;
    margin-top: 28px;
    pointer-events: none
}

._home-section-unique-features .item-nav figure:before {
    content: "";
    display: block;
    width: 64px;
    height: 64px;
    position: absolute;
    left: 5px;
    top: -8px;
    right: auto;
    bottom: auto;
    border: 8px solid #d30000;
    border-radius: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s cubic-bezier(.25, .46, .45, .94)
}

._home-section-unique-features .item-nav figure img {
    width: 64px;
    height: 64px;
    margin-left: auto;
    margin-right: auto
}

._home-section-unique-features .item-nav figure img.on {
    width: 160px;
    height: 160px;
    display: none
}

._home-section-unique-features .item-nav figure figcaption {
    margin-top: 16px;
    display: block;
    height: 48px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .48px;
    font-weight: 400;
    color: #a3a3a3
}

@media (min-width: 768px) {
    ._home-section-unique-features .item-nav figure figcaption {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    ._home-section-unique-features .item-nav figure figcaption {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

._home-section-unique-features .swiper-slide-thumb-active.swiper-slide {
    min-height: 160px
}

._home-section-unique-features .swiper-slide-thumb-active figure {
    margin-top: 0;
    padding-top: 160px
}

._home-section-unique-features .swiper-slide-thumb-active figure:before {
    display: none
}

._home-section-unique-features .swiper-slide-thumb-active figure img {
    position: absolute;
    left: 50%;
    top: 0;
    right: auto;
    bottom: auto;
    transform: translateX(-50%)
}

._home-section-unique-features .swiper-slide-thumb-active figure img.off {
    display: none
}

._home-section-unique-features .swiper-slide-thumb-active figure img.on {
    display: block
}

._home-section-unique-features .swiper-slide-thumb-active figure figcaption {
    color: #fff
}

._home-section-unique-features .swiper-video {
    position: relative;
    margin-top: 15px
}

._home-section-unique-features .swiper-video ._slider {
    max-width: 296px;
    border-radius: 100%
}

._home-section-unique-features .item-video {
    text-align: center
}

._home-section-unique-features .item-video .video {
    width: 296px;
    height: 296px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100%
}

._home-section-unique-features .video-info {
    position: relative;
    min-height: 102px
}

._home-section-unique-features .video-info.active-index-1 .item-video-info:first-child, ._home-section-unique-features .video-info.active-index-2 .item-video-info:nth-child(2), ._home-section-unique-features .video-info.active-index-3 .item-video-info:nth-child(3), ._home-section-unique-features .video-info.active-index-4 .item-video-info:nth-child(4), ._home-section-unique-features .video-info.active-index-5 .item-video-info:nth-child(5), ._home-section-unique-features .video-info.active-index-6 .item-video-info:nth-child(6) {
    opacity: 1;
    pointer-events: auto;
    z-index: 1
}

._home-section-unique-features .item-video-info {
    opacity: 0;
    transition: opacity .25s ease-in-out;
    position: absolute;
    left: 50%;
    top: 0;
    right: auto;
    bottom: auto;
    transform: translateX(-50%);
    cursor: pointer;
    pointer-events: none
}

._home-section-unique-features .item-video-info h4, ._home-section-unique-features .item-video-info p {
    padding-right: 24px;
    padding-left: 24px;
    width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

._home-section-unique-features .item-video-info h4 {
    margin-top: 16px;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: .66px;
    font-weight: 500;
    color: #fff
}

@media (min-width: 768px) {
    ._home-section-unique-features .item-video-info h4 {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: .72px
    }
}

@media (min-width: 1244px) {
    ._home-section-unique-features .item-video-info h4 {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: .84px
    }
}

._home-section-unique-features .item-video-info p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    color: #d4d4d4
}

@media (min-width: 768px) {
    ._home-section-unique-features .item-video-info p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-unique-features .item-video-info p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._home-section-unique-features .slider-buttons {
    left: 0;
    top: 152px;
    right: auto;
    bottom: auto;
    right: 0
}

._home-section-unique-features .slider-buttons .btn {
    position: absolute;
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

._home-section-unique-features .slider-buttons .btn-prev {
    margin-left: -148px
}

._home-section-unique-features .slider-buttons .btn-next {
    margin-left: 148px
}

@media (min-width: 768px) {
    ._home-section-unique-features .inner {
        padding-bottom: 64px
    }

    ._home-section-unique-features .title {
        padding-top: 64px
    }

    ._home-section-unique-features .message {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px;
        color: #d4d4d4;
        padding-bottom: 32px
    }

    ._home-section-unique-features .swiper-nav {
        margin-top: 32px
    }

    ._home-section-unique-features .swiper-nav .swiper-wrapper {
        transform: none !important;
        justify-content: center
    }

    ._home-section-unique-features .item-nav.swiper-slide {
        width: 90px !important
    }

    ._home-section-unique-features .swiper-slide-thumb-active.swiper-slide {
        width: 160px !important
    }

    ._home-section-unique-features .swiper-slide-thumb-active figure {
        padding-top: 0;
        width: inherit
    }

    ._home-section-unique-features .swiper-slide-thumb-active figure img {
        position: static;
        left: 0;
        top: 0;
        right: auto;
        bottom: auto;
        transform: none
    }

    ._home-section-unique-features .item-video-info h4 {
        margin-top: 24px
    }

    ._home-section-unique-features .item-video-info p {
        margin-top: 16px
    }
}

@media (min-width: 768px) and (min-width: 768px) {
    ._home-section-unique-features .message {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 768px) and (min-width: 1244px) {
    ._home-section-unique-features .message {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    ._home-section-unique-features {
        position: relative;
        text-align: left
    }

    ._home-section-unique-features:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 50%;
        bottom: 50%;
        left: 0;
        background-color: #262626;
        pointer-events: none
    }

    ._home-section-unique-features .inner {
        position: relative;
        padding-top: 80px;
        padding-bottom: 80px
    }

    ._home-section-unique-features .inner:before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        right: auto;
        bottom: auto;
        bottom: 50%;
        width: 904px;
        background-color: #262626;
        pointer-events: none;
        clip-path: polygon(0 0, 100% 0, 720px 100%, 0 100%)
    }

    ._home-section-unique-features .message, ._home-section-unique-features .title {
        position: relative;
        z-index: 1;
        padding-right: 0;
        padding-left: 0;
        background-color: transparent;
        max-width: 690px
    }

    ._home-section-unique-features .title {
        padding-top: 0
    }

    ._home-section-unique-features .message {
        margin-top: 16px;
        color: #fff;
        padding-bottom: 0;
        max-width: 550px
    }

    ._home-section-unique-features .swiper-nav {
        margin-top: 80px
    }

    ._home-section-unique-features .swiper-nav .swiper-wrapper {
        justify-content: flex-start
    }

    ._home-section-unique-features .item-nav figure:before {
        width: 80px;
        height: 80px;
        left: -3px;
        top: -8px;
        right: auto;
        bottom: auto
    }

    ._home-section-unique-features .item-nav figure img {
        width: 80px;
        height: 80px
    }

    ._home-section-unique-features .item-nav:active figure:before, .no-touch ._home-section-unique-features .item-nav:hover:not(.hover-disable) figure:before {
        opacity: .5
    }

    ._home-section-unique-features .item-nav:active figcaption, .no-touch ._home-section-unique-features .item-nav:hover:not(.hover-disable) figcaption {
        color: #fff
    }

    ._home-section-unique-features .swiper-video {
        position: absolute;
        right: 0;
        top: 80px;
        left: auto;
        bottom: auto;
        z-index: 1;
        width: 320px
    }

    ._home-section-unique-features .item-video {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto
    }

    ._home-section-unique-features .item-video-info p {
        margin-top: 8px
    }

    ._home-section-unique-features .slider-buttons {
        display: none
    }
}

._home-section-anytime-anywhere {
    position: relative;
    text-align: center;
    background-color: #fff;
    color: #525252
}

._home-section-anytime-anywhere p {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400
}

@media (min-width: 768px) {
    ._home-section-anytime-anywhere p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-anytime-anywhere p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._home-section-anytime-anywhere .inner {
    padding-top: 56px;
    padding-bottom: 184px
}

._home-section-anytime-anywhere .title {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: .78px;
    font-weight: 500;
    color: #d30000
}

@media (min-width: 768px) {
    ._home-section-anytime-anywhere .title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: .96px
    }
}

@media (min-width: 1244px) {
    ._home-section-anytime-anywhere .title {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: 1.2px;
        font-weight: 700
    }
}

._home-section-anytime-anywhere .message {
    margin-top: 12px
}

._home-section-anytime-anywhere .group {
    margin-top: 40px;
    padding-right: 24px;
    padding-left: 24px
}

._home-section-anytime-anywhere .group-item h4 {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .6px;
    font-weight: 500;
    color: #000
}

@media (min-width: 768px) {
    ._home-section-anytime-anywhere .group-item h4 {
        font-size: 22px;
        line-height: 26px;
        letter-spacing: .66px
    }
}

@media (min-width: 1244px) {
    ._home-section-anytime-anywhere .group-item h4 {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: .72px
    }
}

._home-section-anytime-anywhere .group-item p {
    margin-top: 8px
}

._home-section-anytime-anywhere .group-item + .group-item {
    position: relative;
    padding-top: 64px
}

._home-section-anytime-anywhere .group-item + .group-item:before {
    content: "";
    display: block;
    position: absolute;
    left: 24px;
    top: 32px;
    right: auto;
    bottom: auto;
    right: 24px;
    height: 2px;
    background-color: #d30000
}

._home-section-anytime-anywhere .btn-fill, ._home-section-anytime-anywhere .btn-line {
    margin-top: 24px
}

._home-section-anytime-anywhere .image {
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    right: 0;
    pointer-events: none
}

._home-section-anytime-anywhere .image:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    right: 0;
    height: 104px;
    background-color: #960000
}

._home-section-anytime-anywhere .image img {
    position: relative;
    z-index: 1;
    width: 327px;
    height: 160px;
    -o-object-fit: contain;
    object-fit: contain
}

@media (min-width: 768px) {
    ._home-section-anytime-anywhere .inner {
        padding-top: 64px;
        padding-bottom: 223px
    }

    ._home-section-anytime-anywhere .group {
        margin-top: 64px;
        padding-right: 80px;
        padding-left: 80px
    }

    ._home-section-anytime-anywhere .image img {
        width: 405.351px;
        height: 199px
    }
}

@media (min-width: 1244px) {
    ._home-section-anytime-anywhere .inner {
        padding-top: 104px;
        padding-bottom: 373px
    }

    ._home-section-anytime-anywhere .group {
        display: flex
    }

    ._home-section-anytime-anywhere .group-item {
        flex: 1;
        display: flex;
        flex-direction: column
    }

    ._home-section-anytime-anywhere .group-item .item-info {
        flex: 1
    }

    ._home-section-anytime-anywhere .group-item a {
        align-self: center;
        width: auto;
        max-width: none
    }

    ._home-section-anytime-anywhere .group-item + .group-item {
        padding-top: 0;
        padding-left: 32px
    }

    ._home-section-anytime-anywhere .group-item + .group-item:before {
        top: 43px;
        bottom: 43px;
        left: 16px;
        right: auto;
        height: auto;
        max-height: none;
        width: 2px
    }

    ._home-section-anytime-anywhere .image img {
        width: 710px;
        height: 349px
    }
}

._home-section-wsop-glory {
    overflow: hidden;
    background-color: #000
}

._home-section-wsop-glory .inner {
    position: relative;
    padding-top: 56px;
    padding-right: 0;
    padding-bottom: 198px;
    padding-left: 0;
    text-align: center
}

._home-section-wsop-glory .group {
    position: relative;
    z-index: 1
}

._home-section-wsop-glory h4 {
    margin-top: 16px;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: .96px;
    font-weight: 700
}

@media (min-width: 768px) {
    ._home-section-wsop-glory h4 {
        font-size: 42px;
        line-height: 52px;
        letter-spacing: 1.26px
    }
}

@media (min-width: 1244px) {
    ._home-section-wsop-glory h4 {
        font-size: 48px;
        line-height: 58px;
        letter-spacing: 1.44px
    }
}

._home-section-wsop-glory h4 span {
    background: linear-gradient(90deg, #ad792f, #c9a559 15%, #ffefba 50%, #c9a559 85%, #ad792f);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

._home-section-wsop-glory h5 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .54px;
    font-weight: 500;
    color: #fff
}

@media (min-width: 768px) {
    ._home-section-wsop-glory h5 {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .54px
    }
}

@media (min-width: 1244px) {
    ._home-section-wsop-glory h5 {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: .6px
    }
}

._home-section-wsop-glory p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .48px;
    font-weight: 400;
    color: #fff
}

@media (min-width: 768px) {
    ._home-section-wsop-glory p {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    ._home-section-wsop-glory p {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

._home-section-wsop-glory p:first-of-type {
    margin-top: 12px
}

._home-section-wsop-glory .buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 32px
}

._home-section-wsop-glory .image {
    pointer-events: none;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    display: flex;
    align-self: end
}

._home-section-wsop-glory .image img {
    position: absolute;
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, calc(-50% + 65px)) scale(.85)
}

@media (min-width: 768px) {
    ._home-section-wsop-glory .inner {
        padding-top: 56px;
        padding-right: 0;
        padding-bottom: 276px;
        padding-left: 0
    }

    ._home-section-wsop-glory .buttons {
        display: flex;
        flex-flow: row;
        justify-content: center
    }
}

@media (min-width: 1244px) {
    ._home-section-wsop-glory div.inner {
        text-align: left;
        padding-top: 104px;
        padding-bottom: 120px;
        height: 520px
    }

    ._home-section-wsop-glory .group {
        width: 590px;
        margin-left: auto
    }

    ._home-section-wsop-glory .buttons {
        justify-content: flex-start
    }

    ._home-section-wsop-glory .image img {
        transform: translate(-50%, -50%)
    }
}

._home-section-meet-stars {
    position: relative;
    text-align: center;
    background-color: #18181b
}

._home-section-meet-stars:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    right: 0;
    height: 86px;
    background-color: #262626;
    pointer-events: none
}

._home-section-meet-stars .inner {
    padding-top: 56px;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    margin-right: -24px;
    margin-left: -24px
}

._home-section-meet-stars .message, ._home-section-meet-stars .title {
    padding-right: 24px;
    padding-left: 24px
}

._home-section-meet-stars .title {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: .78px;
    font-weight: 500;
    color: #fff
}

@media (min-width: 768px) {
    ._home-section-meet-stars .title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: .96px
    }
}

@media (min-width: 1244px) {
    ._home-section-meet-stars .title {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: 1.2px;
        font-weight: 700
    }
}

._home-section-meet-stars .message {
    margin-top: 8px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #a3a3a3
}

@media (min-width: 768px) {
    ._home-section-meet-stars .message {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-meet-stars .message {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._home-section-meet-stars .buttons {
    margin-top: 24px;
    gap: 16px;
    flex-direction: column;
    align-items: center
}

._home-section-meet-stars .item figure {
    display: block;
    text-align: center
}

._home-section-meet-stars .item figure img {
    width: 256px;
    height: 256px
}

._home-section-meet-stars .item .info {
    margin-top: 8px;
    padding-top: 16px;
    padding-bottom: 16px
}

._home-section-meet-stars .item .info h4 {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .6px;
    font-weight: 500;
    color: #fff
}

@media (min-width: 768px) {
    ._home-section-meet-stars .item .info h4 {
        font-size: 22px;
        line-height: 26px;
        letter-spacing: .66px
    }
}

@media (min-width: 1244px) {
    ._home-section-meet-stars .item .info h4 {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: .72px
    }
}

._home-section-meet-stars .item .info p {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .48px;
    font-weight: 400;
    color: #fee78a;
    background: linear-gradient(90deg, #c9a559, #ffefba 50%, #c9a559);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

@media (min-width: 768px) {
    ._home-section-meet-stars .item .info p {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    ._home-section-meet-stars .item .info p {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

._home-section-meet-stars .slider-group {
    position: relative
}

._home-section-meet-stars .slider-buttons {
    left: 0;
    top: 50%;
    right: auto;
    bottom: auto;
    right: 0;
    transform: translateY(-50%)
}

._home-section-meet-stars .slider-buttons .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

._home-section-meet-stars .slider-buttons .btn-prev {
    left: 24px
}

._home-section-meet-stars .slider-buttons .btn-next {
    right: 24px
}

._home-section-meet-stars .swiper-slide-prev figure {
    transform: translateX(-40px);
    opacity: 0
}

._home-section-meet-stars .swiper-slide-prev h4 {
    transform: translateX(-80px)
}

._home-section-meet-stars .swiper-slide-prev p {
    transform: translateX(-40px)
}

._home-section-meet-stars .swiper-slide-active figure {
    transition: opacity .65s cubic-bezier(.25, .46, .45, .94)
}

._home-section-meet-stars .swiper-slide-active h4, ._home-section-meet-stars .swiper-slide-active p {
    transition: transform 1s cubic-bezier(.25, .46, .45, .94)
}

._home-section-meet-stars .swiper-slide-next figure {
    transform: translateX(40px);
    opacity: 0
}

._home-section-meet-stars .swiper-slide-next h4 {
    transform: translateX(80px)
}

._home-section-meet-stars .swiper-slide-next p {
    transform: translateX(40px)
}

@media (min-width: 768px) {
    ._home-section-meet-stars:after {
        height: 245px;
        left: 25%;
        right: -24px;
        clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%)
    }

    ._home-section-meet-stars .inner {
        position: relative;
        margin-left: auto;
        margin-right: auto
    }

    ._home-section-meet-stars .message {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }

    ._home-section-meet-stars .buttons {
        margin-top: 32px;
        display: flex;
        flex-flow: row;
        justify-content: center
    }

    ._home-section-meet-stars .item {
        margin-left: -10px;
        display: flex;
        align-items: flex-end;
        justify-content: center
    }

    ._home-section-meet-stars .item figure img {
        width: 269px;
        height: 269px
    }

    ._home-section-meet-stars .item .info {
        margin-bottom: 32px;
        margin-left: -40px
    }

    ._home-section-meet-stars .item .info p {
        margin-top: 4px
    }

    ._home-section-meet-stars .slider-buttons {
        left: 50%;
        transform: translate(-50%, -50%);
        justify-content: flex-end
    }

    ._home-section-meet-stars .slider-buttons .btn {
        position: static;
        top: 0;
        transform: none
    }
}

@media (min-width: 768px) and (min-width: 768px) {
    ._home-section-meet-stars .message {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 768px) and (min-width: 1244px) {
    ._home-section-meet-stars .message {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    ._home-section-meet-stars {
        text-align: left
    }

    ._home-section-meet-stars:after {
        height: 100%;
        left: 50%;
        right: -24px;
        clip-path: polygon(400px 0, 100% 0, 100% 100%, 0 100%)
    }

    ._home-section-meet-stars .inner {
        padding-top: 108px;
        padding-right: 0;
        padding-bottom: 108px;
        padding-left: 0;
        margin-left: auto;
        margin-right: auto
    }

    ._home-section-meet-stars .message, ._home-section-meet-stars .title {
        padding-right: 0;
        padding-left: 0
    }

    ._home-section-meet-stars .group {
        max-width: 588px
    }

    ._home-section-meet-stars .message {
        margin-top: 12px
    }

    ._home-section-meet-stars .buttons {
        justify-content: flex-start
    }

    ._home-section-meet-stars .item figure img {
        width: 400px;
        height: 400px
    }

    ._home-section-meet-stars .item .info {
        margin-left: -56px;
        margin-bottom: 94px
    }

    ._home-section-meet-stars .item .info p {
        margin-top: 8px
    }

    ._home-section-meet-stars .slider-buttons {
        left: auto;
        right: 0;
        top: 92px;
        gap: 24px;
        transform: none
    }

    ._home-section-meet-stars .slider-buttons .btn {
        width: 56px;
        height: 56px
    }

    ._home-section-meet-stars .slider-group {
        position: absolute;
        right: 16px;
        bottom: 0;
        left: auto;
        top: auto;
        width: 587px
    }
}

._home-section-global-community {
    background-color: #f7f7f8
}

._home-section-global-community .inner {
    padding-top: 56px;
    padding-bottom: 56px;
    color: #525252;
    text-align: center
}

._home-section-global-community .title {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: .78px;
    font-weight: 500;
    color: #d30000
}

@media (min-width: 768px) {
    ._home-section-global-community .title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: .96px
    }
}

@media (min-width: 1244px) {
    ._home-section-global-community .title {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: 1.2px;
        font-weight: 700
    }
}

._home-section-global-community .message {
    margin-top: 12px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .48px;
    font-weight: 400;
    color: #525252
}

@media (min-width: 768px) {
    ._home-section-global-community .message {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    ._home-section-global-community .message {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

._home-section-global-community .community-spotlight {
    margin-top: 24px;
    text-align: left;
    border-radius: 8px;
    border: 1px solid #f1f1f4;
    background-color: #fff
}

._home-section-global-community .community-spotlight img {
    border-radius: 8px 8px 0 0;
    width: 100%;
    height: auto;
    max-width: 100%
}

._home-section-global-community .community-spotlight .content {
    padding: 24px
}

._home-section-global-community .community-spotlight h4 {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .48px;
    font-weight: 500;
    color: #d30000
}

@media (min-width: 768px) {
    ._home-section-global-community .community-spotlight h4 {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    ._home-section-global-community .community-spotlight h4 {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

._home-section-global-community .community-spotlight h5 {
    margin-top: 8px;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .54px;
    font-weight: 500;
    color: #000
}

@media (min-width: 768px) {
    ._home-section-global-community .community-spotlight h5 {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .54px
    }
}

@media (min-width: 1244px) {
    ._home-section-global-community .community-spotlight h5 {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: .6px
    }
}

._home-section-global-community .community-spotlight p {
    margin-top: 4px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #404040
}

@media (min-width: 768px) {
    ._home-section-global-community .community-spotlight p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-global-community .community-spotlight p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._home-section-global-community .connect {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 24px;
    padding-left: 24px
}

._home-section-global-community .connect h4 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .54px;
    font-weight: 500;
    color: #000
}

@media (min-width: 768px) {
    ._home-section-global-community .connect h4 {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .54px
    }
}

@media (min-width: 1244px) {
    ._home-section-global-community .connect h4 {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: .6px
    }
}

._home-section-global-community .connect s {
    display: block;
    height: 2px;
    background-color: #000
}

._home-section-global-community .connect .social ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px
}

._home-section-global-community .connect .social svg {
    width: 40px;
    height: 40px
}

._home-section-global-community .connect .social svg path {
    fill: #000;
    transition: fill .25s ease-out
}

._home-section-global-community .connect .social a:active, .no-touch ._home-section-global-community .connect .social a:hover:not(.hover-disable) {
    background-color: #000
}

._home-section-global-community .connect .social a:active svg path, .no-touch ._home-section-global-community .connect .social a:hover:not(.hover-disable) svg path {
    fill: #fff
}

.no-touch ._home-section-global-community .connect .social a:active:not(.hover-disable) {
    background-color: transparent
}

@media (min-width: 768px) {
    ._home-section-global-community .inner {
        max-width: 704px
    }

    ._home-section-global-community .community-spotlight img {
        height: 320px
    }
}

@media (min-width: 1244px) {
    ._home-section-global-community .inner {
        padding-top: 80px;
        padding-bottom: 80px;
        max-width: 1200px
    }

    ._home-section-global-community .community-spotlight {
        height: 278px;
        margin-top: 40px;
        display: flex;
        border-radius: 16px
    }

    ._home-section-global-community .community-spotlight figure {
        display: block;
        height: inherit
    }

    ._home-section-global-community .community-spotlight img {
        border-radius: 16px 0 0 16px;
        height: 100%
    }

    ._home-section-global-community .community-spotlight .content {
        padding: 40px
    }

    ._home-section-global-community .community-spotlight h5 {
        margin-top: 24px
    }

    ._home-section-global-community .community-spotlight p {
        margin-top: 8px
    }

    ._home-section-global-community .connect {
        margin-top: 40px;
        gap: 24px;
        display: flex;
        flex-flow: row;
        align-items: center;
        justify-content: center
    }

    ._home-section-global-community .connect s {
        width: 80px;
        align-self: center
    }

    ._home-section-global-community .connect .social ul {
        justify-content: flex-start;
        gap: 24px
    }

    ._home-section-global-community.hidden-community-spotlight .inner .connect {
        flex-flow: column
    }

    ._home-section-global-community.hidden-community-spotlight .inner .connect s {
        width: 256px;
        margin-bottom: 16px
    }
}

._social {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #fff
}

._social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    transition: background-color .25s ease-in-out
}

.no-touch ._social a:hover:not(.hover-disable) {
    background-color: #24242a
}

.no-touch ._social a:active:not(.hover-disable) {
    background-color: #000
}

._social a.disabled .label {
    color: #525252
}

._social a.disabled svg path {
    fill: #525252
}

._social .label {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    padding-top: 2px;
    padding-right: 20px
}

@media (min-width: 768px) {
    ._social {
        gap: 16px
    }
}

._home-section-get-started {
    overflow: hidden;
    background-color: #000
}

._home-section-get-started .inner {
    position: relative;
    padding-top: 56px;
    padding-right: 0;
    padding-bottom: 228px;
    padding-left: 0;
    text-align: center
}

._home-section-get-started .group {
    position: relative;
    z-index: 1
}

._home-section-get-started h4 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .54px;
    font-weight: 500;
    color: #fff
}

@media (min-width: 768px) {
    ._home-section-get-started h4 {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .54px
    }
}

@media (min-width: 1244px) {
    ._home-section-get-started h4 {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: .6px
    }
}

._home-section-get-started h5 {
    margin-top: 16px;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: .96px;
    font-weight: 700
}

@media (min-width: 768px) {
    ._home-section-get-started h5 {
        font-size: 42px;
        line-height: 52px;
        letter-spacing: 1.26px
    }
}

@media (min-width: 1244px) {
    ._home-section-get-started h5 {
        font-size: 48px;
        line-height: 58px;
        letter-spacing: 1.44px
    }
}

._home-section-get-started h5 span {
    background: linear-gradient(90deg, #ad792f, #c9a559 15%, #ffefba 50%, #c9a559 85%, #ad792f);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

._home-section-get-started p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #fff
}

@media (min-width: 768px) {
    ._home-section-get-started p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-get-started p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._home-section-get-started .buttons {
    margin-top: 32px;
    justify-content: center
}

._home-section-get-started .image {
    pointer-events: none;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    display: flex;
    align-self: end
}

._home-section-get-started .image img {
    position: absolute;
    left: 50%;
    top: calc(50% - 20px);
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%)
}

@media (min-width: 768px) {
    ._home-section-get-started .inner {
        padding-top: 104px;
        padding-right: 0;
        padding-bottom: 228px;
        padding-left: 0
    }

    ._home-section-get-started .image img {
        top: 50%
    }
}

@media (min-width: 1244px) {
    ._home-section-get-started .inner {
        text-align: left;
        padding-bottom: 0;
        min-height: 480px
    }

    ._home-section-get-started .group {
        max-width: 600px
    }

    ._home-section-get-started p {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px;
        font-weight: 400;
        color: #a3a3a3
    }

    ._home-section-get-started .buttons {
        justify-content: flex-start
    }
}

@media (min-width: 1244px) and (min-width: 768px) {
    ._home-section-get-started p {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) and (min-width: 1244px) {
    ._home-section-get-started p {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

._home-section-more-on .inner {
    padding-top: 56px;
    padding-bottom: 56px
}

._home-section-more-on .title {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: .78px;
    font-weight: 500;
    text-align: center;
    color: #fff
}

@media (min-width: 768px) {
    ._home-section-more-on .title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: .96px
    }
}

@media (min-width: 1244px) {
    ._home-section-more-on .title {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: 1.2px;
        font-weight: 700
    }
}

._home-section-more-on .message {
    margin-top: 8px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .48px;
    font-weight: 400;
    color: #a3a3a3
}

@media (min-width: 768px) {
    ._home-section-more-on .message {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    ._home-section-more-on .message {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

._home-section-more-on .faq {
    margin-top: 24px;
    padding: 24px;
    border-radius: 8px;
    background-color: hsla(0, 0%, 100%, .03)
}

._home-section-more-on .faq dd, ._home-section-more-on .faq dt {
    position: relative;
    padding-left: 36px
}

._home-section-more-on .faq .icon {
    position: absolute;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
    width: 24px;
    height: 24px
}

._home-section-more-on .faq dt {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .54px;
    font-weight: 500;
    color: #fff
}

@media (min-width: 768px) {
    ._home-section-more-on .faq dt {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .54px
    }
}

@media (min-width: 1244px) {
    ._home-section-more-on .faq dt {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: .6px
    }
}

._home-section-more-on .faq dd {
    margin-top: 24px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #a3a3a3
}

@media (min-width: 768px) {
    ._home-section-more-on .faq dd {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-more-on .faq dd {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._home-section-more-on .faq div {
    max-height: 300px;
    overflow: hidden;
    text-after-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 14;
    transition: max-height .25s ease-in-out
}

._home-section-more-on .faq div a {
    color: #fff;
    text-decoration: underline
}

._home-section-more-on .faq div.show {
    max-height: 10000px;
    overflow: hidden;
    text-after-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1000
}

._home-section-more-on .buttons {
    text-align: right
}

._home-section-more-on .btn-toggle {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 500;
    color: #ff0505
}

@media (min-width: 768px) {
    ._home-section-more-on .btn-toggle {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-more-on .btn-toggle {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 768px) {
    ._home-section-more-on .inner {
        padding-top: 64px;
        padding-bottom: 64px
    }

    ._home-section-more-on .faq {
        padding: 32px
    }

    ._home-section-more-on .faq dd, ._home-section-more-on .faq dt {
        padding-right: 56px;
        padding-left: 56px
    }

    ._home-section-more-on .faq dt {
        display: block;
        min-height: 40px;
        padding-top: 4px
    }

    ._home-section-more-on .faq div {
        max-height: 308px
    }

    ._home-section-more-on .faq .icon {
        width: 32px;
        height: 32px
    }
}

@media (min-width: 1244px) {
    ._home-section-more-on .inner {
        padding-top: 80px;
        padding-bottom: 80px
    }

    ._home-section-more-on .message {
        margin-top: 12px
    }

    ._home-section-more-on .faq {
        margin-top: 40px;
        padding: 40px
    }

    ._home-section-more-on .faq dd, ._home-section-more-on .faq dt {
        padding-right: 72px;
        padding-left: 72px
    }

    ._home-section-more-on .faq dt {
        padding-top: 8px
    }

    ._home-section-more-on .faq .icon {
        width: 40px;
        height: 40px
    }

    ._home-section-more-on .faq div {
        max-height: 270px
    }
}


._home-section-desk_dop .inner {
    padding-top: 0px;
    padding-bottom: 56px
}

._home-section-desk_dop .title {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 32px;
    letter-spacing: .78px;
    font-weight: 500;
    text-align: center;
    color: #fff
}

@media (min-width: 768px) {
    ._home-section-desk_dop .title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: .96px
    }
}

@media (min-width: 1244px) {
    ._home-section-desk_dop .title {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: 1.2px;
        font-weight: 700
    }
}

._home-section-desk_dop .message {
    margin-top: 8px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .48px;
    font-weight: 400;
    color: #a3a3a3
}

@media (min-width: 768px) {
    ._home-section-desk_dop .message {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    ._home-section-desk_dop .message {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

._home-section-desk_dop .faq {
    margin-bottom: 24px;
    padding: 24px;
    border-radius: 8px;
    background-color: hsla(0, 0%, 100%, .03)
}

._home-section-desk_dop .faq dd, ._home-section-desk_dop .faq dt {
    position: relative;
    padding-left: 36px
}

._home-section-desk_dop .faq .icon {
    position: absolute;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
    width: 24px;
    height: 24px
}

._home-section-desk_dop .faq dt {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .54px;
    font-weight: 500;
    color: #fff
}

@media (min-width: 768px) {
    ._home-section-desk_dop .faq dt {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .54px
    }
}

@media (min-width: 1244px) {
    ._home-section-desk_dop .faq dt {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: .6px
    }
}

._home-section-desk_dop .faq dd {
    margin-top: 24px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 400;
    color: #a3a3a3
}

@media (min-width: 768px) {
    ._home-section-desk_dop .faq dd {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-desk_dop .faq dd {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._home-section-desk_dop .faq div {
    color: #666666;
    max-height: 300px;
    overflow: hidden;
    text-after-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 14;
    transition: max-height .25s ease-in-out
}

._home-section-desk_dop .faq div a {
    color: #fff;
    text-decoration: underline
}

._home-section-desk_dop .faq div.show {
    max-height: 10000px;
    overflow: hidden;
    text-after-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1000
}

._home-section-desk_dop .buttons {
    text-align: right
}

._home-section-desk_dop .btn-toggle {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 500;
    color: #ff0505
}

@media (min-width: 768px) {
    ._home-section-desk_dop .btn-toggle {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._home-section-desk_dop .btn-toggle {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 768px) {
    ._home-section-desk_dop .inner {

        padding-bottom: 64px
    }

    ._home-section-desk_dop .faq {
        padding: 32px
    }

    ._home-section-desk_dop .faq dd, ._home-section-desk_dop .faq dt {
        padding-right: 56px;
        padding-left: 56px
    }

    ._home-section-desk_dop .faq dt {
        display: block;
        min-height: 40px;
        padding-top: 4px
    }

    ._home-section-desk_dop .faq div {
        max-height: 308px
    }

    ._home-section-desk_dop .faq .icon {
        width: 32px;
        height: 32px
    }
}

@media (min-width: 1244px) {
    ._home-section-desk_dop .inner {

        padding-bottom: 80px
    }

    ._home-section-desk_dop .message {
        margin-top: 12px
    }

    ._home-section-desk_dop .faq {
        margin-top: 40px;
        padding: 40px
    }

    ._home-section-desk_dop .faq dd, ._home-section-desk_dop .faq dt {
        padding-right: 72px;
        padding-left: 72px
    }

    ._home-section-desk_dop .faq dt {
        padding-top: 8px
    }

    ._home-section-desk_dop .faq .icon {
        width: 40px;
        height: 40px
    }

    ._home-section-desk_dop .faq div {
        max-height: 270px
    }
}

._app-footer {
    position: relative;
    background-color: #000
}

._app-footer:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 2px;
    background-image: url(#d30000);
    background: linear-gradient(90deg, transparent 15%, #d30101 50%, transparent 85%)
}

._app-footer .footer-social {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    width: 100%;
    border-bottom: 1px solid #24242a
}

._app-footer .footer-social ._social {
    justify-content: center;
    gap: 20px
}

._app-footer ._app-footer-nav {
    flex: 1
}

._app-footer ._app_footer-banner {
    flex: none
}

._app-footer .footer-copyright {
    border-top: 1px solid #24242a
}

._app-footer .footer-copyright .inner {
    padding: 24px;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: .36px;
    font-weight: 400;
    color: #a3a3a3
}

@media (min-width: 768px) {
    ._app-footer .footer-copyright .inner {
        font-size: 12px;
        line-height: 18px;
        letter-spacing: .36px
    }
}

@media (min-width: 1244px) {
    ._app-footer .footer-copyright .inner {
        font-size: 12px;
        line-height: 18px;
        letter-spacing: .36px
    }
}

@media (min-width: 768px) {
    ._app-footer {
        display: flex;
        flex-wrap: wrap
    }

    ._app-footer .footer-social {
        padding-top: 16px;
        padding-right: 56px;
        padding-bottom: 16px;
        padding-left: 56px
    }

    ._app-footer .footer-social ._social {
        justify-content: flex-end;
        width: 280px;
        margin-left: auto
    }
}

@media (min-width: 1244px) {
    ._app-footer {
        display: block
    }

    ._app-footer ._app-footer-nav {
        min-height: 318px
    }

    ._app-footer .footer-social {
        padding-right: 0;
        padding-left: 0;
        display: block
    }

    ._app-footer .footer-social ._social {
        transform: translateX(0)
    }

    ._app-footer .footer-copyright .inner {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px;
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width: 1244px) and (min-width: 768px) {
    ._app-footer .footer-copyright .inner {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) and (min-width: 1244px) {
    ._app-footer .footer-copyright .inner {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._app-footer-nav .inner {
    padding-top: 28px;
    padding-right: 24px;
    padding-bottom: 28px;
    padding-left: 24px
}

._app-footer-nav .inner > ul > li + li {
    margin-top: 24px
}

._app-footer-nav .inner > ul > li > a, ._app-footer-nav .inner > ul > li > strong {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase
}

._app-footer-nav .inner > ul > li > ul {
    padding-top: 12px
}

._app-footer-nav .inner > ul > li > ul li {
    display: flex;
    align-items: center;
    margin-top: 12px
}

._app-footer-nav .inner > ul > li > ul a {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    color: #d4d4d4
}

.no-touch ._app-footer-nav .inner > ul > li > ul a:hover:not(.hover-disable) {
    color: #fff
}

.no-touch ._app-footer-nav .inner > ul > li > ul a:hover:not(.hover-disable):after {
    background-color: #d4d4d4;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: ""
}

@media (min-width: 768px) {
    ._app-footer-nav .inner {
        padding-top: 28px;
        padding-right: 56px;
        padding-bottom: 28px;
        padding-left: 56px
    }

    ._app-footer-nav .inner > ul > li > a, ._app-footer-nav .inner > ul > li > strong {
        position: relative;
        padding-bottom: 4px
    }

    ._app-footer-nav .inner > ul > li > a:not(strong):after, ._app-footer-nav .inner > ul > li > strong:not(strong):after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 100%;
        bottom: 0;
        height: 1px;
        background-color: #fff;
        transition: right .25s ease-in-out
    }

    ._app-footer-nav .inner > ul > li > a:not(strong):hover:after, ._app-footer-nav .inner > ul > li > strong:not(strong):hover:after {
        right: 0
    }

    ._app-footer-nav .inner > ul > li > ul {
        padding-top: 12px
    }

    ._app-footer-nav .inner > ul > li > ul a {
        line-height: 22px
    }
}

@media (min-width: 1244px) {
    ._app-footer-nav .inner {
        position: relative;
        display: block;
        padding-top: 28px;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0;
        min-height: 192px
    }

    ._app-footer-nav .inner > ul {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 96px
    }

    ._app-footer-nav .inner > ul > li + li {
        margin-top: 0
    }

    ._app-footer-nav .inner > ul > li > ul {
        padding-top: 16px
    }

    ._app-footer-nav .inner > ul > li > ul li {
        margin-top: 16px
    }

    ._app-footer-nav .inner > ul:first-of-type > li:first-child {
        min-width: 170px
    }
}

._app-footer-banners .inner {
    padding-top: 28px;
    padding-right: 24px;
    padding-bottom: 28px;
    padding-left: 24px;
    text-align: center
}

._app-footer-banners .licenses {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

._app-footer-banners .site {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px
}

._app-footer-banners .awards {
    margin-top: 24px
}

._app-footer-banners .awards ul {
    display: flex;
    justify-content: center;
    gap: 24px
}

._app-footer-banners .egr-operator, ._app-footer-banners .guinness {
    margin-top: 16px
}

._app-footer-banners .egr-operator img, ._app-footer-banners .guinness img {
    width: 100%;
    height: auto;
    max-width: 280px;
    border-radius: 8px
}

._app-footer-banners .egr-operator {
    cursor: auto
}

@media (min-width: 768px) {
    ._app-footer-banners {
        position: relative;
        margin-top: 72px
    }

    ._app-footer-banners .inner {
        padding-top: 28px;
        padding-right: 56px;
        padding-bottom: 28px;
        padding-left: 56px
    }

    ._app-footer-banners .awards {
        margin-top: 56px
    }
}

@media (min-width: 1244px) {
    ._app-footer-banners {
        margin-top: 0
    }

    ._app-footer-banners .inner {
        position: relative;
        display: block
    }

    ._app-footer-banners .inner:has(.awards-guinness) {
        padding-top: 28px;
        padding-right: 0;
        padding-bottom: 28px;
        padding-left: 0
    }

    ._app-footer-banners .awards {
        margin-top: 0
    }

    ._app-footer-banners .awards ul li {
        flex: none
    }

    ._app-footer-banners .links {
        display: flex;
        align-items: center;
        gap: 8px
    }

    ._app-footer-banners .site {
        flex-direction: row;
        margin-top: 0;
        align-items: center
    }

    ._app-footer-banners .awards-guinness {
        position: absolute;
        right: 0;
        bottom: 28px;
        left: auto;
        top: auto
    }

    ._app-footer-banners .guinness img {
        width: 280px;
        height: 120px;
        max-width: inherit
    }
}

@keyframes rotation {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}

@keyframes scaleSvg {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.15)
    }
    to {
        transform: scale(1)
    }
}

._app-quick {
    position: fixed;
    right: 24px;
    bottom: 28px;
    left: auto;
    top: auto;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    transition: opacity .25s ease-in-out 0s
}

._app-quick.hidden {
    opacity: 0;
    visibility: hidden
}

._app-quick.down .btn-top {
    opacity: 1
}

._app-quick.ggpca {
    bottom: 56px
}

._app-quick > ._color-button {
    width: 40px;
    height: 40px;
    pointer-events: auto
}

._app-quick .btn-chat, ._app-quick .btn-top {
    transition: width .25s ease-in-out, height .25s ease-in-out, background-color .25s ease-in-out, border-color .24s ease-in-out
}

.no-touch ._app-quick .btn-chat:hover:not(.hover-disable), .no-touch ._app-quick .btn-top:hover:not(.hover-disable) {
    background-color: #c00000
}

.no-touch ._app-quick .btn-chat:active:not(.hover-disable), .no-touch ._app-quick .btn-top:active:not(.hover-disable) {
    background-color: #960000
}

._app-quick .btn-top {
    background-color: hsla(0, 0%, 54%, .5)
}

._app-quick .btn-chat.loading {
    position: relative;
    pointer-events: none
}

._app-quick .btn-chat.loading:before {
    content: "";
    display: block;
    position: absolute;
    left: -3px;
    top: -3px;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: rotation .65s linear infinite;
    border-bottom-color: #c00000;
    pointer-events: none
}

.no-touch ._app-quick .btn-chat.loading:hover:not(.hover-disable) {
    background-color: hsla(0, 0%, 100%, .2)
}

._app-quick .btn-chat.loading svg {
    animation: scaleSvg 1s ease-in-out infinite
}

._app-quick .btn-chat.loading svg path {
    stroke: hsla(0, 0%, 100%, .2)
}

._app-quick .btn-download {
    padding: 0;
    transition: width .25s ease-in-out, padding .25s ease-out, background-color .25s ease-in-out, border-color .24s ease-in-out;
    box-shadow: 0 5px 12px -4px rgba(0, 0, 0, .25), 0 2px 4px 0 rgba(0, 0, 0, .15)
}

._app-quick .btn-download svg {
    flex: none
}

._app-quick .btn-download > span {
    opacity: 0;
    transition: opacity .25s ease-out .25s
}

._app-quick .btn-download.on, .no-touch ._app-quick .btn-download:hover:not(.hover-disable) {
    width: 180px;
    padding-left: 16px;
    padding-right: 24px
}

._app-quick .btn-download.on > span, .no-touch ._app-quick .btn-download:hover:not(.hover-disable) > span {
    display: inline-block;
    opacity: 1
}

@media (min-width: 768px) {
    ._app-quick.hidden {
        opacity: 1;
        visibility: visible
    }
}

@media (min-width: 1244px) {
    ._app-quick {
        gap: 16px
    }
}

[dir=rtl] ._app-quick {
    align-items: flex-start
}

[app-header].on ~ [app-quick], div.modalContainer.sidebarMinimized {
    display: none
}

.dockableContainer button {
    position: relative
}

.dockableContainer button lightning-primitive-icon svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.dockableContainer button:hover:before {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important
}

#embeddedMessagingConversationButton {
    display: none
}

#embeddedMessagingFrame.isMinimized {
    display: none !important
}

._modal-container {
    position: fixed;
    width: 100vw;
    height: var(--innerHeight);
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
    z-index: 5000
}

@keyframes c1 {
    0% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: 0;
        transform: scale(.5)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

._modal-container > div {
    z-index: 1
}

._modal-container .blocker {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000
}

._modal-container .blocker > .dim {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    left: 0;
    top: 0;
    right: auto;
    bottom: auto
}

._modal-container .blocker .seq-preloader {
    font-size: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    z-index: 2
}

._modal-container .blocker .seq-preloader > * {
    display: inline-block;
    vertical-align: top
}

._modal-container .blocker .seq-preloader em {
    width: 10px;
    height: 10px;
    margin-top: 0;
    margin-right: 8px;
    margin-bottom: 0;
    margin-left: 8px;
    background-color: #fff;
    border-radius: 30px;
    animation-name: c1;
    animation-duration: 2s;
    animation-iteration-count: infinite
}

._modal-container .blocker .seq-preloader em:nth-of-type(2) {
    width: 12px;
    height: 12px;
    margin-top: -1px;
    animation-delay: .2s
}

._modal-container .blocker .seq-preloader em:nth-of-type(3) {
    width: 14px;
    height: 14px;
    margin-top: -2px;
    animation-delay: .4s
}

._modal-container .blocker .seq-preloader em:nth-of-type(4) {
    width: 16px;
    height: 16px;
    margin-top: -3px;
    animation-delay: .6s
}

._modal-container .blocker .seq-preloader em:nth-of-type(5) {
    width: 14px;
    height: 14px;
    margin-top: -2px;
    animation-delay: .8s
}

._modal-container .fade-enter-active, ._modal-container .fade-leave-active {
    transition: opacity .5s .3s
}

._modal-container .fade-enter, ._modal-container .fade-leave-to {
    opacity: 0
}

._modal-container.clear {
    width: 0;
    height: 0
}

._toast-container {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 20px;
    right: auto;
    top: auto;
    z-index: 10000;
    font-size: 14px;
    font-weight: 500
}

._toast-container-holder {
    position: absolute;
    left: 50%;
    bottom: 0;
    right: auto;
    top: auto;
    width: 90%;
    height: auto;
    opacity: 1;
    min-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .5s 0s, opacity .5s 0s;
    transform: translateX(-50%) translateY(150%);
    padding-top: 18px;
    padding-right: 0;
    padding-bottom: 18px;
    padding-left: 0;
    color: #fff;
    border-radius: 30px
}

._toast-container-holder .svg-icon {
    display: inline-block;
    margin-right: 4px
}

._toast-container-holder.fail {
    background-color: #d30000;
    color: #fff
}

._toast-container-holder.fail * {
    display: inline-block !important
}

._toast-container-holder.out {
    opacity: 0
}

._toast-container-holder svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    color: #fff
}

._toast-container-holder span, ._toast-container-holder svg {
    display: inline-block;
    vertical-align: middle
}

._popover-container {
    position: absolute;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
    z-index: 5100;
    text-align: left
}

._popover-container .popover-position {
    position: fixed
}

._popover-container .popover-position .popover {
    position: absolute
}

._popover-container .popover-position .popover .component-crop {
    padding: 10px;
    font-size: 13px;
    line-height: 18px;
    color: hsla(0, 0%, 100%, .5);
    background-color: #0e1415;
    border: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    height: auto;
    max-height: none;
    overflow-y: auto
}

._popover-container .popover-position .popover .component-crop.use-component {
    padding: 0
}

._popover-container .popover-position .popover .component-crop.has-close {
    padding-right: 30px
}

._popover-container .popover-position .popover .arrow {
    width: 7px;
    height: 7px;
    background-color: #0e1415;
    border-top: 1px solid hsla(0, 0%, 100%, .1);
    border-left: 1px solid hsla(0, 0%, 100%, .1);
    border-bottom: 0;
    position: absolute;
    z-index: 1
}

._popover-container .popover-position .popover.r .arrow {
    transform: rotate(315deg);
    left: -2px
}

._popover-container .popover-position .popover.t .arrow {
    transform: rotate(225deg);
    bottom: -2px
}

._popover-container .popover-position .popover.l .arrow {
    transform: rotate(135deg);
    right: -2px
}

._popover-container .popover-position .popover.b .arrow {
    transform: rotate(315deg);
    top: -2px
}

._popover-container .popover-position .popover.vl .arrow {
    left: 10px
}

._popover-container .popover-position .popover.vc .arrow {
    left: calc(50% - 5px)
}

._popover-container .popover-position .popover.hc .arrow {
    top: calc(50% - 5px)
}

._popover-container .popover-position .popover.hb .arrow {
    bottom: calc(100% - 20px)
}

._popover-container .popover-position .popover .popover-close {
    position: absolute;
    right: 8px;
    top: 7px;
    left: auto;
    bottom: auto;
    cursor: pointer
}

._popover-container .popover-position .popover .popover-text {
    color: #fff
}

._popover-container .popover-position .popover.use-component .component-crop {
    padding: 0;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 8px;
    background-color: transparent
}

._popover-container .popover-position .popover.use-component.arrow {
    background-color: #3a3957;
    border-top: 1px solid rgba(173, 168, 227, .4);
    border-left: 1px solid rgba(173, 168, 227, .4)
}

._app-nav-signup.collapse a {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: .42px;
    font-weight: 500;
    color: #000;
    border: 1px solid #404040;
    padding-right: 20px;
    padding-left: 20px;
    height: 32px;
    border-radius: 100vh
}

@media (min-width: 768px) {
    ._app-nav-signup.collapse a {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

@media (min-width: 1244px) {
    ._app-nav-signup.collapse a {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .42px
    }
}

._app-nav-collapse-header {
    position: relative;
    height: 64px;
    padding-right: 24px;
    padding-left: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 6px 18px -4px rgba(154, 164, 184, .12), 0 1px 4px -2px rgba(154, 164, 184, .06)
}

@media (min-width: 768px) {
    ._app-nav-collapse-header {
        height: 72px
    }
}

@media (min-width: 1244px) {
    ._app-nav-collapse-header {
        height: 56px;
        padding-right: 40px;
        padding-left: 40px
    }
}

[dir=rtl] ._app-nav-collapse-header .group {
    right: auto;
    left: 40px
}

._accordion-view.open .title .angle-holder [svg-icon] {
    transform: rotate(180deg)
}

._accordion-view input.accord-inp {
    display: none
}

._accordion-view input.accord-inp:checked ~ .view-wrapper .context {
    max-height: var(--accord-height);
    transition: max-height .3s
}

._accordion-view input.accord-inp:checked ~ .view-wrapper .title .default-angle {
    transform: rotate(-180deg)
}

._accordion-view .view-wrapper {
    background-color: transparent
}

._accordion-view .view-wrapper > label {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    gap: 4px
}

._accordion-view .title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%
}

._accordion-view .title .angle-holder {
    position: absolute;
    right: 40px;
    top: 0;
    left: auto;
    bottom: auto;
    z-index: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    padding-right: 0;
    padding-bottom: 10px;
    padding-left: 0
}

._accordion-view .title .angle-holder [font-icon] {
    width: 12px;
    height: 12px;
    transform: translateY(0);
    margin-top: -6px
}

._accordion-view .title .angle-holder.black [font-icon] {
    width: 10px;
    height: 10px;
    margin-top: 0;
    color: #333
}

._accordion-view .title .default-angle {
    width: 12px;
    height: 12px;
    transition: transform .3s
}

._accordion-view .context {
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s
}

._accordion-view .context .context-box .child > label {
    cursor: pointer
}

._app-nav-accordion > .holder {
    display: flex;
    flex-direction: column
}

._app-nav-accordion > .holder .view-wrapper {
    position: relative
}

._app-nav-accordion > .holder .view-wrapper:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    right: 0;
    height: 1px;
    background-color: #262626
}

._app-nav-accordion > .holder .view-wrapper label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 40px;
    column-gap: 40px
}

._app-nav-accordion > .holder .view-wrapper .n {
    flex: 1;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .6px;
    font-weight: 500;
    color: #000;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px
}

@media (min-width: 768px) {
    ._app-nav-accordion > .holder .view-wrapper .n {
        font-size: 22px;
        line-height: 26px;
        letter-spacing: .66px
    }
}

@media (min-width: 1244px) {
    ._app-nav-accordion > .holder .view-wrapper .n {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: .72px
    }
}

._app-nav-accordion > .holder .view-wrapper .svg-icon {
    flex: none
}

._app-nav-accordion > .holder .view-wrapper .svg-icon path {
    stroke: #000
}

._app-nav-accordion > .holder .view-wrapper .svg-icon-minus {
    display: none
}

._app-nav-accordion > .holder .view-wrapper .context-box {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    padding-top: 0;
    padding-right: 16px;
    padding-bottom: 20px;
    padding-left: 16px
}

._app-nav-accordion > .holder .view-wrapper .context-box:not(:has(.sub-child)) {
    row-gap: 16px
}

._app-nav-accordion > .holder .view-wrapper .context-box a {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .48px;
    font-weight: 400;
    min-height: 28px
}

@media (min-width: 768px) {
    ._app-nav-accordion > .holder .view-wrapper .context-box a {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

@media (min-width: 1244px) {
    ._app-nav-accordion > .holder .view-wrapper .context-box a {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: .48px
    }
}

._app-nav-accordion > .holder .view-wrapper .context-box .p {
    display: block;
    color: #d30000
}

._app-nav-accordion > .holder .view-wrapper .context-box .c {
    display: block;
    color: #404040
}

._app-nav-accordion > .holder .view-wrapper .context-box .tails {
    display: flex;
    flex-direction: column;
    padding-top: 12px;
    row-gap: 16px
}

._app-nav-accordion > .holder .view-wrapper .context-box .tails .c span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    vertical-align: top
}

._app-nav-accordion > .holder .view-wrapper .context-box .tails .c.icon-new {
    position: relative;
    display: flex;
    align-items: center
}

._app-nav-accordion > .holder .view-wrapper .context-box .tails .c.icon-new:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    margin-left: 4px;
    background: url('../images/icon-nav-new.png') 0 0 no-repeat
}

._app-nav-accordion > .holder ._accordion-view.open .svg-icon-plus {
    display: none
}

._app-nav-accordion > .holder ._accordion-view.open .svg-icon-minus {
    display: inline-block
}

@media (min-width: 768px) {
    ._app-nav-accordion > .holder .view-wrapper .n {
        display: flex;
        align-items: center;
        min-height: 40px
    }
}

._app-nav-accordion[sitemap] > .holder .view-wrapper .n span:after {
    right: 0
}

._app-nav-accordion[sitemap] > .holder .view-wrapper .svg-icon {
    display: none
}

._app-nav-accordion[sitemap] > .holder .view-wrapper .context {
    --accord-height: auto !important;
    max-height: inherit
}

[dir=rtl] ._app-nav-accordion > .holder .view-wrapper .n span:after {
    left: auto;
    right: 0;
    transform: translateX(101%)
}

[dir=rtl] ._app-nav-accordion > .holder ._accordion-view.open .n span:after {
    transform: translateX(0)
}

._app-nav-side ._app-nav-util {
    margin-bottom: 72px
}

._app-nav-collapse {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 13;
    display: none
}

._app-nav-collapse > .holder {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff
}

._app-nav-collapse > .holder > .group {
    flex: 1;
    padding-top: 4px;
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px;
    overflow: auto;
    display: flex;
    flex-direction: column
}

._app-nav-collapse > .holder > .group::-webkit-scrollbar {
    width: 4px
}

._app-nav-collapse > .holder > .group::-webkit-scrollbar-thumb:hover, ._app-nav-collapse > .holder > .group::-webkit-scrollbar-track {
    background-color: transparent
}

._app-nav-collapse > .holder > .group::-webkit-scrollbar-thumb {
    background-color: #e5e5e5;
    border-radius: 2px
}

._app-nav-collapse .download {
    display: flex;
    box-shadow: 0 -7px 22px -4px rgba(154, 164, 184, .15), 0 -1px 4px -2px rgba(154, 164, 184, .04)
}

._app-nav-collapse.on {
    display: block
}

@media (min-width: 768px) {
    ._app-nav-collapse > .holder {
        width: 420px;
        margin-left: auto
    }

    ._app-nav-collapse > .holder > .group {
        padding-top: 20px
    }
}

@media (min-width: 1244px) {
    ._app-nav-collapse > .holder {
        width: 420px;
        margin-left: auto
    }

    ._app-nav-collapse > .holder > .group {
        padding-right: 40px;
        padding-left: 40px
    }
}

[responsive-video] video {
    width: 100%;
    height: 100%;
    vertical-align: top
}

[responsive-video].br {
    border-radius: 16px;
    overflow: hidden
}

@media (min-width: 768px) {
    [responsive-video] video {
        max-width: 704px
    }
}

@media (min-width: 1244px) {
    [responsive-video] video {
        max-width: none
    }
}

[responsive-video].responsive {
    position: relative;
    width: 100%;
    overflow: hidden
}

[responsive-video].responsive video {
    vertical-align: top
}