html {
    font-family: sans-serif, "Arial";
    line-height: 1.15
}

.header {
    position: fixed;
    z-index: 100;
    width: 100%
}

.header__wrapper {

}

.header__block {
    background: #1c1d2bf2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    z-index: 100;
    margin-top: 15px;
}

.header__logo-name,
.header__logo-name span {
    font-size: 36px;
    color: #fff;
    line-height: 50px;
}

.header__logo-name span {
    color: #5383c1;
}

.header__logo {
    height: 50px;
    width: 126px
}

.header__right-section {
    display: flex;
    align-items: center
}

.reg-button {
    align-items: center;
    border: 2px solid #ffc107;
    border-radius: 5px;
    display: flex;
    font-size: 12px;
    font-weight: 700;
    height: 40px;
    justify-content: center;
    outline: none;
    padding: 10px 12px;
    text-transform: uppercase;
    width: 80px;
    min-width: 140px;
    display: none
}

.reg-button svg {
    margin-right: 6px;
    width: 20px;
    height: 20px
}

.reg-button span {
    color: #ffc107;
}

.header__login {
    align-items: center;
    border: 2px solid #5383c1;
    border-radius: 5px;
    display: flex;
    font-size: 12px;
    font-weight: 700;
    height: 40px;
    justify-content: center;
    outline: none;
    padding: 10px 12px;
    text-transform: uppercase;
    width: 80px;
    background: #5383c1;
    color: #fff;
    margin-right: 10px;
    text-shadow: 1px 1px 0 #5383c1;
    border-color: #b4f2ff #5383c1 #5383c1;
    box-shadow: inset 0 -10px 10px 0 #5383c1;
}

.header__easy-bar {
    overflow-y: scroll;
    transition: .2s ease-in-out;
    visibility: hidden;
    background: rgba(44, 46, 71, .96);
    z-index: 10;
    position: absolute;
    top: 60px;
    left: 0;
    width: 95%;
    height: calc(100vh - 60px);
    max-width: 400px;
    transform: translateX(-400px)
}

.header__easy-bar.active {
    transform: translateX(0);
    transition: .2s ease-in-out;
    visibility: visible
}

.header__icons {
    padding-bottom: 20px
}

.header__clearboth {
    z-index: 1;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, .4)
}

.header__clearboth.active {
    height: calc(100vh - 60px)
}

.header__drop-panel {
    background: rgba(44, 46, 71, .96);
    height: 0;
    transition: .3s;
    overflow: hidden
}

.nav {
    display: flex;
    margin-top: 25px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #363952
}

.header-left-nav-bar-section {
    margin-left: 10px;
    width: 100%
}

.header-left-nav-bar-section__item {
    padding: 8px;
    margin-top: 10px
}

.header-left-nav-bar-section__item:first-child {
    margin-top: 0
}

.header-left-nav-bar-section__link {
    color: #31a9ca;
    display: flex;
    align-items: center;
    position: relative
}

.header-left-nav-bar-section__link-name {
    text-transform: uppercase;
    margin-left: 10px;
    font-size: 11px;
    font-weight: 700
}

.header-left-nav-bar-section__icon {
    fill: #31a9ca;
    width: 24px;
    height: 24px
}

.header-left-nav-bar-section__new-label {
    position: absolute;
    top: -8px;
    right: -11px
}

.header-right-nav {
    margin: 0 10px;
    width: 100%
}

.header-right-nav__item {
    padding: 8px;
    margin-top: 10px
}

.header-right-nav__item:first-child {
    margin-top: 0
}

.header-right-nav__item.active {
    background: #e2dff5;
    border-radius: 6px
}

.header-right-nav__item.active svg,
.header-right-nav__item.active span {
    color: #000;
    filter: brightness(0)
}

.header-right-nav__item--gold span {
    color: #ffc107
}

.header-right-nav__link {
    display: flex;
    align-items: center;
    position: relative
}

.header-right-nav__link-name {
    text-transform: uppercase;
    margin-left: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #9491b9
}

.header-right-nav__icon {
    width: 24px;
    height: 24px
}

.toggle-box {
    display: block;
    border: 2px solid #444867;
    border-radius: 5px;
    padding: 6px
}

