@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

.kanit-light {
    font-family: "Kanit", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.kanit-regular {
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.kanit-medium {
    font-family: "Kanit", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.kanit-semibold {
    font-family: "Kanit", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.kanit-bold {
    font-family: "Kanit", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.kanit-light-italic {
    font-family: "Kanit", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.kanit-regular-italic {
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.kanit-medium-italic {
    font-family: "Kanit", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.kanit-semibold-italic {
    font-family: "Kanit", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.kanit-bold-italic {
    font-family: "Kanit", sans-serif;
    font-weight: 700;
    font-style: italic;
}

:root {
    --sidebar-width: 250px;
}

/* ========================================================= */

.svg-10{
    height: 10px !important;
}
.svg-14{
    height: 14px !important;
}
.svg-15{
    height: 15px !important;
}
.svg-16{
    height: 16px !important;
}
.svg-18{
    height: 18px !important;
}
.svg-20{
    height: 20px !important;
}
.svg-24{
    height: 24px !important;
}
.svg-30{
    height: 30px !important;
}
.svg-36{
    height: 36px !important;
}
.svg-white {
    fill: white;
}
.svg-red {
    fill: red;
}
.svg-green {
    fill: green;
}
.svg-yellow {
    fill: yellow;
}
.svg-blue {
    fill: blue;
}
.svg-teal {
    fill: teal;
}
.svg-black {
    fill: black;
}
.svg-gray {
    fill: gray;
}

.text-red {
    color: red !important;
}
.text-blue {
    color: blue !important;
}
.text-green {
    color: green !important;
}
.text-gold {
    color: gold;
}
.text-yellow {
    color: yellow;
}

.hr-gold {
    background-color: gold;
}

.loading-state {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loading {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 10px solid #ddd;
    border-top-color: orange;
    animation: loading 1s linear infinite;
}
@keyframes loading {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================================= */

html.overflow-y-hidden {
    overflow-y: hidden;
}

.desktop {
    display: none !important;
}
.mobile {
    display: flex !important;
}
.-row-fix {
    margin-right: -12px !important;
}


@media screen and (min-width: 768px) {
    .desktop {
        display: flex !important;
    }
    .mobile {
        display: none !important;
    }
}

.desktop-hide {
    display: none;
}
@media screen and (max-width: 768px) {
    .desktop-hide {
        display: flex;
    }
}

body {
    margin: 0;
    font-family: -apple-system, "Kanit", sans-serif;
    font-weight: 300;
    color: #bdbdbd;
    background-color: #031b05;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.main-wrap {
    backface-visibility: hidden;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    max-width: 100%;
    /*min-height: 100vh;*/
    min-height: calc(100vh - 80px);
    position: relative;
}

.current_credit {
    font-size: 1.2em;
}
.update_credit_btn {
    cursor: pointer;
}
.update_at {
    font-size: 0.5em;
}

.header-top {
    height: 80px;
    margin-top: 0;
    transform: translateY(0px);
    left: 0;
    right: 0;
    position: fixed;
    background: #07300b;
    z-index: 99;
}

.header-shadow {
    box-shadow: 0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);
}

.header-content {
    height: 80px;
    align-items: center;
    display: flex;
    position: relative;
    z-index: 0;
}
@media screen and (max-width: 768px) {
    .header-top {
        height: 48px;
    }
    .header-content {
        height: 48px;
    }
}


.header-container {
    display: flex;
    justify-content: space-between;
    padding: 20px 10px;
    width: 100%;
}

.header-logo {
    height: 100%;
    margin-bottom: auto;
    margin-top: auto;
    max-height: 40px;
}

.header-container .header-menu {
    display: inline-flex;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
}
.header-container .header-menu .menu-item {
    align-items: center;
    background-color: #F6FFF2;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 0 0 8px 4px rgba(0,0,0,2);
    color: #0d4f08;
    cursor: pointer;
    flex-direction: column;
    height: 95px;
    min-width: 90px;
    padding: 15px 10px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    z-index: 1;
}
@media screen and (max-width: 969px) {
    .header-container .header-menu .menu-item {
        height: 80px;
        min-width: 80px;
        padding: 10px;
    }
    .header-container .header-menu .menu-item .icon {
        height: 35px;
    }
}

.header-container .header-menu .menu-item:hover {
    background-color: #0e9625;
}

.header-container .header-menu .menu-item .icon {
    height: 40px;
}
.header-container .header-menu .menu-item .menu-text {
    font-size: 16px;
    font-weight: 600;
}

.header-container.desktop .header-auth {
    display: inline-flex;
    gap: 8px;
    margin-bottom: auto;
    margin-top: auto;
}
.header-container.desktop .header-auth .auth-text {
    padding: 5px 0;
}
.auth-user {
    font-size: 1.2em;
}

.c-btn {
    min-width: 120px !important;
    padding: 0 10px !important;
}
.c-btn-size-default {
    height: 36px;
    min-width: 64px;
    padding: 0 16px;
}

.header-container.mobile {
    display: block;
    padding: 0;
}
.header-container.mobile .header-mobile {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 4px 8px;
    position: relative;
    z-index: 0;
    width: 100%;
}
.menu-hamburger {
    cursor: pointer;
    display: inline-block;
    height: 16px;
    margin-bottom: auto;
    margin-top: auto;
    margin-right: 30px;
    position: relative;
    width: 25px;
}
.menu-hamburger span {
    animation: wave 0.4s ease-out infinite alternate;
    background: #216904;
    border-radius: 20px;
    display: block;
    height: 3px;
    left: 0;
    opacity: 1;
    position: absolute;
    transform: rotate(0deg);
    transform-origin: left center;
    transition: 0.25s ease-in-out;
    width: 70%;
}
.menu-hamburger span:nth-child(0) {
    top: 0;
}
.menu-hamburger span:nth-child(1) {
    top: 8px;
    animation-delay: 0.3s;
}
.menu-hamburger span:nth-child(2) {
    top: 16px;
    animation-delay: 0.7s;
}
@keyframes wave {
    40% {
        width: 80%;
    }
    70% {
        width: 90%;
    }
    100% {
        width: 100%;
    }
}
.header-container.mobile .header-mobile .header-auth {
    margin-left: auto;
}
.header-container.mobile .header-mobile .header-auth .auth-text {
    font-size: 12px;
}



.page-main {
    /*display: flex;*/
    flex: 1 0 auto;
    max-width: 100%;
    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 0 100px 0;
}

.page-main-wrap {
    flex: 1 1 auto;
    max-width: calc(100% - 15px - var(--sidebar-width));
    position: relative;
    margin-left: var(--sidebar-width);
    padding-left: 5px;
    padding-top: 25px;
    color: #FFFFFF;
}
@media screen and (max-width: 768px) {
    .page-main {
        padding: 50px 0 50px 0;
    }
}

.page-header {
    text-align: center;
}
.page-header h1,
.page-header h2 {
    font-size: 2em;
    font-weight: 600;
}


.mobile-menu-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding: 12px;
    white-space: nowrap;
}
.mobile-menu-list .mobile-menu-item {
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 0 2px #edfae9 !important;
    cursor: pointer;
    height: 92px;
    width: 92px;
    padding: 6px;
    text-align: center;
    text-decoration: none;
    background-color: darkgoldenrod;
}
.mobile-menu-list .mobile-menu-item:hover,
.mobile-menu-list .mobile-menu-item.active {
    background-color: gold;

}

.mobile-menu-list .mobile-menu-item img {
    border: none;
}
.mobile-menu-list .mobile-menu-item .icon {
    margin-bottom: auto;
    margin-top: 5px;
    width: 45px;
}
.mobile-menu-list .mobile-menu-item .text {
    word-wrap: break-word;
    color: white;
    font-size: 15px;
    font-weight: 500;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .mobile-menu-list::-webkit-scrollbar {
        display: none;
    }
    .mobile-menu-list .mobile-menu-item {
        flex: 0 0 auto;
        height: 70px;
        width: 70px;
        padding: 4px;
    }
    .mobile-menu-list .mobile-menu-item .icon {
        width: 35px;
    }
}


.sidebar {
    background-color: #F6FFF2;
    height: 100vh;
    top: 80px;
    transform: translateX(0%);
    width: var(--sidebar-width);
    position: fixed;
    max-height: calc(100% - 80px);
    z-index: 4;
}

@media screen and (max-width: 768px) {
    .page-main-wrap {
        margin-left: 0;
        padding: 0;
        max-width: 100%;
    }
    .sidebar {
        display: none;
        height: 100%;
        max-height: 100%;
        width: 100%;
        top: 0;
        z-index: 10;
    }
}

.item-active {
    background: linear-gradient(180deg,#0e9625,#f5f8cb) !important;
}

.sidebar-content {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #0b2e13;
    scrollbar-width: thin;
    scrollbar-color: #0e765b transparent;
}
.sidebar-content::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.sidebar-content::-webkit-scrollbar-track {
    background: #0b2e13;
}
.sidebar-content::-webkit-scrollbar-thumb {
    background: #0b2e13;
    border-radius: 3px;
}
.sidebar-content::-webkit-scrollbar-thumb:hover {
    background: #09401c;
}
.sidebar-content::-webkit-scrollbar-button {
    display: none;
}

.sidebar-content .sidebar-menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 10px 25px;
    margin-bottom: 80px;
}
.sidebar-content .sidebar-menu-list .sidebar-menu-item {
    align-items: center;
    background: linear-gradient(180deg, #0e9625, #0e9625);
    border: none;
    border-radius: 14px;
    color: hsla(0, 0%, 100%, .8);
    cursor: pointer;
    display: inline-flex;
    gap: 10px;
    height: 70px;
    justify-content: flex-start;
    max-height: 80px;
    padding: .75rem 1rem;
    position: relative;
    text-decoration: none;
    transition: all .4s;
    width: 100%;
}
.sidebar-content .sidebar-menu-list .sidebar-menu-item.-bg-red {
    background: linear-gradient(180deg, red, darkred) !important;
}
.sidebar-content .sidebar-menu-list .sidebar-menu-item:before {
    background: hsla(0,0%,100%,.3);
    border-radius: 0 20px 20px 0;
    content: "";
    height: 55%;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3px
}
.sidebar-content .sidebar-menu-list .sidebar-menu-item:hover {
    background: linear-gradient(180deg,#0e9625,#f5f8cb)
}
.sidebar-content .sidebar-menu-list .sidebar-menu-item .icon {
    margin-top: auto;
    margin-bottom: auto;
    width: 45px;
    border-style: none;
}
.sidebar-content .sidebar-menu-list .sidebar-menu-item .text {
    word-wrap: break-word;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
}


.sidebar-mobile {
    display: none;
    height: 100%;
    max-height: 100%;
    width: 100%;
    top: 0;
    z-index: 100;
    position: fixed;

}
.sidebar-mobile .sidebar-head {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    position: relative;
}
.sidebar-mobile .sidebar-logo {
    margin: auto;
    max-height: 35px;
}

/* ============ content ============ */
.-container-override {
    margin-left: auto;
    margin-right: auto;
    padding: 12px;
    width: 100%;
}

.-container-override .-container-content {
    margin-bottom: 20px;
}

.owl-theme img {
    border-radius: 20px;
}

.header-zone {
    margin-bottom: 10px;
}
.header-zone .header-bar {
    background-color: #0e9625;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    display: inline-flex;
    gap: 5px;
    padding-right: 10px;
    position: relative;
    width: 100%;
    justify-content:space-between;
}
.header-zone .header-bar .highlight {
    background: #fbd112;
    clip-path: polygon(0 0, 75% 0, 80% 50%, 75% 100%, 0% 100%);
    padding: 4px 80px 4px 10px;
    white-space: nowrap;
}
.header-zone .header-bar .highlight .icon {
    margin-bottom: auto;
    margin-top: auto;
    width: 50px;
}
.header-zone .header-bar .highlight .text {
    margin-bottom: auto;
    margin-top: auto;
    color: #0b2e13;
}
@media screen and (max-width: 959px) {
    .header-zone .header-bar .highlight {
        padding: 2px 80px 2px 5px;
    }
    .header-zone .header-bar .highlight .icon {
        width: 35px;
    }
    .header-zone .header-bar .highlight .text {
        font-size: 18px;
    }
}
.game-item {
    background: transparent;
    border-radius: 8px;
    /*box-shadow: 0 0 8px #0e9625;*/
    height: 100%;
    width: 100%;
    position: relative;
    margin-bottom: 10px;
}
.game-item img {
    width: 100%;
    border-radius: 8px;
}
.game-item .game-name {
    background: rgba(0, 0, 0, .6);
    border-radius: 0 0 8px 8px;
    bottom: 0;
    color: #fff;
    display: flex;
    height: 30px;
    overflow: hidden;
    position: absolute;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

/* ====================== hitz ================== */
#hitz-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 10px;
}
#hitz-box #header-zone {
    display: flex;
    margin-bottom: 5px;
    text-align: center;
    width: 100%;
}
#hitz-box #header-zone #header-zone-text {
    font-size: 28px;
    font-weight: 800;
}
#hitz-box #hitz-category {
    background: linear-gradient(180deg, #0e9625, #F9FFF2);
    border-radius: 8px;
    box-shadow: 0 0 8px 1px rgba(0, 0, 0, .16);
    display: flex;
    gap: 8px;
    height: fit-content;
    justify-content: center;
    width: 100%;
}
#hitz-box #hitz-category::-webkit-scrollbar {
    display: none;
}
#hitz-box #hitz-category .hitz-cat-item {
    cursor: pointer;
    line-height: 0;
    margin: 8px;
    text-align: center;
    width: 100%;
    padding: 5px;
}
#hitz-box #hitz-category .hitz-cat-item.active {
    background-color: yellow !important;
    border-radius: 8px;
}
#hitz-box #hitz-category .hitz-cat-item:first-child {
    margin-left: 10px;
}
#hitz-box #hitz-category .hitz-cat-item .hitz-item-name{
    color: #0d4f08;
    display: inline-flex;
    font-size: 14px;
    text-align: center;
}
#hitz-box #hitz-category .hitz-cat-item .hitz-item-name img {
    height: 30px;
    width: 30px;
    margin-top: auto;
    margin-bottom: auto;
}
#hitz-box #hitz-category .hitz-cat-item .hitz-item-name span {
    margin-top: auto;
    margin-bottom: auto;
    font-size: 16px;
    white-space: nowrap;
}
@media screen and (max-width: 768px) {
    #hitz-box #hitz-category {
        gap: 2px;
        justify-content: normal;
        overflow-x: auto;
    }
    #hitz-box #header-zone #header-zone-text {
        font-size: 20px;
    }
}

