html {
    scroll-behavior: smooth;
}
body {
    font-family: "Onest", sans-serif;
    font-weight: normal;
    font-style: normal;
    background-color: #141414;
}
button {
    padding: 0;
    border: none;
    background-color: transparent;
    transition: 0.6s ease;
    transition-property: color, background, background-color, border-color, box-shadow, opacity;
    cursor: pointer;
}
button:focus {
    outline: none;
}
a {
    text-decoration: none;
    transition: 0.6s ease;
    transition-property: color, background, background-color, border-color, box-shadow, opacity;
}
a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
}
input,
textarea,
select {
    padding: 0;
    margin: 0;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    box-shadow: none;
    transition: 0.4s ease;
    transition-property: color, border-color, box-shadow;
}
input:focus,
textarea:focus,
select:focus {
    outline: none;
}
select::-ms-expand {
    display: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
svg {
    transition: 0.4s ease;
    transition-property: stroke, fill;
}
::-moz-selection {
    background: #e84142;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #e84142;
    color: #fff;
    text-shadow: none;
}
::-webkit-input-placeholder {
    color: #898e95;
    opacity: 1;
}
::-moz-placeholder {
    color: #898e95;
    opacity: 1;
}
:-moz-placeholder {
    color: #898e95;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #898e95;
    opacity: 1;
}
:focus {
    outline: 0 !important;
}
:focus-visible {
    outline: 0 !important;
}
@media (min-width: 1900px) {
    .container {
        max-width: 1344px;
    }
}
.tab-content {
    width: 100%;
    position: relative;
}
@media (min-width: 1200px) {
    .body {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        height: 100svh;
        overflow: hidden;
    }
}
.header {
    display: block;
    width: 100%;
    height: 70px;
    padding: 0 4px;
    position: sticky;
    top: 0;
    left: 0;
    background-color: #141414;
    border-bottom: 1px solid #1e1f21;
    z-index: 99;
}
.header__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
}
.header__logo img {
    width: auto;
    height: 24px;
    display: block;
}
.header__search {
    display: none;
}
.header__auth {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: auto;
}
.header__sign-in {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #b9cbe3;
}
.header__sign-in span {
    display: none;
    color: #141414;
}
.header__sign-in svg {
    width: 24px;
    height: 24px;
    stroke: #141414;
}
.header__sign-in:hover,
.header__sign-in[aria-expanded="true"] {
    background-color: #e84142;
}
.header__sign-in:hover span,
.header__sign-in[aria-expanded="true"] span {
    color: #141414;
}
.header__sign-in:hover svg,
.header__sign-in[aria-expanded="true"] svg {
    stroke: #fff;
}
.header__dropdown-menu {
    position: absolute;
    background-color: #141414;
    padding: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    min-width: 160px;
    border-radius: 16px;
    border: 1px solid #1e1f21;
    max-height: 298px;
    height: auto;
    overflow-y: auto;
}
.header__dropdown-menu::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.header__dropdown-menu::-webkit-scrollbar-button {
    display: none;
}
.header__dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(232, 65, 66, 0.4);
    outline: 0 solid #fff;
    border-radius: 4px;
}
.header__dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #e84142;
}
.header__dropdown-menu::-webkit-scrollbar-track {
    background: #141414;
    border-radius: 4px;
}
.header__dropdown-menu li {
    margin-bottom: 16px;
    width: 100%;
}
.header__dropdown-menu li:last-child {
    margin-bottom: 0;
}
.header__dropdown-menu a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
}
.header__dropdown-menu a svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    stroke: #898e95;
}
.header__dropdown-menu a:hover svg {
    stroke: #e84142;
}
.header__dropdown-menu--noicon a:hover {
    color: #e84142;
}
.header__dropdown-menu.show {
    display: flex;
}
.header__profile {
    position: relative;
    margin-left: 16px;
}
.header__profile:first-child {
    margin-left: 0;
}
.header__notices {
    position: relative;
    margin-left: 16px;
}
.header__notices:first-child {
    margin-left: 0;
}
.header__notices-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #b9cbe3;
    position: relative;
}
.header__notices-btn svg {
    width: 24px;
    height: 24px;
    stroke: #141414;
    position: relative;
    z-index: 1;
}
.header__notices-btn span {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #e84142;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    line-height: 14px;
    width: auto;
    min-width: 20px;
    height: 20px;
    padding: 0 2px;
    border-radius: 10px;
    top: -4px;
    right: -4px;
}
.header__notices-btn span:empty {
    display: none;
}
.header__notices-btn:hover,
.header__notices-btn[aria-expanded="true"] {
    background-color: #e84142;
}
.header__notices-btn:hover svg,
.header__notices-btn[aria-expanded="true"] svg {
    stroke: #fff;
}
.header__dropdown-notices {
    position: absolute;
    background-color: #141414;
    padding: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-width: 220px;
    border-radius: 16px;
    border: 1px solid #1e1f21;
    overflow: hidden;
}
.header__dropdown-notices.show {
    display: flex;
}
.header__notes {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-height: 252px;
    overflow-y: auto;
    padding-right: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid #1e1f21;
    margin-bottom: 8px;
}
.header__notes:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}
.header__notes::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.header__notes::-webkit-scrollbar-button {
    display: none;
}
.header__notes::-webkit-scrollbar-thumb {
    background: rgba(232, 65, 66, 0.4);
    outline: 0 solid #fff;
    border-radius: 4px;
}
.header__notes::-webkit-scrollbar-thumb:hover {
    background: #e84142;
}
.header__notes::-webkit-scrollbar-track {
    background: #1e1f21;
    border-radius: 4px;
}
.header__notes li {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    width: 100%;
    margin-bottom: 16px;
}
.header__notes li:last-child {
    margin-bottom: 0;
}
.header__notes li img {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 2px;
    left: 0;
}
.header__notes li p {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 4px;
    padding-left: 24px;
}
.header__notes li p:first-child {
    padding-left: 0;
}
.header__notes li p:last-child {
    margin-bottom: 0;
}
.header__notes li span {
    font-size: 12px;
    line-height: 16px;
    color: #898e95;
}
.header__balance {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    position: relative;
    margin-left: 16px;
}
.header__balance:first-child {
    margin-left: 0;
}
.header__balance-dropdown {
    position: relative;
    display: none;
}
.header__balance-dropdown-btn {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    min-width: 150px;
    height: 40px;
    border-radius: 20px 0 0 20px;
    background-color: #1e1f21;
    padding: 0 8px;
}
.header__balance-dropdown-btn img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}
.header__balance-dropdown-btn span {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-right: 4px;
}
.header__balance-dropdown-btn svg {
    margin-left: auto;
    width: 14px;
    height: 14px;
    stroke: #898e95;
}
.header__balance-dropdown-btn:hover svg,
.header__balance-dropdown-btn.show svg {
    stroke: #e84142;
}
.header__balance-menu {
    position: absolute;
    background-color: #141414;
    padding: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-width: 190px;
    border-radius: 16px;
    border: 1px solid #1e1f21;
    overflow: hidden;
}
.header__balance-menu.show {
    display: flex;
}
.header__balance-currencies {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-height: 252px;
    overflow-y: auto;
    padding-right: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid #1e1f21;
    margin-bottom: 8px;
}
.header__balance-currencies:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}
.header__balance-currencies::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.header__balance-currencies::-webkit-scrollbar-button {
    display: none;
}
.header__balance-currencies::-webkit-scrollbar-thumb {
    background: rgba(232, 65, 66, 0.4);
    outline: 0 solid #fff;
    border-radius: 4px;
}
.header__balance-currencies::-webkit-scrollbar-thumb:hover {
    background: #e84142;
}
.header__balance-currencies::-webkit-scrollbar-track {
    background: #1e1f21;
    border-radius: 4px;
}
.header__balance-currencies li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
    cursor: pointer;
}
.header__balance-currencies li:last-child {
    margin-bottom: 0;
}
.header__balance-currencies li:hover span,
.header__balance-currencies li.active span {
    color: #e84142;
}
.header__balance-currencies span {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 500;
    transition: color 0.4s ease;
}
.header__balance-currencies span img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}
.header__balance-edit,
.header__notices-clear {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
}
.header__balance-edit:hover,
.header__notices-clear:hover {
    color: #e84142;
}
.header__wallet {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1aaa67;
}
.header__wallet svg {
    width: 24px;
    height: 24px;
    stroke: #141414;
}
.header__dropdown {
    display: none;
    position: relative;
}
.header__dropdown-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1e1f21;
    position: relative;
}
.header__dropdown-btn svg {
    width: 20px;
    height: 20px;
    stroke: #898e95;
}
.header__dropdown-btn:hover svg,
.header__dropdown-btn[aria-expanded="true"] svg {
    stroke: #e84142;
}
@media (min-width: 768px) {
    .header {
        height: 80px;
    }
    .header__content {
        height: 80px;
    }
    .header__search {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background-color: #b9cbe3;
        margin-right: 24px;
        margin-left: auto;
    }
    .header__search span {
        display: none;
    }
    .header__search svg {
        width: 22px;
        height: 22px;
        stroke: #141414;
    }
    .header__profile {
        margin-left: 24px;
        border-radius: 24px 24px 0 0;
    }
    .header__sign-in {
        height: 46px;
        width: 120px;
        border-radius: 24px;
    }
    .header__sign-in svg {
        display: none;
    }
    .header__sign-in span {
        display: block;
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        color: #141414;
        text-transform: uppercase;
        transition: color 0.4s ease;
    }
    .header__sign-in--user {
        width: 46px;
        border-radius: 50%;
    }
    .header__sign-in--user svg {
        display: block;
    }
    .header__sign-in--user span {
        display: none;
    }
    .header__notices {
        margin-left: 24px;
    }
    .header__notices-btn,
    .header__dropdown-btn {
        width: 46px;
        height: 46px;
    }
    .header__balance-dropdown {
        display: block;
    }
    .header__balance {
        min-width: 226px;
        margin-left: 24px;
    }
    .header__balance-dropdown-btn {
        height: 46px;
        border-radius: 24px 0 0 24px;
        padding: 0 16px;
        min-width: 180px;
    }
    .header__balance-menu {
        min-width: 226px;
    }
    .header__wallet {
        width: 46px;
        height: 46px;
        border-radius: 0 50% 50% 0;
    }
    .header__wallet svg {
        margin-right: 2px;
    }
}
@media (min-width: 992px) {
    .header__search {
        justify-content: flex-start;
        width: 224px;
        height: 46px;
        border-radius: 24px;
        background-color: #1e1f21;
        padding: 0 16px;
        margin-right: auto;
        margin-left: 24px;
    }
    .header__search span {
        display: block;
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        color: #898e95;
    }
    .header__search svg {
        width: 20px;
        height: 20px;
        stroke: #898e95;
        margin-right: 8px;
    }
}
@media (min-width: 1200px) {
    .header {
        padding: 0 40px;
    }
    .header__logo {
        display: none;
    }
    .header__search {
        margin-right: 0;
        margin-left: 0;
    }
    .header__search:hover svg {
        stroke: #e84142;
    }
    .header__search:focus svg {
        stroke: #898e95;
    }
    .header__profile,
    .header__notices,
    .header__balance {
        margin-left: 32px;
    }
    .header__wallet:hover {
        background-color: #e84142;
    }
    .header__wallet:hover svg {
        stroke: #fff;
    }
    .header__wallet:focus {
        background-color: #1aaa67;
    }
    .header__wallet:focus svg {
        stroke: #141414;
    }
    .header__dropdown {
        display: block;
        margin-left: 32px;
        margin-right: auto;
    }
}
.sidebar {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    top: 70px;
    left: 0;
    bottom: 60px;
    background-color: #141414;
    z-index: 98;
    width: 100vw;
    transform: translate3d(-100vw, 0, 0);
    transition: transform 0.4s ease;
    border-right: 1px solid #1e1f21;
}
.sidebar__head {
    display: none;
}
.sidebar__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}
.sidebar__content::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.sidebar__content::-webkit-scrollbar-button {
    display: none;
}
.sidebar__content::-webkit-scrollbar-thumb {
    background: rgba(232, 65, 66, 0.4);
    outline: 0 solid #fff;
    border-radius: 0;
}
.sidebar__content::-webkit-scrollbar-thumb:hover {
    background: #e84142;
}
.sidebar__content::-webkit-scrollbar-track {
    background: #141414;
    border-radius: 0;
}
.sidebar__menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    width: 100%;
    padding: 0 16px;
    margin-top: 32px;
    margin-bottom: 32px;
}
.sidebar__nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    width: 100%;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #1e1f21;
}
.sidebar__nav:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}
.sidebar__nav li {
    position: relative;
    width: 100%;
}
.sidebar__nav li.active a:after,
.sidebar__nav li.active button:after {
    opacity: 0.5;
}
.sidebar__nav li.active a:before,
.sidebar__nav li.active button:before {
    opacity: 1;
}
.sidebar__nav li.active a svg,
.sidebar__nav li.active button svg {
    stroke: #e84142;
}
.sidebar__nav li.active.green a:after,
.sidebar__nav li.active.green button:after {
    background-color: #1aaa67;
}
.sidebar__nav li.active.green a svg,
.sidebar__nav li.active.green button svg {
    stroke: #1aaa67;
}
.sidebar__nav li.active.green a:hover svg,
.sidebar__nav li.active.green button:hover svg {
    stroke: #1aaa67;
}
.sidebar__nav li.active.red a:after,
.sidebar__nav li.active.red button:after {
    background-color: #ce2b2b;
}
.sidebar__nav li.active.red a svg,
.sidebar__nav li.active.red button svg {
    stroke: #ce2b2b;
}
.sidebar__nav li.active.red a:hover svg,
.sidebar__nav li.active.red button:hover svg {
    stroke: #ce2b2b;
}
.sidebar__nav li.active.blue a:after,
.sidebar__nav li.active.blue button:after {
    background-color: #1662ff;
}
.sidebar__nav li.active.blue a svg,
.sidebar__nav li.active.blue button svg {
    stroke: #1662ff;
}
.sidebar__nav li.active.blue a:hover svg,
.sidebar__nav li.active.blue button:hover svg {
    stroke: #1662ff;
}
.sidebar__nav li.active.purple a:after,
.sidebar__nav li.active.purple button:after {
    background-color: #ac29c2;
}
.sidebar__nav li.active.purple a svg,
.sidebar__nav li.active.purple button svg {
    stroke: #ac29c2;
}
.sidebar__nav li.active.purple a:hover svg,
.sidebar__nav li.active.purple button:hover svg {
    stroke: #ac29c2;
}
.sidebar__nav a,
.sidebar__nav button {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 100%;
    height: 44px;
    border-radius: 22px;
    background: transparent;
    border: none;
    text-align: left;
    padding: 0 16px;
}
.sidebar__nav a:after,
.sidebar__nav button:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 10px;
    bottom: 10px;
    left: 16px;
    width: 20px;
    background-color: #e84142;
    border-radius: 50%;
    opacity: 0;
    transition: 0.4s ease;
}
.sidebar__nav a:before,
.sidebar__nav button:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    opacity: 0;
    transition: 0.4s ease;
}
.sidebar__nav a svg,
.sidebar__nav button svg {
    position: relative;
    z-index: 3;
    width: 20px;
    height: 20px;
    stroke: #898e95;
    margin-right: 8px;
}
.sidebar__nav a span,
.sidebar__nav button span {
    position: relative;
    z-index: 3;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    transition: color 0.4s ease;
}
.sidebar__nav a p,
.sidebar__nav button p {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    font-weight: 700;
    font-size: 10px;
    line-height: 20px;
    padding: 0 8px;
    background-color: #1e1f21;
    color: #898e95;
    margin-bottom: 0;
    border-radius: 10px;
}
.sidebar__nav a p:empty,
.sidebar__nav button p:empty {
    display: none;
}
.sidebar__nav a:hover svg,
.sidebar__nav button:hover svg {
    stroke: #e84142;
}
.sidebar__nav button.sidebar__collapsed svg:last-child {
    width: 14px;
    height: 14px;
    transition: 0.4s ease;
    margin-right: 0;
    margin-left: 4px;
    margin-top: 2px;
}
.sidebar__nav button.sidebar__collapsed[aria-expanded="true"] svg,
.sidebar__nav button.sidebar__collapsed:hover svg {
    stroke: #e84142;
}
.sidebar__nav--collapse {
    border-radius: 16px;
    background-color: #1e1f21;
    padding: 0 8px;
    margin-bottom: 0;
    border: none;
}
.sidebar__nav--collapse a,
.sidebar__nav--collapse button {
    padding: 0 8px 0 24px;
    height: 32px;
}
.sidebar__nav--collapse a:before,
.sidebar__nav--collapse button:before,
.sidebar__nav--collapse a:after,
.sidebar__nav--collapse button:after {
    display: none;
}
.sidebar__nav--collapse a p,
.sidebar__nav--collapse button p {
    padding: 0;
    background-color: transparent;
}
.sidebar__nav--collapse a:hover span,
.sidebar__nav--collapse button:hover span {
    color: #e84142;
}
.sidebar__nav--collapse li {
    margin-bottom: 5px;
}
.sidebar__nav--collapse li:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #898e95;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.4s ease;
}
.sidebar__nav--collapse li:first-child {
    margin-top: 16px;
}
.sidebar__nav--collapse li:last-child {
    margin-bottom: 16px;
}
.sidebar__nav--collapse li:hover:before {
    background-color: #e84142;
}
.sidebar--active {
    transform: translate3d(0, 0, 0);
}
@media (min-width: 768px) {
    .sidebar {
        width: 260px;
        transform: translate3d(-260px, 0, 0);
    }
    .sidebar--active {
        transform: translate3d(0, 0, 0);
    }
}
@media (min-width: 1200px) {
    .sidebar {
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
        transform: translate3d(0, 0, 0);
        height: 100%;
        flex-shrink: 0;
        transition: width 0.4s ease;
    }
    .sidebar__head {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 80px;
        padding: 0 32px;
        flex-shrink: 0;
        position: relative;
        border-bottom: 1px solid #1e1f21;
    }
    .sidebar__logo img {
        width: auto;
        height: 24px;
        display: block;
    }
}
.main {
    width: 100%;
    padding-bottom: 60px;
}
.main__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
.main__table {
    display: none;
}
.main__tabs-nav {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    flex-wrap: nowrap;
    width: auto;
    max-width: 100%;
    padding: 0 20px;
    border-radius: 30px;
    background: #1e1f21;
    overflow-x: auto;
    border: none;
    margin-top: 0;
    margin-bottom: 8px;
}
.main__tabs-nav::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.main__tabs-nav::-webkit-scrollbar-button {
    display: none;
}
.main__tabs-nav::-webkit-scrollbar-thumb {
    background: rgba(232, 65, 66, 0.4);
    outline: 0 solid #fff;
    border-radius: 4px;
}
.main__tabs-nav::-webkit-scrollbar-thumb:hover {
    background: #e84142;
}
.main__tabs-nav::-webkit-scrollbar-track {
    background: #141414;
    border-radius: 4px;
}
.main__tabs-nav li {
    margin-right: 20px;
}
.main__tabs-nav li:last-child {
    margin-right: 0;
}
.main__tabs-nav button {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: 56px;
    color: #898e95;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}
.main__tabs-nav button:hover {
    color: #fff;
}
.main__tabs-nav button:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    display: block;
    background: #e84142;
    box-shadow: none;
    transition: 0.4s ease;
    border-radius: 2px 2px 0 0;
}
.main__tabs-nav button.active {
    color: #fff;
}
.main__tabs-nav button.active:before {
    height: 2px;
}
.main__tabs-nav--mt {
    margin-top: 30px;
}
.main__tabs-nav--movie {
    margin-top: 24px;
    position: relative;
    z-index: 2;
}
.main__tabs-content {
    position: relative;
    width: 100%;
}
@media (min-width: 768px) {
    .main {
        padding-bottom: 0;
    }
    .main__table {
        display: block;
        padding: 32px 32px 16px;
        background-color: #1e1f21;
        border-radius: 16px;
    }
    .main__table--mt {
        margin-top: 16px;
    }
    .main__tabs-nav {
        margin-bottom: 16px;
        padding: 0 30px;
    }
    .main__tabs-nav li {
        margin-right: 30px;
    }
    .main__tabs-nav li:last-child {
        margin-right: 0;
    }
    .main__tabs-nav--movie {
        margin-top: 32px;
    }
}
@media (min-width: 1200px) {
    .main {
        overflow: hidden;
        height: 100%;
    }
    .main__content {
        height: calc(100% - 80px);
        overflow-y: auto;
    }
    .main__content::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }
    .main__content::-webkit-scrollbar-button {
        display: none;
    }
    .main__content::-webkit-scrollbar-thumb {
        background: rgba(232, 65, 66, 0.4);
        outline: 0 solid #fff;
        border-radius: 0;
    }
    .main__content::-webkit-scrollbar-thumb:hover {
        background: #e84142;
    }
    .main__content::-webkit-scrollbar-track {
        background: #141414;
        border-radius: 0;
    }
}
.section {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 40px 4px 0;
}
.section .container {
    position: relative;
    z-index: 4;
}
.section__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 8px;
}
.section__header--tabs {
    justify-content: flex-end;
    margin-top: -44px;
    position: relative;
    z-index: 1;
}
.section__head {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
.section__title {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    font-size: 26px;
    font-weight: 500;
    line-height: 36px;
    color: #fff;
    margin-bottom: 0;
}
.section__title small {
    font-size: 20px;
    line-height: normal;
    font-weight: 400;
    color: #898e95;
    margin-top: 8px;
    margin-left: 8px;
}
.section__title a {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    color: #fff;
}
.section__title a:hover {
    color: #e84142;
}
.section__title--head {
    font-size: 32px;
    line-height: 42px;
}
.section__title--land {
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 36px;
    line-height: 48px;
    text-align: center;
}
.section__text {
    color: #898e95;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
}
.section__text b {
    font-weight: 500;
    color: #898e95;
}
.section__text a {
    color: #e84142;
}
.section__text a:hover {
    color: #e84142;
    text-decoration: underline;
}
.section__text--land {
    text-align: center;
    width: 100%;
    max-width: 460px;
    margin: 8px auto 0 !important;
    color: #dbdbdb;
    text-shadow: 1px 1px 4px rgba(20, 20, 20, 0.8);
}
.section__text--land b {
    color: #fff;
}
.section__text--land b.red {
    color: #ce2b2b;
}
.section__text--land b.blue {
    color: #1662ff;
}
.section__text--land b.green {
    color: #1aaa67;
}
.section__text--land b.purple {
    color: #ac29c2;
}
.section__text--land b.ocean {
    color: #05aff2;
}
.section__text--land b.crimson {
    color: #ff2b91;
}
.section__text--land b.diamond {
    color: #72f2eb;
}
.section__list ol {
    padding-left: 0;
    list-style: none;
    counter-reset: li;
    margin-bottom: 16px;
}
.section__list ol li {
    margin-bottom: 16px;
}
.section__list ol li:last-child {
    margin-bottom: 0;
}
.section__list ol:last-child {
    margin-bottom: 0;
}
.section__list ol ol {
    padding-left: 20px;
    margin-bottom: 16px;
}
.section__list ol ol ol {
    margin-top: 16px;
}
.section__list ol ol:last-child {
    margin-bottom: 0;
}
.section__list ol h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #898e95;
    display: inline-block;
    margin-bottom: 16px;
}
.section__list ol li {
    font-size: 16px;
    line-height: 24px;
    color: #898e95;
    position: relative;
}
.section__list ol li b {
    font-weight: 500;
    color: #898e95;
}
.section__list ol li a {
    color: #e84142;
}
.section__list ol li a:hover {
    color: #e84142;
    text-decoration: underline;
}
.section__list ol li:last-child {
    margin-bottom: 0;
}
.section__list ol li:before {
    counter-increment: li;
    content: counters(li, ".") ". ";
}
.section__nav {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    flex-shrink: 0;
}
.section__all {
    display: none;
}
.section__carousel {
    width: 100%;
    position: relative;
    margin-top: 16px;
}
.section__more {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 48px;
    width: 160px;
    border-radius: 24px;
    background-color: #b9cbe3;
    margin: 32px auto 0;
    padding-right: 44px;
    overflow: hidden;
}
.section__more:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: 4px;
    top: 4px;
    background-color: #e84142;
    transition: transform 0.4s ease;
    transform: scale(1);
    transform-origin: center;
    will-change: transform;
    pointer-events: none;
}
.section__more:hover:before {
    transform: scale(7);
}
.section__more:hover .section__more-name {
    color: #fff;
}
.section__more:hover .section__more-arrow {
    transform: rotate(-45deg);
    background-color: transparent;
}
.section__more-name {
    font-size: 14px;
    font-weight: 500;
    color: #141414;
    text-transform: uppercase;
    position: relative;
    transition: color 0.4s ease;
    z-index: 2;
    margin-left: 16px;
}
.section__more-arrow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: 4px;
    top: 4px;
    background-color: #1e1f21;
    border: 1px solid #1e1f21;
    transition: 0.4s ease;
    transition-property: transform, background-color;
    will-change: transform;
}
.section__more-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}
.section__bg {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    background: linear-gradient(145deg, #141414, #1e1f21, #e84142, #1e1f21, #1e1f21, #e84142, #1e1f21, #1e1f21, #e84142, #1e1f21, #141414);
    background-size: 180% 180%;
    animation: gradient-animation 9s ease infinite;
    opacity: 1;
    overflow: hidden;
}
.section__bg:after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(64px);
}
.section__bg:before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 32%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}
.section__bg .star {
    position: absolute;
    background: transparent;
    z-index: 4;
}
.section__bg #stars {
    width: 2px;
    height: 2px;
    box-shadow: 1397px 1662px #e84142, 456px 285px #e84142, 739px 1736px #e84142, 1805px 346px #e84142, 395px 202px #e84142, 1665px 504px #e84142, 659px 217px #e84142, 1285px 1913px #e84142, 1954px 999px #e84142, 1394px 965px #e84142, 1122px 174px #e84142, 1434px 1147px #e84142, 1367px 1287px #e84142, 1185px 1581px #e84142, 570px 1087px #e84142, 1796px 1318px #e84142, 924px 738px #e84142, 101px 1708px #e84142, 888px 363px #e84142, 1488px 1502px #e84142;
    border-radius: 50%;
    animation: animStar 35s linear infinite;
}
.section__bg #stars:after {
    content: "";
    position: absolute;
    top: 1900px;
    width: 2px;
    height: 2px;
    background: transparent;
    box-shadow: 1397px 1662px #e84142, 456px 285px #e84142, 739px 1736px #e84142, 1805px 346px #e84142, 395px 202px #e84142, 1665px 504px #e84142, 659px 217px #e84142, 1285px 1913px #e84142, 1954px 999px #e84142, 1394px 965px #e84142, 1122px 174px #e84142, 1434px 1147px #e84142, 1367px 1287px #e84142, 1185px 1581px #e84142, 570px 1087px #e84142, 1796px 1318px #e84142, 924px 738px #e84142, 101px 1708px #e84142, 888px 363px #e84142, 1488px 1502px #e84142;
}
.section__bg #stars2 {
    width: 3px;
    height: 3px;
    box-shadow: 1269px 1266px #e84142, 1033px 144px #e84142, 1453px 1525px #e84142, 1224px 262px #e84142, 1371px 242px #e84142, 463px 1090px #e84142, 1018px 1140px #e84142, 276px 1468px #e84142, 1039px 933px #e84142, 1713px 328px #e84142, 116px 1068px #e84142, 235px 868px #e84142;
    border-radius: 50%;
    animation: animStar 60s linear infinite;
}
.section__bg #stars2:after {
    content: "";
    position: absolute;
    top: 1900px;
    width: 3px;
    height: 3px;
    background: transparent;
    box-shadow: 1269px 1266px #e84142, 1033px 144px #e84142, 1453px 1525px #e84142, 1224px 262px #e84142, 1371px 242px #e84142, 463px 1090px #e84142, 1018px 1140px #e84142, 276px 1468px #e84142, 1039px 933px #e84142, 1713px 328px #e84142, 116px 1068px #e84142, 235px 868px #e84142;
}
.section__bg #stars3 {
    width: 4px;
    height: 4px;
    box-shadow: 167px 892px #e84142, 1667px 1783px #e84142, 1805px 488px #e84142, 529px 521px #e84142, 413px 1255px #e84142, 1051px 1643px #e84142;
    border-radius: 50%;
    animation: animStar 90s linear infinite;
}
.section__bg #stars3:after {
    content: "";
    position: absolute;
    top: 1900px;
    width: 4px;
    height: 4px;
    background: transparent;
    box-shadow: 167px 892px #e84142, 1667px 1783px #e84142, 1805px 488px #e84142, 529px 521px #e84142, 413px 1255px #e84142, 1051px 1643px #e84142;
}
.section__canvas {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.section__canvas canvas {
    width: 100%;
    height: 100%;
}
.section__animation {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}
.section__animation--green .section__animation-color {
    background-color: #1aaa67;
}
.section__animation--green .section__animation-icon svg {
    stroke: #1aaa67;
}
.section__animation--red .section__animation-color {
    background-color: #ce2b2b;
}
.section__animation--red .section__animation-icon svg {
    stroke: #ce2b2b;
}
.section__animation--blue .section__animation-color {
    background-color: #1662ff;
}
.section__animation--blue .section__animation-icon svg {
    stroke: #1662ff;
}
.section__animation--purple .section__animation-color {
    background-color: #ac29c2;
}
.section__animation--purple .section__animation-icon svg {
    stroke: #ac29c2;
}
.section__animation-color {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    border-radius: 50%;
    background-color: #e84142;
    animation: moveBackground 8s ease-in-out infinite alternate;
    opacity: 0.5;
    z-index: 1;
    transition: 0.4s ease;
    will-change: transform;
}
.section__animation-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    margin: -80px 0 0 -80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.005);
    animation: moveBackground 8s ease-in-out infinite alternate;
    backdrop-filter: blur(24px);
    border: 2px solid rgba(255, 255, 255, 0.02);
    z-index: 2;
    transition: 0.4s ease;
    will-change: transform;
}
.section__animation-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    border-radius: 50%;
    background-color: transparent;
    animation: moveBackground 8s ease-in-out infinite alternate;
    z-index: 3;
    transition: 0.4s ease;
    will-change: transform;
}
.section__animation-icon svg {
    width: 40px;
    height: 40px;
    stroke: #e84142;
}
.section__roadmap {
    display: block;
    position: relative;
    margin-top: 16px;
    width: 100%;
    background-color: #1e1f21;
    border-radius: 16px;
    padding: 30px 20px;
}
.section__roadmap:before {
    content: "";
    position: absolute;
    display: block;
    height: 4px;
    top: 82px;
    right: 20px;
    left: 20px;
    border-radius: 4px;
    background: #e84142;
}
.section__roadmap.red:before {
    background-color: #ce2b2b;
}
.section__roadmap.blue:before {
    background-color: #1662ff;
}
.section__roadmap.green:before {
    background-color: #1aaa67;
}
.section__roadmap.purple:before {
    background-color: #ac29c2;
}
.section__chart {
    width: 100%;
    margin: 24px auto 0;
    background: url(../images/style/flixcoin.svg) no-repeat center;
    background-size: 40px 40px;
    position: relative;
}
.section__tokenomics {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 32px;
    gap: 16px 20px;
}
.section__tokenomics li {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    padding-left: 24px;
    position: relative;
}
.section__tokenomics li:before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.section__tokenomics li.clr1:before {
    background-color: #1aaa67;
}
.section__tokenomics li.clr2:before {
    background-color: #ff2b91;
}
.section__tokenomics li.clr3:before {
    background-color: #e84142;
}
.section__tokenomics li.clr4:before {
    background-color: #72f2eb;
}
.section__tokenomics li.clr5:before {
    background-color: #05aff2;
}
.section__tokenomics li.clr6:before {
    background-color: #dc2d4e;
}
.section__tokenomics li.clr7:before {
    background-color: #ac29c2;
}
.section__tokenomics li.clr8:before {
    background-color: #ce2b2b;
}
.section__tokenomics li.clr9:before {
    background-color: #1662ff;
}
.section__tokenomics li.clr10:before {
    background-color: #ffc312;
}
.section--bb {
    border-bottom: 1px solid #1e1f21;
    padding-bottom: 40px;
}
.section--land {
    position: relative;
    padding-bottom: 40px;
}
.section--pt0 {
    padding-top: 0;
}
@media (min-width: 768px) {
    .section {
        padding: 48px 4px 0;
    }
    .section__header--tabs {
        margin-top: -52px;
    }
    .section__head {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .section__title {
        font-size: 32px;
    }
    .section__title small {
        font-size: 24px;
    }
    .section__title--head {
        font-size: 36px;
        line-height: 46px;
    }
    .section__title--land {
        font-size: 40px;
        line-height: 56px;
        margin-bottom: 8px;
    }
    .section__text--land {
        margin: 8px auto 8px !important;
    }
    .section__all {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        min-width: 70px;
        padding: 0 16px;
        height: 36px;
        color: #fff;
        border-radius: 18px;
        background-color: #1e1f21;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        margin-right: 16px;
    }
    .section__all:hover {
        color: #e84142;
    }
    .section__more {
        margin: 40px auto 0;
    }
    .section__roadmap {
        padding: 30px 30px 40px;
    }
    .section__roadmap:before {
        left: 30px;
        right: 30px;
        top: 87px;
    }
    .section__chart {
        width: 360px;
        margin: 24px auto 0;
    }
    .section--bb {
        padding-bottom: 48px;
    }
    .section--land {
        padding-bottom: 48px;
    }
    .section--pt0 {
        padding-top: 0;
    }
}
@media (min-width: 1200px) {
    .section {
        padding: 56px 40px 0;
    }
    .section__roadmap {
        padding: 30px;
    }
    .section--bb {
        padding-bottom: 56px;
    }
    .section--land {
        padding-bottom: 56px;
    }
    .section--pt0 {
        padding-top: 0;
    }
}
.hero {
    position: relative;
    width: 100%;
}
.hero__slide {
    position: relative;
    padding: 0 80px 0 16px;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}
.hero__slide:before,
.hero__slide:after {
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}
.hero__slide:before {
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.hero__slide:after {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, #141414 100%);
    z-index: 3;
}
.hero__bg {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    inset: 0;
    object-fit: cover;
}
.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 460px;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 4;
    padding-bottom: 8px;
}
.hero__title {
    font-size: 32px;
    line-height: 42px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
    padding-right: 40px;
}
.hero__title sub {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 5px;
    right: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #141414;
    width: 32px;
    height: 32px;
    background-color: #141414;
    border-radius: 50%;
    overflow: hidden;
}
.hero__title sub.gold {
    background: linear-gradient(45deg, #ffd700, #ffa500, #fc0);
}
.hero__title sub.silver {
    background: linear-gradient(45deg, #c0c0c0, #a8a8a8, #d0d0d0);
}
.hero__title sub.bronze {
    background: linear-gradient(45deg, #cd7f32, #b87333, #c19a6b);
}
.hero__text {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 16px;
    width: 100%;
    max-width: 420px;
}
.hero__meta {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 420px;
    margin-bottom: 16px;
}
.hero__meta li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: start;
    flex-wrap: wrap;
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
}
.hero__meta li:last-child {
    margin-bottom: 0;
}
.hero__meta span {
    margin-right: 10px;
    font-weight: 400;
}
.hero__meta a {
    font-size: 14px;
    line-height: 24px;
    position: relative;
    color: #b9cbe3;
    margin-right: 10px;
}
.hero__meta a:after {
    content: ",";
    position: absolute;
    display: block;
    left: 100%;
    top: 0;
    color: #b9cbe3;
}
.hero__meta a:last-child {
    margin-right: 0;
}
.hero__meta a:last-child:after {
    display: none;
}
.hero__meta a:hover {
    color: #e84142;
}
.hero__category {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.hero__category a {
    font-size: 14px;
    line-height: 20px;
    position: relative;
    color: #b9cbe3;
    margin-right: 8px;
}
.hero__category a:after {
    content: ",";
    position: absolute;
    display: block;
    left: 100%;
    top: 0;
    color: #b9cbe3;
}
.hero__category a:last-child {
    margin-right: 0;
}
.hero__category a:last-child:after {
    display: none;
}
.hero__category a:hover {
    color: #e84142;
}
.hero__hash {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    width: 224px;
    padding: 4px;
    height: 32px;
    background-color: #1e1f21;
    border-radius: 16px;
}
.hero__hash:after {
    content: "";
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #63686f;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.2s ease;
}
.hero__hash img {
    width: 24px;
    border-radius: 50%;
    opacity: 1 !important;
}
.hero__hash img + img {
    margin-left: -12px;
}
.hero__hash span {
    margin-left: 8px;
    font-size: 14px;
    line-height: 24px;
    color: #1aaa67;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
}
.hero__hash span + span {
    font-size: 12px;
    line-height: 24px;
    color: #898e95;
    font-weight: 400;
    text-transform: none;
    margin-left: 4px;
}
.hero__hash span + span b {
    color: #1aaa67;
    font-weight: 400;
}
.hero__hash:hover:after {
    background-color: #b9cbe3;
}
.hero__actions {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 10px;
}
.hero__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 160px;
    border-radius: 24px;
    background-color: #b9cbe3;
    margin-top: 20px;
    margin-right: 16px;
    position: relative;
    overflow: hidden;
}
.hero__btn:last-child {
    margin-right: 0;
}
.hero__btn:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    background-color: #e84142;
    transition: 0.4s ease;
    transition-property: transform, opacity;
    transform: scale(1);
    opacity: 0;
    transform-origin: center;
    will-change: transform;
    pointer-events: none;
}
.hero__btn span {
    position: relative;
    z-index: 2;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #141414;
    text-transform: uppercase;
    transition: color 0.4s ease;
}
.hero__btn:hover:before {
    opacity: 1;
    transform: scale(8.2);
}
.hero__btn:hover span {
    color: #fff;
}
.hero__favorite {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background-color: #141414;
    border: 1px solid #1e1f21;
    border-radius: 50%;
    margin-top: 20px;
    margin-right: 16px;
}
.hero__favorite svg {
    width: 20px;
    height: 20px;
    stroke: #63686f;
}
.hero__favorite:last-child {
    margin-right: 0;
}
.hero__favorite:hover svg {
    stroke: #ffc312;
}
.hero__favorite--active svg {
    stroke: #ffc312;
}
.hero__navs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 64px;
    overflow: hidden;
}
@media (min-width: 576px) {
    .hero__slide {
        padding-left: calc((100% - 516px) / 2);
        padding-right: calc((100% - 516px) / 2);
    }
}
@media (min-width: 768px) {
    .hero__slide {
        padding-left: calc((100% - 696px) / 2);
        padding-right: calc((100% - 696px) / 2);
    }
    .hero__content {
        height: 500px;
    }
    .hero__title {
        font-size: 36px;
        line-height: 46px;
    }
    .hero__title sub {
        top: 8px;
    }
}
@media (min-width: 992px) {
    .hero__slide {
        padding-left: calc((100% - 936px) / 2);
        padding-right: calc((100% - 936px) / 2);
    }
}
@media (min-width: 1200px) {
    .hero__slide {
        padding-left: 52px;
        padding-right: 52px;
    }
}
.carousel {
    position: relative;
    width: 100%;
    padding: 40px 0 0 16px;
    margin-bottom: 24px;
}
.carousel__navs {
    position: absolute;
    top: 40px;
    right: 0;
    bottom: 0;
    width: 56px;
    overflow: hidden;
    pointer-events: none;
}
.carousel__navs .splide__arrows {
    pointer-events: auto;
}
.carousel__navs .splide__arrows:before,
.carousel__navs .splide__arrows:after {
    pointer-events: none;
}
.carousel__content {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}
@media (min-width: 576px) {
    .carousel {
        padding-left: calc((100% - 516px) / 2);
    }
}
@media (min-width: 768px) {
    .carousel {
        padding-top: 48px;
        padding-left: calc((100% - 696px) / 2);
        padding-right: calc((100% - 696px) / 2);
    }
    .carousel__navs {
        top: 0;
        width: 46px;
    }
    .carousel__content {
        position: relative;
    }
}
@media (min-width: 992px) {
    .carousel {
        padding-left: calc((100% - 936px) / 2);
        padding-right: calc((100% - 936px) / 2);
    }
}
@media (min-width: 1200px) {
    .carousel {
        padding: 56px 52px 0;
    }
}
.itemcard {
    position: relative;
    display: block;
    width: calc(100vw - 56px);
    border-radius: 16px;
    overflow: hidden;
}
.itemcard__cover {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    background-color: #1e1f21;
}
.itemcard__cover:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    transition: opacity 0.4s ease;
    opacity: 0.6;
    pointer-events: none;
}
.itemcard__cover:hover .itemcard__bg {
    opacity: 0.4;
}
.itemcard__cover:hover:before {
    opacity: 1;
}
.itemcard__cover:hover .item__play {
    opacity: 1;
    transform: scale(1);
}
.itemcard__cover:hover .itemcard__title {
    transform: scale(0.84);
    opacity: 0.1;
}
.itemcard__bg {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    inset: 0;
    object-fit: cover;
    transition: opacity 0.4s ease;
    opacity: 0.8;
}
.itemcard__hash {
    position: absolute;
    z-index: 3;
    bottom: 8px;
    left: auto;
    right: 8px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    width: auto;
    padding: 4px;
    height: 32px;
    background-color: #1e1f21;
    border-radius: 16px;
}
.itemcard__hash img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.itemcard__hash span {
    margin-left: 8px;
    font-size: 14px;
    line-height: 24px;
    color: #1aaa67;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    margin-right: 8px;
}
.itemcard__title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    padding: 16px 40px;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s ease;
    will-change: transform;
}
.itemcard__title h3 {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 36px;
    color: #fff;
    text-align: center;
    margin-bottom: 4px;
    text-shadow: 1px 1px 4px #141414;
}
.itemcard__title h3:last-child {
    margin-bottom: 0;
}
.itemcard__title span {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 4px #141414;
}
.itemcard__timebar {
    position: absolute;
    z-index: 3;
    display: block;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: rgba(232, 65, 66, 0.2);
    backdrop-filter: blur(4px);
}
.itemcard__timebar span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    background-color: #e84142;
    border-radius: 0 2px 2px 0;
}
.itemcard--slide {
    width: 100%;
}
.itemcard--timebar .item__labels {
    bottom: 12px;
}
.itemcard--timebar .itemcard__hash {
    bottom: 12px;
}
@media (min-width: 576px) {
    .itemcard {
        width: calc(100vw - 112px);
    }
    .itemcard--slide {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .itemcard {
        width: 100%;
    }
    .itemcard__hash {
        bottom: 16px;
        right: 16px;
    }
    .itemcard--timebar .item__labels {
        bottom: 16px;
    }
    .itemcard--timebar .itemcard__hash {
        bottom: 16px;
    }
}
@media (min-width: 1200px) {
    .itemcard__title {
        padding: 16px 48px;
    }
    .itemcard__title h3 {
        font-size: 32px;
        line-height: 40px;
    }
    .itemcard__title span {
        font-size: 14px;
        line-height: 20px;
    }
    .itemcard__cover:hover .item__favorite {
        opacity: 1;
        transform: scale(1);
    }
}
@media (min-width: 1900px) {
    .itemcard__title {
        padding: 16px 64px;
    }
}
.item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-width: 100%;
    position: relative;
}
.item__cover {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
}
.item__cover img {
    width: 100%;
    transition: opacity 0.4s ease;
    position: relative;
    z-index: 1;
}
.item__cover:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    transition: opacity 0.4s ease;
    opacity: 0.1;
    pointer-events: none;
}
.item__cover:hover img {
    opacity: 0.5;
}
.item__cover:hover:before {
    opacity: 1;
}
.item__cover:hover .item__play {
    opacity: 1;
    transform: scale(1);
}
.item__play {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -32px 0 0 -32px;
    z-index: 3;
    transition: 0.4s ease;
    transform: scale(0.8);
    transition-property: opacity, background-color, transform, border-color;
    opacity: 0;
    backdrop-filter: blur(4px);
}
.item__play:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
    border-radius: 50%;
    background-color: #141414;
}
.item__play svg {
    position: relative;
    z-index: 2;
    width: 26px;
    height: 26px;
    stroke: #63686f;
}
.item__play:hover {
    background-color: rgba(232, 65, 66, 0.2);
    border-color: rgba(232, 65, 66, 0.1);
}
.item__play:hover svg {
    stroke: #e84142;
}
.item__content {
    position: relative;
    display: block;
    margin-top: 12px;
    width: 100%;
}
.item__title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-wrap: break-word;
    transition: color 0.4s ease;
}
.item__title a {
    color: #fff;
}
.item__title a:hover {
    color: #e84142;
}
.item__title:hover {
    color: #e84142;
}
.item__category {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: start;
    flex-wrap: wrap;
    margin-top: 4px;
}
.item__category a {
    font-size: 14px;
    line-height: 24px;
    position: relative;
    color: #b9cbe3;
    margin-right: 10px;
}
.item__category a:after {
    content: ",";
    position: absolute;
    display: block;
    left: 100%;
    top: 0;
    color: #b9cbe3;
    line-height: 24px;
}
.item__category a:last-child {
    margin-right: 0;
}
.item__category a:last-child:after {
    display: none;
}
.item__category a:hover {
    color: #e84142;
}
.item__rate {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    top: 8px;
    left: 8px;
    background-color: #141414;
    border-radius: 50%;
    overflow: hidden;
}
.item__rate span {
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #141414;
}
.item__rate--gold {
    background: linear-gradient(45deg, #ffd700, #ffa500, #fc0);
}
.item__rate--silver {
    background: linear-gradient(45deg, #c0c0c0, #a8a8a8, #d0d0d0);
}
.item__rate--bronze {
    background: linear-gradient(45deg, #cd7f32, #b87333, #c19a6b);
}
.item__favorite {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
    background-color: #141414;
    border: 1px solid #1e1f21;
    border-radius: 50%;
}
.item__favorite svg {
    width: 16px;
    height: 16px;
    stroke: #63686f;
}
.item__favorite:hover svg {
    stroke: #ffc312;
}
.item__favorite--active svg {
    stroke: #ffc312;
}
.item__favorite--active:hover svg {
    stroke: #ce2b2b;
}
.item__labels {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    position: absolute;
    z-index: 3;
    bottom: 8px;
    left: 8px;
    right: 8px;
}
.item__labels span {
    margin-right: 8px;
    margin-top: 8px;
}
.item__labels span:last-child {
    margin-right: 0;
}
.item__labels--movie {
    top: 0;
    bottom: auto;
}
.item__new {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ce2b2b;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}
.item__promo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
}
.item__promo svg {
    width: 24px;
    height: 24px;
    stroke: #ce2b2b;
}
.item__online {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: 32px;
    padding: 0 4px;
    border-radius: 16px;
    background-color: #fff;
}
.item__online svg {
    width: 24px;
    height: 24px;
    stroke: #ce2b2b;
}
.item__online span {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #141414;
    margin: 0 8px 0 4px !important;
}
.item__time {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: 32px;
    padding: 0 4px;
    border-radius: 16px;
    background-color: #fff;
}
.item__time svg {
    width: 24px;
    height: 24px;
    stroke: #ce2b2b;
}
.item__time span {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #141414;
    margin: 0 8px 0 4px !important;
}
.item__hash {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    width: 100%;
    margin-top: 8px;
    padding: 4px;
    height: 32px;
    background-color: #1e1f21;
    border-radius: 16px;
}
.item__hash:after {
    content: "";
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #63686f;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.2s ease;
}
.item__hash img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.item__hash span {
    margin-left: 8px;
    font-size: 14px;
    line-height: 24px;
    color: #1aaa67;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
}
.item__hash span + span {
    font-size: 12px;
    line-height: 24px;
    color: #898e95;
    font-weight: 400;
    text-transform: none;
    margin-left: 4px;
}
.item__hash span + span b {
    color: #1aaa67;
    font-weight: 400;
}
.item__hash:hover:after {
    background-color: #b9cbe3;
}
.item--none {
    display: none;
}
@media (min-width: 768px) {
    .item__rate {
        top: 16px;
        left: 16px;
    }
    .item__favorite {
        top: 16px;
        right: 16px;
    }
    .item__labels {
        right: 16px;
        bottom: 16px;
        left: 16px;
    }
    .item__labels--movie {
        top: 8px;
        bottom: auto;
    }
}
@media (min-width: 1200px) {
    .item__cover:hover .item__favorite {
        opacity: 1;
        transform: scale(1);
    }
    .item__favorite {
        transition: 0.4s ease;
        transform: scale(0.8);
        transition-property: opacity, background-color, color, border-color, transform;
        opacity: 0;
    }
    .item__favorite--active {
        opacity: 1;
        transform: scale(1);
    }
}
.earning {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}
.earning:focus .earning__dot {
    opacity: 0;
}
.earning:focus .earning__arrow {
    transform: translate(0, 0);
}
.earning:hover .earning__dot {
    opacity: 1;
}
.earning:hover .earning__arrow {
    transform: translate(30%, -30%);
}
.earning--green .earning__content {
    background-color: rgba(26, 170, 103, 0.12);
}
.earning--green .earning__icon {
    background-color: rgba(26, 170, 103, 0.12);
}
.earning--green .earning__icon svg {
    stroke: #1aaa67;
}
.earning--green .earning__text b {
    color: #1aaa67;
}
.earning--green .earning__dot {
    background-color: #1aaa67;
}
.earning--green:hover .earning__arrow svg {
    stroke: #1aaa67;
}
.earning--red .earning__content {
    background-color: rgba(206, 43, 43, 0.12);
}
.earning--red .earning__icon {
    background-color: rgba(206, 43, 43, 0.12);
}
.earning--red .earning__icon svg {
    stroke: #ce2b2b;
}
.earning--red .earning__text b {
    color: #ce2b2b;
}
.earning--red .earning__dot {
    background-color: #ce2b2b;
}
.earning--red:hover .earning__arrow svg {
    stroke: #ce2b2b;
}
.earning--blue .earning__content {
    background-color: rgba(22, 98, 255, 0.12);
}
.earning--blue .earning__icon {
    background-color: rgba(22, 98, 255, 0.12);
}
.earning--blue .earning__icon svg {
    stroke: #1662ff;
}
.earning--blue .earning__text b {
    color: #1662ff;
}
.earning--blue .earning__dot {
    background-color: #1662ff;
}
.earning--blue:hover .earning__arrow svg {
    stroke: #1662ff;
}
.earning--purple .earning__content {
    background-color: rgba(172, 41, 194, 0.12);
}
.earning--purple .earning__icon {
    background-color: rgba(172, 41, 194, 0.12);
}
.earning--purple .earning__icon svg {
    stroke: #ac29c2;
}
.earning--purple .earning__text b {
    color: #ac29c2;
}
.earning--purple .earning__dot {
    background-color: #ac29c2;
}
.earning--purple:hover .earning__arrow svg {
    stroke: #ac29c2;
}
.earning--burgundy .earning__content {
    background-color: rgba(220, 45, 78, 0.12);
}
.earning--burgundy .earning__icon {
    background-color: rgba(220, 45, 78, 0.12);
}
.earning--burgundy .earning__icon svg {
    stroke: #dc2d4e;
}
.earning--burgundy .earning__text b {
    color: #dc2d4e;
}
.earning--burgundy .earning__dot {
    background-color: #dc2d4e;
}
.earning--burgundy:hover .earning__arrow svg {
    stroke: #dc2d4e;
}
.earning--diamond .earning__content {
    background-color: rgba(114, 242, 235, 0.12);
}
.earning--diamond .earning__icon {
    background-color: rgba(114, 242, 235, 0.12);
}
.earning--diamond .earning__icon svg {
    stroke: #72f2eb;
}
.earning--diamond .earning__text b {
    color: #72f2eb;
}
.earning--diamond .earning__dot {
    background-color: #72f2eb;
}
.earning--diamond:hover .earning__arrow svg {
    stroke: #72f2eb;
}
.earning--ocean .earning__content {
    background-color: rgba(5, 175, 242, 0.12);
}
.earning--ocean .earning__icon {
    background-color: rgba(5, 175, 242, 0.12);
}
.earning--ocean .earning__icon svg {
    stroke: #05aff2;
}
.earning--ocean .earning__text b {
    color: #05aff2;
}
.earning--ocean .earning__dot {
    background-color: #05aff2;
}
.earning--ocean:hover .earning__arrow svg {
    stroke: #05aff2;
}
.earning--crimson .earning__content {
    background-color: rgba(255, 43, 145, 0.12);
}
.earning--crimson .earning__icon {
    background-color: rgba(255, 43, 145, 0.12);
}
.earning--crimson .earning__icon svg {
    stroke: #ff2b91;
}
.earning--crimson .earning__text b {
    color: #ff2b91;
}
.earning--crimson .earning__dot {
    background-color: #ff2b91;
}
.earning--crimson:hover .earning__arrow svg {
    stroke: #ff2b91;
}
.earning__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    width: 100%;
    flex: 1;
    border-radius: 16px;
    backdrop-filter: blur(16px);
    padding: 20px;
}
.earning__content:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;
    background-color: #141414;
    border-radius: 12px;
}
.earning__icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 44px;
    width: 44px;
    border-radius: 8px;
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
}
.earning__icon svg {
    width: 24px;
    height: 24px;
    stroke: #e84142;
}
.earning__arrow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 44px;
    transition: transform 0.4s ease;
}
.earning__arrow svg {
    width: 24px;
    height: 24px;
    stroke: #898e95;
}
.earning__title {
    position: relative;
    z-index: 2;
    font-size: 20px;
    line-height: 44px;
    font-weight: 500;
    color: #fff;
    padding-left: 60px;
    margin-bottom: 16px;
}
.earning__text {
    position: relative;
    z-index: 2;
    color: #898e95;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    margin-bottom: 0;
}
.earning__text b {
    font-weight: 500;
    color: #898e95;
}
.earning__text a {
    color: #e84142;
}
.earning__text a:hover {
    color: #e84142;
    text-decoration: underline;
}
.earning__dot {
    width: 32px;
    height: 32px;
    background-color: #e84142;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: 0.4s ease;
    will-change: opacity;
    animation: moveDot 6s linear infinite;
}
@media (min-width: 768px) {
    .earning__content {
        padding: 28px;
    }
    .earning__icon {
        top: 28px;
        left: 28px;
    }
    .earning__arrow {
        top: 28px;
        right: 28px;
    }
}
.timetable {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #1e1f21;
    width: 100%;
    border-radius: 16px;
}
.timetable__head {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #141414;
    padding: 24px 16px 0;
    width: 100%;
    position: relative;
}
.timetable__title {
    width: 100%;
    color: #fff;
    font-weight: 500;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 20px;
}
.timetable__title b {
    font-weight: 600;
}
.timetable__datetime {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    border: 1px solid #b9cbe3;
    height: 36px;
    width: auto;
    min-width: 240px;
    padding: 0 16px;
    border-radius: 18px;
}
.timetable__datetime svg {
    width: 20px;
    height: 20px;
    stroke: #b9cbe3;
    margin-right: 8px;
}
.timetable__datetime span {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-right: 5px;
    color: #b9cbe3;
}
.timetable__datetime span:last-child {
    margin-right: 0;
}
.timetable__tabs {
    border: none;
    flex-wrap: nowrap;
    width: 100%;
}
.timetable__date {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 70px;
    padding-bottom: 12px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 44px;
}
.timetable__date:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    display: block;
    background-color: #e84142;
    transition: 0.4s ease;
    transform: translateY(2px);
    opacity: 0;
    border-radius: 4px 4px 0 0;
}
.timetable__date span {
    font-size: 12px;
    line-height: 16px;
    color: #898e95;
    transition: color 0.4s ease;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    margin: 0 4px;
}
.timetable__date span:last-child {
    position: absolute;
    bottom: 8px;
    left: 0;
    font-size: 20px;
    line-height: 32px;
    width: 100%;
    margin-bottom: 0;
    margin-right: 0;
    margin: 0;
}
.timetable__date:hover span {
    color: #fff;
}
.timetable__date.active span {
    color: #fff;
}
.timetable__date.active:before {
    opacity: 1;
    transform: translateY(0);
}
.timetable__content {
    width: 100%;
    padding: 24px 16px 0;
}
.timetable__table {
    display: none;
}
.timetable__mob-table {
    display: block;
    width: 100%;
}
.timetable__more {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    height: 48px;
    width: 160px;
    border-radius: 24px;
    background-color: #b9cbe3;
    margin: 10px auto 24px;
    padding-right: 44px;
    overflow: hidden;
}
.timetable__more:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: 4px;
    top: 4px;
    background-color: #e84142;
    transition: transform 0.4s ease;
    transform: scale(1);
    transform-origin: center;
    will-change: transform;
    pointer-events: none;
}
.timetable__more:hover:before {
    transform: scale(7);
}
.timetable__more:hover .timetable__more-name {
    color: #fff;
}
.timetable__more:hover .timetable__more-arrow {
    transform: rotate(-45deg);
    background-color: transparent;
}
.timetable__more-name {
    font-size: 14px;
    font-weight: 500;
    color: #141414;
    text-transform: uppercase;
    position: relative;
    transition: color 0.4s ease;
    z-index: 2;
    margin-right: 16px;
}
.timetable__more-arrow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: 4px;
    top: 4px;
    background-color: #1e1f21;
    border: 1px solid #1e1f21;
    transition: 0.4s ease;
    transition-property: transform, background-color;
    will-change: transform;
}
.timetable__more-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}
@media (min-width: 768px) {
    .timetable__head {
        padding: 32px 32px 0;
        align-items: flex-start;
    }
    .timetable__title {
        font-size: 32px;
        margin-bottom: 32px;
        text-align: left;
    }
    .timetable__datetime {
        margin-bottom: 0;
        position: absolute;
        justify-content: flex-start;
        top: 32px;
        right: 32px;
        min-width: 230px;
        width: auto;
    }
    .timetable__datetime--notitle {
        position: relative;
        margin-bottom: 32px;
        justify-content: center;
        top: auto;
        right: auto;
    }
    .timetable__date {
        justify-content: flex-start;
        align-items: flex-start;
        margin: 0;
        width: auto;
        padding-bottom: 56px;
        width: 60px;
    }
    .timetable__date span {
        font-size: 14px;
        line-height: 20px;
        text-align: left;
        margin: 0 4px 0 0;
    }
    .timetable__date span:last-child {
        font-size: 24px;
        line-height: 36px;
        margin: 0;
        bottom: 12px;
    }
    .timetable__content {
        padding: 32px 32px 8px;
    }
    .timetable__table {
        display: block;
        width: 100%;
    }
    .timetable__mob-table {
        display: none;
    }
    .timetable__more {
        margin: 8px auto 32px;
    }
}
@media (min-width: 992px) {
    .timetable__datetime--notitle {
        position: absolute;
        margin-bottom: 0;
        justify-content: flex-start;
        top: 32px;
        right: 32px;
    }
}
.xtable {
    width: 100%;
    border-spacing: 0;
}
.xtable thead th {
    font-size: 12px;
    text-transform: uppercase;
    color: #898e95;
    font-weight: 400;
    padding: 0 16px 16px;
    line-height: 100%;
    margin-bottom: 0;
    border: none;
    border-bottom: 1px solid #141414;
    background-color: transparent;
    white-space: nowrap;
}
.xtable thead th button {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    color: #898e95;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 20px;
}
.xtable thead th button svg {
    width: 14px;
    height: 14px;
    margin-left: 4px;
    stroke: #898e95;
}
.xtable thead th button:hover {
    color: #fff;
}
.xtable thead th button:hover svg {
    stroke: #fff;
}
.xtable thead th button.active {
    cursor: default;
    color: #fff;
}
.xtable thead th button.active svg {
    stroke: #e84142;
}
.xtable thead th:first-child {
    padding-left: 0;
}
.xtable thead th:last-child {
    padding-right: 0;
    text-align: right;
}
.xtable thead th:last-child button {
    margin-left: auto;
    justify-content: flex-end;
}
.xtable tbody tr:last-child td {
    border-bottom: none;
}
.xtable tbody td {
    font-size: 0;
    padding: 16px;
    border-bottom: 1px solid #141414;
}
.xtable tbody td:first-child {
    padding-left: 0;
}
.xtable tbody td:last-child {
    padding-right: 0;
    text-align: right;
}
.xtable tbody td:last-child .xtable__title,
.xtable tbody td:last-child .xtable__text,
.xtable tbody td:last-child .xtable__live,
.xtable tbody td:last-child .xtable__premiere,
.xtable tbody td:last-child .xtable__free,
.xtable tbody td:last-child .xtable__pair,
.xtable tbody td:last-child .xtable__info,
.xtable tbody td:last-child .xtable__btn,
.xtable tbody td:last-child .xtable__favorite,
.xtable tbody td:last-child .xtable__watch,
.xtable tbody td:last-child .xtable__ticket {
    margin-left: auto;
    justify-content: flex-end;
}
.xtable__title {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
}
.xtable__title svg {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    stroke: #e3b9df;
}
.xtable__title:hover {
    color: #e84142;
}
.xtable__text {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    width: auto;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
}
.xtable__text svg {
    width: 20px;
    height: 20px;
    stroke: #b9cbe3;
    margin-right: 4px;
}
.xtable__text a {
    color: #b9cbe3;
    text-decoration: underline;
}
.xtable__text a:hover {
    color: #e3b9df;
}
.xtable__text--green {
    color: #1aaa67;
}
.xtable__text--green svg {
    stroke: #1aaa67;
}
.xtable__text--green-icon svg {
    stroke: #1aaa67;
}
.xtable__text--red {
    color: #ce2b2b;
}
.xtable__text--red svg {
    stroke: #ce2b2b;
}
.xtable__text--red-icon svg {
    stroke: #ce2b2b;
}
.xtable__text--blue {
    color: #1662ff;
}
.xtable__text--blue svg {
    stroke: #1662ff;
}
.xtable__text--blue-icon svg {
    stroke: #1662ff;
}
.xtable__text--grey {
    color: #898e95;
}
.xtable__text--grey svg {
    stroke: #898e95;
}
.xtable__text--clouds {
    color: #b9cbe3;
    font-weight: 500;
}
.xtable__text--clouds svg {
    stroke: #b9cbe3;
}
.xtable__text--pink {
    color: #e3b9df;
    font-weight: 500;
}
.xtable__text--pink svg {
    stroke: #e3b9df;
}
.xtable__text--yellow {
    color: #ffc312;
}
.xtable__text--small {
    font-size: 12px;
    font-weight: 500;
}
.xtable__text--big {
    font-size: 16px;
    font-weight: 500;
}
.xtable__message {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
    position: relative;
    padding-left: 17px;
    width: auto;
    min-width: 200px;
}
.xtable__message:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    background-color: #e3b9df;
    border-radius: 2px;
}
.xtable__live {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 8px;
    width: auto;
    height: 24px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 500;
    background-color: #ce2b2b;
}
.xtable__premiere {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 8px;
    width: auto;
    height: 24px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 24px;
    color: #141414;
    font-weight: 500;
    background-color: #e3b9df;
}
.xtable__free {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 8px;
    width: auto;
    height: 24px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 24px;
    color: #141414;
    font-weight: 500;
    background-color: #1aaa67;
}
.xtable__pair {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    width: auto;
}
.xtable__pair img {
    width: 24px;
    border-radius: 50%;
}
.xtable__pair img + img {
    margin-left: -12px;
}
.xtable__pair span {
    margin-left: 8px;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}