.toggle-box:hover {
    cursor: pointer
}

.toggle-box__bar {
    width: 25px;
    height: 4px;
    background-color: #e0def3;
    margin: 5px auto;
    transition: all .3s ease-in-out;
    display: block;
    border-radius: 20px
}

.toggle-box__bar:first-child {
    margin-top: 0
}

.toggle-box__bar:last-child {
    margin-bottom: 0
}

.toggle-box.active {
    background: #03a9f4;
    border-color: #03a9f4
}

.toggle-box.active .toggle-box__bar:nth-child(2) {
    opacity: 0
}

.toggle-box.active .toggle-box__bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg)
}

.toggle-box.active .toggle-box__bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg)
}

@media(min-width: 330px) {
    .header-left-nav-bar-section__icon,
    .header-right-nav__icon {
        width: 30px;
        height: 30px
    }
    .header-left-nav-bar-section__link-name,
    .header-right-nav__link-name {
        font-size: 13px
    }
}

@media(min-width: 350px) {
    .header-left-nav-bar-section__item,
    .header-right-nav__item {
        padding: 10px 12px
    }
}

@media(min-width: 568px) {
    .header__block {
        padding: 0 15px;
    }
    .header__auth-buttons {
        display: flex
    }
    .reg-button {
        display: flex;
        margin-right: 10px;
        height: 44px
    }
    .header__login {
        width: 140px;
        height: 44px
    }
    .header__easy-bar {
        top: 80px;
        height: calc(100vh - 80px)
    }
    .header__clearboth {
        top: 80px
    }
}

@media(min-width: 991px) {
    .header__login {
        width: 140px
    }
}

@media(min-width: 1100px) {
    .toggle-box {
        display: none
    }
    .header-left-nav-bar-section {
        display: none
    }
    .header {
        padding: 20px 25px 20px 15px;
        background: #1c1d2bf2;
        position: fixed;
        width: 100%;
        z-index: 1000;
        height: 116px;
    }
    .header--modify {
        position: relative;
        height: 315px
    }
    .header--modify.bg-transparent {
        background: transparent
    }
    .header--modify .header__block {
        background: none
    }
    .header__wrapper--modify {
        width: 960px;
        margin: 0 auto
    }
    .header__block {
        padding: 0
    }
    .header__logo {
        height: 75px;
        width: 170px;
        transition: .3s
    }
    .header__logo:hover {
        transition: .3s;
        opacity: .75
    }
    .reg-button {
        transition: .3s
    }
    .reg-button:hover {
        transition: .3s;
        border: 2px solid #cccddc
    }
    .reg-button:hover svg {
        filter: brightness(3)
    }
    .reg-button:hover span {
        color: #fff
    }
    .header__login {
        margin: 0;
        transition: .3s
    }
    .header__login span {
        transition: .3s
    }
    .header__login:hover {
        transition: .3s;
        box-shadow: inset 0 -10px 40px 0 #2fb7ce;
        border-color: #2fb7ce
    }
    .header__login:hover span {
        transition: .3s;
        transform: scale(1.1)
    }
    .header__clearboth {
        display: none
    }
    .header__easy-bar {
        background: transparent;
        visibility: visible;
        transform: translateY(-50%);
        top: 50%;
        left: 165px;
        max-width: -webkit-max-content;
        max-width: -moz-max-content;
        max-width: max-content;
        height: inherit;
        overflow: hidden
    }
    .header-right-nav {
        display: flex
    }
    .header-right-nav__item {
        padding: 0;
        margin: 0;
        transition: .3s
    }
    .header-right-nav__item span {
        margin: 8px 0 0 0
    }
    .header-right-nav__item.active {
        background: none
    }
    .header-right-nav__item.active span,
    .header-right-nav__item.active svg {
        color: #e0def4;
        filter: brightness(1.5)
    }
    .header-right-nav__item:hover {
        transition: .3s
    }
    .header-right-nav__item:hover span,
    .header-right-nav__item:hover svg {
        color: #e0def4;
        filter: brightness(1.5)
    }
    .header-right-nav__item--gold {
        transition: .3s
    }
    .header-right-nav__item--gold:hover {
        transition: .3s
    }
    .header-right-nav__item--gold:hover .header-right-nav__icon {
        filter: brightness(1.5)
    }
    .header-right-nav__item--gold:hover .header-right-nav__link-name {
        color: #f3d358
    }
    .header-right-nav__icon {
        width: 30px;
        height: 30px
    }
    .header-right-nav__link {
        margin: 5px 15px;
        flex-direction: column
    }
    .header-right-nav__link-name {
        line-height: 13px;
        font-size: 13px
    }
    .nav {
        margin: 0;
        padding: 0;
        border-bottom: none
    }
}