/* ====================== footer ================= */
.footer {
    bottom: 0;
    position: fixed;
    width: 100%;
    z-index: 50;
    height: 70px;
}
.bg-footer {
    background: linear-gradient(to bottom, #627d4d, #1f3b08);
    border-radius: 18px 18px 0 0;
    box-shadow: 0 0 20px -5px #000000;
}

.footer-menu {
    display: flex;
}
.footer-menu-item {
    flex-grow: 1;
    text-align: center;
    width: 25%;
    padding-top: 5px;
}
.footer-menu .footer-menu-item#footer-menu-no1 {
    border-top-left-radius: 18px;
}
.footer-menu .footer-menu-item#footer-menu-no5 {
    border-top-right-radius: 18px;
}
.footer-menu .footer-menu-item {
    border-top: 2px solid #90EE90 !important;
}
.footer-menu .footer-menu-item .footer-link {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding-bottom: 0.4rem;
    text-decoration: none;
    transition: background 0.25s;
    width: 100%;
    color: white;
    text-align: center;
}
.footer-menu .footer-menu-item .footer-link .img{
    display: inline-block;
    height: 40px;
    margin: 0 auto;
}
.footer-menu .footer-menu-item .footer-link .img img {
    height: 85%;
    margin-left: auto;
    margin-right: auto;
    width: auto;
}
.footer-menu .footer-menu-item .footer-link .text{
    display: block;
    line-height: 1;
    text-align: center;
    width: 85%;
}
.-footer-capsule {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}
.-footer-capsule a {
    font-size: 10px;
    font-weight: 500;
    fill: #fff;
    color: #fff;
    background-color: #303030;
    border-radius: 20px 20px 20px 20px;
    padding: 5px;
    margin: 5px;
}