.xtable__pair span + span {
    color: #898e95;
    font-weight: 400;
}
.xtable__pair span + span b {
    color: #1aaa67;
    font-weight: 400;
}
.xtable__info {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
}
.xtable__info p {
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}
.xtable__info span {
    font-size: 12px;
    line-height: 20px;
    white-space: nowrap;
    color: #898e95;
}
.xtable__btn {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
}
.xtable__btn svg {
    width: 20px;
    height: 20px;
    stroke: #b9cbe3;
}
.xtable__btn:hover svg {
    stroke: #e3b9df;
}
.xtable__favorite {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 24px;
}
.xtable__favorite svg {
    width: 20px;
    height: 20px;
    stroke: #63686f;
}
.xtable__favorite:hover svg {
    stroke: #ffc312;
}
.xtable__favorite--active svg {
    stroke: #ffc312;
}
.xtable__favorite--active:hover svg {
    stroke: #ce2b2b;
}
.xtable__watch {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}
.xtable__watch span {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #141414;
    font-weight: normal;
    margin-right: 8px;
    text-transform: none;
    transition: background-color 0.4s ease;
}
.xtable__watch span svg {
    width: 16px;
    height: 16px;
    stroke: #63686f;
}
.xtable__watch:hover span {
    background-color: #e84142;
}
.xtable__watch:hover span svg {
    stroke: #fff;
}
.xtable__ticket {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
}
.xtable__ticket span {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-weight: normal;
    margin-right: 8px;
    text-transform: none;
}
.xtable__ticket span svg {
    width: 20px;
    height: 20px;
    stroke: #63686f;
}
.xtable__ticket:hover span svg {
    stroke: #e84142;
}
.xtable--small {
    min-width: 290px;
}
.xtable--small thead th {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 8px 16px;
}
.xtable--small thead th:first-child {
    padding-left: 0;
}
.xtable--small thead th:last-child {
    padding-right: 0;
}
.xtable--small tbody td {
    padding: 16px 8px;
}
.xtable--small tbody td:first-child {
    padding-left: 0;
}
.xtable--small tbody td:last-child {
    padding-right: 0;
}
.xtable--profile {
    min-width: 500px;
}
.xtable--profile thead th {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 20px 16px;
}
.xtable--profile tbody td {
    padding: 16px 20px;
}
@media (min-width: 768px) {
    .xtable__title {
        white-space: nowrap;
    }
}
.mob-table {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
.mob-table .xtable__text {
    white-space: wrap;
}
.mob-table__row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 16px;
    border-bottom: 1px solid #141414;
}
.mob-table__row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.mob-table__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(50% - 8px);
    margin-bottom: 16px;
}
.mob-table__item--full {
    width: 100%;
}
.mob-table__title {
    font-size: 12px;
    color: #898e95;
    font-weight: 400;
    display: block;
    margin-bottom: 8px;
}
.mob-table--bg {
    background-color: #1e1f21;
    border-radius: 16px;
    padding: 24px 20px 10px;
}
.mob-table--mt {
    margin-top: 16px;
}
@media (min-width: 768px) {
    .mob-table {
        display: none;
    }
}
.plan {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-top: 16px;
    position: relative;
}
.plan--clouds .plan__content,
.plan--clouds .plan__cellar {
    background-color: #b9cbe3;
}
.plan--clouds .plan__price {
    color: #1662ff;
}
.plan--clouds .plan__item svg {
    stroke: #1662ff;
}
.plan--pink .plan__content,
.plan--pink .plan__cellar {
    background-color: #e3b9df;
}
.plan--pink .plan__price {
    color: #ce2b2b;
}
.plan--pink .plan__item svg {
    stroke: #ce2b2b;
}
.plan--active .plan__btn {
    pointer-events: none;
    opacity: 0.7;
}
.plan__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    border-radius: 16px 16px 0 0;
    padding: 32px;
    background-color: #fff;
    position: relative;
}
.plan__content:after {
    content: "";
    width: 100%;
    height: 0.125rem;
    border-top: 4px dotted #141414;
    position: absolute;
    z-index: 1;
    bottom: -2px;
    left: 0;
    right: 0;
}
.plan__head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.plan__title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: #141414;
    margin-bottom: 0;
}
.plan__price {
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
    color: #1aaa67;
}
.plan__price sub {
    font-size: 14px;
    bottom: 1px;
    font-weight: 400;
}
.plan__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-top: 24px;
}
.plan__item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #141414;
    margin-bottom: 8px;
}
.plan__item b {
    font-weight: 500;
    margin-right: 4px;
}
.plan__item svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    stroke: #1aaa67;
}
.plan__item--none {
    color: #63686f;
}
.plan__item--none svg {
    stroke: #63686f !important;
}
.plan__item:last-child {
    margin-bottom: 0;
}
.plan__cellar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    border-radius: 0 0 16px 16px;
    padding: 24px;
    background-color: #fff;
    position: relative;
}
.plan__cellar:before,
.plan__cellar:after {
    content: "";
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: -8px;
    background-color: #141414;
    z-index: 2;
}
.plan__cellar:before {
    left: -8px;
}
.plan__cellar:after {
    right: -8px;
}
.plan__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 48px;
    width: 100%;
    border-radius: 16px;
    text-transform: uppercase;
    background-color: #1e1f21;
    border: 2px solid #1e1f21;
    line-height: 1;
    overflow: hidden;
}
.plan__btn:before {
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 0;
    background-color: #e84142;
    transition: 0.4s ease;
    will-change: height;
}
.plan__btn span {
    position: relative;
    z-index: 2;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
}
.plan__btn:hover {
    color: #fff;
}
.plan__btn:hover:before {
    height: 48px;
}
@media (min-width: 992px) {
    .plan--page {
        margin-top: 0;
    }
    .plan__head {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .plan__price {
        margin-top: 12px;
    }
}
@media (min-width: 1200px) {
    .plan__head {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .plan__price {
        margin-top: 0;
    }
}
.invest {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 32px;
    background-color: #fff;
    border-radius: 16px;
    margin-top: 16px;
    position: relative;
}
.invest--clouds {
    background-color: #b9cbe3;
}
.invest--clouds .invest__term {
    color: #1662ff;
}
.invest--clouds .invest__mark {
    color: #1662ff;
}
.invest--clouds .invest__item svg {
    stroke: #1662ff;
}
.invest--clouds .invest__content p b {
    color: #1662ff;
}
.invest--pink {
    background-color: #e3b9df;
}
.invest--pink .invest__term {
    color: #ce2b2b;
}
.invest--pink .invest__mark {
    color: #ce2b2b;
}
.invest--pink .invest__item svg {
    stroke: #ce2b2b;
}
.invest--pink .invest__content p b {
    color: #ce2b2b;
}
.invest--active .invest__btn {
    pointer-events: none;
    opacity: 0.7;
}
.invest__title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    color: #141414;
    margin-bottom: 0;
}
.invest__title b {
    font-weight: 500;
}
.invest__term {
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
    color: #1aaa67;
    position: absolute;
    top: 32px;
    right: 32px;
}
.invest__term sub {
    font-size: 14px;
    bottom: 1px;
    font-weight: 400;
}
.invest__mark {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    text-transform: uppercase;
    color: #1aaa67;
}
.invest__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-top: 16px;
}
.invest__item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #141414;
    margin-bottom: 8px;
}
.invest__item b {
    font-weight: 500;
    margin-right: 4px;
}
.invest__item svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    stroke: #1aaa67;
}
.invest__item--none {
    color: #63686f;
}
.invest__item--none svg {
    stroke: #63686f !important;
}
.invest__item:last-child {
    margin-bottom: 0;
}
.invest__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-top: 16px;
    position: relative;
}
.invest__content p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #141414;
    margin-bottom: 8px;
}
.invest__content p b {
    font-weight: 500;
    color: #1aaa67;
}
.invest__content p:last-child {
    margin-bottom: 0;
}
.invest__group {
    position: relative;
    margin-top: 24px;
    width: 100%;
}
.invest__label {
    font-size: 14px;
    line-height: 100%;
    font-weight: 400;
    color: #63686f;
    width: 100%;
    margin-bottom: 8px;
    padding-left: 16px;
}
.invest__label b {
    color: #ce2b2b;
    font-weight: 500;
}
.invest__input {
    width: 100%;
    background: url(../images/style/dollar.svg) no-repeat center left 10px transparent;
    background-size: 24px 24px;
    border: 2px solid #1e1f21;
    height: 48px;
    position: relative;
    color: #141414;
    font-size: 16px;
    width: 100%;
    border-radius: 24px;
    padding: 0 16px 0 36px;
}
.invest__input:focus {
    border-color: #e84142;
}
.invest__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 48px;
    width: 100%;
    border-radius: 24px;
    text-transform: uppercase;
    background-color: #1e1f21;
    border: 2px solid #1e1f21;
    line-height: 1;
    overflow: hidden;
    margin-top: 30px;
}
.invest__btn:before {
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 0;
    background-color: #e84142;
    transition: 0.4s ease;
    will-change: height;
}
.invest__btn span {
    position: relative;
    z-index: 2;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
}
.invest__btn:hover {
    color: #fff;
}
.invest__btn:hover:before {
    height: 48px;
}
.roadmap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    position: relative;
}
.roadmap:before,
.roadmap:after {
    content: "";
    position: absolute;
    display: block;
    border-radius: 50%;
}
.roadmap:before {
    width: 24px;
    height: 24px;
    left: 0;
    top: 42px;
    background-color: #fff;
    opacity: 0.12;
    z-index: 1;
}
.roadmap:after {
    width: 10px;
    height: 10px;
    left: 7px;
    top: 49px;
    background-color: #fff;
    z-index: 2;
}
.roadmap.active:before,
.roadmap.active:after {
    background: #e84142;
}
.roadmap.active:after {
    width: 16px;
    height: 16px;
    left: 4px;
    top: 46px;
}
.roadmap.active .roadmap__list li:before {
    background: #e84142;
}
.roadmap.red.active:before,
.roadmap.red.active:after {
    background: #ce2b2b;
}
.roadmap.red.active .roadmap__list li:before {
    background: #ce2b2b;
}
.roadmap.blue.active:before,
.roadmap.blue.active:after {
    background: #1662ff;
}
.roadmap.blue.active .roadmap__list li:before {
    background: #1662ff;
}
.roadmap.green.active:before,
.roadmap.green.active:after {
    background: #1aaa67;
}
.roadmap.green.active .roadmap__list li:before {
    background: #1aaa67;
}
.roadmap.purple.active:before,
.roadmap.purple.active:after {
    background: #ac29c2;
}
.roadmap.purple.active .roadmap__list li:before {
    background: #ac29c2;
}
.roadmap__title {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-weight: 500;
    display: block;
    margin-bottom: 50px;
    margin-left: 10px;
}
.roadmap__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% - 10px);
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
    margin-left: 10px;
}
.roadmap__list li {
    color: #898e95;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 12px;
    padding-left: 16px;
    position: relative;
}
.roadmap__list li:last-child {
    margin-bottom: 0;
}
.roadmap__list li:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #fff;
    opacity: 1;
    top: 11px;
    left: 0;
    border-radius: 50%;
}
@media (min-width: 768px) {
    .roadmap:before {
        top: 47px;
    }
    .roadmap:after {
        top: 54px;
    }
    .roadmap.active:before {
        top: 47px;
    }
    .roadmap.active:after {
        top: 51px;
    }
    .roadmap__title {
        margin-bottom: 60px;
    }
    .roadmap__list li {
        margin-bottom: 15px;
    }
    .roadmap__list li:last-child {
        margin-bottom: 0;
    }
}
.partner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: #1e1f21;
    border-radius: 8px;
    height: 120px;
    position: relative;
}
.partner img {
    max-width: 100%;
    display: block;
    transition: 0.4s ease;
    transition-property: transform, opacity;
    transform: scale(1);
    opacity: 1;
}
.partner p {
    position: absolute;
    transition: 0.4s ease;
    transition-property: transform, opacity;
    transform: scale(0.8);
    opacity: 0;
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}
.partner:hover img {
    opacity: 0;
    transform: scale(0.8);
}
.partner:hover p {
    opacity: 1;
    transform: scale(1);
}
.paginator-mob {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 32px;
}
.paginator-mob--comments {
    margin-top: 24px;
}
.paginator-mob__pages {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: auto;
    padding: 0 16px;
    color: #898e95;
    border-radius: 18px;
    background-color: #1e1f21;
    font-size: 12px;
}
.paginator-mob__nav {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.paginator-mob__nav li {
    margin-right: 16px;
}
.paginator-mob__nav li:first-child a {
    padding-left: 8px;
}
.paginator-mob__nav li:first-child a span {
    margin-left: 2px;
}
.paginator-mob__nav li:last-child {
    margin-right: 0;
}
.paginator-mob__nav li:last-child a {
    padding-right: 8px;
}
.paginator-mob__nav li:last-child a span {
    margin-right: 2px;
}
.paginator-mob__nav a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: auto;
    padding: 0 16px;
    color: #fff;
    text-align: center;
    border-radius: 18px;
    background-color: #1e1f21;
}
.paginator-mob__nav a span {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}
.paginator-mob__nav a svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}
@media (min-width: 768px) {
    .paginator-mob {
        display: none;
    }
}
.paginator {
    display: none;
}
@media (min-width: 768px) {
    .paginator {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 40px;
    }
    .paginator--comments {
        margin-top: 30px;
    }
    .paginator__item {
        margin-right: 16px;
    }
    .paginator__item a,
    .paginator__item span {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        font-weight: 500;
        height: 46px;
        width: 46px;
        color: #fff;
        text-align: center;
        border-radius: 24px;
        background-color: #1e1f21;
    }
    .paginator__item span {
        cursor: default;
    }
    .paginator__item:last-child {
        margin-right: 0;
    }
    .paginator__item:hover a {
        color: #e84142;
    }
    .paginator__item:hover a svg {
        stroke: #e84142;
    }
    .paginator__item--prev svg,
    .paginator__item--next svg {
        width: 20px;
        height: 20px;
        stroke: #fff;
    }
    .paginator__item--prev svg {
        padding-right: 1px;
    }
    .paginator__item--next svg {
        padding-left: 1px;
    }
    .paginator__item--active a {
        color: #e84142;
        cursor: default;
        font-weight: 600;
    }
}
.grid {
    display: grid;
    gap: 16px;
    width: 100%;
    position: relative;
}
.grid--catalog {
    grid-template-columns: repeat(2, 1fr);
}
.grid--earning,
.grid--news {
    grid-template-columns: repeat(1, 1fr);
}
.grid--more {
    margin-top: 16px;
}
.grid--how {
    margin-top: 24px;
}
.grid--feature {
    margin-top: 24px;
}
.grid--mt0 {
    margin-top: 0;
}
@media (min-width: 576px) {
    .grid--catalog {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 768px) {
    .grid--catalog {
        grid-template-columns: repeat(4, 1fr);
    }
    .grid--earning,
    .grid--news,
    .grid--feature {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .grid--catalog {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (min-width: 1400px) {
    .grid--catalog {
        grid-template-columns: repeat(6, 1fr);
    }
    .grid--earning {
        grid-template-columns: repeat(4, 1fr);
    }
    .grid--news {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid--how {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1900px) {
    .grid--catalog {
        grid-template-columns: repeat(7, 1fr);
    }
    .grid--feature {
        grid-template-columns: repeat(4, 1fr);
    }
}
.post {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    min-height: 260px;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}
.post--bg {
    background-color: #000;
}
.post--bg .post__title {
    color: #fff;
}
.post--bg .post__text {
    color: #fff;
}
.post--bg .post__tag {
    border-color: #fff;
}
.post--bg .post__tag span {
    color: #fff;
}
.post--bg .post__tag:hover {
    background-color: #fff;
    border-color: #fff;
}
.post--bg .post__tag:hover span {
    color: #141414;
}
.post--bg .post__arrow {
    border-color: #fff;
}
.post--bg .post__arrow svg {
    stroke: #fff;
}
.post--clouds {
    background-color: #b9cbe3;
}
.post--clouds .post__title {
    color: #1662ff;
}
.post--clouds .post__text {
    color: #2a3a4f;
}
.post--clouds .post__tag {
    border-color: #2a3a4f;
}
.post--clouds .post__tag span {
    color: #2a3a4f;
}
.post--clouds .post__tag:hover {
    border-color: #1662ff;
}
.post--clouds .post__tag:hover span {
    color: #1662ff;
}
.post--clouds .post__arrow {
    border-color: #2a3a4f;
}
.post--clouds .post__arrow svg {
    stroke: #2a3a4f;
}
.post--pink {
    background-color: #e3b9df;
}
.post--pink .post__title {
    color: #ce2b2b;
}
.post--pink .post__text {
    color: #684040;
}
.post--pink .post__tag {
    border-color: #684040;
}
.post--pink .post__tag span {
    color: #684040;
}
.post--pink .post__tag:hover {
    border-color: #ce2b2b;
}
.post--pink .post__tag:hover span {
    color: #ce2b2b;
}
.post--pink .post__arrow {
    border-color: #684040;
}
.post--pink .post__arrow svg {
    stroke: #684040;
}
.post__bg {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.post__bg img {
    height: 100%;
    width: 100%;
    inset: 0;
    object-fit: cover;
    transition: opacity 0.4s ease;
    opacity: 1;
    position: relative;
    z-index: 1;
}
.post__bg:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.55);
}
.post__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
}
.post__head {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    width: 100%;
    margin-bottom: 24px;
}
.post__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: 26px;
    line-height: 36px;
    color: #141414;
    font-weight: 500;
    margin-bottom: 10px;
    width: 100%;
}
.post__title:last-child {
    margin-bottom: 0;
}
.post__text {
    font-size: 16px;
    line-height: 24px;
    color: #63686f;
    margin-bottom: 16px;
}
.post__text:last-child {
    margin-bottom: 0;
}
.post__tags {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: auto;
    max-width: calc(100% - 50px);
    gap: 8px;
    position: relative;
    z-index: 4;
}
.post__tag {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 40px;
    padding: 0 16px;
    position: relative;
    border-radius: 20px;
    border: 1px solid #63686f;
    transition: 0.6s ease;
    transition-property: color, background, background-color, border-color, box-shadow, opacity;
}
.post__tag span {
    font-size: 14px;
    font-weight: 400;
    color: #63686f;
    white-space: nowrap;
    transition: color 0.6s ease;
}
.post__tag:hover {
    border-color: #141414;
}
.post__tag:hover span {
    color: #141414;
}
.post__arrow {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #63686f;
    transition: 0.4s ease;
    transition-property: border-color, background-color;
}
.post__arrow svg {
    width: 24px;
    height: 24px;
    stroke: #63686f;
    transition: transform 0.4s ease, stroke 0.4s ease;
}
@media (min-width: 768px) {
    .post {
        min-height: 360px;
    }
    .post__title {
        font-size: 30px;
        line-height: 42px;
    }
}
@media (min-width: 992px) {
    .post {
        padding: 32px;
    }
    .post__text {
        padding-right: 25%;
    }
    .post__arrow {
        right: 32px;
        bottom: 32px;
    }
}
@media (min-width: 1200px) {
    .post:hover .post__arrow {
        background-color: #141414;
        border-color: #141414;
    }
    .post:hover .post__arrow svg {
        transform: rotate(-45deg);
        stroke: #fff;
    }
    .post--bg:hover .post__arrow {
        background-color: #fff;
        border-color: #fff;
    }
    .post--bg:hover .post__arrow svg {
        stroke: #141414;
    }
    .post--clouds:hover .post__arrow {
        background-color: #1662ff;
        border-color: #1662ff;
    }
    .post--clouds:hover .post__arrow svg {
        stroke: #fff;
    }
    .post--pink:hover .post__arrow {
        background-color: #ce2b2b;
        border-color: #ce2b2b;
    }
    .post--pink:hover .post__arrow svg {
        stroke: #fff;
    }
}
.article {
    display: block;
    position: relative;
    width: 100%;
}
.article__tags {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    gap: 8px;
}
.article__tag {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 40px;
    padding: 0 16px;
    position: relative;
    border-radius: 20px;
    border: 1px solid #b9cbe3;
}
.article__tag span {
    font-size: 14px;
    font-weight: 400;
    color: #b9cbe3;
    white-space: nowrap;
    transition: color 0.4s ease;
}
.article__tag:hover {
    background-color: #b9cbe3;
    border-color: #b9cbe3;
}
.article__tag:hover span {
    color: #141414;
}
.article__date {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #e3b9df;
}
.article__date svg {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    stroke: #e3b9df;
}
.article__views {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #e3b9df;
}
.article__views svg {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    stroke: #e3b9df;
}
.article__meta {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px 24px;
    margin-bottom: 24px;
}
.article__content {
    position: relative;
}
.article__content .plyr {
    width: 100%;
    margin-bottom: 24px;
}
.article__content .plyr:last-child {
    margin-bottom: 0;
}
.article__content img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    border-radius: 16px;
}
.article__content iframe {
    display: block;
    width: 100%;
    min-height: 240px;
    margin-bottom: 24px;
    border-radius: 16px;
    border: none;
}
.article__content h1,
.article__content h2,
.article__content h3,
.article__content h4,
.article__content h5,
.article__content h6 {
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
}
.article__content h1:last-child,
.article__content h2:last-child,
.article__content h3:last-child,
.article__content h4:last-child,
.article__content h5:last-child,
.article__content h6:last-child {
    margin-bottom: 0;
}
.article__content h1 {
    font-size: 30px;
    line-height: 42px;
}
.article__content h2 {
    font-size: 28px;
    line-height: 40px;
}
.article__content h3 {
    font-size: 24px;
    line-height: 36px;
}
.article__content h4 {
    font-size: 22px;
    line-height: 32px;
}
.article__content h5 {
    font-size: 18px;
    line-height: 28px;
}
.article__content h6 {
    font-size: 16px;
    line-height: 26px;
}
.article__content p {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #898e95;
    margin-bottom: 24px;
}
.article__content p b,
.article__content p strong {
    color: #fff;
    font-weight: 500;
}
.article__content p a {
    color: #e84142;
    text-decoration: underline;
}
.article__content p a:hover,
.article__content p a:focus {
    color: #e84142;
    text-decoration: none;
}
.article__content p:last-child {
    margin-bottom: 0;
}
.article__content blockquote {
    display: block;
    position: relative;
    padding: 0 0 0 24px;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 24px;
    font-style: italic;
}
.article__content blockquote:before {
    content: "";
    position: absolute;
    display: block;
    top: 2px;
    bottom: 2px;
    left: 0;
    width: 4px;
    background-color: #e84142;
    border-radius: 2px;
}
.article__content blockquote:last-child {
    margin-bottom: 0;
}
.article__content ul {
    margin-bottom: 20px;
    display: block;
}
.article__content ul li {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #898e95;
    padding-left: 24px;
    position: relative;
    margin-bottom: 4px;
}
.article__content ul li b,
.article__content ul li strong {
    color: #fff;
    font-weight: 500;
}
.article__content ul li:last-child {
    margin-bottom: 0;
}
.article__content ul li:before {
    content: "";
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #e84142;
    left: 0;
    top: 50%;
    margin-top: -2px;
}
.article__content ul:last-child {
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .article__content h1 {
        font-size: 36px;
        line-height: 46px;
    }
    .article__content h2 {
        font-size: 32px;
        line-height: 42px;
    }
    .article__content h3 {
        font-size: 28px;
        line-height: 40px;
    }
    .article__content h4 {
        font-size: 24px;
        line-height: 36px;
    }
    .article__content h5 {
        font-size: 22px;
        line-height: 32px;
    }
    .article__content h6 {
        font-size: 18px;
        line-height: 28px;
    }
    .article__content iframe {
        min-height: 380px;
    }
    .article__meta {
        margin-bottom: 32px;
        justify-content: flex-end;
    }
    .article__tags {
        width: auto;
        margin-right: auto;
    }
}
.share {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 24px;
    gap: 16px;
}
.share__link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 40px;
    padding: 0 16px 0 12px;
    position: relative;
    border-radius: 20px;
    border: 1px solid #b9cbe3;
    background-color: #b9cbe3;
}
.share__link span {
    font-size: 14px;
    font-weight: 500;
    color: #141414;
    white-space: nowrap;
    transition: color 0.4s ease;
}
.share__link svg {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    stroke: #141414;
}
.share__link:hover {
    background-color: #e3b9df;
    border-color: #e3b9df;
}
.share__link:hover span {
    color: #141414;
}
.share__link:hover svg {
    stroke: #141414;
}
.share__link--fb:hover {
    border-color: #3b5998;
    background-color: #3b5998;
}
.share__link--fb:hover span {
    color: #fff;
}
.share__link--fb:hover svg {
    stroke: #fff;
}
.share__link--tw:hover {
    border-color: #000;
    background-color: #000;
}
.share__link--tw:hover span {
    color: #fff;
}
.share__link--tw:hover svg {
    stroke: #fff;
}
@media (min-width: 768px) {
    .share {
        margin-top: 32px;
    }
}
.subscribe {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 24px;
    gap: 16px;
    background-color: #1e1f21;
    border-radius: 16px;
    padding: 20px;
}
.subscribe__title {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
}
.subscribe__social {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: auto;
    gap: 16px;
}
.subscribe__social a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    position: relative;
}
.subscribe__social a svg {
    width: 24px;
    height: 24px;
    stroke: #63686f;
}
.subscribe__social a:last-child {
    margin-right: 0;
}
.subscribe__social a:hover svg {
    stroke: #e84142;
}
@media (min-width: 768px) {
    .subscribe {
        margin-top: 32px;
        padding: 20px 30px;
    }
}
.filter {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 24px;
}
.filter--mt {
    margin-top: 16px;
}
.filter--sticky {
    position: sticky;
    z-index: 97;
    top: 94px;
    padding: 0 12px;
    background-color: #141414;
}
.filter--sticky:before,
.filter--sticky:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 24px;
    background-color: #141414;
}
.filter--sticky:before {
    bottom: 100%;
}
.filter--sticky:after {
    top: 100%;
    background: linear-gradient(180deg, #141414 0%, rgba(20, 20, 20, 0) 100%);
}
.filter__search {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    position: relative;
}
.filter__search input {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 40px;
    background-color: #1e1f21;
    padding: 0 44px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
    color: #fff;
}
.filter__search input:focus + svg {
    stroke: #e84142;
}
.filter__search svg {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 16px;
    width: 20px;
    height: 20px;
    stroke: #898e95;
}
.filter__search:hover input + svg {
    stroke: #e84142;
}
.filter__search-clear {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 2;
    top: 10px;
    right: 16px;
    transition: opacity 0.4s ease;
    opacity: 0;
}
.filter__search-clear svg {
    position: relative;
    top: auto;
    left: auto;
    stroke: #898e95;
    width: 16px;
    height: 16px;
}
.filter__search-clear:hover svg {
    stroke: #ce2b2b;
}
.filter__search-clear.active {
    opacity: 1;
}
.filter__dropdown {
    position: relative;
    width: 40px;
    margin-left: 16px;
    flex-shrink: 0;
}
.filter__dropdown--checkboxes .filter__dropdown-menu {
    min-width: 220px;
}
.filter__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1e1f21;
    border: none;
}
.filter__btn.show .filter__btn-icon svg {
    stroke: #e84142;
}
.filter__btn-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.filter__btn-icon svg {
    width: 20px;
    height: 20px;
    stroke: #898e95;
}
.filter__btn-name,
.filter__btn-arrow {
    display: none;
}
.filter__btn-counter {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #e84142;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 500;
    position: absolute;
    top: -4px;
    right: -4px;
}
.filter__btn-counter:empty {
    display: none;
}
.filter__btn-mask {
    display: none;
}
.filter__dropdown-menu {
    border-radius: 16px;
    width: 100%;
    min-width: 180px;
    padding: 16px;
    border: 1px solid #1e1f21;
    background: #141414;
    box-shadow: none;
    overflow: hidden;
}
.filter__dropdown-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-height: 252px;
    overflow-y: auto;
    padding-right: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid #1e1f21;
    margin-bottom: 8px;
}
.filter__dropdown-list:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}
.filter__dropdown-list::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.filter__dropdown-list::-webkit-scrollbar-button {
    display: none;
}
.filter__dropdown-list::-webkit-scrollbar-thumb {
    background: rgba(232, 65, 66, 0.4);
    outline: 0 solid #fff;
    border-radius: 4px;
}
.filter__dropdown-list::-webkit-scrollbar-thumb:hover {
    background: #e84142;
}
.filter__dropdown-list::-webkit-scrollbar-track {
    background: #1e1f21;
    border-radius: 4px;
}
.filter__dropdown-list li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
    cursor: pointer;
}
.filter__dropdown-list li:last-child {
    margin-bottom: 0;
}
.filter__dropdown-list li:hover span {
    color: #e84142;
}
.filter__dropdown-list li.active span {
    color: #e84142;
}
.filter__dropdown-list span {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
    transition: color 0.4s ease;
}
.filter__dropdown-checkboxes {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    position: relative;
    height: auto;
    max-height: 224px;
    padding-right: 8px;
    overflow-y: auto;
}
.filter__dropdown-checkboxes::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.filter__dropdown-checkboxes::-webkit-scrollbar-button {
    display: none;
}
.filter__dropdown-checkboxes::-webkit-scrollbar-thumb {
    background: rgba(232, 65, 66, 0.4);
    outline: 0 solid #fff;
    border-radius: 4px;
}
.filter__dropdown-checkboxes::-webkit-scrollbar-thumb:hover {
    background: #e84142;
}
.filter__dropdown-checkboxes::-webkit-scrollbar-track {
    background: #1e1f21;
    border-radius: 4px;
}
.filter__dropdown-checkboxes li {
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 16px;
    overflow: hidden;
    flex-shrink: 0;
}
.filter__dropdown-checkboxes li:last-child {
    margin-bottom: 0;
}
.filter__dropdown-checkboxes li input:not(:checked),
.filter__dropdown-checkboxes li input:checked {
    position: absolute;
    left: -9999px;
}
.filter__dropdown-checkboxes li input:not(:checked) + label,
.filter__dropdown-checkboxes li input:checked + label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    font-size: 14px;
    line-height: 24px;
    height: 24px;
    color: #898e95;
    font-weight: 500;
    cursor: pointer;
    padding-left: 28px;
    margin: 0;
    transition: color 0.4s ease;
}
.filter__dropdown-checkboxes li input:not(:checked) + label span,
.filter__dropdown-checkboxes li input:checked + label span {
    font-size: 10px;
    line-height: 20px;
    font-weight: 700;
    color: #898e95;
    background-color: #1e1f21;
    padding: 0 8px;
    border-radius: 10px;
    margin-left: 8px;
}
.filter__dropdown-checkboxes li input:not(:checked) + label:hover,
.filter__dropdown-checkboxes li input:checked + label:hover {
    color: #fff;
}
.filter__dropdown-checkboxes li input:checked + label {
    color: #fff;
}
.filter__dropdown-checkboxes li input:not(:checked) + label:before,
.filter__dropdown-checkboxes li input:checked + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(232, 65, 66, 0.2);
    background-color: rgba(232, 65, 66, 0.15);
    border-radius: 50%;
}
.filter__dropdown-checkboxes li input:not(:checked) + label:after,
.filter__dropdown-checkboxes li input:checked + label:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 6px;
    width: 12px;
    height: 12px;
    transition: 0.4s ease;
    background-color: #e84142;
    border-radius: 50%;
}
.filter__dropdown-checkboxes li input:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}
.filter__dropdown-checkboxes li input:checked + label:after {
    opacity: 1;
    transform: scale(1);
}
.filter__dropdown-checkboxes li label::-moz-selection {
    background: transparent;
    color: #fff;
}
.filter__dropdown-checkboxes li label::selection {
    background: transparent;
    color: #fff;
}
.filter__dropdown-clear {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 8px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 8px;
    margin-bottom: 16px;
    border-bottom: 1px solid #1e1f21;
}
.filter__dropdown-clear:hover {
    color: #e84142;
}
@media (min-width: 576px) {
    .filter--sticky {
        padding-left: calc(((100vw - 516px) / 2) - 4px);
        padding-right: calc(((100vw - 516px) / 2) - 4px);
    }
}
@media (min-width: 768px) {
    .filter {
        margin-bottom: 32px;
    }
    .filter--sticky {
        top: 104px;
        padding-left: calc(((100vw - 696px) / 2) - 4px);
        padding-right: calc(((100vw - 696px) / 2) - 4px);
    }
    .filter__search input {
        height: 46px;
        border-radius: 24px;
    }
    .filter__search svg {
        top: 13px;
    }
    .filter__search-clear {
        top: 13px;
    }
    .filter__search-clear svg {
        top: auto;
    }
    .filter__dropdown {
        width: auto;
    }
    .filter__dropdown--checkboxes .filter__btn {
        min-width: 220px;
    }
    .filter__btn {
        width: auto;
        min-width: 180px;
        height: 46px;
        padding: 0 16px;
        border-radius: 24px;
    }
    .filter__btn:hover .filter__btn-arrow svg,
    .filter__btn.show .filter__btn-arrow svg {
        stroke: #e84142;
    }
    .filter__btn.active .filter__btn-name {
        display: none;
    }
    .filter__btn.active .filter__btn-mask {
        display: flex;
    }
    .filter__btn-icon {
        display: none;
    }
    .filter__btn-name {
        display: block;
        font-size: 14px;
        line-height: 20px;
        font-weight: 500;
        color: #fff;
        margin-right: 8px;
    }
    .filter__btn-arrow {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-left: auto;
    }
    .filter__btn-arrow svg {
        width: 16px;
        height: 16px;
        stroke: #898e95;
    }
    .filter__btn-mask {
        display: none;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        font-size: 14px;
        line-height: 20px;
        color: #fff;
        margin-right: 8px;
        padding-left: 28px;
    }
    .filter__btn-clear {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 20px;
        height: 20px;
        background-color: transparent;
        margin-left: 8px;
    }
    .filter__btn-clear svg {
        width: 16px;
        height: 16px;
        stroke: #898e95;
    }
    .filter__btn-clear:hover svg {
        stroke: #ce2b2b;
    }
    .filter__btn-counter {
        top: 13px;
        right: auto;
        left: 16px;
    }
}
@media (min-width: 992px) {
    .filter--sticky {
        padding-left: calc(((100vw - 936px) / 2) - 4px);
        padding-right: calc(((100vw - 936px) / 2) - 4px);
    }
}
@media (min-width: 1200px) {
    .filter--sticky {
        top: 24px;
        padding-left: 12px;
        padding-right: 12px;
    }
}
@media (min-width: 1900px) {
    .filter--sticky {
        padding-left: calc((100% - 1320px) / 2);
        padding-right: calc((100% - 1320px) / 2);
    }
}
.how {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 32px;
    border-radius: 16px;
    position: relative;
    height: auto;
    min-height: 100%;
}
.how:before,
.how:after {
    content: "";
    position: absolute;
    background-color: #1e1f21;
    z-index: 1;
}
.how:before {
    top: 0;
    left: 64px;
    right: 0;
    bottom: 0;
    border-radius: 16px 16px 16px 0;
}
.how:after {
    top: 48px;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 16px 0 16px 16px;
}
.how__number {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 64px;
    height: 48px;
    border-radius: 0 0 16px 0;
}
.how__number span {
    position: relative;
    z-index: 3;
    font-size: 32px;
    font-weight: 600;
    color: #e84142;
}
.how__number:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background-color: #1e1f21;
    z-index: 1;
}
.how__number:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background-color: #141414;
    border-radius: 0 0 16px 0;
    z-index: 2;
}
.how__title {
    position: relative;
    z-index: 2;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
    text-align: center;
    padding: 0 32px;
    width: 100%;
}
.how__text {
    position: relative;
    z-index: 2;
    color: #898e95;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    margin-bottom: 0;
    text-align: center;
}
.how__text b {
    font-weight: 600;
}
.how__text a {
    color: #e84142;
}
.how__text a:hover {
    color: #e84142;
    text-decoration: underline;
}
.how--green .how__number span {
    color: #1aaa67;
}
.how--red .how__number span {
    color: #ce2b2b;
}
.how--blue .how__number span {
    color: #1662ff;
}
.how--purple .how__number span {
    color: #ac29c2;
}
@media (min-width: 768px) {
    .how {
        padding: 48px 32px;
    }
    .how__title {
        font-size: 30px;
        line-height: 42px;
    }
    .how__text {
        max-width: 420px;
        font-size: 18px;
        line-height: 30px;
    }
}
@media (min-width: 1400px) {
    .how__title {
        font-size: 24px;
        line-height: 32px;
    }
    .how__text {
        font-size: 16px;
        line-height: 24px;
    }
}
.feature {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 32px;
    background-color: #1e1f21;
    border-radius: 16px;
    position: relative;
    height: auto;
    min-height: 100%;
    overflow: hidden;
}
.feature:before {
    content: "";
    position: absolute;
    z-index: 1;
    display: block;
    top: 1px;
    left: 32px;
    width: 48px;
    height: 2px;
    background-color: #e84142;
    border-radius: 2px;
    box-shadow: 0 32px 72px rgba(252, 228, 143, 0.6), 0 16px 40px rgba(232, 65, 66, 0.6), 0 8px 24px rgba(252, 228, 143, 0.5), 0 12px 24px rgba(232, 65, 66, 0.6), 0 4px 12px rgba(252, 228, 143, 0.3), 0 2px 6px rgba(232, 65, 66, 0.2);
    opacity: 0.8;
}
.feature__icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    top: 32px;
    left: 32px;
    z-index: 3;
}
.feature__icon svg {
    width: 24px;
    height: 24px;
    stroke: #e84142;
}
.feature__title {
    color: #fff;
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    text-transform: uppercase;
    padding-left: 64px;
    margin-bottom: 16px;
    padding-top: 8px;
    min-height: 48px;
}
.feature__text {
    display: block;
    color: #898e95;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    margin-bottom: 0;
}
.feature__text a {
    color: #e84142;
}
.feature__text a:hover {
    color: #e84142;
    text-decoration: underline;
}
.feature--green:before {
    background-color: #1aaa67;
    box-shadow: 0 32px 72px rgba(252, 228, 143, 0.6), 0 16px 40px rgba(26, 170, 103, 0.6), 0 8px 24px rgba(252, 228, 143, 0.5), 0 12px 24px rgba(26, 170, 103, 0.6), 0 4px 12px rgba(252, 228, 143, 0.3), 0 2px 6px rgba(26, 170, 103, 0.2);
}
.feature--green .feature__icon svg {
    stroke: #1aaa67;
}
.feature--red:before {
    background-color: #ce2b2b;
    box-shadow: 0 32px 72px rgba(252, 228, 143, 0.6), 0 16px 40px rgba(206, 43, 43, 0.6), 0 8px 24px rgba(252, 228, 143, 0.5), 0 12px 24px rgba(206, 43, 43, 0.6), 0 4px 12px rgba(252, 228, 143, 0.3), 0 2px 6px rgba(206, 43, 43, 0.2);
}
.feature--red .feature__icon svg {
    stroke: #ce2b2b;
}
.feature--blue:before {
    background-color: #1662ff;
    box-shadow: 0 32px 72px rgba(252, 228, 143, 0.6), 0 16px 40px rgba(22, 98, 255, 0.6), 0 8px 24px rgba(252, 228, 143, 0.5), 0 12px 24px rgba(22, 98, 255, 0.6), 0 4px 12px rgba(252, 228, 143, 0.3), 0 2px 6px rgba(22, 98, 255, 0.2);
}
.feature--blue .feature__icon svg {
    stroke: #1662ff;
}
.feature--purple:before {
    background-color: #ac29c2;
    box-shadow: 0 32px 72px rgba(252, 228, 143, 0.6), 0 16px 40px rgba(172, 41, 194, 0.6), 0 8px 24px rgba(252, 228, 143, 0.5), 0 12px 24px rgba(172, 41, 194, 0.6), 0 4px 12px rgba(252, 228, 143, 0.3), 0 2px 6px rgba(172, 41, 194, 0.2);
}
.feature--purple .feature__icon svg {
    stroke: #ac29c2;
}
.affiliate {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 32px 32px 16px;
    background-color: #1e1f21;
    border-radius: 16px;
    margin-top: 16px;
    position: relative;
}
.affiliate__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 32px;
    left: 32px;
}
.affiliate__icon svg {
    width: 32px;
    height: 32px;
    stroke: #e84142;
}
.affiliate__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
    padding-left: 46px;
}
.affiliate__text {
    color: #898e95;
    font-size: 14px;
    line-height: 24px;
    width: 100%;
    margin-bottom: 0;
}
.affiliate__text b {
    font-weight: 500;
}
.affiliate__text a {
    color: #e84142;
}
.affiliate__text a:hover {
    color: #e84142;
    text-decoration: underline;
}
.affiliate__table {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 24px;
}
.affiliate--yellow .affiliate__icon svg {
    stroke: #ffc312;
}
.affiliate--yellow .xtable__text b {
    color: #ffc312;
}
.affiliate--green .affiliate__icon svg {
    stroke: #1aaa67;
}
.affiliate--green .xtable__text b {
    color: #1aaa67;
}
.affiliate--blue .affiliate__icon svg {
    stroke: #1662ff;
}
.affiliate--blue .xtable__text b {
    color: #1662ff;
}
.affiliate--purple .affiliate__icon svg {
    stroke: #ac29c2;
}
.affiliate--purple .xtable__text b {
    color: #ac29c2;
}
@media (min-width: 768px) {
    .affiliate {
        padding: 32px 32px 12px;
    }
    .affiliate__icon {
        top: 32px;
        left: 32px;
    }
    .affiliate__table {
        margin-top: 32px;
    }
}
.dialog {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    background: #1e1f21;
    border-radius: 16px;
    padding: 20px;
}
.dialog__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    background-color: #141414;
    border-radius: 12px;
    padding: 20px 16px;
    height: auto;
    max-height: 360px;
    overflow-y: scroll;
}
.dialog__content::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.dialog__content::-webkit-scrollbar-button {
    display: none;
}
.dialog__content::-webkit-scrollbar-thumb {
    background: rgba(232, 65, 66, 0.4);
    outline: 0 solid #fff;
    border-radius: 4px;
}
.dialog__content::-webkit-scrollbar-thumb:hover {
    background: #e84142;
}
.dialog__content::-webkit-scrollbar-track {
    background: #141414;
    border-radius: 4px;
}
.dialog__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    padding: 20px 16px 16px;
    border-radius: 8px;
    border: 2px solid transparent;
}
.dialog__item:before {
    content: "";
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: auto;
    padding: 0 10px;
    left: 16px;
    top: -12px;
    font-size: 12px;
    font-weight: 500;
    color: #141414;
    border-radius: 12px;
}
.dialog__item:last-child {
    margin-bottom: 0;
}
.dialog__item--customer {
    border-color: #e3b9df;
}
.dialog__item--customer:before {
    content: "You";
    background-color: #e3b9df;
}
.dialog__item--support {
    border-color: #b9cbe3;
}
.dialog__item--support:before {
    content: "Support";
    background-color: #b9cbe3;
}
.dialog__massage p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
}
.dialog__massage p:last-child {
    margin-bottom: 0;
}
.dialog__cellar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
.dialog__time {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 15px;
    width: auto;
    font-size: 12px;
    line-height: 24px;
    color: #898e95;
    order: 2;
}
.dialog__time svg {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    stroke: #898e95;
}
.dialog__attachment {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 15px;
    width: auto;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    order: 1;
}
.dialog__attachment svg {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    stroke: #b9cbe3;
}
.dialog__attachment:hover svg {
    stroke: #e84142;
}
.dialog__form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    background-color: #141414;
    border-radius: 12px;
    margin-top: 20px;
    padding: 20px 16px 30px;
}
@media (min-width: 768px) {
    .dialog__content {
        max-height: 420px;
    }
    .dialog__cellar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .dialog__time {
        order: 1;
    }
    .dialog__attachment {
        order: 2;
    }
}
@media (min-width: 1200px) {
    .dialog {
        flex-direction: row;
        gap: 16px;
    }
    .dialog__content {
        width: 50%;
        min-height: 100%;
        max-height: 440px;
    }
    .dialog__form {
        width: 50%;
        margin-top: 0;
    }
}
.breadcrumbs {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
}
.breadcrumbs__item {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #898e95;
    transition: 0.4s ease;
    position: relative;
    margin-right: 36px;
}
.breadcrumbs__item:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(../images/style/breadcrumb.svg) no-repeat center;
    background-size: 20px 20px;
    left: 100%;
    top: 0;
    margin-left: 8px;
}
.breadcrumbs__item:hover {
    color: #898e95;
}
.breadcrumbs__item--active {
    cursor: default;
    margin-right: 0;
}
.breadcrumbs__item--active:before {
    display: none;
}
.breadcrumbs__item--active:hover {
    color: #898e95;
}
.breadcrumbs a {
    color: #fff;
}
.breadcrumbs a:hover {
    color: #e84142;
}
.breadcrumbs--tablet {
    display: none;
}
@media (min-width: 768px) {
    .breadcrumbs {
        margin-top: 0;
    }
    .breadcrumbs--tablet {
        display: flex;
    }
}
.accordion--page {
    margin-top: -16px;
}
.accordion__card {
    background-color: #1e1f21;
    border-radius: 16px;
    margin-top: 16px;
    border: none;
}
.accordion__card button {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 68px;
    padding: 16px 76px 16px 20px;
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    text-align: left;
}
.accordion__card button:before {
    content: "";
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: url(../images/style/down.svg) no-repeat center;
    background-size: 20px 20px;
    background-color: #141414;
    position: absolute;
    top: 15px;
    right: 20px;
    transition: 0.4s ease;
    transition-property: opacity, transform;
    opacity: 1;
}
.accordion__card button:after {
    content: "";
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: url(../images/style/down-hover.svg) no-repeat center;
    background-size: 20px 20px;
    background-color: #141414;
    position: absolute;
    top: 15px;
    right: 20px;
    transition: 0.4s ease;
    transition-property: opacity, transform;
    opacity: 0;
}
.accordion__card button:hover:after {
    opacity: 1;
}
.accordion__card button[aria-expanded="true"]:before {
    transform: rotate(180deg);
}
.accordion__card button[aria-expanded="true"]:after {
    transform: rotate(180deg);
    opacity: 1;
}
.accordion__card p {
    padding: 0 20px 16px;
    color: #898e95;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}
.accordion__card p b,
.accordion__card p strong {
    font-weight: 500;
}
.accordion__card p:first-child {
    border-top: 1px solid #141414;
    padding: 16px;
}
@media (min-width: 768px) {
    .accordion__card button {
        padding: 16px 86px 16px 32px;
    }
    .accordion__card button:before,
    .accordion__card button:after {
        right: 32px;
    }
    .accordion__card p {
        padding: 0 32px 16px;
    }
    .accordion__card p:first-child {
        padding: 16px 32px;
    }
}
.actor {
    position: relative;
    width: 100%;
    padding: 40px 4px 0;
}
.actor .container {
    position: relative;
    z-index: 4;
}
.actor:before,
.actor:after {
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}
.actor:before {
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.actor:after {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, #141414 100%);
    z-index: 3;
}
.actor__bg {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    inset: 0;
    object-fit: cover;
}
.actor__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
.actor__photo {
    margin-top: 24px;
    border-radius: 8px;
    width: 100%;
    max-width: 200px;
}
.actor__meta {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-top: 16px;
}
.actor__meta li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: start;
    flex-wrap: wrap;
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
}
.actor__meta li:last-child {
    margin-bottom: 0;
}
.actor__meta span {
    margin-right: 10px;
    font-weight: 400;
}
.actor__meta a {
    font-size: 14px;
    line-height: 24px;
    position: relative;
    color: #b9cbe3;
    margin-right: 10px;
}
.actor__meta a:after {
    content: ",";
    position: absolute;
    display: block;
    left: 100%;
    top: 0;
    color: #b9cbe3;
}
.actor__meta a:last-child {
    margin-right: 0;
}
.actor__meta a:last-child:after {
    display: none;
}
.actor__meta a:hover {
    color: #e84142;
}
@media (min-width: 768px) {
    .actor {
        padding: 48px 4px 0;
    }
    .actor__content {
        flex-direction: row;
        justify-content: flex-start;
        margin-top: 24px;
    }
    .actor__photo {
        margin-right: 24px;
        margin-top: 0;
    }
    .actor__meta {
        margin-top: 0;
    }
}
@media (min-width: 1200px) {
    .actor {
        padding: 56px 40px 0;
    }
}
.movie {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 40px 4px 0;
}
.movie .container {
    position: relative;
    z-index: 4;
}
.movie:before,
.movie:after {
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}
.movie:before {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.movie:after {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, #141414 100%);
    z-index: 3;
}
.movie__bg {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    inset: 0;
    object-fit: cover;
}
.movie__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
.movie__player {
    position: relative;
    width: 100%;
    margin-top: 32px;
}
.movie__player:first-child {
    margin-top: 0;
}
.movie__player--stream:first-child {
    margin-top: 32px;
}
.movie__select {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    position: relative;
    z-index: 2;
    gap: 0 16px;
}
.movie__select .sign__dropdown-btn {
    padding: 0 16px 0 20px;
}
@media (min-width: 768px) {
    .movie {
        padding: 48px 4px 0;
    }
    .movie__select .sign__dropdown {
        width: auto;
    }
    .movie__select .sign__dropdown-btn {
        padding: 0 16px 0 24px;
    }
}
@media (min-width: 1200px) {
    .movie {
        padding: 56px 40px 0;
    }
}
.stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin-top: 16px;
    padding: 20px;
    border-radius: 16px;
    background-color: #1e1f21;
    width: 100%;
}
.stats span {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
}
.stats p {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}
.stats p.green {
    color: #1aaa67;
}
.stats p.red {
    color: #ce2b2b;
}
.stats p img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
}
.stats p b {
    color: #898e95;
    font-weight: 400;
    font-size: 12px;
    margin-left: 4px;
}
.stats p b.green {
    color: #1aaa67;
}
.stats p b.red {
    color: #ce2b2b;
}
.stats p sub {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 20px;
    padding: 0 8px;
    border-radius: 12px;
    color: #898e95;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    margin-left: 8px;
    bottom: -1px;
}
.stats p sub.green {
    font-weight: 600;
    color: #1aaa67;
    background-color: rgba(26, 170, 103, 0.1);
    border: 1px solid rgba(26, 170, 103, 0.1);
}
.stats p sub.red {
    font-weight: 600;
    color: #ce2b2b;
    background-color: rgba(206, 43, 43, 0.1);
    border: 1px solid rgba(206, 43, 43, 0.2);
}
.stats p a {
    color: #fff;
}
.stats p a:hover {
    color: #e84142;
}
.stats svg {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 23px;
    right: 20px;
    stroke: #e84142;
}
@media (min-width: 768px) {
    .stats {
        padding: 20px 30px;
    }
    .stats svg {
        right: 30px;
    }
}
.dashbox {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    background-color: #1e1f21;
    margin-top: 16px;
    border-radius: 16px;
    overflow: hidden;
}
.dashbox__title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid #141414;
}
.dashbox__title h3 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
}
.dashbox__title h3 svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    stroke: #e84142;
}
.dashbox__wrap {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.dashbox__more {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 30px;
    background-color: #b9cbe3;
    padding: 0 12px;
    border-radius: 16px;
    margin-left: 15px;
    position: relative;
    overflow: hidden;
}
.dashbox__more span {
    position: relative;
    z-index: 2;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: #141414;
    transition: color 0.4s ease;
}
.dashbox__refresh {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}
.dashbox__refresh svg {
    width: 20px;
    height: 20px;
    stroke: #898e95;
}
.dashbox__refresh:hover svg {
    stroke: #e84142;
}
.dashbox__table-wrap {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 20px 10px;
}
@media (min-width: 768px) {
    .dashbox__title {
        padding: 20px 30px;
    }
    .dashbox__table-wrap {
        padding: 20px 30px 10px;
    }
    .dashbox__more:before {
        content: "";
        position: absolute;
        z-index: 1;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        margin: -5px 0 0 -5px;
        background-color: #e84142;
        transition: 0.4s ease;
        transition-property: transform, opacity;
        transform: scale(1);
        opacity: 0;
        transform-origin: center;
        will-change: transform;
        pointer-events: none;
    }
    .dashbox__more:hover:before {
        opacity: 1;
        transform: scale(8);
    }
    .dashbox__more:hover span {
        color: #fff;
    }
}
.verification {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    width: 100%;
    background-color: #1e1f21;
    border-radius: 16px;
    padding: 20px 20px 10px 60px;
    margin-top: 16px;
}
.verification__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 23px;
    left: 20px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #141414;
}
.verification__icon svg {
    width: 24px;
    height: 24px;
    stroke: #1aaa67;
    opacity: 0;
}
.verification__head {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}
.verification__title {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    margin-right: 16px;
}
.verification__status {
    font-size: 14px;
    line-height: 30px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 8px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.verification__text {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #898e95;
    margin-bottom: 10px;
}
.verification__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 160px;
    border-radius: 24px;
    background-color: #b9cbe3;
    margin-top: 10px;
    margin-right: 16px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}