@media(min-width: 1300px) {
    .header__wrapper--modify {
        width: 1140px
    }
}

@media(min-width: 1600px) {
    .header__easy-bar {
        left: 205px
    }
}

body {
    background: #1e1f2f
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    margin: 0
}

.wrapper {
    position: relative;
    margin-bottom: 50px;
    padding: 104px 15px 0 15px
}

@media(min-width: 568px) {
    .wrapper {
        padding: 124px 15px 0 15px
    }
}

.wrapper__title {
    color: #dfe0ef;
    font-size: 18px;
    text-align: left;
    line-height: 22px;
    margin: 0 0 20px
}

.games-block__wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px
}

.new-label {
    background: #d11919;
    border-radius: 3px;
    color: #fff;
    padding: 2px 5px;
    font-size: 8px;
    text-transform: uppercase;
    font-weight: 700
}

.icons {
    display: flex;
    justify-content: center
}

.icons__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #373553;
    cursor: pointer;
    margin: 4px;
    display: flex;
    justify-content: center;
    align-items: center
}

.icons__icon svg {
    width: 20px;
    height: 20px
}

.info {
    background: #2a2a44;
    border: 1px solid #2f2e4b;
    border-radius: 5px;
    padding: 32px;
    margin-bottom: 30px
}

.info__title {
    color: #ffc107;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin-top: 25px
}

.info__title:first-child {
    margin-top: 0
}

.info__list {
    margin-top: 12px;
    padding-left: 20px;
    list-style-type: decimal
}

.info__list--disc {
    list-style-type: disc
}

.info__item {
    color: #fff;
    font-size: 15px;
    margin-top: 8px
}

.info__item:first-child {
    margin-top: 0
}

.info__item ul {
    padding-left: 20px;
    list-style-type: disc
}

.info__desc {
    color: #fff;
    font-size: 15px;
    margin-top: 8px
}

.content-wrapper {
    margin-bottom: 30px
}

@media(min-width: 410px) {
    .games-block__wrapper {
        margin-right: -10px;
        margin-left: -10px
    }
}

@media(min-width: 576px) {
    .wrapper {
        width: 540px;
        margin: 0 auto
    }
}

@media(min-width: 768px) {
    .wrapper {
        width: 720px
    }
}

@media(min-width: 992px) {
    .wrapper {
        width: 960px
    }
    .content-wrapper {
        display: flex
    }
    .info {
        flex-basis: 66.66%;
        margin-right: 15px
    }
    .info__item {
        font-size: 16px
    }
    .info__desc {
        font-size: 16px
    }
}

@media(min-width: 1100px) {
    .icons {
        display: none
    }
    .wrapper {
        padding-top: 184px
    }
    .wrapper--modify {
        padding-top: 0
    }
}

@media(min-width: 1300px) {
    .wrapper {
        width: 1140px
    }
}

.footer {
    margin: 60px 0
}

.footer__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center
}

.footer__title-section {
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff
}

.footer__privacy-policy {
    margin-top: 20px
}

.footer__privacy-policy-link {
    display: block;
    color: #9f9cc7;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
    transition: .3s
}

.footer__privacy-policy-link:last-child {
    margin-bottom: 0
}

.footer__privacy-policy-link:hover {
    color: #fff;
    transition: .3s
}

.footer__logo {
    margin-top: 45px;
    text-align: center;
    display: block
}

.footer__logo-icon {
    width: 100px;
    height: 47px;
    transition: .3s
}

.footer__logo-icon:hover {
    opacity: .7;
    transition: .3s
}

.footer__desc {
    color: #7c7d9c;
    text-align: center;
    font-size: 14px
}