/* ====== right box ===== */
#right-box-float {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}
#right-box-float #arrow-nav {
    text-align: center;
    line-height: 1;
    font-size: 1.6em;
    font-weight:bolder;
    cursor: pointer;
    color: yellow;
	/*
    background-color: red;
    width: 28px;
    height: 28px;
	*/
    margin: auto;
    margin-right: 0;
    border-bottom-left-radius: 50%;
    border-top-left-radius: 50%;
}
#right-box-float #right-content {
    background: rgba(0, 0, 0, 0.8);
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    display: grid;
    grid-template-columns: 1fr;
    transition-duration: .3s;
}
#right-box-float #right-content .item {
    cursor: pointer;
}
#right-box-float #right-content .item img {
    width: 80px;
}
@media screen and (max-width: 959px) {
    #right-box-float #right-content .item img {
        width: 60px;
    }
}

.providericon {
    background-color: gray;
}
#banner-provider {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
}

#banner-provider .banner-provider-box {
    align-items: center;
    background: hsla(0, 0%, 100%, 0.1);
    height: 65px;
    width: 65px;
    padding: 4px;
    border-radius: 4px;
}
#banner-provider .banner-provider-box:hover {
    background: hsla(0, 0%, 100%, 0.6);
}
#banner-provider .banner-provider-box img {
    width: 100%;
}