.verification__btn:last-child {
    margin-right: 0;
}
.verification__btn:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    background-color: #e84142;
    transition: 0.4s ease;
    transition-property: transform, opacity;
    transform: scale(1);
    opacity: 0;
    transform-origin: center;
    will-change: transform;
    pointer-events: none;
}
.verification__btn span {
    position: relative;
    z-index: 2;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #141414;
    text-transform: uppercase;
    transition: color 0.4s ease;
}
.verification__btn:hover:before {
    opacity: 1;
    transform: scale(8.2);
}
.verification__btn:hover span {
    color: #fff;
}
.verification--done .verification__icon {
    background-color: transparent;
    border: none;
}
.verification--done .verification__icon svg {
    opacity: 1;
}
.verification--done .verification__status {
    color: #1aaa67;
    background-color: rgba(26, 170, 103, 0.1);
    border-color: rgba(26, 170, 103, 0.1);
}
.verification--requested .verification__status {
    color: #ce2b2b;
    background-color: rgba(206, 43, 43, 0.1);
    border-color: rgba(206, 43, 43, 0.2);
}
@media (min-width: 768px) {
    .verification {
        padding: 32px 32px 22px 70px;
    }
    .verification__icon {
        top: 35px;
        left: 32px;
    }
    .verification__btn {
        position: absolute;
        top: 50%;
        right: 32px;
        transform: translateY(-50%);
        margin: 0;
    }
}
.comments {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-top: 16px;
}
.comments__author {
    display: block;
    position: relative;
    margin-bottom: 8px;
    padding-left: 20px;
}
.comments__name {
    display: block;
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    font-weight: 400;
}
.comments__time {
    display: block;
    font-size: 12px;
    color: #898e95;
    line-height: 24px;
    font-weight: 400;
}
.comments__text {
    display: block;
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    background-color: #1e1f21;
    padding: 16px;
    position: relative;
    border-top: 1px solid #1e1f21;
    border-left: 1px solid #1e1f21;
    border-right: 1px solid #1e1f21;
    border-radius: 16px 16px 0 0;
}
.comments__text span {
    display: block;
    background-color: #141414;
    margin-bottom: 16px;
    padding: 16px;
    position: relative;
    min-height: 56px;
    border-radius: 8px;
    color: #898e95;
}
.comments__item {
    margin-bottom: 16px;
    display: block;
}
.comments__item--answer,
.comments__item--quote {
    margin-left: 24px;
}
.comments__item:last-child {
    margin-bottom: 0;
}
.comments__actions {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    background-color: #1e1f21;
    padding: 0 16px 16px;
    position: relative;
    border-radius: 0 0 16px 16px;
}
.comments__actions button,
.comments__actions a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    color: #898e95;
    margin-right: 16px;
    height: 30px;
    text-transform: uppercase;
    font-weight: 500;
}
.comments__actions button svg,
.comments__actions a svg {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    stroke: #898e95;
}
.comments__actions button:hover,
.comments__actions a:hover {
    color: #e84142;
}
.comments__actions button:hover svg,
.comments__actions a:hover svg {
    stroke: #e84142;
}
.comments__actions button:last-child,
.comments__actions a:last-child {
    margin-right: 0;
}
.comments__rate {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    left: 16px;
    top: 0;
}
.comments__rate button,
.comments__rate a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #898e95;
    font-size: 14px;
    font-weight: 500;
    margin-right: 16px;
    position: relative;
    height: 30px;
    background-color: #141414;
    padding: 0 16px;
    border-radius: 16px;
}
.comments__rate button svg,
.comments__rate a svg {
    width: 20px;
    height: 20px;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}
