
.link-games {
    padding: 14px 50px;
    border-radius: 40px;
    display: inline-block;
    text-align: center;
    background: #162526;
    vertical-align: middle;
    color: #fff;
    border: 1px solid transparent;
}

.link-games:hover {
    color: #fff;
    border: 1px solid #fff;
}

.more-game {
    padding: 12px 24px;
    background-image: linear-gradient(90deg, #ff564e, #f9d027);
    color: #fff;
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    text-decoration: none;
    max-width: 200px;
    box-shadow: rgb(0 0 0/24%) 0 6px 12px 0;
}

.more-game:hover, .more-game:active {
    background-image: linear-gradient(90deg, #f9d027, #ff564e);
}

.ml-350 {
    margin-left: 350px !important;
}

.hidden {
    display: none !important;
}

.header__logo {

}

.game_content_container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: row wrap;
    gap: 24px;
    margin: 12px auto;
}

.game_content_container .game-content-page {
    width: 100%;
    flex: 0 0 72%;
    max-width: 72%;
}

.game_content_container .comment-area {
    flex: 0 0 calc(100% - 72% - 24px);
    max-width: calc(100% - 72% - 24px);
    width: 100%;
}

.game-content-page .content-inner {
    position: relative;
    z-index: 12;
}

.game-content-page {
    position: relative;
    background: #fff;
    padding: 24px;
    border-radius: 6px;
    box-shadow: 0px 6px 30px rgba(0, 0, 0, .05);
    height: fit-content;
}

.game-content-page p a, .single-description ul li a, .single-description ol li a {
    color: #eb615b;
    text-decoration: none;
}

.game-content-page p a:hover, .single-description ul li a:hover, .single-description ol li a:hover {
    color: #eb615b;
    text-decoration: none;
}

.game-content-page h2 {
    color: #eb615b;
    font-size: 24px;
    text-transform: uppercase;

}

.game-content-page h3, .game-content-page h4, .game-content-page h5 {
    font-size: 20px;
    color: #eb615b
}

.favorited i {
    color: #ed1c24;
}

.game-description {

}

.btn-scroll-top {
    display: block;
    position: fixed;
    right: -120px;
    bottom: 24px;
    width: 40px;
    height: 40px;
    transition: right 400ms cubic-bezier(.68, -.55, .265, 1.55), opacity .3s, background-color .25s ease-in-out;
    border-radius: 0.75rem;
    padding: 6px;
    background-color: #eb615b;
    color: #fff;
    text-align: center;
    opacity: 0;
    z-index: 1025;
}
.btn-scroll-top:hover{
    color: #fff;
}

.btn-scroll-top .svg-icon {
    display: inline-block;
    vertical-align: middle;
}

.btn-scroll-top.show {
    right: 1.25rem;
    opacity: 1;

}

.category-list-wrapper .cat-name {
    color: #fff;
}

.footer_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    margin-left: -28px
}

.footer_container a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    margin-left: 28px;
}

.show_content {
    position: absolute;
    max-width: calc(100% - 40px);
    width: 100%;
    bottom: 10px;
    display: flex;
    align-items: flex-end;
    z-index: 12;
}

.ShowMore_button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border: 0;
    background: 0 0;
    color: #000;
    font-size: 16px;
    width: fit-content;
    cursor: pointer;
    gap: 12px;
    padding: 6px 12px;
}

#tooltip {
    font-weight: 600;
    text-align: center;
    color: #03214e;
    background: #ffc500;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    position: absolute;
    z-index: 100;
    padding: 5px 15px;
    border-radius: 5px;
    width: 220px;
    transform: translateX(-50%);
}

#tooltip::after {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid #ffc500;
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    margin-left: -10px;
}

#tooltip.top::after {
    border-top-color: transparent;
    border-bottom: 10px solid #ff318f;
    top: -20px;
    bottom: auto
}

#tooltip.left::after {
    left: 10px;
    margin: 0
}

#tooltip.right::after {
    right: 10px;
    left: auto;
    margin: 0
}


.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 {
    display: flex;
    align-items: center;
}

.content img {
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background: #2ecc71;
    object-fit: cover;
}

.toastt.offline .content .icon {
    background: #ccc;
}

.content .details {
    margin-left: 15px;
}

.details span {
    font-size: 20px;
    font-weight: 500;
    color: #2ecc71;
}

.details p {
    color: #878787;
}


@media (max-width: 1024px) {
    .game_content_container .game-content, .game_content_container .comment-area {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


.logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    gap: 8px;
}

.site-logo {
    height: 45px;
}

.page_loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 98;
    background-color: rgba(0, 0, 0, .75);
}