.footer__start-btn {
    margin-top: 10px;
    width: 150px;
    height: 40px;
    font-size: 14px;
    text-transform: uppercase;
    background: #66ddf6;
    text-shadow: 1px 1px 0 #2fb7ce;
    box-shadow: inset 0 -10px 10px 0 #2fb7ce;
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    transition: .3s
}

.footer__start-btn:hover {
    background: #3b4574;
    transform: scale(1.05);
    transition: .3s;
    box-shadow: none
}

.payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    margin-top: 15px
}

.payments__list-item img {
    height: 24px;
    max-width: 74px;
    margin: 8px 6px
}

@media(min-width: 567px) {
    .footer__title-section {
        margin-top: 35px;
        order: 2
    }
    .footer-section__payments {
        order: 3
    }
    .footer__privacy-policy {
        order: 4
    }
    .footer__logo {
        order: 1;
        margin-top: 0
    }
    .footer__desc {
        order: 2
    }
    .footer__start-btn {
        order: 3
    }
}

@media(min-width: 768px) {
    .footer__privacy-policy {
        display: flex
    }
    .footer__privacy-policy-link {
        margin-bottom: 0;
        margin-right: 50px
    }
    .footer__privacy-policy-link:last-child {
        margin-right: 0
    }
}

*,
*::before,
*::after {
    box-sizing: border-box
}

ul,
ol {
    padding: 0
}

body,
h1,
h2,
h3,
h4,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5
}

ul,
ol {
    list-style: none
}

a:not([class]) {
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

img {
    max-width: 100%;
    display: block
}

input,
button,
textarea,
select {
    font: inherit
}

@media(prefers-reduced-motion: reduce) {
    * {
        -webkit-animation-duration: .01ms !important;
        animation-duration: .01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
    }
}

.faq-section-wrapper {
    margin: 20px 0
}

.faq-item {
    margin: 30px 0
}

.faq-section__button {
    background-color: #2a2a44;
    color: #7c7d9c;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none
}

.faq-section__button.active,
.faq-section__button .faq-section__button:hover {
    color: #22a2c2
}

.faq-section__button:before {
    content: "";
    background: url("/includes/sprite.svg#chevron") no-repeat;
    color: #fff;
    font-weight: bold;
    float: left;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    transform: rotate(-90deg);
    transition: .3s
}

.faq-section__button.active:before {
    transform: rotate(0deg);
    transition: .3s
}

.faq-section__content {
    transition: .3s;
    color: #fff;
    background-color: #2a2a44;
    overflow: hidden;
    height: 0;
    visibility: visible
}

.faq-section__content-text {
    padding: 10px
}

.review-item {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #7c7d9c;
    border-bottom: 1px solid #7c7d9c;
    padding: 15px 0
}

.review__author {
    color: #fff
}

.review_date-published {
    color: #22a2c2
}

.review__description-text {
    color: #7c7d9c
}

.review__button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #66ddf6;
    text-shadow: 1px 1px 0 #2fb7ce;
    border-color: #b4f2ff #2fb7ce #2fb7ce;
    box-shadow: inset 0 -10px 10px 0 #2fb7ce;
    color: #fff;
    border-radius: 5px;
    height: 40px;
    width: 80px;
    font-size: 12px;
    text-transform: uppercase;
    margin-left: auto;
    margin-top: 10px
}

@media(min-width: 991px) {
    .review__button {
        font-weight: 700;
        letter-spacing: 1px;
        width: 100px;
        transition: .3s
    }
    .review__button:hover {
        width: 110px;
        background: #3b4574;
        transition: .3s;
        box-shadow: none
    }
}

.main-table {
    background: #383859;
    border-radius: 5px;
    font-size: 12px;
    margin: 40px 0;
    width: 100%
}

.main-table tr {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #2f2e4b;
    padding: 20px 10px
}

.main-table tr:last-child {
    border-bottom: none
}

.main-table__name {
    display: flex;
    align-items: center;
    flex-basis: 50%
}

.general-data__title-img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: #22a2c2
}

.main-table__name span {
    color: #fff
}

.main-table__value {
    flex-basis: 50%;
    color: #0aa1c7;
}