.comments__rate button:last-child,
.comments__rate a:last-child {
    padding: 0 8px 0 16px;
    margin-right: 0;
}
.comments__rate button:last-child svg,
.comments__rate a:last-child svg {
    margin-left: 6px;
    margin-top: 2px;
    stroke: #ce2b2b;
}
.comments__rate button:first-child,
.comments__rate a:first-child {
    padding: 0 16px 0 12px;
}
.comments__rate button:first-child svg,
.comments__rate a:first-child svg {
    margin-right: 4px;
    margin-top: -1px;
    stroke: #1aaa67;
}
.comments__rate button:hover,
.comments__rate a:hover {
    color: #fff;
}
.comments__rate button:hover svg,
.comments__rate a:hover svg {
    opacity: 1;
}
@media (min-width: 768px) {
    .comments__author {
        padding-left: 30px;
    }
    .comments__text {
        padding: 24px 30px;
    }
    .comments__actions {
        padding: 0 30px 24px;
    }
    .comments__rate {
        left: 30px;
    }
    .comments__item--answer,
    .comments__item--quote {
        margin-left: 32px;
    }
}
.reviews {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-top: 16px;
}
.reviews__author {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    position: relative;
    z-index: 3;
    padding: 0 20px 16px;
    background-color: #141414;
}
.reviews__author:before {
    content: "";
    position: absolute;
    background: transparent;
    border-radius: 0 16px 0 0;
    width: 32px;
    height: 32px;
    top: 100%;
    right: 0;
    box-shadow: 10px -10px 1px #141414;
}
.reviews__author:after {
    content: "";
    position: absolute;
    background: transparent;
    border-radius: 16px 0 0 0;
    width: 32px;
    height: 32px;
    top: 100%;
    left: 0;
    box-shadow: -10px -10px 1px #141414;
}
.reviews__name {
    display: block;
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    font-weight: 400;
}
.reviews__time {
    display: block;
    font-size: 12px;
    color: #898e95;
    font-weight: 400;
    line-height: 24px;
}
.reviews__text {
    display: block;
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    position: relative;
    z-index: 2;
    padding: 16px 88px 16px 20px;
    text-shadow: 1px 1px 4px rgba(20, 20, 20, 0.5);
    min-height: 96px;
}
.reviews__item {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    width: 100%;
    border-radius: 16px;
    background-color: #1e1f21;
}
.reviews__item:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.reviews__item:last-child {
    margin-bottom: 0;
}
.reviews__item--gold {
    background: linear-gradient(-45deg, rgba(255, 215, 0, 0.64), rgba(255, 165, 0, 0.64), rgba(255, 204, 0, 0.64));
}
.reviews__item--gold:after {
    background-color: #ffa500;
}
.reviews__item--silver {
    background: linear-gradient(-45deg, rgba(192, 192, 192, 0.64), rgba(168, 168, 168, 0.64), rgba(208, 208, 208, 0.64));
}
.reviews__item--silver:after {
    background-color: #a8a8a8;
}
.reviews__item--bronze {
    background: linear-gradient(-45deg, rgba(205, 127, 50, 0.64), rgba(184, 115, 51, 0.64), rgba(193, 154, 107, 0.64));
}
.reviews__item--bronze:after {
    background-color: #b87333;
}
.reviews__item:hover:after {
    opacity: 0.3;
}
.reviews__rating {
    font-size: 40px;
    font-weight: 900;
    line-height: 48px;
    color: #141414;
    text-align: center;
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 48px;
    top: 100%;
    right: 8px;
    margin-top: 16px;
}
.reviews__rating--gold {
    background: linear-gradient(45deg, #ffd700, #ffa500, #fc0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.reviews__rating--silver {
    background: linear-gradient(45deg, #c0c0c0, #a8a8a8, #d0d0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.reviews__rating--bronze {
    background: linear-gradient(45deg, #cd7f32, #b87333, #c19a6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (min-width: 768px) {
    .reviews__text {
        padding: 24px 88px 24px 30px;
    }
    .reviews__author {
        padding: 0 30px 16px;
    }
    .reviews__rating {
        margin-top: 24px;
    }
}
.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 0;
    background-color: #1e1f21;
    height: 46px;
    border-radius: 24px;
    overflow: hidden;
    padding: 0 16px;
}
.rating > label {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 10%;
    height: 46px;
}
.rating:not(:checked) > input {
    display: none;
}
.rating:not(:checked) > label {
    cursor: pointer;
    font-size: 30px;
}
.rating:not(:checked) > label > svg {
    stroke: rgba(137, 142, 149, 0.5);
    width: 24px;
    height: 24px;
}
.rating > input:checked ~ label > svg {
    stroke: #fff;
}
.rating:not(:checked) > label:hover ~ label > svg,
.rating:not(:checked) > label:hover > svg {
    stroke: #fff;
}
.rating #star5:hover ~ label > svg,
.rating #star5:hover > svg {
    stroke: #b87333 !important;
}
.rating #star6:hover ~ label > svg,
.rating #star6:hover > svg {
    stroke: #b87333 !important;
}
.rating #star7:hover ~ label > svg,
.rating #star7:hover > svg {
    stroke: #a8a8a8 !important;
}
.rating #star8:hover ~ label > svg,
.rating #star8:hover > svg {
    stroke: #a8a8a8 !important;
}
.rating #star9:hover ~ label > svg,
.rating #star9:hover > svg {
    stroke: #ffa500 !important;
}
.rating #star10:hover ~ label > svg,
.rating #star10:hover > svg {
    stroke: #ffa500 !important;
}
.rating #star5:checked ~ label > svg {
    stroke: #b87333;
}
.rating #star6:checked ~ label > svg {
    stroke: #b87333;
}
.rating #star7:checked ~ label > svg {
    stroke: #a8a8a8;
}
.rating #star8:checked ~ label > svg {
    stroke: #a8a8a8;
}
.rating #star9:checked ~ label > svg {
    stroke: #ffa500;
}
.rating #star10:checked ~ label > svg {
    stroke: #ffa500;
}
@media (min-width: 768px) {
    .rating:not(:checked) > label > svg {
        width: 28px;
        height: 28px;
    }
}
.xchat {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    width: 100%;
    background: #1e1f21;
    border-radius: 16px;
    padding: 8px;
    margin-top: 16px;
}
.xchat__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 245px;
    position: relative;
    overflow: hidden;
    background-color: #141414;
    border-radius: 8px 8px 0 0;
}
.xchat__messages {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    position: relative;
    padding: 16px 16px 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    word-break: break-word;
    overflow-anchor: none;
    overscroll-behavior: contain;
}
.xchat__messages::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.xchat__messages::-webkit-scrollbar-button {
    display: none;
}
.xchat__messages::-webkit-scrollbar-thumb {
    background: rgba(232, 65, 66, 0.4);
    outline: 0 solid #fff;
    border-radius: 4px;
}
.xchat__messages::-webkit-scrollbar-thumb:hover {
    background: #e84142;
}
.xchat__messages::-webkit-scrollbar-track {
    background: #141414;
    border-radius: 4px;
}
.xchat__message {
    width: 100%;
    margin-bottom: 15px;
}
.xchat__message button {
    display: inline;
    margin-right: 4px;
    color: #e84142;
}
.xchat__message p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
}
.xchat__message p:last-child {
    margin-bottom: 0;
}
.xchat__message:nth-child(n) button {
    color: #e84142;
}
.xchat__message:nth-child(2n) button {
    color: #1aaa67;
}
.xchat__message:nth-child(3n) button {
    color: #ce2b2b;
}
.xchat__message:nth-child(4n) button {
    color: #1662ff;
}
.xchat__message:nth-child(4n) button {
    color: #ac29c2;
}
.xchat__message:nth-child(5n) button {
    color: #72f2eb;
}
.xchat__message:nth-child(6n) button {
    color: #dc2d4e;
}
.xchat__message:nth-child(7n) button {
    color: #05aff2;
}
.xchat__message:nth-child(8n) button {
    color: #ff2b91;
}
.xchat__cellar {
    width: 100%;
    height: 137px;
    padding: 16px 16px;
    position: relative;
    background-color: #141414;
    border-radius: 0 0 8px 8px;
    border-top: 1px solid #1e1f21;
}
.xchat__form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
.xchat__form .sign__group {
    margin-top: 0;
}
.xchat__actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 16px;
}
.xchat__online {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
}
.xchat__online:before,
.xchat__online:after {
    content: "";
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}
.xchat__online:before {
    width: 16px;
    height: 16px;
    background-color: rgba(26, 170, 103, 0.24);
    top: 4px;
    left: 0;
    z-index: 1;
    opacity: 0.24;
    transition: opacity 0.4s ease;
    will-change: opacity;
    animation: onlineDot 2s linear infinite;
}
.xchat__online:after {
    width: 8px;
    height: 8px;
    top: 8px;
    left: 4px;
    background-color: #1aaa67;
    z-index: 2;
    opacity: 0.8;
}
.xchat__manual {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: transparent;
    margin-right: 8px;
    margin-left: auto;
}
.xchat__manual svg {
    width: 20px;
    height: 20px;
    stroke: #898e95;
}
.xchat__manual:hover svg {
    stroke: #e84142;
}
.xchat__send {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 46px;
    width: 100px;
    border-radius: 24px;
    background-color: #b9cbe3;
    position: relative;
    overflow: hidden;
}
.xchat__send:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    background-color: #e84142;
    transition: 0.4s ease;
    transition-property: transform, opacity;
    transform: scale(1);
    opacity: 0;
    transform-origin: center;
    will-change: transform;
    pointer-events: none;
}
.xchat__send span {
    position: relative;
    z-index: 2;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #141414;
    text-transform: uppercase;
    transition: color 0.4s ease;
}
.xchat__send:hover:before {
    opacity: 1;
    transform: scale(5.2);
}
.xchat__send:hover span {
    color: #fff;
}
@media (min-width: 768px) {
    .xchat {
        padding: 16px;
    }
}
@media (min-width: 1400px) {
    .xchat {
        margin-top: 32px;
        height: calc(100% - 32px);
        justify-content: flex-end;
    }
    .xchat__content {
        position: absolute;
        top: 16px;
        left: 16px;
        width: calc(100% - 32px);
        height: calc(100% - 169px);
    }
}
.footer {
    background-color: #141414;
    border-top: 1px solid #1e1f21;
    padding: 40px 4px 0;
    width: 100%;
    margin-top: 40px;
}
.footer__tagline {
    display: block;
    font-size: 14px;
    line-height: 22px;
    color: #898e95;
    margin-bottom: 0;
}
.footer__social {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}
.footer__social a {
    margin-top: 20px;
    margin-right: 16px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    position: relative;
}
.footer__social a svg {
    width: 24px;
    height: 24px;
    stroke: #63686f;
}
.footer__social a:last-child {
    margin-right: 0;
}
.footer__social a:hover svg {
    stroke: #e84142;
}
.footer__content {
    position: relative;
    margin-top: 30px;
    border-top: 1px solid #1e1f21;
    padding-bottom: 20px;
}
.footer__copyright {
    display: block;
    font-size: 12px;
    color: #898e95;
    margin-top: 20px;
    font-weight: 400;
}
.footer__copyright a {
    color: #898e95;
}
.footer__copyright a:hover {
    color: #e84142;
}
.footer__title {
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 15px;
}
.footer__nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 30px;
}
.footer__nav a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
    color: #898e95;
    font-weight: 400;
}
.footer__nav a svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    stroke: #898e95;
}
.footer__nav a:last-child {
    margin-bottom: 0;
}
.footer__nav a:hover {
    color: #e84142;
}
.footer__nav a.green {
    text-transform: uppercase;
}
.footer__nav a.green svg {
    stroke: #1aaa67;
}
.footer__nav a.green:hover {
    color: #1aaa67;
}
.footer__nav a.red {
    text-transform: uppercase;
}
.footer__nav a.red svg {
    stroke: #ce2b2b;
}
.footer__nav a.red:hover {
    color: #ce2b2b;
}
.footer__nav a.blue {
    text-transform: uppercase;
}
.footer__nav a.blue svg {
    stroke: #1662ff;
}
.footer__nav a.blue:hover {
    color: #1662ff;
}
.footer__nav a.purple {
    text-transform: uppercase;
}
.footer__nav a.purple svg {
    stroke: #ac29c2;
}
.footer__nav a.purple:hover {
    color: #ac29c2;
}
.footer__lang {
    position: relative;
    margin-top: 20px;
}
.footer__lang-btn {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.footer__lang-btn img {
    width: 20px;
    height: auto;
    margin-right: 8px;
    border-radius: 4px;
}
.footer__lang-btn span {
    color: #898e95;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    transition: color 0.4s ease;
}
.footer__lang-btn svg {
    width: 12px;
    height: 12px;
    stroke: #898e95;
    margin-left: 2px;
    margin-top: 2px;
    transition: 0.4s ease;
}
.footer__lang-btn:hover span {
    color: #e84142;
}
.footer__lang-btn:hover svg {
    stroke: #e84142;
}
.footer__lang-btn[aria-expanded="true"] span {
    color: #e84142;
}
.footer__lang-btn[aria-expanded="true"] svg {
    stroke: #e84142;
    transform: rotate(180deg);
}
.footer__lang-dropdown {
    position: absolute;
    background-color: #1e1f21;
    padding: 15px 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 140px;
    border-radius: 8px;
    border: none;
}
.footer__lang-dropdown li {
    margin-bottom: 15px;
    width: 100%;
}
.footer__lang-dropdown li:last-child {
    margin-bottom: 0;
}
.footer__lang-dropdown a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
}
.footer__lang-dropdown a img {
    width: 20px;
    height: auto;
    margin-right: 8px;
    border-radius: 4px;
}
.footer__lang-dropdown a:hover {
    color: #e84142;
}
.footer__lang-dropdown.show {
    display: flex;
}
.footer__btns {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 10px;
}
.footer__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 156px;
    height: 46px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #141414;
    background-color: #b9cbe3;
    text-transform: uppercase;
    margin-right: 20px;
    margin-bottom: 20px;
}
.footer__btn svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    stroke: #141414;
}
.footer__btn:last-child {
    margin-right: 0;
}
.footer__btn--app:hover {
    background-color: #11bbfa;
}
.footer__btn--play:hover {
    background-color: #4889f4;
}
@media (min-width: 768px) {
    .footer {
        padding: 48px 4px 0;
        margin-top: 48px;
    }
    .footer__content {
        margin-top: 18px;
        padding: 0;
        height: 80px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .footer__social {
        width: auto;
        order: 2;
    }
    .footer__social a {
        margin-top: 0;
    }
    .footer__copyright {
        margin-top: 0;
        order: 1;
    }
    .footer__lang {
        margin-bottom: 30px;
    }
}
@media (min-width: 1200px) {
    .footer {
        padding: 56px 40px 0;
        margin-top: 56px;
    }
    .footer__lang {
        margin-bottom: 0;
    }
    .footer__content {
        margin-top: 56px;
    }
}
.botbar {
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 0 8px;
    overflow: hidden;
    z-index: 101;
    background-color: #141414;
    border-top: 1px solid #1e1f21;
}
.botbar__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    width: 64px;
    height: auto;
}
.botbar__btn svg {
    width: 20px;
    height: 20px;
    stroke: #898e95;
}
.botbar__btn span {
    margin-top: 8px;
    font-size: 12px;
    line-height: 100%;
    font-weight: 500;
    text-align: center;
    color: #fff;
    width: 100%;
}
.botbar__btn.active svg {
    stroke: #e84142;
}
@media (min-width: 576px) {
    .botbar {
        padding-left: calc((100vw - 516px) / 2);
        padding-right: calc((100vw - 516px) / 2);
    }
}
@media (min-width: 768px) {
    .botbar {
        display: none;
    }
}
.multisearch {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    top: 70px;
    left: 0;
    bottom: 60px;
    background-color: #141414;
    z-index: 98;
    width: 100vw;
    transform: translate3d(-100vw, 0, 0);
    transition: transform 0.4s ease;
}
.multisearch__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    background-color: #141414;
}
.multisearch__form {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 70px;
    padding: 0 16px;
    border-bottom: 1px solid #1e1f21;
}
.multisearch__dropdown {
    position: relative;
    width: 130px;
    flex-shrink: 0;
    margin-right: 8px;
}
.multisearch__dropdown-btn {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 46px;
    border-radius: 24px;
    background-color: #1e1f21;
    padding: 0 16px;
    font-size: 14px;
    color: #fff;
}
.multisearch__dropdown-btn svg {
    width: 14px;
    height: 14px;
    stroke: #898e95;
    margin-left: auto;
}
.multisearch__dropdown-btn:hover svg,
.multisearch__dropdown-btn.show svg {
    stroke: #e84142;
}
.multisearch__dropdown-menu {
    border-radius: 16px;
    width: 100%;
    min-width: 100%;
    padding: 16px;
    border: 1px solid #1e1f21;
    background: #141414;
    box-shadow: none;
    overflow: hidden;
}
.multisearch__dropdown-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-height: 252px;
    overflow-y: auto;
    padding-right: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid #1e1f21;
    margin-bottom: 8px;
}
.multisearch__dropdown-list:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}
.multisearch__dropdown-list::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.multisearch__dropdown-list::-webkit-scrollbar-button {
    display: none;
}
.multisearch__dropdown-list::-webkit-scrollbar-thumb {
    background: rgba(232, 65, 66, 0.4);
    outline: 0 solid #fff;
    border-radius: 4px;
}
.multisearch__dropdown-list::-webkit-scrollbar-thumb:hover {
    background: #e84142;
}
.multisearch__dropdown-list::-webkit-scrollbar-track {
    background: #1e1f21;
    border-radius: 4px;
}
.multisearch__dropdown-list li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
    cursor: pointer;
}
.multisearch__dropdown-list li:last-child {
    margin-bottom: 0;
}
.multisearch__dropdown-list li:hover span {
    color: #e84142;
}
.multisearch__dropdown-list li.active {
    display: none;
}
.multisearch__dropdown-list span {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    transition: color 0.4s ease;
}
.multisearch__dropdown-list span img,
.multisearch__dropdown-list span svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}
.multisearch__input {
    position: relative;
    width: 100%;
    height: 46px;
    background-color: #1e1f21;
    padding: 0 16px;
    border-radius: 24px;
    border: none;
    font-size: 14px;
    color: #fff;
}
.multisearch__close {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 46px;
    flex-shrink: 0;
    margin-left: 8px;
}
.multisearch__close svg {
    width: 20px;
    height: 20px;
    stroke: #898e95;
}
.multisearch__close:hover svg {
    stroke: #ce2b2b;
}
.multisearch__tags {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 70px;
    padding: 0 16px;
    border-bottom: 1px solid #1e1f21;
    overflow-x: auto;
    overflow-y: hidden;
}
.multisearch__tags::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.multisearch__tags::-webkit-scrollbar-button {
    display: none;
}
.multisearch__tags::-webkit-scrollbar-thumb {
    background: rgba(232, 65, 66, 0.4);
    outline: 0 solid #fff;
    border-radius: 0;
}
.multisearch__tags::-webkit-scrollbar-thumb:hover {
    background: #e84142;
}
.multisearch__tags::-webkit-scrollbar-track {
    background: var(--tf-border);
    border-radius: 0;
}
.multisearch__tag {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 40px;
    padding: 0 16px;
    margin-right: 8px;
    position: relative;
}
.multisearch__tag:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    border-radius: 20px;
}
.multisearch__tag:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 18px;
    bottom: 18px;
    left: 16px;
    right: 16px;
    background-color: #e84142;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.multisearch__tag span {
    position: relative;
    z-index: 3;
    font-size: 14px;
    font-weight: 400;
    color: #898e95;
    white-space: nowrap;
    transition: color 0.4s ease;
}
.multisearch__tag:last-child {
    margin-right: 0;
}
.multisearch__tag:hover span {
    color: #e84142;
}
.multisearch__tag.active span {
    color: #e84142;
}
.multisearch__tag.active:after {
    opacity: 0.8;
}
.multisearch__results {
    width: 100%;
    max-height: calc(100% - 140px);
    overflow-y: auto;
    padding: 16px;
}
.multisearch__results::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.multisearch__results::-webkit-scrollbar-button {
    display: none;
}
.multisearch__results::-webkit-scrollbar-thumb {
    background: rgba(232, 65, 66, 0.4);
    outline: 0 solid #fff;
    border-radius: 0;
}
.multisearch__results::-webkit-scrollbar-thumb:hover {
    background: #e84142;
}
.multisearch__results::-webkit-scrollbar-track {
    background: var(--tf-border);
    border-radius: 0;
}
.multisearch--active {
    transform: translate3d(0, 0, 0);
}
@media (min-width: 576px) {
    .multisearch__form,
    .multisearch__tags,
    .multisearch__results {
        padding-left: calc((100vw - 516px) / 2);
        padding-right: calc((100vw - 516px) / 2);
    }
}
@media (min-width: 768px) {
    .multisearch {
        z-index: 100;
        transform: translate3d(0, 0, 0);
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.7);
        width: auto;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.2s ease;
    }
    .multisearch__content {
        width: 696px;
        height: auto;
        border: 1px solid #1e1f21;
        border-radius: 16px;
        transform: scale(0.9);
        transition: transform 0.6s ease;
        will-change: transform;
    }
    .multisearch__form,
    .multisearch__tags {
        padding-left: 16px;
        padding-right: 16px;
    }
    .multisearch__results {
        height: auto;
        max-height: 60vh;
        padding-left: 16px;
        padding-right: 16px;
    }
    .multisearch--active {
        visibility: visible;
        opacity: 1;
    }
    .multisearch--active .multisearch__content {
        transform: scale(1);
    }
}
@media (min-width: 1200px) {
    .multisearch__content {
        width: 1100px;
    }
}
.sign {
    display: block;
    position: relative;
    width: 100%;
}
.sign .container {
    position: relative;
    z-index: 2;
}
.sign__content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100svh;
    padding: 40px 0;
}
.sign__form {
    background: #141414;
    border: 1px solid #1e1f21;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 30px 20px;
    position: relative;
    width: 100%;
    max-width: 400px;
}
.sign__form--full {
    max-width: 100%;
    margin-top: 16px;
}
.sign__form--comments {
    max-width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 16px;
    margin-top: 24px;
}
.sign__form--comments .sign__group:first-child {
    margin-top: 0;
}
.sign__form--reviews {
    max-width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 16px 24px;
    margin-top: 24px;
}
.sign__form--bg {
    background: #1e1f21;
}
.sign__logo {
    display: block;
    margin-bottom: 10px;
}
.sign__logo a {
    max-width: 100%;
    width: auto;
}
.sign__logo img {
    width: auto;
    height: 24px;
    display: block;
}
.sign__title {
    display: block;
    width: 100%;
    position: relative;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}
