
.icon_hot {
    color: #f99a13
}

.icon_new {
    color: #ffc107;
}

.icon_popular {
    color: #ffc250
}

.page-content h2, page-content h3 {
    font-size: 24px;
    color: #fff;
}

.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;
}


.favorited i {
    color: #ed1c24;
}

.game-description {

}

.btn-scroll-top {
    display: block;
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 45px;
    height: 45px;
    transition: right 400ms cubic-bezier(.68, -.55, .265, 1.55), opacity .3s, background-color .25s ease-in-out;
    border-radius: 0.75rem;
    background-color: var(--color-link);
    background: #ff4f0f;
    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 #ff4f0f, 0 -4px 20px 0 #ff4f0f;
    color: var(--color-secondary);
    text-align: center;
    opacity: 0;
    z-index: 1025;
    outline: 0;
    border: 0;
}

.btn-scroll-top i {
    font-size: 24px;
    font-weight: 700;
    line-height: 45px;
}

.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;
}


#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;
}

.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
}

.menu-img {
    margin-right: 16px;
    border-radius: 6px;
}

.home-footer {
    padding: 18px;
}

.footer_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    gap: 16px;
}

a.footer_link {
    font-size: 16px;
    color: black;
    font-weight: 500;
}

a.footer_link:hover {
    color: var(--color-link)
}

#button-search {
    left: 24px;
    position: absolute;
    border: 0;
    background: transparent;
    color: white;
}

#search-input svg {
    position: unset !important;
    fill: black !important;
    color: ghostwhite;
}

.bounce {
    -webkit-animation: bounce 2s;
    animation: bounce 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.bounce {
    -webkit-animation: bounce 2s;
    animation: bounce 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
    0%, 25%, 50%, 75%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
    60% {
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
    }
}

@keyframes bounce {
    0%, 25%, 50%, 75%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
    60% {
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
    }
}