.game-item-stats {
    background: #2a2a44;
    border-radius: 5px;
    font-size: 12px;
    margin: 40px 0;
    width: 100%
}

.game-item-stats__row {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #2f2e4b;
    padding: 20px 10px
}

.game-item-stats__row:last-child {
    border-bottom: none
}

.game-item-stats__title {
    display: flex;
    align-items: center;
    color: #fff
}

.game-item-stats__title:nth-child(1) {
    flex-basis: 33.3%
}

.game-item-stats__title:nth-child(2) {
    display: none
}

.game-item-stats__title:nth-child(3) {
    flex-basis: 25%;
    justify-content: center
}

.game-item-stats__title:nth-child(4) {
    flex-basis: 16.66%;
    justify-content: center
}

.game-item-stats__title:nth-child(5) {
    flex-basis: 25%;
    justify-content: center
}

.game-item-stats__title--time {
    display: none
}

.game-item-stats__player,
.game-item-stats__card,
.game-item-stats__rate,
.game-item-stats__coefficient,
.game-item-stats__win,
.game-item-stats__time {
    display: flex;
    align-items: center;
    width: 100%
}

.game-item-stats__player {
    flex-basis: 33.3%
}

.game-item-stats__rate {
    flex-basis: 25%;
    justify-content: center
}

.game-item-stats__coefficient {
    flex-basis: 16.66%;
    justify-content: center
}

.game-item-stats__win {
    flex-basis: 25%;
    justify-content: center
}

.game-item-stats__player-name {
    color: #fff;
    margin-left: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 35px
}

.game-item-stats__card {
    display: none
}

.game-item-stats__card-img {
    width: 24px;
    height: 24px;
    fill: #22a2c2
}

.game-item-stats__card-name {
    margin-left: 10px;
    color: #22a2c2
}

.game-item-stats__rate-info,
.game-item-stats__win-info {
    margin-right: 3px
}

.game-item-stats__rate-info,
.game-item-stats__coefficient,
.game-item-stats__win-info,
.game-item-stats__time {
    color: #fff
}

.game-item-stats__rate-img,
.game-item-stats__win-img {
    width: 14px;
    height: 14px
}

.game-item-stats__time {
    display: none
}

.player-logo {
    position: relative
}

.player-logo__avatar-box {
    width: 40px;
    height: 40px;
    padding: 2px;
    border: 2px solid #64648e;
    border-radius: 50%;
    display: block;
    overflow: hidden
}

.player-logo__avatar {
    border-radius: 50%
}

.player-logo__rank-box {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50%;
    background: rgba(42, 41, 68, .75);
    display: flex;
    justify-content: center;
    align-items: center
}

.player-logo__rank {
    display: block;
    width: 71%
}

@media(min-width: 375px) {
    .game-item-stats__player-name {
        max-width: 55px
    }
    .game-item-stats__rate-info,
    .game-item-stats__win-info {
        margin-right: 6px
    }
}

@media(min-width: 425px) {
    .game-item-stats__player-name {
        max-width: 70px
    }
    .game-item-stats__rate-info,
    .game-item-stats__win-info {
        margin-right: 6px
    }
}

@media(min-width: 768px) {
    .general-data__title-img {
        width: 30px;
        height: 30px
    }
    .main-table__name span {
        font-size: 14px
    }
    .main-table__value {
        font-size: 14px
    }
    .game-item-stats {
        font-size: 15px
    }
    .game-item-stats__title:nth-child(1) {
        flex-basis: 25%
    }
    .game-item-stats__title:nth-child(2) {
        display: flex;
        flex-basis: 25%
    }
    .game-item-stats__title:nth-child(3) {
        flex-basis: 16.66%
    }
    .game-item-stats__title:nth-child(4) {
        flex-basis: 16.66%
    }
    .game-item-stats__title:nth-child(5) {
        flex-basis: 16.66%
    }
    .game-item-stats__player {
        flex-basis: 25%
    }
    .game-item-stats__card {
        display: flex;
        flex-basis: 25%
    }
    .game-item-stats__rate {
        flex-basis: 16.66%
    }
    .game-item-stats__coefficient {
        flex-basis: 16.66%
    }
    .game-item-stats__win {
        flex-basis: 16.66%
    }
}

