.page_loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
    background-color: rgba(0, 0, 0, .75);
}

.loading_page {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 45px;
    aspect-ratio: 1;
    --c: no-repeat linear-gradient(#fff 0 0);
    background: var(--c), var(--c), var(--c);
    animation:
        l15-1 1s infinite,
        l15-2 1s infinite;
}

@keyframes l15-1 {

    0%,
    100% {
        background-size: 20% 100%
    }

    33%,
    66% {
        background-size: 20% 40%
    }
}

@keyframes l15-2 {

    0%,
    33% {
        background-position: 0 0, 50% 100%, 100% 100%
    }

    66%,
    100% {
        background-position: 100% 0, 0 100%, 50% 100%
    }
}


.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;
}

.content .details {
    margin-left: 15px;
}

.details span {
    font-size: 20px;
    font-weight: 500;
}

.details p {
    color: #878787;
    margin: 3px 0;
}

.more-game {
    margin: 12px auto;
    background: var(--btn-bg-common);
    padding: 8px 16px;
    max-width: 300px;
    width: 100%;
    border-radius: 8px;
    text-align: center;
    display: block;
    transition-duration: .3s;
    color: var(--btn-bg-common-color);
    text-decoration: none !important;
    font-size: 14px;
}

.more-game:hover {
    background: var(--btn-bg-hover-common);
    color: var(--btn-bg-hover-common-color);
}

#mainpage h1 {
    margin: 0px;
    border-bottom: 1px solid #c6c6c6;
    padding-bottom: 6px
}

.sidebar-game-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-top: 12px;
}

.sidebar-game {
    background: #09F;
    border-radius: 5px;
    margin-top: 0;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sidebar-game img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    background-color: #09F;
}

.sidebar-game a {
    padding-right: 10px;
    color: #fff;
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
}


.tag-game:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
}

.btn-button {
    background: #09F;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 20px;
    color: #fff;
    border-radius: 20px;
    border: 0;
    margin-left: 8px;
    margin-bottom: 8px;
}


#results {
    z-index: 1005;
    display: none;
    position: absolute;
    width: 270px;
    top: 44px;
    right: -5px;
    background: #fff;
}

.result {
    background: #fff;
}

.result a {
    font-size: 11px;
    display: block;
    padding: 4px;
    line-height: 16px;
    color: #002b50;
    overflow: hidden;
    text-decoration: none;
    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;
}

