body {
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
    --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
    --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
    --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
    --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
    --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
    --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
    --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
    --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
    --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
    --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
    --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
    --wp--preset--font-size--small: 13px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 36px;
    --wp--preset--font-size--x-large: 42px;
    --wp--preset--spacing--20: 0.44rem;
    --wp--preset--spacing--30: 0.67rem;
    --wp--preset--spacing--40: 1rem;
    --wp--preset--spacing--50: 1.5rem;
    --wp--preset--spacing--60: 2.25rem;
    --wp--preset--spacing--70: 3.38rem;
    --wp--preset--spacing--80: 5.06rem;
    --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
    --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);
    --wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
}

:where(.is-layout-flex) {
    gap: 0.5em;
}

:where(.is-layout-grid) {
    gap: 0.5em;
}

body .is-layout-flow>.alignleft {
    float: left;
    margin-inline-start: 0;
    margin-inline-end: 2em;
}

body .is-layout-flow>.alignright {
    float: right;
    margin-inline-start: 2em;
    margin-inline-end: 0;
}

body .is-layout-flow>.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
}

body .is-layout-constrained>.alignleft {
    float: left;
    margin-inline-start: 0;
    margin-inline-end: 2em;
}

body .is-layout-constrained>.alignright {
    float: right;
    margin-inline-start: 2em;
    margin-inline-end: 0;
}

body .is-layout-constrained>.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
}

body .is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: var(--wp--style--global--content-size);
    margin-left: auto !important;
    margin-right: auto !important;
}

body .is-layout-constrained>.alignwide {
    max-width: var(--wp--style--global--wide-size);
}

body .is-layout-flex {
    display: flex;
}

body .is-layout-flex {
    flex-wrap: wrap;
    align-items: center;
}

body .is-layout-flex>* {
    margin: 0;
}

body .is-layout-grid {
    display: grid;
}

body .is-layout-grid>* {
    margin: 0;
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
    gap: 2em;
}

:where(.wp-block-post-template.is-layout-flex) {
    gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
    gap: 1.25em;
}