@media(min-width: 1000px) {
    .game-item-stats {
        font-size: 15px
    }
    .game-item-stats__row {
        padding: 14px 29px
    }
    .game-item-stats__title:nth-child(1) {
        flex-basis: 25%
    }
    .game-item-stats__title:nth-child(2) {
        display: flex;
        flex-basis: 16.66%
    }
    .game-item-stats__title:nth-child(3) {
        flex-basis: 16.66%
    }
    .game-item-stats__title:nth-child(4) {
        flex-basis: 16.66%
    }
    .game-item-stats__title:nth-child(5) {
        flex-basis: 16.66%
    }
    .game-item-stats__title:nth-child(6) {
        display: flex;
        flex-basis: 8.33%;
        justify-content: center
    }
    .game-item-stats__player {
        flex-basis: 25%
    }
    .game-item-stats__card {
        display: flex;
        flex-basis: 16.66%
    }
    .game-item-stats__rate {
        flex-basis: 16.66%
    }
    .game-item-stats__coefficient {
        flex-basis: 16.66%
    }
    .game-item-stats__win {
        flex-basis: 16.66%
    }
    .game-item-stats__time {
        display: flex;
        flex-basis: 8.33%;
        justify-content: center
    }
    .game-item-stats__rate-img,
    .game-item-stats__win-img {
        width: 18px;
        height: 18px
    }
}

@media(min-width: 1200px) {
    .main-table tr {
        padding: 20px 30px
    }
}