.sign__title--center {
    text-align: center;
}
.sign__label {
    font-size: 14px;
    line-height: 100%;
    font-weight: 400;
    height: 14px;
    color: #898e95;
    width: 100%;
    margin-bottom: 10px;
    padding-left: 16px;
    display: inline-block;
}
.sign__label b {
    color: #ce2b2b;
    font-weight: 500;
}
.sign__label--pl {
    padding-left: 0;
}
.sign__label--max {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.sign__label--max b {
    margin-left: 4px;
}
.sign__label--max span {
    margin-left: auto;
}
.sign__label + .sign__radio {
    margin-top: 5px;
}
.sign__input {
    width: 100%;
    background-color: #1e1f21;
    border: 1px solid transparent;
    height: 46px;
    position: relative;
    color: #fff;
    font-size: 14px;
    width: 100%;
    border-radius: 24px;
    padding: 0 16px;
}
.sign__input:focus {
    border-color: #e84142;
}
.sign__textarea {
    border: 1px solid transparent;
    height: 140px;
    position: relative;
    color: #fff;
    font-size: 14px;
    width: 100%;
    padding: 16px;
    resize: none;
    background-color: #1e1f21;
    border-radius: 16px;
}
.sign__textarea:focus {
    border-color: #e84142;
}
.sign__select {
    background: url(../images/style/angle-down.svg) no-repeat center right 20px #1e1f21;
    background-size: 20px auto;
    border: 1px solid transparent;
    border-radius: 24px;
    height: 46px;
    position: relative;
    color: #fff;
    font-size: 14px;
    width: 100%;
    padding: 0 16px;
    cursor: pointer;
}
.sign__select:focus {
    border-color: #e84142;
}
.sign__group {
    position: relative;
    margin-top: 20px;
    width: 100%;
}
.sign__group--checkbox {
    width: 100%;
    text-align: left;
}
.sign__group--checkbox input:not(:checked),
.sign__group--checkbox input:checked {
    position: absolute;
    left: -9999px;
}
.sign__group--checkbox input:not(:checked) + label,
.sign__group--checkbox input:checked + label {
    font-size: 14px;
    color: #898e95;
    font-weight: normal;
    position: relative;
    cursor: pointer;
    padding-left: 34px;
    line-height: 24px;
    margin: 0;
    transition: color 0.4s ease;
}
.sign__group--checkbox input:not(:checked) + label a,
.sign__group--checkbox input:checked + label a {
    color: #e84142;
}
.sign__group--checkbox input:not(:checked) + label a:hover,
.sign__group--checkbox input:checked + label a:hover {
    color: #e84142;
    text-decoration: underline;
}
.sign__group--checkbox input:not(:checked) + label:before,
.sign__group--checkbox input:checked + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: #1e1f21;
    border-radius: 50%;
}
.sign__group--checkbox input:not(:checked) + label:after,
.sign__group--checkbox input:checked + label:after {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    width: 8px;
    height: 8px;
    transition: 0.4s ease;
    background-color: #e84142;
    border-radius: 50%;
}
.sign__group--checkbox input:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}
.sign__group--checkbox input:checked + label {
    color: #fff;
}
.sign__group--checkbox input:checked + label:after {
    opacity: 1;
    transform: scale(1);
}
.sign__group--checkbox label::-moz-selection {
    background: transparent;
    color: #898e95;
}
.sign__group--checkbox label::selection {
    background: transparent;
    color: #898e95;
}
.sign__switch {
    position: relative;
    margin-top: 20px;
    width: 100%;
    min-height: 24px;
    overflow: hidden;
}
.sign__switch label {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 0;
}
.sign__switch label span:first-child {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 0;
}
.sign__switch label span:nth-child(2) {
    font-size: 12px;
    line-height: 16px;
    color: #898e95;
    margin-top: 4px;
}
.sign__switch-input {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
}
.sign__switch-input + label {
    position: relative;
    padding-left: 60px;
    cursor: pointer;
}
.sign__switch-input + label:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 44px;
    height: 24px;
    border-radius: 12px;
    background-color: #1e1f21;
}
.sign__switch-input + label:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    margin: auto;
    transform: translate(0, 0);
    border-radius: 50%;
    background-color: rgba(232, 65, 66, 0.36);
    cursor: pointer;
    transition: 0.4s ease;
}
.sign__switch-input:checked + label:after {
    transform: translate(20px, 0);
    background-color: #e84142;
}
.sign__radio {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
.sign__radio li {
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
}
.sign__radio li:last-child {
    margin-bottom: 0;
}
.sign__radio input:not(:checked),
.sign__radio input:checked {
    position: absolute;
    left: -9999px;
}
.sign__radio label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    margin: 0;
    position: relative;
    font-weight: 400;
    cursor: pointer;
    font-size: 14px;
    color: #898e95;
    line-height: 24px;
    padding-left: 30px;
    transition: color 0.4s ease;
}
.sign__radio label img {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}
.sign__radio label span {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #898e95;
    margin-left: 16px;
    transition: color 0.4s ease;
}
.sign__radio label span img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}
.sign__radio label:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 5px solid #1e1f21;
    background-color: transparent;
    border-radius: 50%;
    left: 0;
    top: 2px;
    transition: border-color 0.4s ease;
}
.sign__radio label:hover {
    color: #fff;
}
.sign__radio input:checked + label {
    color: #fff;
}
.sign__radio input:checked + label span {
    color: #fff;
}
.sign__radio input:checked + label span img {
    opacity: 1;
}
.sign__radio input:checked + label:before {
    border-color: #e84142;
}
.sign__gallery {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 46px;
    overflow: hidden;
    border-radius: 24px;
}
.sign__gallery input {
    position: absolute;
    left: -9999px;
    opacity: 0;
    z-index: 1;
}
.sign__gallery label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 46px;
    color: #fff;
    padding: 0 52px 0 16px;
    background-color: #1e1f21;
    border: 1px solid transparent;
    font-weight: 400;
    margin: 0;
    width: 100%;
    font-size: 14px;
    cursor: pointer;
    transition: 0.4s ease;
    border-radius: 24px;
}
.sign__gallery label:before {
    content: "";
    background: url(../images/style/photo.svg) no-repeat center;
    background-size: 20px 20px;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 46px;
    width: 20px;
}
.sign__gallery label:focus {
    border-color: #e84142;
}
.sign__attachment {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 46px;
    overflow: hidden;
    border-radius: 24px;
}
.sign__attachment input {
    position: absolute;
    left: -9999px;
    opacity: 0;
    z-index: 1;
}
.sign__attachment label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 46px;
    color: #fff;
    padding: 0 52px 0 16px;
    background-color: #1e1f21;
    border: 1px solid transparent;
    font-weight: 400;
    margin: 0;
    width: 100%;
    font-size: 14px;
    cursor: pointer;
    transition: 0.4s ease;
    border-radius: 24px;
}
.sign__attachment label:before {
    content: "";
    background: url(../images/style/paperclip.svg) no-repeat center;
    background-size: 20px 20px;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 46px;
    width: 20px;
}
.sign__attachment label:focus {
    border-color: #e84142;
}
.sign__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 100%;
    border-radius: 24px;
    background-color: #b9cbe3;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}