.game-list-link {
    display: block;
}
.game-list-link .icon {
    width: 100%;
    border-radius: 8px;
}
.game-list-link:hover {
    /*box-shadow: 0 0 10px #0e9625;*/
}
.game-list-link .game-list-name {
    text-decoration: none;
    font-size: 1.2em;
    color: white;
}
.game-list-link:hover {
    text-decoration: none;
    color: yellowgreen;
}

.seo-box {
    background-color: #0b2e13;
}


/*

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
    width: 100%;
    height: 75px;
    background: linear-gradient(0deg, rgba(5,48,3,1) 5%, rgba(6,117,0,1) 67%);

    box-shadow: 0 0 10px #73020C;
}

.main-header .header-brand {
    display: flex;
    align-items: center;
}

.main-header .header-logo {
    width: 100px;
}

.main-header .header-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-header .header-content .header-content-menuwrapper {
    margin-right: 0.4rem;
}
@media(max-width: 991.98px) {
    .main-header .header-content .header-content-menuwrapper {
        display: none;
    }
}

.main-header .header-content .header-content-menuwrapper .nav-item:not(:last-child) .nav-link {
    margin-right: 0.5rem;
}
.main-header .header-content .header-content-menuwrapper .nav-link {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 80px;
    height: 100%;
    text-align: center;
    color: #fafafa;
    transition: .3s;
    padding: .25rem .5rem;
    background: transparent;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.main-header .header-content .header-content-menuwrapper .nav-link .-img-wrapper {
    position: relative;
}
.main-header .header-content .header-content-menuwrapper .nav-link .-img-wrapper .-icon {
    position: relative;
    width: auto;
    max-height: 44px;
    margin-bottom: 2px;
}
.main-header .-text {
    font-size: 0.75em;
}
.main-header .header-content .header-content-menuwrapper .nav-link:hover {
    background-color: #0f6ea1;
}

#main-wrap {
    height: 100%;
    padding-top: 85px;
}

/* ============ game menu =========== */