.content {
    margin: 40px 0
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6,
.custom-headline-2 {
    color: #dfe0ef;
    text-align: left;
    line-height: 22px;
    margin: 0 0 15px
}

.content h1 {
    font-size: 26px;
    margin-top: 40px
}

.content h2,
.custom-headline-2 {
    font-size: 22px;
    margin-top: 40px
}

.content h3 {
    font-size: 18px;
    margin-top: 40px
}

.content p {
    color: #7c7d9c;
    margin-bottom: 15px;
    font-size: 14px
}

@media(min-width: 768px) {
    .content p {
        font-size: 16px
    }
}

.content p:last-child {
    margin-bottom: 0
}

.content ul,
.content ol {
    color: #7c7d9c;
    font-size: 14px;
    margin-bottom: 15px;
    list-style-type: disc;
    padding-left: 30px;
    font-size: 14px
}

.content ol {
    list-style-type: decimal;
}

@media(min-width: 768px) {
    .content ul,
    .content ol {
        font-size: 16px
    }
}

.list__num {
    color: #7c7d9c;
    font-size: 14px;
    margin-bottom: 15px;
    list-style-type: decimal;
    padding-left: 30px;
    font-size: 14px
}

@media(min-width: 768px) {
    .list__num {
        font-size: 16px
    }
}

.table {
    background: #383859;
    border-radius: 5px;
    font-size: 12px;
    margin: 40px 0;
    width: 100%
}

.table__adaptive {
    overflow: auto
}

.columns-2 th,
.columns-2 td {
    display: flex;
    width: 50%;
    min-width: 200px
}

.table__3 th,
.table__3 td {
    display: flex;
    width: 33.33%;
    min-width: 200px
}

.columns-4 th,
.columns-4 td {
    display: flex;
    width: 25%;
    min-width: 200px
}

.table tr {
    display: flex;
    border-bottom: 1px solid #2f2e4b;
    padding: 10px 0px
}

.table td {
    font-size: 14px;
    color: #0aa1c7;
    justify-content: center;
    padding: 0 10px
}

.table th {
    padding: 0 10px;
    justify-content: center;
    color: #22a2c2;
    font-weight: bold;
    font-size: 16px
}

.global-main-wrapper {
    display: flex;
    justify-content: center
}

.global-main-info {
    margin: 20px 0
}

.global-main-info__item {
    display: flex;
    margin-top: 30px
}

.global-main-info__item:first-child {
    margin-top: 0
}

.global-main-info__item-value {
    margin-left: 15px
}

.global-main-info__item-img {
    width: 46px;
    height: 46px
}

.global-main-info__title {
    color: #7c77ad;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase
}

.global-main-info span {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin-top: 12px
}

@media(min-width: 510px) {
    .global-main-info {
        display: flex;
        flex-wrap: wrap;
        max-width: 510px;
        justify-content: center
    }
    .global-main-info__item {
        flex-basis: 204px
    }
    .global-main-info__item:first-child {
        margin-top: 30px
    }
}

@media(min-width: 991px) {
    .global-main-info {
        max-width: inherit;
        width: 100%;
        justify-content: space-between
    }
}

.game-item {
    margin-bottom: 10px;
    position: relative;
    flex-basis: 50%;
    padding: 0 5px
}

.game-item__new-label {
    position: absolute;
    background: #f44336;
    font-size: 10px;
    left: 10px;
    padding: 5px 7px 4px 7px;
    top: 10px
}

.game-item__logo {
    width: 100%;
    overflow: hidden;
    border-radius: 6px
}

.game-item__name {
    position: absolute;
    bottom: 10px;
    right: 15px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 12px;
    color: #fff;
    text-transform: uppercase;
    background: rgba(0, 0, 0, .6);
    border-radius: 5px;
    margin-left: 10px
}

@media(min-width: 410px) {
    .game-item {
        padding: 0 10px;
        margin-bottom: 20px
    }
    .game-item__new-label {
        left: 20px
    }
}

@media(min-width: 768px) {
    .game-item {
        flex-basis: 25%
    }
}

@media(min-width: 1100px) {
    .game-item__name {
        padding: 8px 18px;
        transition: .3s;
        font-size: 14px;
        bottom: 15px;
        right: 25px
    }
    .game-item:hover .game-item__name {
        transition: .3s;
        padding: 8px 25px
    }
}

@media(min-width: 1200px) {
    .game-item__new-label {
        font-size: 12px
    }
}

.left-nav-bar {
    position: fixed;
    background: #282b4b;
    box-shadow: inset -1px 0 0 0 #2d304a;
    display: none;
    height: calc(100vh - 120px);
    justify-content: center;
    left: 0;
    top: 115px;
    width: 72px;
    z-index: 50
}

.left-nav-bar--over {
    z-index: 1000;
    top: 0;
    height: 100vh
}

.left-nav-bar__list {
    width: 100%
}

.left-nav-bar__item {
    margin-top: 5px
}

.left-nav-bar__item:first-child {
    margin-top: 0
}

.left-nav-bar__link {
    align-items: center;
    color: #31a9ca;
    display: flex;
    height: 40px;
    justify-content: center;
    position: relative;
    width: 44px;
    transition: .3s;
    border-radius: 6px;
    position: relative
}

.left-nav-bar__link:hover {
    background: #393d5a;
    transition: all .3s ease-in-out
}

.left-nav-bar__link:hover .left-nav-bar__icon {
    transition: .3s;
    filter: brightness(5)
}

.left-nav-bar__link:hover .left-nav-bar__link-name {
    visibility: visible;
    opacity: 1;
    transition: all .2s ease-in-out
}

.left-nav-bar__link:hover.disabled {
    opacity: 1
}

.left-nav-bar__link.disabled {
    opacity: .3
}

.left-nav-bar__link-name {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    margin-left: 12px;
    background: #ffc107;
    border-radius: 3px;
    padding: 6px 8px;
    font-size: 14px;
    color: #000;
    white-space: nowrap;
    visibility: hidden;
    z-index: 1000;
    opacity: 0;
    transition: all .2s ease-in-out
}

.left-nav-bar__link-name:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    margin-top: -6px;
    margin-left: -12px;
    border: 6px solid transparent;
    border-right-color: #ffc107;
}

.left-nav-bar__icon {
    fill: #31a9ca;
    width: 24px;
    height: 24px;
    transition: .3s
}

.left-nav-bar__new-label {
    position: absolute;
    top: -8px;
    right: -25px
}

@media(min-width: 1100px) {
    .left-nav-bar {
        display: flex;
        padding-top: 1rem
    }
}

.drop-panel__wrapper {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between
}

.drop-panel__stats {
    flex-basis: 60%;
    display: none
}

.drop-panel__stats .global-main-info {
    margin: 0;
    flex-direction: column;
    justify-content: flex-start
}