.sign__btn--modal {
    width: 160px;
    margin: 30px auto 0;
}
.sign__btn:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    background-color: #e84142;
    transition: 0.4s ease;
    transition-property: transform, opacity;
    transform: scale(1);
    opacity: 0;
    transform-origin: center;
    will-change: transform;
    pointer-events: none;
}
.sign__btn span {
    position: relative;
    z-index: 2;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #141414;
    text-transform: uppercase;
    transition: color 0.4s ease;
}
.sign__btn:hover:before {
    opacity: 1;
    transform: scale(8.2);
}
.sign__btn:hover span {
    color: #fff;
}
.sign__btn--big:hover:before {
    transform: scale(14.2);
}
.sign__text {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    line-height: 24px;
    color: #898e95;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}
.sign__text a {
    position: relative;
    color: #e84142;
}
.sign__text a:hover {
    color: #e84142;
    text-decoration: underline;
}
.sign__text--left {
    text-align: left;
}
.sign__delimiter {
    font-size: 14px;
    color: #898e95;
    line-height: 100%;
    margin-top: 15px;
}
.sign__social {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 15px;
}
.sign__social a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    height: 46px;
    width: 100%;
    border-radius: 24px;
    color: #fff;
    font-size: 14px;
}
.sign__social a svg {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    stroke: #fff;
}
.sign__social a.fb {
    background-color: #3b5999;
}
.sign__social a.gl {
    background-color: #df4a32;
}
.sign__social a.tw {
    background-color: #1da1f2;
}
.sign__social a:hover {
    background-color: #fff;
}
.sign__social a:hover.fb {
    color: #3b5999;
}
.sign__social a:hover.fb svg {
    stroke: #3b5999;
}
.sign__social a:hover.gl {
    color: #df4a32;
}
.sign__social a:hover.gl svg {
    stroke: #df4a32;
}
.sign__social a:hover.tw {
    color: #1da1f2;
}
.sign__social a:hover.tw svg {
    stroke: #1da1f2;
}
.sign__dropdown {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 0;
    margin-top: 20px;
}
.sign__dropdown--exchange {
    max-width: 120px;
    margin-top: 0;
}
.sign__dropdown--exchange .sign__dropdown-btn {
    border-radius: 0 24px 24px 0;
}
.sign__dropdown--exchange .sign__dropdown-menu {
    min-width: 120px;
}
.sign__dropdown-btn {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 100%;
    height: 46px;
    background-color: #1e1f21;
    border: 1px solid transparent;
    border-left: 1px solid #141414;
    border-radius: 24px;
    padding: 0 16px;
}
.sign__dropdown-btn img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}
.sign__dropdown-btn span {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-right: 8px;
}
.sign__dropdown-btn svg {
    margin-left: auto;
    width: 14px;
    height: 14px;
    stroke: #898e95;
}
.sign__dropdown-btn.show {
    border-color: #e84142;
}
.sign__dropdown-btn.show svg {
    stroke: #e84142;
}
.sign__dropdown-btn:hover svg {
    stroke: #e84142;
}
.sign__dropdown-menu {
    position: absolute;
    background-color: #141414;
    padding: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-width: 160px;
    border-radius: 16px;
    border: 1px solid #1e1f21;
    box-shadow: none;
    height: auto;
}
.sign__currencies {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-height: 164px;
    overflow-y: auto;
    padding-right: 8px;
}
.sign__currencies::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.sign__currencies::-webkit-scrollbar-button {
    display: none;
}
.sign__currencies::-webkit-scrollbar-thumb {
    background: rgba(232, 65, 66, 0.4);
    outline: 0 solid #fff;
    border-radius: 4px;
}
.sign__currencies::-webkit-scrollbar-thumb:hover {
    background: #e84142;
}
.sign__currencies::-webkit-scrollbar-track {
    background: #141414;
    border-radius: 4px;
}
.sign__currencies li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
    cursor: pointer;
}
.sign__currencies li:last-child {
    margin-bottom: 0;
}
.sign__currencies li:hover span,
.sign__currencies li.active span {
    color: #e84142;
}
.sign__currencies img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}
.sign__currencies span {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #fff;
    transition: color 0.4s ease;
}
.sign__currencies span:first-child {
    color: #fff;
}
.sign__currencies span + span {
    margin-left: auto;
}
.sign__wallet {
    position: relative;
    width: 100%;
}
.sign__wallet .sign__input {
    padding: 0 52px 0 16px;
}
.sign__actions {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 0;
    right: 16px;
}
.sign__actions button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 46px;
    margin-right: 16px;
}
.sign__actions button svg {
    width: 20px;
    height: 20px;
    stroke: #898e95;
}
.sign__actions button:last-child {
    margin-right: 0;
}
.sign__actions button:hover svg {
    stroke: #e84142;
}
.sign__amount {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    position: relative;
}
.sign__amount .sign__input {
    width: calc(100% - 70px);
    border-radius: 24px 0 0 24px;
    padding: 0 52px 0 16px;
    border-right: 1px solid #141414;
}
.sign__amount .sign__input:focus {
    border-color: #e84142;
}
.sign__exchange {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    position: relative;
}
.sign__exchange .sign__input {
    width: calc(100% - 120px);
    border-radius: 24px 0 0 24px;
    border-right: 1px solid #141414;
}
.sign__exchange .sign__input:focus {
    border-color: #e84142;
}
.sign__coin {
    width: 20px;
    height: auto;
    position: absolute;
    right: 86px;
    z-index: 1;
}
.sign__max {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 46px;
    font-size: 14px;
    font-weight: 500;
    color: #898e95;
    background-color: #1e1f21;
    border-left: 1px solid #141414;
    border-radius: 0 24px 24px 0;
}
.sign__max:hover {
    color: #e84142;
}
@media (min-width: 768px) {
    .sign__form {
        padding: 40px 60px;
    }
    .sign__form--full {
        padding: 32px;
    }
    .sign__form--comments {
        padding: 30px;
        margin-top: 30px;
    }
    .sign__form--reviews {
        padding: 6px 30px 30px;
        margin-top: 30px;
    }
    .sign__logo {
        margin-bottom: 20px;
    }
    .sign__btn--small {
        width: 160px;
    }
}
@media (min-width: 1400px) {
    .sign__form--full {
        min-height: calc(100% - 16px);
    }
}
.error {
    display: block;
    position: relative;
    width: 100%;
}
.error .container {
    position: relative;
    z-index: 2;
}
.error__wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100svh;
    padding: 24px 0;
}
.error__content {
    background: #141414;
    border: 1px solid #1e1f21;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    position: relative;
    width: 100%;
    max-width: 400px;
}
.error__title {
    position: relative;
    color: #e84142;
    line-height: 100%;
    font-size: 120px;
    margin-bottom: 8px;
    font-weight: 800;
}
.error__text {
    text-align: center;
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    color: #898e95;
    margin-bottom: 20px;
}
.error__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 100%;
    border-radius: 24px;
    background-color: #b9cbe3;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}