@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    10% {
        -webkit-transform: scale(.91);
        transform: scale(.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    17% {
        -webkit-transform: scale(.98);
        transform: scale(.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    33% {
        -webkit-transform: scale(.87);
        transform: scale(.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    10% {
        -webkit-transform: scale(.91);
        transform: scale(.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    17% {
        -webkit-transform: scale(.98);
        transform: scale(.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    33% {
        -webkit-transform: scale(.87);
        transform: scale(.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@media screen and (max-width: 1370px) {

    .latest_grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 1200px) {


    .comment-area {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .latest_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {

    .latest_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {

    .latest_grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 500px) {

    .latest_grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*header*/
/* .container { margin:0px; padding:0px; width:auto; float:left; width:270px; margin-left:62px; display:inline; margin-top: -22px;  } */


/* blocco dei risultati della ricerca */

/* title dei gruppi */

/*header*/

.favorited i {
    color: #f00;
}

.show_content {
    position: absolute;
    max-width: calc(100% - 28px);
    width: 100%;
    bottom: 10px;
    display: flex;
    align-items: flex-end;
    z-index: 12;
    background: var(--box-bg);
}

.ShowMore_button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background: 0 0;
    color: var(--body-bg-color);
    font-size: 14px;
    width: 100%;
    cursor: pointer;
    gap: 12px;
    border: 0;
    padding: 6px 12px;
}

.hidden {
    display: none;
}

/*===============================*/
select.classic {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%239bbcd1' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 5px;
    background-color: var(--btn-bg-common);
    border-radius: var(--border-radius-common);
    color: var(--btn-bg-common-color);
    border-radius: 4px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0.5em 1.4em 0.5em 1em;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 14px;
    outline: 0;
    border-bottom: 1px solid var(--border-common-color);
    height: fit-content;
    margin-left: auto;
}

select.classic:focus {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%239bbcd1' transform='rotate(180)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    outline: 0;
}

html[theme="light"] select.classic {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%239bbcd1' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");

}

html[theme="dark"] select.classic {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23ffffff' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");

}

html[theme="dark"] select.classic:focus {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23ffffff' transform='rotate(180)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");

}

html[theme="light"] select.classic:focus {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23000000' transform='rotate(180)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");

}

/* select filter cat*/
/*player button control*/
.player-footer,
.blur_dialog,
.contact-popup {
    --shadow-2: 0px 6px 30px rgba(0, 0, 0, .05);
    --box-bg-color: var(--box-bg);
    --btn-control: var(--btn-bg-common);
    --btn-control-hover: var(--blueaccent-1);
    --color-primary: var(--btn-bg-common-color);
    --btn-text-extent: #030712;
    --text-btn-control: #0a0a1a;
    --text-btn-control-hover: var(--btn-bg-hover-common-color);
    --border-btn: var(--border-common-color);
    --color-content-popup: var(--body-bg-color);
    --color-heading-popup: var(--highlight-color);
}

.player-footer {
    border-radius: 8px;
    position: relative;
    width: 100%;
}

.player-footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 0;
}

.player-footer__item {
    padding: 0 10px;
}

.player-footer__left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-footer__left img {
    border-radius: 4px;
    max-width: 40px;
    object-fit: cover;
}

.player-footer__left h1 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    font-family: var(--font-heading);
    color: var(--color-primary);
    padding: 0;
}

.player-footer__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.g-footer__button {
    background: var(--btn-control) !important;
    color: var(--color-primary);
    border: 0;
    width: 35px;
    height: 35px;
    transition: all 0.3s;
    border-radius: 8px;
    box-shadow: var(--shadow-2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.g-footer__button .svg-icon {
    width: 18px;
    height: 18px;
    transition: transform .2s cubic-bezier(.32, 1.2, .54, 1.17);
}

.g-footer__button-title {
    font-size: 10px;
    bottom: 4px;
    left: 50%;
    position: absolute;
}

.g-footer__button-title_last {
    opacity: 0;
}

.g-footer__button-title_first {
    background-color: transparent;
    color: var(--body-bg-color);
    opacity: 1;
}

.g-footer__button-title_text {
    border-radius: 6px;
    left: 0;
    padding: 0 4px;
    position: absolute;
    top: 0;
    transform: translate(-50%);
    transition: opacity .35s cubic-bezier(.32, 1.2, .54, 1.17);
    white-space: nowrap;
    background: var(--box-bg-color);
    font-weight: 700;
    line-height: normal;
}

@media (hover: hover) and (pointer: fine) {
    .g-footer__button:hover .g-footer__button-title_last {
        background-color: var(--btn-text-extent);
        color: #fff;
        opacity: 1;
    }

    .g-footer__button:hover .g-footer__button-title_first {
        opacity: 0;
    }

    .g-footer__button:hover {
        transform: translateY(-3px);
        background: var(--btn-control-hover) !important;
        color: var(--text-btn-control-hover);
    }
}

.g-footer__button:hover .svg-icon {
    transform: rotate(-5deg);
}

.g-footer__button.voted,
.g-footer__button.active {
    transform: translateY(-3px);
    background: var(--btn-control-hover) !important;
    color: var(--text-btn-control-hover);
}

/* =======popup========== */
.blur_dialog,
.contact-popup {
    position: fixed;
    bottom: 0;
    top: 0;
    right: -350px;
    width: 350px;
    background-color: var(--box-bg-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-card);
    z-index: 1001;
    transition: right 0.3s ease-in-out;
}

.blur_dialog.active,
.contact-popup.show {
    right: 0px;
}

label.label-contact-select {
    position: relative;
    display: inline-block;
    margin: 0 0 10px;
}

label.label-contact-select:before {
    content: "";
    height: 31px;
    position: absolute;
    right: 7px;
    top: 3px;
    width: 22px;
    background: transparent;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    pointer-events: none;
    display: block;
}

label.label-contact-select:after {
    content: " ";
    position: absolute;
    right: 15px;
    top: 46%;
    margin-top: -3px;
    z-index: 2;
    pointer-events: none;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6.9px 4px 0 4px;
    border-color: #fff transparent transparent transparent;
    pointer-events: none;
}

/* Popup container */
.contact-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 30px 0 10px;
    border: 1px solid var(--border-btn);
    border-radius: 4px;
    line-height: 36px;
    background: var(--box-bg-color);
    height: 36px;
    color: var(--color-primary);
    margin: 0 0px 5px 0;
    width: 100%;
}

.contact-select:focus-visible {
    outline: 0;
}

select.contact-select::-ms-expand {
    display: none;
}

.error_form_contact,
.error-message-email {
    font-size: 0.9em;
    color: var(--high-light);
    margin: 0 0 8px;
    display: none;
}

label.label-contact-select {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 0 10px;
}

.popup-heading {
    display: flex;
    align-items: center;
    flex-flow: nowrap;
    padding: 0 40px 0 16px;
    line-height: 1.5;
}

.popup-content {
    border-top: 1px solid var(--border-btn);
    font-size: 14px;
    color: var(--color-content-popup);
    padding: 8px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-y: scroll;
    height: 100%;
}

.content_inner_popup {
    padding-bottom: 100px;
}

.content_inner_popup h2:not([class]),
.content_inner_popup h3:not([class]),
.content_inner_popup h4:not([class]) {
    margin: 0 0 10px;
    color: var(--color-heading-popup);
}

.content_inner_popup h2:not([class]) {
    font-size: 24px;
    font-weight: bold;
}

.content_inner_popup h3:not([class]),
.content_inner_popup h4:not([class]) {
    font-size: 20px;
    font-weight: bold;
}

.content_inner_popup ol:not([class]),
.content_inner_popup ul:not([class]) {
    margin: 0 0 10px;
    padding-left: 24px;
}

.content_inner_popup ol:not([class]) li,
.content_inner_popup ul:not([class]) li {
    list-style: disc;
    margin: 0 0 6px;
}

.content_inner_popup a:not([class]) {
    color: var(--color-heading-popup);
}

.content_inner_popup p:not([class]) {
    margin-bottom: 10px;
}

.form_contact {
    background: transparent;
    border: 1px solid var(--border-btn);
    color: var(--color-primary);
    max-width: 308px;
    resize: none;
    border-radius: 4px;
    transition: background-color .2s ease-in-out;
    width: 100%;
}

.contact_input {
    margin: 0 0 10px;
    padding: 8px 12px;
}

.contact_textarea {
    margin: 0 0 10px;
    padding: 8px 12px;
    height: 86px;
}

.icon_contact {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-right: 10px;
}

.title_contact {
    font-size: 12px;
    color: var(--color-primary);
    flex: 1;
    padding: 14px 0;
}

.title_contact strong {
    font-size: 14px;
}

.close_contact {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.close_contact .svg-icon {
    width: 14px;
    height: 14px;
}

.contact-form button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
}

.form_bottom {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 4px 16px;
}

.popup-link_share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 12px;
    border: 1px solid var(--border-btn);
    border-radius: 4px;
    margin-top: 12px;
    position: relative;
    height: 40px;
    margin-bottom: 20px;
}

.popup-link-share--url {
    width: 100%;
    background: 0;
    border: 0;
    height: auto;
    color: var(--color-primary);
    flex: 1;
    padding-right: 12px;
}

.popup-link-share--copy {
    color: #8166ff;
    font-weight: 600;
}

.popup-link-share--copy:hover {
    cursor: pointer;
}

.title_change_log {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: normal;
    letter-spacing: 1.1px;
}

.change_log_item {
    padding: 8px;
    border-radius: 8px;
    background: var(--btn-control);
    margin: 0 0 8px;
}

.content_change_log {
    margin-bottom: 6px;
    color: var(--color-content-popup);
    font-size: 14px;
    padding-left: 15px;
}

.content_change_log ul {
    padding-left: 16px;
    margin: 0;
}

.notify-toast {
    background: #4CAF50;
    /* Green background */
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.toast-content {
    font-size: 16px;
    font-weight: 600;
}

.notification-success {
    position: sticky;
    bottom: 12px;
    left: 12px;
    width: fit-content;
    border-radius: 10px;
    box-shadow: 0 -6px 74px 0 rgb(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 rgb(0 0 0 / 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-success .toastt .content {
    display: flex;
    gap: 12px;
    align-items: center;
}

.content_notification .details {
    margin-left: 15px;
}

.details span {
    font-size: 20px;
    font-weight: 500;
    color: #878787;
}

.details p {
    color: #878787;
}

.toastt .content_notification {
    display: flex;
    align-items: center;
}

.toastt .content_notification .icon {
    background: #ccc;
}

.toastt .content_notification .icon img {
    max-width: 50px;
    object-fit: cover;
}

.favorited {
    color: red;
}

/* ======================================== */

.frame-box-game {
    min-height: 520px;
    position: relative;
}


.frame-box-game iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 0;
    height: 100%;
}

@media (max-width: 991px) {
    .player-footer__inner {
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
}

.sort_container {
    margin-left: auto;
}

.s-title-control {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

.s-title-control h1 {
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 768px) {
    .s-title-control {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
}

.svg-icon {
    display: inline-block;
    vertical-align: top;
    width: 20px;
    height: 20px;
    fill: currentColor;
    font-size: 0
}

.svg-icon__link {
    vertical-align: top;
    fill: inherit;
    width: inherit;
    height: inherit
}

.details .add {
    color: #28a745;
}

.details .remove {
    color: #dc3545;
}

.mt-12 {
    margin-top: 48px;
}

.heading {
    display: flex;
    align-items: center;
}

.p-0 {
    padding: 0 !important;
}

.m-0 {
    margin: 0 !important;
}

.s-title-control__left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
}

.s-title-control__left .tags>a {
    font-size: 16px;
}

.mw-full {
    max-width: 100% !important;
}

.flex-none {
    flex: none !important;
}

.mb-4 {
    margin-bottom: 16px !important;
}


.game-slider {
    width: 100%;
    margin: auto;
}

.game-slider .swiper-container,
.slide-recent .swiper-container {
    padding: 10px 0;
}

.game-slider-heading {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.action-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: auto;
}

.action-button button {
    outline: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 10px;
    color: var(--body-bg-color);
    transition: background .2s ease;
    border: 1px solid var(--border-common-color);
    background: transparent;
}

.action-button button:first-child {
    border-radius: 6px 0 0 6px;
    border-right: 0;
}

.action-button button:last-child {
    border-radius: 0 6px 6px 0;
}

.action-button button.swiper-button-disabled {
    opacity: .4;
    color: #545454;
}

button {
    cursor: pointer;
}

.action-button button:hover {
    background: var(--btn-bg-hover-common);
    color: var(--btn-bg-hover-common-color);
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.swiper-slide .games__img picture::before {
    left: -85%;
}

.grid_2x2 {
    grid-column: span 2;
    grid-row: span 2;
    height: 100%;
}

.single-game a {
    display: block;
    height: 100%;
}