.drop-panel__stats .global-main-info__item {
    margin-top: 15px;
    flex-basis: inherit;
    max-height: 50px
}

.drop-mn__item {
    margin: 10px 0
}

.drop-mn__item:first-child {
    margin-top: 0
}

.drop-mn__link {
    color: #31a9ca;
    transition: .3s
}

.drop-mn__link:hover {
    transition: .3s;
    color: #fff
}

@media(min-width: 480px) {
    .drop-panel__stats {
        display: flex
    }
    .drop-mn {
        flex-basis: 40%
    }
}

@media(min-width: 750px) {
    .drop-panel__stats {
        align-items: center
    }
    .drop-panel__stats .global-main-info {
        flex-direction: row
    }
    .drop-panel__stats .global-main-info__item {
        flex-basis: 50%
    }
}

@media(min-width: 1100px) {
    .drop-mn {
        position: absolute;
        right: 40px;
        top: -70px
    }
    .drop-panel {
        overflow: visible;
        background: none
    }
    .drop-panel__wrapper {
        padding: 0 20px;
        position: relative;
        width: 960px;
        margin: 0 auto
    }
    .drop-panel__stats {
        flex-basis: 400px
    }
}

@media(min-width: 1300px) {
    .drop-panel__wrapper {
        width: 1140px
    }
}

.video {
    background: #2a2a44;
    border: 1px solid #2f2e4b;
    border-radius: 5px;
    padding: 32px;
    width: 100%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content
}

.video__title {
    margin-top: 35px;
    text-align: left;
    color: #fff
}

.video__title:first-child {
    margin-top: 0
}

.video-wrap {
    margin: 10px auto;
    position: relative;
    height: 200px;
    max-width: 100%
}

.video-wrap__preview {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.video-wrap__frame {
    width: 100%;
    height: 100%;
    display: none
}

.video-wrap__icon {
    width: 70px;
    height: 70px
}

.video-wrap iframe {
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 1080px
}

@media(min-width: 470px) {
    .video-wrap {
        max-width: 80%
    }
}

@media(min-width: 768px) {
    .video-wrap {
        height: 300px
    }
}

@media(min-width: 992px) {
    .video {
        flex-basis: 33.33%;
        margin-left: 15px;
        margin-bottom: 30px
    }
    .video-wrap {
        height: 200px;
        max-width: 100%
    }
    .info {
        padding-right: 20px
    }
}

.convert {
    z-index: 2;
    font-size: 14px;
    padding: 5px 10px;
    width: 100%;
    color: #fff;
    display: flex;
    justify-content: center;
    font-weight: bold;
    align-items: center;
    background-color: #282b4b;
    position: absolute;
    border-bottom: 1px solid #4a4a6a;
    border-top: 1px solid #4a4a6a;
    left: 0px;
    top: 60px;
    flex-wrap: wrap
}

@media(min-width: 568px) {
    .convert {
        top: 80px
    }
}

@media(min-width: 1100px) {
    .convert {
        padding: 10px;
        font-size: 14px;
        width: calc(100% - 72px);
        left: 72px;
        top: 115px
    }
}

.convert__hidden {
    display: none
}

@media(min-width: 768px) {
    .convert__hidden {
        display: initial
    }
}

.convert__green {
    background-color: #ffc107;
    padding: 4px 6px;
    border-radius: 4px;
    color: #000;
}

.convert__btn {
    margin-left: 1rem;
    border-radius: 6px;
    border: 2px solid #ffc107;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    background: transparent;
    color: #ffc107;
    outline: none;
    transition: all .15s ease-in-out
}

@media(min-width: 1024px) {
    .convert__btn {
        padding: 10px
    }
}

.convert__btn:hover {
    background: #ffc107;
    border-color: #ffc107;
    color: #000;
}

iframe {
    width: 100%;
    height: 300px;
    margin: 30px 0
}

@media (min-width:414px) {
    iframe {
        height: 350px
    }
}

@media (min-width:768px) {
    iframe {
        height: 400px
    }
}

@media (min-width:1200px) {
    iframe {
        height: 450px
    }
}

@media (max-width: 568px) {
    .header__block {
        margin-top: 0;
    }
}