.error__btn:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    background-color: #e84142;
    transition: 0.4s ease;
    transition-property: transform, opacity;
    transform: scale(1);
    opacity: 0;
    transform-origin: center;
    will-change: transform;
    pointer-events: none;
}
.error__btn span {
    position: relative;
    z-index: 2;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #141414;
    text-transform: uppercase;
    transition: color 0.4s ease;
}
.error__btn:hover:before {
    opacity: 1;
    transform: scale(14.2);
}
.error__btn:hover span {
    color: #fff;
}
@media (min-width: 768px) {
    .error__content {
        padding: 40px 60px;
    }
}
.modal .modal-content {
    margin: 0 auto;
    max-width: 420px;
    background-color: transparent;
    border: none;
    border-radius: 16px;
}
.modal .modal-dialog {
    max-width: 420px;
}
.modal__content {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 420px;
    padding: 30px 20px;
    border-radius: 16px;
    background: #141414;
    border: 1px solid #1e1f21;
}
.modal__form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
.modal__title {
    font-weight: 400;
    color: #fff;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 10px;
}
.modal__text {
    color: #898e95;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.modal__text b {
    font-weight: 600;
    color: #898e95;
}
.modal__text a {
    color: #e84142;
}
.modal__text a:hover {
    color: #e84142;
    text-decoration: underline;
}
.modal__text:last-child {
    margin-bottom: 0;
}
.modal__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
}
.modal__list li {
    color: #898e95;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
}
.modal__list li b {
    font-weight: 600;
    color: #898e95;
}
.modal__list li a {
    color: #e84142;
}
.modal__list li a:hover {
    color: #e84142;
    text-decoration: underline;
}
.modal__list li:last-child {
    margin-bottom: 0;
}
.modal__list:last-child {
    margin-bottom: 0;
}
.modal__close {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 30px;
    right: 20px;
    width: 24px;
    height: 24px;
    z-index: 1;
}
.modal__close svg {
    width: 20px;
    height: 20px;
    stroke: #898e95;
}
.modal__close:hover svg {
    stroke: #ce2b2b;
}
.modal__tabs-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-wrap: nowrap;
    width: 100%;
    height: 46px;
    padding: 0 20px;
    border-radius: 24px;
    background: #1e1f21;
    overflow-x: auto;
    border: none;
    margin-top: 20px;
    margin-bottom: 10px;
}
.modal__tabs-nav::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.modal__tabs-nav::-webkit-scrollbar-button {
    display: none;
}
.modal__tabs-nav::-webkit-scrollbar-thumb {
    background: rgba(232, 65, 66, 0.4);
    outline: 0 solid #fff;
    border-radius: 4px;
}
.modal__tabs-nav::-webkit-scrollbar-thumb:hover {
    background: #e84142;
}
.modal__tabs-nav::-webkit-scrollbar-track {
    background: #141414;
    border-radius: 4px;
}
.modal__tabs-nav li {
    margin-right: 20px;
}
.modal__tabs-nav li:last-child {
    margin-right: 0;
}
.modal__tabs-nav button {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: 46px;
    color: #898e95;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}
.modal__tabs-nav button:hover {
    color: #fff;
}
.modal__tabs-nav button:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    display: block;
    background: #e84142;
    box-shadow: none;
    transition: 0.4s ease;
    border-radius: 2px 2px 0 0;
}
.modal__tabs-nav button.active {
    color: #fff;
}
.modal__tabs-nav button.active:before {
    height: 2px;
}
.modal__tabs-content {
    position: relative;
    width: 100%;
}
@media (min-width: 576px) {
    .modal__tabs-nav li {
        margin-right: 24px;
    }
    .modal__tabs-nav li:last-child {
        margin-right: 0;
    }
}
@media (min-width: 768px) {
    .modal__content {
        padding: 30px;
    }
    .modal__close {
        right: 30px;
    }
}
.modal-dialog {
    padding-right: 8px;
    padding-left: 8px;
}
.modal-backdrop {
    background: rgba(0, 0, 0, 0.7);
}
.modal-backdrop.show {
    opacity: 1;
}
.splide.is-focus-in .splide__arrow:focus {
    outline: none;
    outline-offset: 0;
}
.splide__list {
    transform-style: flat;
}
.splide--items .splide__arrows,
.splide--partners .splide__arrows,
.splide--contests .splide__arrows,
.splide--online .splide__arrows,
.splide--news .splide__arrows,
.splide--roadmap .splide__arrows {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
}
.splide--items .splide__arrow,
.splide--partners .splide__arrow,
.splide--contests .splide__arrow,
.splide--online .splide__arrow,
.splide--news .splide__arrow,
.splide--roadmap .splide__arrow {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #1e1f21;
    border: none;
    opacity: 1 !important;
    transform: translateY(0);
}
.splide--items .splide__arrow svg,
.splide--partners .splide__arrow svg,
.splide--contests .splide__arrow svg,
.splide--online .splide__arrow svg,
.splide--news .splide__arrow svg,
.splide--roadmap .splide__arrow svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
}
.splide--items .splide__arrow--next,
.splide--partners .splide__arrow--next,
.splide--contests .splide__arrow--next,
.splide--online .splide__arrow--next,
.splide--news .splide__arrow--next,
.splide--roadmap .splide__arrow--next {
    right: auto;
}
.splide--items .splide__arrow--next svg,
.splide--partners .splide__arrow--next svg,
.splide--contests .splide__arrow--next svg,
.splide--online .splide__arrow--next svg,
.splide--news .splide__arrow--next svg,
.splide--roadmap .splide__arrow--next svg {
    margin-left: 1px;
}
.splide--items .splide__arrow--prev,
.splide--partners .splide__arrow--prev,
.splide--contests .splide__arrow--prev,
.splide--online .splide__arrow--prev,
.splide--news .splide__arrow--prev,
.splide--roadmap .splide__arrow--prev {
    left: auto;
    margin-right: 8px;
}
.splide--items .splide__arrow--prev svg,
.splide--partners .splide__arrow--prev svg,
.splide--contests .splide__arrow--prev svg,
.splide--online .splide__arrow--prev svg,
.splide--news .splide__arrow--prev svg,
.splide--roadmap .splide__arrow--prev svg {
    transform: scaleX(1);
    margin-right: 1px;
}
.splide--timetable {
    width: calc(100% - 80px);
    margin: 0 auto;
}
.splide--timetable .splide__arrow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background-color: #b9cbe3;
    opacity: 1;
    top: 36%;
}
.splide--timetable .splide__arrow span {
    display: none;
}
.splide--timetable .splide__arrow svg {
    width: 20px;
    height: 20px;
    stroke: #141414;
    fill: none;
}
.splide--timetable .splide__arrow--prev {
    left: auto;
    right: 100%;
    margin-right: 10px;
}
.splide--timetable .splide__arrow--prev svg {
    transform: scaleX(1);
    margin-right: 1px;
}
.splide--timetable .splide__arrow--next {
    right: auto;
    left: 100%;
    margin-left: 10px;
}
.splide--timetable .splide__arrow--next svg {
    margin-left: 1px;
}
.splide--timetable .splide__arrow[disabled] {
    opacity: 0.4;
}
.splide--hero .splide__pagination,
.splide--carousel .splide__pagination {
    bottom: 0;
}
.splide--hero .splide__pagination li,
.splide--carousel .splide__pagination li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 8px;
    height: 8px;
    line-height: 0;
    margin-right: 8px;
}
.splide--hero .splide__pagination li:last-child,
.splide--carousel .splide__pagination li:last-child {
    margin-right: 0;
}
.splide--hero .splide__pagination__page,
.splide--carousel .splide__pagination__page {
    background-color: rgba(232, 65, 66, 0.2);
    margin: 0;
    opacity: 1;
    backdrop-filter: blur(4px);
    transition: background-color 0.4s ease;
}
.splide--hero .splide__pagination__page.is-active,
.splide--carousel .splide__pagination__page.is-active {
    transform: scale(1);
    opacity: 1;
    background-color: rgba(232, 65, 66, 0.4);
}
.splide--hero .splide__arrows,
.splide--carousel .splide__arrows {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 112px;
    position: absolute;
    top: 50%;
    right: 0;
    background-color: #141414;
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 32px 0 0 32px;
    border: 1px solid #1e1f21;
    border-right: none;
}
.splide--hero .splide__arrows:before,
.splide--carousel .splide__arrows:before,
.splide--hero .splide__arrows:after,
.splide--carousel .splide__arrows:after {
    content: "";
    position: absolute;
    display: block;
    right: 0;
    width: 32px;
    height: 32px;
    background-color: transparent;
}
.splide--hero .splide__arrows:before,
.splide--carousel .splide__arrows:before {
    border-radius: 0 0 32px 0;
    bottom: 100%;
    box-shadow: 8px 8px 0 8px #141414;
    border-right: 1px solid #1e1f21;
    border-bottom: 1px solid #1e1f21;
}
.splide--hero .splide__arrows:after,
.splide--carousel .splide__arrows:after {
    border-radius: 0 32px 0 0;
    top: 100%;
    box-shadow: 8px -8px 0 8px #141414;
    border-right: 1px solid #1e1f21;
    border-top: 1px solid #1e1f21;
}
.splide--hero .splide__arrow,
.splide--carousel .splide__arrow {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #1e1f21;
    border: none;
    opacity: 1 !important;
    transform: translateY(0);
    top: auto;
}
.splide--hero .splide__arrow svg,
.splide--carousel .splide__arrow svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
}
.splide--hero .splide__arrow--next,
.splide--carousel .splide__arrow--next {
    right: auto;
}
.splide--hero .splide__arrow--next svg,
.splide--carousel .splide__arrow--next svg {
    margin-left: 1px;
}
.splide--hero .splide__arrow--prev,
.splide--carousel .splide__arrow--prev {
    left: auto;
    margin-bottom: 8px;
}
.splide--hero .splide__arrow--prev svg,
.splide--carousel .splide__arrow--prev svg {
    transform: scaleX(1);
    margin-right: 1px;
}
.splide--carousel .splide__pagination {
    bottom: -24px;
}
.splide--carousel .splide__arrows {
    width: 56px;
}
@media (min-width: 768px) {
    .splide--timetable {
        width: 100%;
    }
    .splide--timetable .splide__arrow {
        display: none;
    }
    .splide--carousel .splide__arrows {
        border: none;
        align-items: flex-end;
        width: 46px;
        border-radius: 32px 0 0 32px;
    }
    .splide--carousel .splide__arrows:before,
    .splide--carousel .splide__arrows:after {
        border: none;
        width: 16px;
        height: 16px;
    }
    .splide--carousel .splide__arrows:before {
        border-radius: 0 0 16px 0;
    }
    .splide--carousel .splide__arrows:after {
        border-radius: 0 16px 0 0;
    }
    .splide--carousel .splide__track {
        border-radius: 16px;
    }
}
@media (min-width: 1200px) {
    .splide--timetable {
        width: 700px;
        margin: 0;
    }
    .splide--items .splide__arrow:hover svg,
    .splide--partners .splide__arrow:hover svg,
    .splide--hero .splide__arrow:hover svg,
    .splide--contests .splide__arrow:hover svg,
    .splide--carousel .splide__arrow:hover svg,
    .splide--online .splide__arrow:hover svg,
    .splide--news .splide__arrow:hover svg,
    .splide--roadmap .splide__arrow:hover svg {
        stroke: #e84142;
    }
}
.plyr {
    font-family: "Onest", sans-serif;
    font-weight: 400;
    border-radius: 16px;
    margin-top: 0;
}
.plyr__video-wrapper {
    background: #1e1f21;
}
.plyr__poster {
    background-color: #1e1f21;
}
.plyr--video {
    background: #1e1f21;
}
.plyr__menu__container .plyr__control {
    transition: 0s ease;
}
.plyr__control.plyr__control--overlaid {
    border-radius: 50%;
}
.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded="true"] {
    background: none;
    background-color: #e84142;
}
.plyr--video .plyr__control--overlaid {
    box-shadow: none;
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transition: 0.4s ease;
    transition-property: opacity, background-color, color, border-color, transform;
    color: #63686f;
    border: 8px solid rgba(255, 255, 255, 0.2);
    padding: 0;
    backdrop-filter: blur(4px);
}
.plyr--video .plyr__control--overlaid:before {
    content: "";
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url(../images/style/play.svg) no-repeat center;
    background-size: 28px 28px;
    background-color: #141414;
    z-index: 1;
}
.plyr--video .plyr__control--overlaid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url(../images/style/play-hover.svg) no-repeat center;
    background-size: 28px 28px;
    background-color: transparent;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.plyr--video .plyr__control--overlaid svg {
    display: none;
}
.plyr--video .plyr__control--overlaid:hover,
.plyr--video .plyr__control--overlaid.plyr__tab-focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(232, 65, 66, 0.3);
    color: #e84142;
}
.plyr--video .plyr__control--overlaid:hover:after,
.plyr--video .plyr__control--overlaid.plyr__tab-focus:after {
    opacity: 1;
}
.plyr--video .plyr__progress__buffer {
    box-shadow: none;
}
.plyr__progress__buffer {
    border-radius: 0;
}
.plyr--full-ui input[type="range"] {
    color: #e84142;
    border-radius: 0;
}
.plyr__tab-focus {
    box-shadow: none;
    outline: none;
}
.plyr__tooltip {
    font-weight: 400;
}
.plyr__control.plyr__tab-focus {
    box-shadow: none;
}
.plyr__menu__container .plyr__control[role="menuitemradio"][aria-checked="true"]::before {
    background: none;
    background-color: #e84142;
}
.plyr__control {
    border-radius: 8px;
}
.plyr--video .plyr__control svg {
    filter: none;
}
.tooltip {
    font-size: 12px;
    font-weight: 600;
}
.tooltip.show {
    opacity: 1;
}
.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
    border-top-color: #b9cbe3;
}
.bs-tooltip-end .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
    border-right-color: #b9cbe3;
}
.bs-tooltip-bottom .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
    border-bottom-color: #b9cbe3;
}
.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
    border-left-color: #b9cbe3;
}
.tooltip-inner {
    background-color: #b9cbe3;
    color: #141414;
    border-radius: 8px;
}
@-moz-keyframes moveBackground {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(10%, 10%) rotate(15deg);
    }
    100% {
        transform: translate(-10%, -10%) rotate(-15deg);
    }
}
@-webkit-keyframes moveBackground {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(10%, 10%) rotate(15deg);
    }
    100% {
        transform: translate(-10%, -10%) rotate(-15deg);
    }
}
@-o-keyframes moveBackground {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(10%, 10%) rotate(15deg);
    }
    100% {
        transform: translate(-10%, -10%) rotate(-15deg);
    }
}
@keyframes moveBackground {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(10%, 10%) rotate(15deg);
    }
    100% {
        transform: translate(-10%, -10%) rotate(-15deg);
    }
}
@-moz-keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@-webkit-keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@-o-keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@-moz-keyframes animStar {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-1900px);
    }
}
@-webkit-keyframes animStar {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-1900px);
    }
}
@-o-keyframes animStar {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-1900px);
    }
}
@keyframes animStar {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-1900px);
    }
}
@-moz-keyframes moveDot {
    0%,
    100% {
        top: 0;
        left: 0;
    }
    25% {
        top: 0;
        left: calc(100% - 32px);
    }
    50% {
        top: calc(100% - 32px);
        left: calc(100% - 32px);
    }
    75% {
        top: calc(100% - 32px);
        left: 0;
    }
}
@-webkit-keyframes moveDot {
    0%,
    100% {
        top: 0;
        left: 0;
    }
    25% {
        top: 0;
        left: calc(100% - 32px);
    }
    50% {
        top: calc(100% - 32px);
        left: calc(100% - 32px);
    }
    75% {
        top: calc(100% - 32px);
        left: 0;
    }
}
@-o-keyframes moveDot {
    0%,
    100% {
        top: 0;
        left: 0;
    }
    25% {
        top: 0;
        left: calc(100% - 32px);
    }
    50% {
        top: calc(100% - 32px);
        left: calc(100% - 32px);
    }
    75% {
        top: calc(100% - 32px);
        left: 0;
    }
}
@keyframes moveDot {
    0%,
    100% {
        top: 0;
        left: 0;
    }
    25% {
        top: 0;
        left: calc(100% - 32px);
    }
    50% {
        top: calc(100% - 32px);
        left: calc(100% - 32px);
    }
    75% {
        top: calc(100% - 32px);
        left: 0;
    }
}
@-moz-keyframes onlineDot {
    0%,
    100% {
        opacity: 0.24;
    }
    25% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0.6;
    }
}
@-webkit-keyframes onlineDot {
    0%,
    100% {
        opacity: 0.24;
    }
    25% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0.6;
    }
}
@-o-keyframes onlineDot {
    0%,
    100% {
        opacity: 0.24;
    }
    25% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0.6;
    }
}
@keyframes onlineDot {
    0%,
    100% {
        opacity: 0.24;
    }
    25% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0.6;
    }
}