/*
#game-menu {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}
#game-menu .game-menu-item:before {
    content: "";
    position: absolute;
    bottom: 1px;
    width: 55%;
    height: 3px;
    background: hsla(0,0%,100%,0.3);
    border-radius: 20px 20px 0 0;
}
#game-menu .game-menu-item {
    position: relative;
    align-items: center;
    border-radius: .5rem;
    background: linear-gradient(0deg,rgb(31 54 37 / 75%),rgb(0 0 0 / 40%));
    box-shadow: 0 5px 10px #000000b0;
    cursor: pointer;
    display: flex;
    flex-basis: calc(19% - 10px);
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: center;
    margin: 5px 5px 15px;
    padding-bottom: 5px;
    padding-top: 10px;
    text-decoration: none;
    width: 60px;
}
#game-menu .-item-active {
    background: linear-gradient(0deg, rgb(6 227 67) 0%, rgb(0 84 47) 100%) !important;
}
#game-menu .-item-active img{
    animation: bounce;
    animation-duration: 2s;
    animation-delay: 1s;

}

#game-menu .game-menu-item img {
    margin-top: -20px;
    width: 50px;
}

#game-menu .game-menu-title {
    font-size: max(2.5vw,10px) !important;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (min-width: 768px) {
    #game-menu .game-menu-item img {
        margin-top: -50px;
        width: 130px;
    }
    #game-menu .game-menu-title {
        font-size: max(3vw,10px) !important;
    }
}
*/