.loading_page {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

.hidden {
    display: none;
}

.loading_image {
    width: 100px;
    height: 100px;
    background-color: transparent !important;
}

.gameSliderBig .slide-item {
    width: 211px;
}

@media (min-width: 48em) {
    .gameSliderBig .slide-item {
        width: 422px;
    }
}

.swiper .swiper-button-disabled {
    display: none;
}

.swiper-slide {
    width: fit-content;
}

.header-slider {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #fff;
    width: fit-content;
    padding-top: 16px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 20px 20px 0 0;
}

.action-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 20px;
}

.action-button button {
    outline: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #535353;
    border: 1px solid #ededed;
    transition: border-color .3s ease;
}
.action-button button:hover{
    border-color: #c2c2c2
}
.action-button button:first-child {
    border-radius: 6px 0 0 6px
}

.action-button button:last-child {
    border-radius: 0 6px 6px 0
}

.action-button button.swiper-button-disabled {
    opacity: .5;
}

.img-category {
    width: 32px;
    height: 32px;

}


.nav--bar > .list > .item:hover .more--list {
    display: block;
}

.nav--bar > .list > .item > .wrapper {
    padding-top: 12px;
    position: absolute;
}

.page-content h1 {
    font-size: 28px;
    color: #eb615b;
    margin: 0 0 12px;
}

.page-content h2, .page-content h3 {
    font-size: 22px;
    color: #eb615b;
    margin: 0 0 12px;
}

.page-content a {
    color: #eb615b;
    text-decoration: none;
}

.page-content ul, .page-content ol {
    padding-left: 24px;
}

.page-content ul li, .page-content ol li {
    list-style: disc;
    margin: 0 0 8px;
}

.page-content p {
    margin: 0 0 10px
}

.page-content {
    padding: 20px;
    background: #fff;
    border-radius: 6px;
}

/*news*/
.articleBox {
    padding: 35px 40px 30px 40px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    background: #fff;
    position: relative;
    color: inherit;
    font-size: 14px;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.articleBox .artText img {
    margin: 8px auto;
    max-width: 700px;
    width: 100%;
    object-fit: contain;
    display: block;
}

.articleBox .artText h2 {
    font-size: 24px;

}

.articleBox .artText h2, .articleBox .artText h3, .articleBox .artText h4 {
    color: #eb615b;
    margin-bottom: 10px;
}

.articleBox .artText p {
    margin-bottom: 10px;
}

.articleBox .artText p a, articleBox .artText ul li a, articleBox .artText ol li a {
    color: #eb615b;
}

.artCat {
    width: 100%;
    padding: 0 0 6px;
    display: flex;
    flex-flow: row wrap;
    border-bottom: 1px solid #00000038;
    margin-bottom: 12px;
}

.artCat a {
    color: #eb615b;
    text-decoration: none;
}

.artTitle {
    padding: 0 0 20px;
    font-size: 32px;
    font-weight: 700;
}

.artMainImgBox {
    margin: 12px 0 24px;
    position: relative;
    float: left;

}

.artSideWrapBox {

}

.artSideTitle {
    font-size: 22px;
    margin: 0 0 16px;
    color: #fff;
}

.relNews {
    padding-bottom: 32px;
}

.relNewsItem:last-child {
    margin: 0;
}

.relNewsItem {
    width: 100%;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.sectionLink {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
}

.relNewsImg {

    border-radius: 6px
}

.newsItem {
    width: 100%;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.relNewsInfo {
    justify-content: flex-start;
    display: flex;
    gap: 8px;
    margin: 8px 0 0;
}

.relNewsInfo_cat {
    background: #4a0570;
    padding: 15px 30px 20px;
    margin: -60px 20px 0;
    position: relative;
}

.dateNew {
    color: #ffffffc4;
    display: flex;
    align-items: center;
    font-size: 12px;
}

.cat_item {
    color: #ffffffc4;
    font-size: 12px;
    text-decoration: none

}

.dateNew span.svg-icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
}

.relNewsTitle {
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
    color: inherit;
}

.newsItem .relNewsTitle {
    font-size: 22px;
}

.newsTitle {
    font-size: 32px;
    color: #eb615b;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 600;
}

.shortDes {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    color: #ffffffc4
}

.newsDes {
    margin-bottom: 24px;
}

.read_more {
    color: #fff;
    text-decoration: underline;
    font-size: 14px;
}

.posts-menu {
    border: 0;
}

@media (min-width: 982px) {
    .posts-menu {
        border-left: 1px solid rgb(255 255 255 / 10%);
    }
}

.light-green-div {
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: #eb615b;
    border-radius: 5px;
    margin-top: 7px;
    margin-right: 9px;
    padding: 20px;
    position: absolute;
    top: -4%;
    bottom: 0%;
    left: 2%;
    right: 0%;
}

.dark-green-div {
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: #162526;
    border-radius: 5px;
    padding: 20px;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

/*news*/