.has-black-color {
    color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-color {
    color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-color {
    color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-color {
    color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-color {
    color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-color {
    color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-color {
    color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-color {
    color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-color {
    color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-color {
    color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-color {
    color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-color {
    color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-background-color {
    background-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-background-color {
    background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-background-color {
    background-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-background-color {
    background-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-background-color {
    background-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-background-color {
    background-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-background-color {
    background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-background-color {
    background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-background-color {
    background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-background-color {
    background-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-border-color {
    border-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-border-color {
    border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-border-color {
    border-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-border-color {
    border-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-border-color {
    border-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-border-color {
    border-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-border-color {
    border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-border-color {
    border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-border-color {
    border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-border-color {
    border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
    background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
    background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
    background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
}

.has-cool-to-warm-spectrum-gradient-background {
    background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}

.has-blush-light-purple-gradient-background {
    background: var(--wp--preset--gradient--blush-light-purple) !important;
}

.has-blush-bordeaux-gradient-background {
    background: var(--wp--preset--gradient--blush-bordeaux) !important;
}

.has-luminous-dusk-gradient-background {
    background: var(--wp--preset--gradient--luminous-dusk) !important;
}

.has-pale-ocean-gradient-background {
    background: var(--wp--preset--gradient--pale-ocean) !important;
}

.has-electric-grass-gradient-background {
    background: var(--wp--preset--gradient--electric-grass) !important;
}

.has-midnight-gradient-background {
    background: var(--wp--preset--gradient--midnight) !important;
}

.has-small-font-size {
    font-size: var(--wp--preset--font-size--small) !important;
}

.has-medium-font-size {
    font-size: var(--wp--preset--font-size--medium) !important;
}

.has-large-font-size {
    font-size: var(--wp--preset--font-size--large) !important;
}

.has-x-large-font-size {
    font-size: var(--wp--preset--font-size--x-large) !important;
}

.wp-block-navigation a:where(:not(.wp-element-button)) {
    color: inherit;
}

:where(.wp-block-post-template.is-layout-flex) {
    gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
    gap: 1.25em;
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
    gap: 2em;
}

.wp-block-pullquote {
    font-size: 1.5em;
    line-height: 1.6;
}

.logo img {
    max-width: 200px;
    max-height: 80px;
    object-fit: contain;
}

.menu-item {
    color: #fff;
    font-size: 18px;
    padding: 5px 10px;
}

.menu-item:hover {
    color: #ffcc00;
}

#results {
    z-index: 1005;
    display: none;
    position: absolute;
    width: 100%;
    top: 44px;
    right: -5px;
    background: #fff;
}

.result {
    background: #fff;
}

.text-icon i {
    font-size: 24px;
    margin-right: 8px;
}

.result a {
    font-size: 11px;
    display: block;
    padding: 4px;
    line-height: 16px;
    color: #002b50;
    overflow: hidden;
    box-shadow: rgb(9 30 66 / 7%) 0 4px 8px, rgb(9 30 66 / 7%) 0 0 2px;
}

.result a:hover {
    background: #009cff;
    color: #fff;
    text-decoration: none;
}

.result img {
    float: left;
    width: 60px;
    height: 40px;
    margin: 0 5px 0 1px;
    object-fit: cover;
}

.notification-success {
    position: fixed;
    bottom: 12px;
    left: 12px;
    border-radius: 10px;
    box-shadow: 0px -6px 74px 0px rgba(0, 0, 0, 0.15);
    animation: show_toastt 1s ease forwards;
    z-index: 9999;
}

@keyframes show_toastt {
    0% {
        transform: translateX(-100%);
    }
    40% {
        transform: translateX(10%);
    }
    80%,
    100% {
        transform: translateX(20px);
    }
}

.notification-success.hide {
    animation: hide_toastt 1s ease forwards;
}

@keyframes hide_toastt {
    0% {
        transform: translateX(20px);
    }
    40% {
        transform: translateX(10%);
    }
    80%,
    100% {
        opacity: 0;
        pointer-events: none;
        transform: translateX(-100%);
    }
}

.notification-success .toastt {
    border-radius: 10px;
    border-left: 5px solid #2ecc71;
    background: #fff;
    padding: 8px 12px;
    box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-success .toastt.offline {
    border-color: #ccc;
}

.toastt .content_notification {
    display: flex;
    align-items: center;
}

.content_notification img {
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background: #2ecc71;
    object-fit: cover;
}

.toastt.offline .content_notification .icon {
    background: #ccc;
}

.content_notification .details {
    margin-left: 15px;
}

.details span {
    font-size: 20px;
    font-weight: 500;
}

.details p {
    color: #878787;
}

#slider {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.game-item-hot {
    margin-right: 12px;
}

.owl-stage-outer::before {
    left: -8px;
    background: linear-gradient(90deg, #131111 30%, #0C99D500 100%);
}

.main-content .owl-theme .custom-nav .owl-prev i,
.main-content .owl-theme .custom-nav .owl-next i {
    font-size: 32px;
}

.main-content .owl-theme .custom-nav .owl-prev,
.main-content .owl-theme .custom-nav .owl-next {
    position: absolute;
    height: 100px;
    color: inherit;
    background: 0 0 !important;
    border: none !important;
    z-index: 1;
    opacity: .75;
    color: #000;
    height: 100%;
}

.main-content .owl-theme .custom-nav .owl-prev:focus,
.main-content .owl-theme .custom-nav .owl-next:focus {
    border: 0 !important;
    outline: 0 !important;
}

.main-content .owl-theme .custom-nav .owl-prev {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.main-content .owl-theme .custom-nav .owl-next {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

#slider .owl-stage-outer::after,
#slider .owl-stage-outer::before {
    content: "";
    top: 0;
    right: -8px;
    background: linear-gradient(270deg, #f0f1f3 25%, #0C99D500 100%);
    max-width: 65px;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
}

#slider .owl-stage-outer::before {
    left: -8px;
    background: linear-gradient(90deg, #f0f1f3 30%, #0C99D500 100%);
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot.owl-nav {
    position: absolute;
    left: 20px;
    top: 50%;
    background-color: #27b0f1 !important;
    display: block;
    padding: 0 .3em !important;
    font-size: 3em;
    margin: 0;
    cursor: pointer;
    color: #000;
    transform: translate(-50%, -50%);
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot.owl-nav {
    position: absolute;
    right: -23px;
    top: 50%;
    background-color: #27b0f1 !important;
    display: block;
    padding: 0 .3em !important;
    font-size: 3em;
    margin: 0;
    cursor: pointer;
    color: #000;
    transform: translate(-50%, -50%);
}

.sweep-to-right {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.sweep-to-right:hover {
    color: #fff;
}

.sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #42dbca;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.sweep-to-right:hover:before {
    transform: scaleX(1);
}

.btn_up {
    background: transparent;
    width: 40px;
    height: 40px;
    border: 0;
    padding: 0;
    border-radius: 10px;
    position: fixed;
    right: 15px;
    bottom: 15px;
    transition: transform 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
    transform: translateX(120px);
    z-index: 99;
}

.btn_up.show {
    transform: translateX(0);
}

.btn_up span {
    background: #CA3C8C;
    color: #fff;
    width: 100%;
    position: relative;
    height: 100%;
    border-radius: 10px;
    transition: all 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
    box-shadow: inset 0 2px 4px 0 rgb(255 255 255 / 38%), inset 0 -3px 3px 0 rgb(0 0 0 / 20%), 0 8px 15px 0 #CA3C8C, 0 -4px 20px 0 #e567ae;
}

.btn_up.show span {
    animation: gelatine 2.5s infinite;
}

.btn_up.show span:before {
    font-size: 36px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes gelatine {
    from,
    to {
        transform: scale(1, 1);
    }
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    25% {
        transform: scale(0.9, 1.1);
    }
    40% {
        transform: translateY(-30px);
    }
    50% {
        transform: scale(1.1, 0.9);
    }
    /*75% { transform: scale(0.95, 1.05); }*/
    60% {
        transform: translateY(-15px);
    }
}

.more-game {
    margin: 12px auto;
    background: #8566ff;
    box-shadow: 0 5px 6px 0 rgb(0 0 0 / 29%);
    padding: 8px 16px;
    max-width: 300px;
    font-weight: 600;
    width: 100%;
    border-radius: 8px;
    text-align: center;
    display: block;
    transition-duration: .3s;
    color: #fff !important;
    text-decoration: none !important;
}

.more-game:hover {
    transform: scale(1.1);
}

.game_content p {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.game_content div.content a {
    font-weight: 500;
}

html[data-theme="dark"] .game_content div.content a {
    color: var(--theme-color)
}

.teaser__body h1 {
    font-size: 28px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.game_content h2 {
    font-size: 24px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.game_content h2,
.game_content h3,
.game_content h4 {
    font-weight: 700;
    color: var(--highlight-text);
}

.game_content h3,
.game_content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.GameSectionPlay,
.game_area_second {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: row wrap;
    margin: 12px auto;
}

.game_area_second {
    gap: 12px;
}

.game_area_second .game_content {
    width: 100%;
    flex: 0 0 70%;
    max-width: 70%;
}

.game_area_second .comment-area {
    flex: 0 0 calc(100% - 70% - 24px);
    max-width: calc(100% - 70% - 24px);
    width: 100%;
}

.GameSectionPlay .iframe-container {
    margin-right: 12px;
    display: flex;
    flex: 0 0 calc(100% - 312px);
    max-width: calc(100% - 312px);
    flex-direction: column;
}

.game_content,
.post-content {
    box-sizing: border-box;
    position: relative;
}

.flex-right {
    display: inline-block;
    width: 300px;
}

.ads300x600 {
    width: 300px;
    height: 600px;
}

.favorites_btn {
    padding: 6px 12px;
    border-radius: 7px;
}

.favorites_btn span.svg-icon {
    font-size: 24px;
    color: #fcd53f;
    text-shadow: 2px 2px 3px var(--primary-text);
}

.favorites_btn.favorited span.svg-icon {
    color: #dc3545;
}

.sidebar-game-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-top: 12px;
}

.tag-game {
    background: #001f47;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all .15s ease-in-out;
}

.tag-game:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-4px);
}

.title-page {
    margin: 24px 0;
    font-size: 24px;
    font-weight: 700;
}

.title-icon i {
    font-size: 24px;
    margin-right: 8px;
    background: var(--bs-gray-200);
    line-height: 45px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    text-align: center;
}

.icon-search i {
    color: #fff;
    font-size: 18px;
}

.categories ul li.active a {
    background: #001f47;
}

.categories ul li.active h2 {
    color: #fff !important;
}

.categories ul li.active a:hover>.text {
    background-color: transparent;
    color: #fff;
}

.typeahead__query input {
    max-width: 300px;
    margin-left: auto;
}

.menu_item {
    color: #fff;
    margin-right: 12px;
}

.menu_item:hover {
    color: #fff;
}

.menu_sidebar {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 12px 0;
    border-bottom: 1px solid #00000054;
    display: none;
}

.menu_sidebar_item {
    color: #000;
    font-size: 14px;
    margin-bottom: 10px;
    padding: 3px 6px;
    border-radius: 8px;
    width: 100%;
}

.menu_sidebar_item:hover {
    text-decoration: none;
    background-color: #f1f1f1;
    color: #fff;
}

.text-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#main {
    min-height: 100vh;
}

.game-selection-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: row wrap;
    gap: 12px;
    margin: 0 auto;
}

.game-selection-content .game_content {
    width: 100%;
    flex: 0 0 70%;
    max-width: 70%;
    background: #fff;
    padding: 12px;
    word-break: break-word;
    border-radius: 12px;
    box-shadow: 0 3px 3px 3px rgb(0 0 0 / 5%);
}

.game-selection-content .game_comment {
    flex: 0 0 calc(100% - 70% - 12px);
    max-width: calc(100% - 70% - 12px);
    width: 100%;
}

html[data-theme="dark"] .game-selection-content .game_content {
    background: #1b1d22;
}

html[data-theme="dark"] .footer-link {
    color: #fff;
}

.footer-link:hover {
    color: var(--theme-color);
}

.count {
    background-color: #d95652;
    border-radius: 50%;
    height: 16px;
    position: absolute;
    width: 16px;
    text-align: center;
    top: -4px;
    right: -4px;
    font-size: 12px;
    color: #fff;
    line-height: 16px;
}

.favorite-link a:hover .count_num .count {
    color: #fff;
}

.main-svg-sprite {
    display: none
}

.svg-icon {
    display: inline-block;
    vertical-align: top;
    width: 24px;
    height: 24px;
    fill: currentColor;
    font-size: 0
}

.svg-icon__link {
    vertical-align: top;
    fill: inherit;
    width: inherit;
    height: inherit
}

.ads_300x600 {
    width: 100%;
    min-height: 90px;
    height: auto;
}

.SingleGame_gameContainer__GOLPG {
    max-width: calc(100% - 504px);
}

.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace-inactive {
    display: none;
}

.pace .pace-progress {
    background: #ff2e2e;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 2px;
}

.pace .pace-progress-inner {
    display: block;
    position: absolute;
    right: 0px;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px #ff2e2e, 0 0 5px #ff2e2e;
    opacity: 1.0;
    -webkit-transform: rotate(3deg) translate(0px, -4px);
    -moz-transform: rotate(3deg) translate(0px, -4px);
    -ms-transform: rotate(3deg) translate(0px, -4px);
    -o-transform: rotate(3deg) translate(0px, -4px);
    transform: rotate(3deg) translate(0px, -4px);
}

.pace .pace-activity {
    display: block;
    position: fixed;
    z-index: 2000;
    top: 15px;
    right: 15px;
    width: 14px;
    height: 14px;
    border: solid 2px transparent;
    border-top-color: #ff2e2e;
    border-left-color: #ff2e2e;
    border-radius: 10px;
    -webkit-animation: pace-spinner 400ms linear infinite;
    -moz-animation: pace-spinner 400ms linear infinite;
    -ms-animation: pace-spinner 400ms linear infinite;
    -o-animation: pace-spinner 400ms linear infinite;
    animation: pace-spinner 400ms linear infinite;
}

@-webkit-keyframes pace-spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes pace-spinner {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes pace-spinner {
    0% {
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes pace-spinner {
    0% {
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes pace-spinner {
    0% {
        transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media (max-width: 1369px) {
    .SingleGame_gameContainer__GOLPG {
        max-width: calc(100% - 344px);
    }
    .SingleGame_rightSidebarBigBanner__kGmZL {
        grid-row: 3/span 6;
    }
}

@media (max-width: 1200px) {
    .game-selection-content .game_content,
    .game-selection-content .game_comment {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .SingleGame_gameContainer__GOLPG {
        max-width: calc(100% - 184px);
    }
}

@media (max-width: 992px) {
    .typeahead__query input {
        max-width: unset;
        margin-left: unset;
    }
    .menu_header {
        display: none;
    }
    .menu_sidebar {
        display: flex;
    }
    .SingleGame_gameContainer__GOLPG {
        max-width: 100%;
    }
}