
.more-game {
    padding: 12px 24px;
    background: #1858D9;
    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: #F20F0F;
    color: #fff;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
}

.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 {
    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 {
    padding: 15px;
    background: #014589;
    box-sizing: border-box;
    color: #fff;
    box-shadow: rgb(0 0 0/24%) 0 6px 12px 0;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.game-description ul, .game-description ol {
    list-style: disc;
    padding-left: 24px;
}

.game-description li {
    list-style: disc;
}

.show_content {
    background: linear-gradient(180deg, #be092f00, #be092f 35.42%);
    position: absolute;
    width: 100%;
    bottom: 10px;
    height: 70px;
    display: flex;
    align-items: flex-end;
}

.ShowMore_button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 8px;
    border: 2px solid #fff;
    background: 0 0;
    color: #fff;
    font-size: 12px;
    width: fit-content;
    cursor: pointer;
    gap: 12px px;
    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;
}
 
.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 img {
    max-height: 50px;
}
.player{
	background: #1abef366;
    padding: 10px;
    border-radius: 7px;
}
.player__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 12px 11px 12px;
    background: #be092f;
}

.player__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.player__actions {
    display: flex;
    justify-content: flex-start;
    flex-flow: row wrap;
    align-items: center;
}

.player__action {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 8px 8px auto;
    border: none;
    outline: none;
    background: none;
    padding: 0px;
    cursor: pointer;
}

.player__action div {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #FFFFFF;
    transition: background-color 0.6s cubic-bezier(0.32, 1.2, 0.54, 1.17) 0s;
    padding: 8px;
    display: inline-block;
    vertical-align: middle;
}

.player__action div i {
    color: #009cff;
    font-size: 20px;
    line-height: 20px;
}

.player__action:hover div {
    background: #f0f5fc;
}

.player__title {
    color: #fff;
    font-size: 16px;
}

.favorited i {
    color: #ed1c24 !important;
}

.btn_up {
    background: #F20F0F;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 4px;
    color: #fff;
    font-size: 32px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    transition: ease-in-out .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    border: 0;
    transform: translateX(120px);
    box-shadow: rgb(0 0 0 / 60%) 0 3px 8px;
}

.btn_up i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn_up.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mt-2 {
    margin-top: 12px;
}
.mt-4{
	margin-top: 24px;
}
.mb-2 {
    margin-bottom: 12px
}

.btn-remove-favorite {
    position: absolute;
    top: -11px;
    right: -11px;
    width: 25px;
    height: 25px;
    background: #ff0000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-remove-favorite i {
    color: #fff;
    font-size: 14px;
    line-height: 25px;
}

.page-content {
    padding: 20px;

}

.page-content h1 {
    font-size: 24px;
}

.page-content h2 {
    font-size: 20px;
}

.page-content h3,
.page-content h4 {
    font-size: 18px;
}

.page-content h1, .page-content h2, .page-content h3, .page-content h4 {
    margin-bottom: 12px;
}

.page-content p {
    margin-bottom: 10px;
}

.page-content ol, .page-content ul {
    padding-left: 24px;
    list-style: disc;
}

.page-content li {
    list-style: disc;
}