/* Responsive  Styles */

.mobile {
    display: none !important;
}

.left-menu-btn {
    width: 35px;
    background-color: transparent;
    border: none;
    padding: 0;
    position: relative;
    z-index: 100;
    color: #ffffff;
    margin-left: auto;
}

.left-menu-btn span {
    width: 100%;
    display: block;
    height: 2px;
    background-color: #09564f;
    margin: 0 0 8px;
}

.left-menu-btn span:first-child {
    position: relative;
    margin-top: 0;
    top: 0;
    transition: top .3s .3s, transform .3s 0s;
}

.left-menu-btn span:nth-child(2) {
    width: calc(100% - 8px);
    opacity: 1;
    transition: opacity .3s;
    margin-left: auto;
}

.left-menu-btn span:last-child {
    margin-bottom: 0;
    position: relative;
    top: 0;
    transition: top .3s .3s, transform .3s 0s;
}

.left-menu-btn.opened span:first-child {
    width: 100%;
    top: 10px;
    transform: rotate(-45deg);
    transition: top .3s 0s, transform .3s .3s, color .3s .3s;
    box-shadow: none;
}

.left-menu-btn.opened span:nth-child(2) {
    opacity: 0;
}

.left-menu-btn.opened span:last-child {
    width: 100%;
    top: -10px;
    transform: rotate(45deg);
    transition: top .3s 0s, transform .3s .3s;
    box-shadow: none;
}

.right-menu-btn .icon-panel {
    position: relative;
}

.right-menu-btn .icon-panel .normal-icon {
    transition: 0.3s;
    opacity: 1;
    transform: rotate(0deg);
}

.right-menu-btn.opened .icon-panel .normal-icon {
    opacity: 0;
    transform: rotate(45deg);
}

.right-menu-btn .icon-panel .open-icon {
    transition: 0.3s;
    opacity: 0;
    transform: rotate(45deg) translateY(0);
    position: absolute;
    font-size: 22px;
}

.right-menu-btn.opened .icon-panel .open-icon {
    opacity: 1;
    transform: rotate(0deg) translateY(2px);
    position: absolute;
}

.sn-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 97;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s;
}

.sn-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* - - - - - Header Queries - - - - - */

@media(max-width: 1260px) {
    .main-menu ul li {
        padding: 0 15px;
    }
    .main-menu ul li a {
        padding: 0 15px;
    }
}

@media(max-width: 1100px) {
    .main-menu ul li {
        padding: 0 10px;
    }
}