#manage-main {
    min-height: 100%;
    padding-bottom: 40px;
}
#mange-boxleft {
    background-color: gray;
    flex: 1;
}
#mange-boxright {
    background-color: hsla(0, 0%, 100%, 0.2);
    padding-left: 20px;
    padding-right: 20px;
    min-height: 100vh;
}
#mange-boxleft,
#mange-boxright {
    padding-top: 95px;
    padding-bottom: 50px;
}
.viplevel-icon {
    height: 90px;
}

@media screen and (max-width: 768px) {
    #mange-boxleft,
    #mange-boxright {
        padding-top: 55px;
    }
    #mange-boxright {
        padding-left: 15px;
        padding-right: 15px;
    }
    .viplevel-icon {
        height: 60px;
    }
}

#manage-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}
#manage-menu li {
    margin: 5px 0;
    text-align: left;
}
#manage-menu li a {
    border-radius: 5px;
    display: inline-flex;
    justify-content: flex-start;
    position: relative;
    text-decoration: none;
    width: 100%;
}
#manage-menu li a.active,
#manage-menu li a:hover {
    text-decoration: none;
    background-color: #facea8;
    color: black !important;
}
#manage-menu li a .icon,
#manage-menu li a .text {
    margin-bottom: auto;
    margin-top: auto;
    padding: 10px;
}
#manage-menu li a .icon svg,
#manage-menu li a .icon img {
    height: 30px;
    width: 30px;
    fill: white;
}
#manage-menu li a .text span {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    color: white;
    display: inline;
    display: -webkit-box;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: auto;
    margin-top: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.manage-detail {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 1.1em;
}

@media screen and (max-width: 768px) {
    #manage-menu li {
        text-align: center;
    }
    #manage-menu li a {
        display: inline-block;
    }
    #manage-menu li a .icon,
    #manage-menu li a .text {
        padding: 5px;
    }
    #manage-menu li a .icon svg,
    #manage-menu li a .icon img {
        height: 25px;
        width: 25px;
    }
    #manage-menu li a .text span {
        font-size: 14px;
        font-weight: normal;
    }
}

#aff-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#aff-menu li {
    margin: 5px 0;
}
#aff-menu li.active {
    border-bottom: 3px solid yellow;
}
#aff-menu li a {
    color: white;
    text-decoration: none;
}
.aff-box {
    padding: 10px;
    border: 1px solid white;
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: 10px;
}