@media(max-width: 1024px) {
    .mobile {
        display: block !important;
    }
    .desktop {
        display: none !important;
    }
    .flag_mobile{
        display: none!important;
    }
    .wrapper {
        padding-top: 95px;
    }
    .header-section {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 999;
        /*1060 -> 999*/
    }
    .header-main {
        height: 55px;
        padding: 5px 0 0;
    }
    .header-main .logo {
        width: 250px;
        margin: 0;
    }
    /* Before After Login */
    .bal-container {
        width: 100%;
        height: 40px;
        position: absolute;
        left: 0;
        bottom: -40px;
        z-index: 1;
        border-top: solid 1px #90ead8;
        border-bottom: solid 1px #ffffff;
        padding: 4px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .bal-container:before,
    .bal-container:after {
        content: '';
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        background-color: #34ada2;
        position: absolute;
        z-index: -1;
    }
    .bal-container:after {
        opacity: 0.4;
        border: none;
        background-position: top center;
        background-image: url(../img/bg/main-bg.jpg);
        background-repeat: no-repeat;
    }
    .before-login,
    .after-login {
        width: 100%;
    }
    .before-login button,
    .after-login .right-menu-btn,
    .after-login .logout-btn {
        width: 50%;
        height: 100%;
        max-width: 300px;
        background-color: transparent;
        background-image: none;
        border: none;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
        border-left: solid 1px rgba(105, 236, 224, 0.5);
        border-right: solid 1px rgba(19, 92, 85, 0.5);
    }
    .before-login button:first-child,
    .after-login .right-menu-btn {
        border-left: none;
    }
    .before-login button:last-child,
    .after-login .logout-btn {
        border-right: none;
    }
    .before-login button i {
        font-size: 18px;
    }
    /* Sidebar Left */
    .sidebar-left {
        width: 280px;
        max-width: 280px;
        height: 100%;
        top: 95px;
        right: 0;
        transform: translateX(100%);
        background-color: #1fa498;
        background-image: linear-gradient(#1fa498, #057b70);
        border: none;
        border-left: solid 1px #74d1c8;
        border-radius: 0;
        margin: 0 !important;
        padding: 10px 10px 90px;
        display: block;
        overflow-y: auto;
        position: fixed;
        transition: 0.5s;
        align-content: flex-start;
        z-index: 98;
    }
    .sidebar-left.active {
        transform: translateX(0);
    }
    .sidebar-left::-webkit-scrollbar {
        width: 0px;
        background: transparent;
    }
    .sidebar-left::-webkit-scrollbar-thumb {
        background: transparent;
    }
    .main-menu:before,
    .main-menu:after {
        display: none;
    }
    .main-menu ul {
        width: 100%;
        display: block;
        border: none;
        padding: 5px 0;
        border-top: solid 1px rgba(105, 236, 224, 0.25);
        border-bottom: solid 1px rgba(19, 92, 85, 0.5);
    }
    .main-menu ul:first-child {
        border-top: none;
        padding: 5px 0;
    }
    .main-menu ul:last-child {
        border-bottom: none;
    }
    .main-menu ul li {
        width: 100%;
        display: block;
    }
    .main-menu ul li a {
        width: 100%;
        height: 45px;
        justify-content: flex-start;
        border-radius: 10px;
        text-shadow: none;
    }
    .main-menu ul li a:before {
        border-radius: 10px;
    }
    .main-menu ul li a:hover:before {
        width: 0;
        height: 0;
    }
    .main-menu ul li a .icon-panel {
        width: 20px;
        margin-right: 15px;
        font-size: 20px;
    }
    /* Sidebar Right */
    .sidebar-right {
        width: 280px;
        max-width: 280px;
        height: 100%;
        top: 95px;
        left: 0;
        transform: translateX(-100%);
        background-color: #1fa498;
        background-image: linear-gradient(#1fa498, #057b70);
        border: none;
        border-right: solid 1px #74d1c8;
        border-radius: 0;
        margin: 0 !important;
        padding: 15px 10px 90px;
        display: block;
        overflow-y: auto;
        position: fixed;
        transition: 0.5s;
        align-content: flex-start;
        z-index: 98;
        opacity: 1;
        pointer-events: auto;
    }
    .sidebar-right.active {
        transform: translateX(0);
    }
    .sidebar-right::-webkit-scrollbar {
        width: 0px;
        background: transparent;
    }
    .sidebar-right::-webkit-scrollbar-thumb {
        background: transparent;
    }
    .after-login .account-info .labels {
        color: #ffffff;
    }
    .after-login .account-info .labels .icon i {
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-image: -webkit-linear-gradient(#8cfff4, #8cfff4);
        background-size: 100% 100%;
    }
}

@media(max-width: 500px) {
    .header-main .logo {
        width: 220px;
        margin: 0;
    }
}

/* Banner Queries */

@media(max-width: 1430px) {
    .banner-section {
        height: auto;
    }
    .banner-title {
        position: relative;
        top: 0;
        padding: 0 0 10px;
        margin: 2% 0 2.75%;
    }
    .banner-carousel {
        margin: 0 0 3%;
    }
    .banner-carousel h1 {
        font-size: 3.35vw;
    }
    .mobile-support {
        position: relative;
        bottom: 0;
        margin: 0 0 3%;
    }
    .circle-bg {
        min-width: initial;
    }
    .banner-mask {
        bottom: -15%;
    }
}

@media(max-width: 1024px) {
    .banner-title {
        font-size: 12px;
        padding-bottom: 5px;
    }
    .mobile-support {
        margin: 0 0 2.5%;
    }
    .mobile-support .icon-panel {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .circle-bg {
        width: 45.96%;
    }
    .banner-carousel h1 {
        font-size: 3.5vw;
    }
}

@media(max-width: 767px) {
    .wrapper-bg {
        height: 160px;
    }
    .banner-title {
        font-size: 10px;
        margin: 1% 0 4%;
    }
    .mobile-support .icon-panel {
        width: 28px;
        height: 28px;
        font-size: 14px;
        border-radius: 5px;
        margin: 0 4px;
    }
    .carousel-indicators li {
        width: 8px;
        height: 8px;
    }
}

@media(max-width: 500px) {
    .wrapper-bg {
        height: 140px;
    }
    .banner-section:before {
        border-radius: 100px 100px 0 0;
    }
    .banner-title {
        font-size: 8px;
        margin-top: 3%;
    }
    .mobile-support {
        font-size: 10px;
        margin-bottom: 3%;
    }
    .mobile-support .icon-panel {
        width: 22px;
        height: 22px;
    }
    .banner-carousel h1 {
        font-size: 4vw;
    }
    .carousel-indicators {
        margin-top: 1%;
    }
    .carousel-indicators li {
        width: 6px;
        height: 6px;
        border-width: 1px;
        margin: 0 2px;
    }
    .banner-background {
        width: 110%;
        left: -5%;
    }
}

/* Category Queries */

@media(max-width: 1300px) {
    .category-btn {
        height: 120px;
    }
    .category-btn .icon-panel img {
        max-height: 60px;
    }
    .category-btn:nth-child(2) .icon-panel img {
        max-height: 54px;
    }
    .category-btn .text-panel .kr-text {
        font-size: 22px;
    }
    .category-btn:first-child .bg,
    .category-btn:last-child .bg {
        width: 162%;
    }
}

@media(max-width: 1200px) {
    .category-btn:first-child .bg,
    .category-btn:last-child .bg {
        width: 158%;
    }
}

@media(max-width: 1024px) {
    .category-section {
        margin-top: 0;
    }
    .category-btn {
        height: 80px;
    }
    .category-btn:nth-child(2) {
        height: 60px;
    }
    .category-btn:first-child .bg,
    .category-btn:last-child .bg {
        width: 150%;
    }
    .category-btn .text-panel .kr-text {
        font-size: 18px;
        margin-bottom: -2px;
    }
    .category-btn .icon-panel img {
        max-height: 50px;
    }
    .category-btn:nth-child(2) .icon-panel img {
        max-height: 44px;
    }
    .category-btn .arrow-icon {
        font-size: 24px;
        right: 15px;
    }
}

@media(max-width: 767px) {
    .category-btn {
        height: 60px;
    }
    .category-btn:nth-child(2) {
        height: 50px;
    }
    .category-btn .icon-panel {
        margin-right: 5px;
        margin-left: 10px;
    }
    .category-btn .icon-panel img {
        max-height: 40px;
    }
    .category-btn:nth-child(2) .icon-panel img {
        max-height: 34px;
    }
    .category-btn .text-panel .kr-text {
        font-size: 16px;
    }
    .category-btn .text-panel .en-text {
        font-size: 10px;
    }
    .category-btn .arrow-icon {
        right: 10px;
    }
}

@media(max-width: 600px) {
    .category-btn {
        width: calc(33.33% - 2px);
        height: 50px;
    }
    .category-btn:first-child .bg,
    .category-btn:last-child .bg {
        width: 100%;
        transform: rotateY(0deg);
        box-shadow: 0 4px 0 rgba(0, 161, 146, 0.3);
        border-radius: 15px;
    }
    .category-btn .arrow-icon {
        display: none;
    }
    .category-btn .icon-panel img {
        max-height: 34px;
    }
    .category-btn .text-panel .kr-text,
    .category-btn .text-panel .en-text {
        width: initial;
    }
    .category-btn .text-panel .kr-text {
        font-size: 12px;
        margin-bottom: 0;
    }
    .category-btn .text-panel .en-text {
        display: none;
    }
    .category-btn .icon-panel {
        margin-left: 0;
    }
}

@media(max-width: 500px) {
    .category-btn,
    .category-btn:nth-child(2) {
        height: 45px;
    }
    .category-btn .bg {
        box-shadow: 0 2px 0 rgba(0, 161, 146, 0.3) !important;
        border-radius: 10px !important;
    }
}

@media(max-width: 414px) {
    .category-btn .icon-panel img,
    .category-btn:nth-child(2) .icon-panel img {
        max-height: 30px;
    }
    .category-btn .text-panel .kr-text {
        font-size: 10px;
    }
}

/* Providers Queries */

@media(max-width: 1024px) {
    .sc-btn {
        width: calc(25% - 20px);
    }
}

@media(max-width: 767px) {
    .sc-btn {
        width: calc(33.33% - 20px);
    }
}

@media(max-width: 600px) {
    .providers-section {
        margin-top: 15px;
    }
    .sc-btn .g-logo {
        width: 70px;
        height: 70px;
    }
    .sc-btn .g-logo .g-circle img {
        max-width: 30px;
        max-height: 40px;
    }
    .sc-btn .g-footer {
        height: 60px;
    }
    .sc-btn .g-footer .kr-text {
        font-size: 14px;
    }
    .sc-btn .g-footer .en-text {
        font-size: 10px;
    }
}

@media(max-width: 500px) {
    .providers-panel {
        width: calc(100% + 12px);
        margin: 0 -6px;
    }
    .sc-btn {
        width: calc(33.33% - 12px);
        margin: 0 6px 20px;
    }
    .sc-btn:after {
        height: 10%;
        bottom: -10%;
    }
    .sc-btn .g-footer {
        height: 50px;
    }
    .sc-btn .g-footer:before,
    .sc-btn .g-footer:after {
        top: -40%;
    }
    .sc-btn .g-deco .g-chip-o {
        left: 0;
        bottom: 23%;
    }
    .sc-btn .g-logo {
        width: 60px;
        height: 60px;
    }
    .sc-btn .g-logo .g-circle img {
        max-height: 30px;
    }
}

@media(max-width: 414px) {
    .sc-btn .g-footer .kr-text {
        font-size: 12px;
    }
    .sc-btn .g-footer:before,
    .sc-btn .g-footer:after {
        top: -32%;
    }
}

@media(max-width: 375px) {
    .sc-btn .g-footer {
        height: 45px;
    }
    .sc-btn .g-logo {
        width: 50px;
        height: 50px;
    }
    .sc-btn .g-logo .g-circle img {
        max-width: 24px;
        max-height: 24px;
    }
}

/* Board Queries */

@media(max-width: 1260px) {
    .board-section .container {
        flex-wrap: wrap;
    }
    .board-group {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    .board-panel {
        width: calc(50% - 30px);
        margin: 0 15px;
    }
    .realtime-board {
        width: 50%;
        max-width: 540px;
        margin: 0;
        padding: 0 40px 0 0;
    }
    .customer-board {
        width: 50%;
        padding: 0 0 0 40px;
    }
}

@media(max-width: 1024px) {
    .board-section {
        padding: 0 0 10px;
    }
    .board-group {
        order: 2;
        margin-bottom: 20px;
    }
    .board-panel {
        width: 100%;
        max-width: 600px;
        margin: 0 0 20px;
    }
    .realtime-board {
        width: 100%;
        max-width: 600px;
        margin: 0 0 30px;
        padding: 0;
        order: 1;
    }
    .customer-board {
        width: 100%;
        max-width: 600px;
        margin: 0;
        padding: 35px 0 0;
        order: 3;
    }
    .customer-board:before {
        width: 100%;
        height: 1px;
        border-left: none;
        border-top: dashed 1px #7eb0c2;
        bottom: auto;
        top: 0;
        margin: 0;
    }
}

@media(max-width: 767px) {
    .board-section:before {
        border-radius: 0 0 40px 40px;
    }
}

@media(max-width: 500px) {
    .realtime-board .header {
        padding: 0;
    }
    .realtime-board .realtime-badge {
        width: 70px;
        height: 70px;
    }
    .realtime-board .realtime-badge img {
        width: 40px;
    }
    .realtime-toggle button {
        width: 46%;
    }
    .realtime-toggle button:first-child {
        margin-right: auto;
    }
    .board-panel .content table td a {
        font-size: 13px;
        display: inline-block;
        vertical-align: middle;
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-decoration: none;
    }
    .new-icon {
        margin-left: 0;
    }
    .board-panel table tr td:last-child {
        padding-right: 0;
        font-size: 12px;
    }
    .board-panel table tr td:first-child {
        padding-left: 3px;
    }
    .footer-section .logo {
        width: 200px;
    }
    .customer-board .cs-panel {
        padding: 8px;
    }
    .customer-board .cs-panel .icon-panel {
        width: 44px;
        height: 44px;
    }
    .customer-board .cs-panel .info {
        font-size: 20px;
    }
}

@media(max-width: 414px) {
    .realtime-toggle button {
        font-size: 18px;
    }
    .realtime-board .content {
        width: 100%;
    }
    .realtime-board .content {
        padding: 10px;
    }
    .realtime-ticker ul li div.user {
        padding-left: 2px;
    }
    .realtime-ticker ul li div.amount {
        font-size: 14px;
        padding-right: 5px;
    }
    .realtime-ticker ul li div.date {
        padding-right: 5px;
        font-size: 12px;
    }
    .customer-board .header {
        font-size: 24px;
    }
}

/* Modal Queries */

@media(max-width: 1024px) {
    .modal-dialog {
        min-height: 100%;
        margin: 0;
    }
    .loginModal .modal-dialog {
        max-width: 100%;
    }
    .loginModal .close-btn {
        top: auto;
    }
    .loginModal .close-btn:before,
    .loginModal .close-btn:after {
        background-color: #229389;
    }
    .loginModal .close-btn:hover:before,
    .loginModal .close-btn:hover:after {
        background-color: #d54a34;
    }
    .modal-dialog-centered {
        min-height: 100%;
        align-items: stretch;
    }
    .modal-content {
        min-height: 100%;
        padding: 95px 0 0;
    }
    .modal-wrapper {
        min-height: 100%;
        border: none;
        border-radius: 0;
        padding: 0;
        align-content: flex-start;
    }
    .modal-wrapper:before {
        display: none;
    }
    .modal-sidebar {
        display: none !important;
    }
    .modal-panel {
        width: 100%;
        min-height: 100%;
        border-radius: 0;
        padding: 15px;
    }
    .loginModal .modal-panel {
        min-height: 100%;
        border-radius: 0;
    }
}

@media(max-width: 767px) {
    .modal-nav {
        border-bottom: none;
        flex-wrap: wrap;
    }
    .modal-nav button {
        width: calc(33.33% - 4px);
        height: auto;
        margin: 2px;
        max-width: initial;
        border-bottom: solid 2px #acced4;
        padding: 5px 0 8px;
        flex-wrap: nowrap;
    }
    .modal-nav button:after {
        height: 2px;
        bottom: -2px;
    }
    .modal-nav button .icon-panel {
        width: 26px;
        height: 26px;
    }
    .modal-nav button .text {
        display: inline-block;
        min-width: 78px;
        white-space: nowrap;
        text-align: left;
    }
    .level-information .bs-ul {
        width: 100%;
    }
    .level-information .bs-ul li {
        width: calc(50% - 3px);
        height: 40px;
        margin-right: 6px;
    }
    .level-information .bs-ul li:last-child {
        margin-right: 0;
    }
    .level-information .bs-ul li .labels {
        margin-right: 10px;
    }
    .level-information .point-form {
        width: 100%;
        margin: 5px 0 0;
    }
    .level-information .point-form input {
        height: 40px
    }
    .level-information .points-btn {
        height: 40px;
    }
}

@media(max-width: 500px) {
    .modal-panel {
        padding: 10px 10px 0;
    }
    .modal-body {
        min-height: initial;
        padding: 15px 10px 50px;
    }
    .loginModal .modal-body {
        padding: 15px 20px 50px;
    }
    .modal-body:before {
        border-radius: 20px 20px 0 0;
    }
    .modal-header {
        margin-bottom: 5px;
    }
    .modal-header .title-panel {
        font-size: 20px;
    }
    .modal-header .title-panel i {
        font-size: 30px;
        top: 0;
    }
    .modal .close-btn {
        right: 5px;
    }
    .modal-badge {
        min-height: 55px;
    }
    .form-container .form-group .infos .btn-grp button {
        width: calc(33.33% - 4px);
        height: 36px;
        margin: 2px 2px;
    }
    .bs-table tr .count-td {
        width: auto;
    }
    .bs-table tr td a {
        max-width: 180px;
    }
    .bs-table tr .title-td {
        max-width: 180px;
        padding-left: 5px;
    }
    .bs-table tr .nav-td {
        width: auto;
    }
    .bs-table td .level-txt {
        width: 100%;
        text-align: center;
    }
    .bs-table td .level-icon {
        margin-right: 0;
    }
    .bs-table thead th {
        font-size: 12px;
    }
    .modal-footer {
        margin-top: 20px;
    }
    .form-footer {
        width: calc(100% + 4px);
        margin: 0 -2px;
    }
    .form-footer button {
        margin: 0 2px;
    }
    .form-footer button {
        font-size: 14px;
    }
    .quick-consult .accounts i {
        font-size: 44px;
    }
    .quick-consult .accounts .ri-wechat-fill {
        font-size: 50px;
    }
}

@media(max-width: 414px) {
    .modal-badge {
        padding: 0 5px 0 8px;
        font-size: 12px;
    }
    .modal-badge .icon {
        margin-right: 2px;
    }
    .modal-badge button {
        padding: 0 10px;
        font-size: 12px;
    }
    .bs-table tr td {
        font-size: 12px;
    }
    .bs-table tr .date-td {
        font-size: 12px;
    }
    .modal-nav button .text {
        min-width: 66px;
        font-size: 12px;
    }
    .modal-nav button.active .icon-panel {
        margin-right: 5px;
        box-shadow: 0 0 0 rgba(36, 190, 206, 0);
    }
    .form-container .form-group .select-input i {
        font-size: 24px;
        right: 4px;
        top: 6px;
    }
}

/* Gamelist Queries */

@media(max-width: 1024px) {
    .gamelistModal .modal-wrapper {
        padding: 0;
    }
    .gamelist-scroll {
        width: calc(100% + 16px);
        max-height: initial;
        overflow-y: visible;
        padding: 0;
        margin: 0 -8px;
    }
    .game-btn {
        width: calc(20% - 16px);
    }
}

@media(max-width: 920px) {
    .gamelistModal .modal-nav {
        border-bottom: none;
        flex-wrap: wrap;
    }
    .gamelistModal .modal-nav button {
        width: calc(25% - 2px);
        height: auto;
        margin: 2px 1px;
        max-width: initial;
        border-bottom: solid 2px #acced4;
        padding: 5px 0 8px;
        flex-wrap: nowrap;
    }
    .gamelistModal .modal-nav button:after {
        height: 2px;
        bottom: -2px;
    }
    .gamelistModal .modal-nav button .icon-panel {
        width: 26px;
        height: 26px;
    }
    .gamelistModal .modal-nav button .text {
        min-width: initial;
        white-space: nowrap;
        text-align: center;
    }
    .game-btn {
        width: calc(25% - 16px);
    }
}

@media(max-width: 600px) {
    .gamelistModal .modal-nav button .text {
        font-size: 12px;
    }
    .game-btn {
        width: calc(33.33% - 16px);
    }
}

@media(max-width: 500px) {
    .gamelistModal .modal-body {
        padding: 15px 10px 50px;
    }
    .gamelist-scroll {
        width: calc(100% + 8px);
        margin: 0 -4px;
    }
    .game-btn {
        width: calc(33.33% - 8px);
        margin: 0 4px 8px;
    }
    .game-btn .g-name {
        font-size: 12px;
        height: 30px;
    }
}

@media(max-width: 414px) {
    .gamelistModal .modal-nav button .text {
        font-size: 10px;
    }
    .game-btn {
        border-width: 2px;
    }
    .game-btn .g-name {
        font-size: 10px;
        height: 28px;
    }
}

@media(max-width: 1400px) {
    .main-menu ul.category-ul {
        width: 400px;
        table-layout: initial;
        padding-right: 0;
        padding-left: 20px;
    }
    .main-menu ul {
        width: calc(100% - 400px);
    }
    .main-menu ul li,
    .main-menu .category-ul li {
        padding: 0;
    }
}

@media(max-width: 1024px) {
    .main-menu ul {
        width: 100%;
    }
}

@media(max-width: 500px) {
    .sports-providers .sc-btn .g-footer {
        height: 60px;
    }
}

/* Attendance Queries */

@media(max-width: 1024px) {
    .attendance-info {
        height: initial;
        padding: 0;
    }
    .attendance-info table {
        width: 100%;
        min-height: 50px;
    }
    .attendance-info table td {
        position: relative;
        padding: 0;
    }
}

@media(max-width: 767px) {
    .attendance-info table {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding: 3px 5px;
    }
    .attendance-info table tbody,
    .attendance-info table tr {
        width: 100%;
        display: block;
    }
    .attendance-info table td {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0 0 0 15px;
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin: 2px 0;
    }
    .attendance-info table td:after {
        display: none;
    }
}

@media(max-width: 500px) {
    .attendance-calendar td .attend-stamp {
        width: 40px;
    }
}