/* Responsive  Styles */

.mobile, .mobile-sm {
    display: none !important;
}

.left-menu-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    position: relative;
    margin-right: 15px;
}

.left-menu-btn:before,
.left-menu-btn:after {
    content: '';
}

.left-menu-btn:before,
.left-menu-btn:after,
.left-menu-btn span {
    width: 100%;
    height: 2px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    background-color: #ffffff;
    display: block;
    transition: 0.3s;
}

.left-menu-btn:hover:before,
.left-menu-btn:hover:after,
.left-menu-btn:hover span {
    background-color: #ffffff;
}

.left-menu-btn span {
    margin: auto;
}

.left-menu-btn:before {
    top: -14px;
}

.left-menu-btn:after {
    top: 13px;
}

.left-menu-btn.opened:before,
.left-menu-btn.opened:after {
    width: 50%;
    left: 0;
}

.left-menu-btn.opened:before {
    top: -1px;
    transform: rotate(45deg);
    transform-origin: bottom left;
}

.left-menu-btn.opened:after {
    top: 1px;
    transform: rotate(-45deg);
    transform-origin: top left;
}

.left-menu-btn.opened span {
    opacity: 0;
}

.right-menu-btn {
    position: relative;
    color: #ffffff;
}

.right-menu-btn .normal-icon {
    transition: 0.3s;
    opacity: 1;
    transform: rotate(0deg);
}

.right-menu-btn.opened .normal-icon {
    opacity: 0;
    transform: rotate(45deg);
}

.right-menu-btn .open-icon {
    transition: 0.3s;
    opacity: 0;
    transform: rotate(45deg) translateY(0);
    position: absolute;
    font-size: 22px;
}

.right-menu-btn.opened .open-icon {
    opacity: 1;
    transform: rotate(0deg) translateY(2px);
    position: absolute;
    font-size: 23px;
}

.mobile-menu ul li a {
    width: 100%;
    color: #cccccc;
    font-weight: 700;
    display: inline-block;
}

.sn-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 97;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
    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: 1600px) {
    .logo {
        margin-left: 30px;
    }
}

@media(max-width: 1024px) {
    .mobile {
        display: block !important;
    }
    
    .desktop {
        display: none !important;
    }

    .wrapper {
        padding-top: 127px;
        padding-bottom: 70px;
    }

    .header-top {
        height: 56px;
    }

    .header-top .logo {
        width: 170px;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;    
    }


    /* Sidebar Right */

    .sidebar-right {
        width: 100%;
        max-width: 350px;
        height: calc(100% - 126px);
        position: fixed;
        right: 0;
        top: 126px;
        border-radius: 0;
        padding: 10px 15px 90px;
        background-color: var(--bg-01);
        z-index: 100;
        overflow-y: auto;
        pointer-events: auto;
        transition: 0.3s;
        transform: translateX(100%);
    }

    .sidebar-right.active {
        transform: translateX(0);
    }

    .sidebar-right::-webkit-scrollbar {
        width:0px;
        background:transparent;
    }

    .al-box {
        margin: 0;
    }

    .al-box .link-grp {
        background-color: rgba(0, 0, 0, 0);
        flex-wrap: wrap;
        padding: 5px 0;
    }

    .al-box .link-grp li {
        width: 100%;
        padding: 2px 0;
    }

    .al-box .link-grp li a {
        width: 100%;
        justify-content: flex-start;
        padding: 4px 10px;
        font-size: 14px;
        background-color: rgba(25, 25, 25, 0.5);
        border-radius: 10px;
    }

    .al-box .link-grp li a .icon-panel {
        margin-right: 10px;
    }

    .al-box .link-grp li a .text {
        width: auto;
        margin: 0;
    }

    .page-sidebar {
        pointer-events: none;
    }

    .page-sidebar .sidebar-wrap {
        z-index: 100;
    }
    

    /* Chat Box */

    .chat-box {
        width: 100%;
        height: 65%;
        position: fixed;
        left: 0;
        bottom: 60px;
        margin: 0;
        opacity: 0;
        transform: translateY(100%);
        transition: 0.3s;
        pointer-events: none;
        border-radius: 10px 10px 0 0;
    }

    .chat-box.active {
        opacity: 1.0;
        transform: translateY(0);
        pointer-events: auto;
    }

    .chat-box .header {
        height: 44px;
        border-radius: 6px;
    }

    .chat-box .content {
        height: auto;
    }
}


/* - - - - - Page Content Queries - - - - - */

@media(max-width: 1740px) {
    .board-panel table td a .title {
        max-width: 250px;
    }

    .board-panel .tab table td a .title {
        max-width: 200px;
    }
}

@media(max-width: 1600px) {
    .page-panel {
        width: calc(100% - 590px);
    }

    .page-sidebar {
        width: 280px;
    }

    .page-sidebar .sidebar-wrap {
        width: 280px;
    }

    .login-box {
        padding: 20px 15px;
    }

    .warranty-banner {
        font-size: 32px;
    }

    .warranty-banner .sub {
        font-size: 10px;
        margin: -2% 0 0;
    }

    .sports-banner .text-panel {
        font-size: 16px;
    }

    /* Stream Menu */

    .stream-menu ul {
        padding-left: 0;
    }

    .stream-menu .date-td {
        width: 10%;
    }

    .stream-menu .channel-td {
        width: 14%;
    }

    .stream-menu ul .league-td,
    .stream-menu ul .date-td {
        font-size: 14px;
    }

    .stream-menu .watch-btn {
        width: 60px;
    }
}

@media(max-width: 1500px) {
    .notice-board {
        width: 45%;
    }

    .post-board {
        width: calc(55% - 10px);
    }

    .board-panel .tab table:last-child {
        display: none;
    }

    .board-panel .tab table td a .title {
        max-width: 250px;
    }
}

@media(max-width: 1400px) {
    .notice-board {
        width: 100%;
        margin: 0 0 10px;
    }

    .post-board {
        width: 100%;
    }

    .board-section .board-panel {
        min-height: 175px;
    }

    .board-panel table td {
        height: 26px;
    }

    .sports-banner .text-panel {
        font-size: 14px;
    }
}

@media(max-width: 1340px) {
    .stream-menu {
        padding-right: 66px;
        padding-left: 10px;
    }

    .stream-menu .watch-td {
        width: 60px;
        height: calc(100% - 8px);
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto 0;
        position: absolute;
        padding: 0 4px;
    }

    .stream-menu .watch-btn {
        height: 100%;
        border-radius: 8px;
    }

    .stream-menu ul {
        justify-content: flex-start;
    }

    .stream-menu ul li {
        height: 28px;
        margin: 0 0;
        white-space: nowrap;
    }

    .stream-menu .category-td { order: 1; }
    .stream-menu .league-td { order: 2; }
    .stream-menu .date-td { order: 3; }
    .stream-menu .channel-td { order: 4; }
    .stream-menu .team-td:nth-child(4) { order: 5; }
    .stream-menu .vs-td { order: 6; }
    .stream-menu .team-td:nth-child(6) { order: 7; }

    .stream-menu .category-td {
        width: initial;
        margin-right: 5px;
    }

    .stream-menu .category-td img {
        max-width: 18px;
    }

    .stream-menu .league-td {
        width: initial;
        white-space: nowrap;
        font-size: 12px;
    }

    .stream-menu .league-td img {
        max-width: 18px;
        margin-right: 5px;
    }

    .stream-menu .date-td {
        font-size: 12px;
        margin-left: 10px;
        margin-right: auto;
    }

    .stream-menu .channel-td {
        width: 40%;
        justify-content: flex-end;
    }

    .stream-menu .channel-btn {
        min-width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .stream-menu .team-td {
        width: 44%;
        height: 30px;
    }

    .stream-btn .text {
        width: calc(100% - 20px);
    }

    .stream-menu .vs-td {
        width: 12%;
        height: 30px;
    }

    .stream-btn {
        height: 100%;
    }
}

@media(max-width: 1024px) {
    .page-content {
        padding-top: 0;
    }

    .page-panel {
        width: 100%;
        z-index: initial;
    }

    .board-section {
        margin: 5px 0 0;
    }

    .event-marquee {
        width: 100%;
        height: 30px;
        border-left: none;
        border-right: none;
        margin: 0;
        left: 0;
        top: 96px;
        border-radius: 0;
        padding: 0 1px;
        position: fixed;
        z-index: 110;
    }

    .event-marquee .icon-panel {
        width: 30px;
        height: 26px;
        font-size: 14px;
        border-radius: 0;
    }

    .event-marquee .marquee-wrap {
        width: calc(100% - 30px);
    }


    /* Sports Banner */

    .sports-banner .text-panel {
        font-size: 1.76vw;
    }

    .sports-banner .title-panel {
        font-size: 2.35vw;
        margin: 0 auto 3% 0;
        padding: 0 3%;
    }
}

@media(max-width: 991px) {
    .socmed-ul {
        order: 1;
        width: 100%;
        padding: 0 0 20px;
        margin: 0 0 30px;
        border-bottom: dashed 1px rgba(255, 255, 255, 0.1);
    }

    .copyright-panel {
        order: 2;
        width: 100%;
    }

    .footer-copyright .copyright-panel .icon {
        margin: 0 auto 15px;
    }

    .footer-copyright .copyright-panel .text-panel {
        width: 100%;
        text-align: center !important;
    }

    .footer-copyright .copyright-panel .text-panel .text-gray {
        font-size: 12px;
        margin: 0 0 5px;
    }

    .footer-copyright .copyright-panel .text-panel br {
        display: block;
    }

    .customer-ul {
        width: 100%;
    }

    .customer-ul li {
        width: 100%;
        height: 40px;
        padding: 0 !important;
    }

    .footer-customer {
        padding: 20px 0 30px;
    }

    .footer-customer .telegram-link {
        margin: 20px auto 0;
    }
}

@media(max-width: 500px) {
    .container {
        padding: 0 10px;
    }

    /* Highlight */

    .highlight-wrap {
        padding: 5px;
    }

    .highlight-menu {
        width: 90px;
    }

    .highlight-menu button {
        font-size: 12px;
    }

    .highlight-menu button .icon-panel {
        height: 30px;
    }

    .highlight-tab {
        width: calc(100% - 100px);
        margin: 0 0 0 10px;
    }

    .hl-btn .g-footer {
        height: 30px;
        padding: 0 10px;
    }


    /* Board Panel */

    .board-section .board-panel {
        min-height: initial;
    }

    .board-panel .header,
    .board-panel .tab-menu {
        height: 45px;
    }


    /* Category */

    .category-menu {
        margin: 0 0 5px;
    }

    .category-btn {
        padding: 5px 5px 2px;
    }

    .category-btn .icon-panel {
        margin: 0 0 2px;
    }

    .stream-nav .btn-grp button {
        width: calc(25% - 4px);
        margin: 0 2px;
    }


    /* About Banner */

    .about-banner .title-panel {
        font-size: 18px;
    }

    .about-banner .text-panel {
        font-size: 14px;
        padding: 0 10px;
    }

    .sports-banner .title-panel {
        font-size: 3.5vw;
    }

    .sports-banner .text-panel {
        font-size: 2.5vw;
    }

    .sports-banner .bg {
        width: 130%;
    }


    /* Footer Section */

    .footer-details .menu-ul {
        justify-content: flex-start;
    }

    .footer-details .menu-ul li {
        width: 33.33%;
    }

    .footer-details .menu-ul li a {
        width: 100%;
        padding: 5px 0;
    }

    .details-ul li {
        padding: 10px 20px;
    }

    .footer-details .details-ul br {
        display: block;
    }
}


/* - - - - - Modal Queries - - - - - */

@media(max-width: 500px){
    .modal-backdrop {
        background-image: linear-gradient(to bottom, rgba(0, 0, 1, 0.75), rgba(10, 0, 70, 0.75), rgba(4, 46, 144, 0.75), rgba(46, 128, 234, 0.75));
    }
    
    .modal {
        padding: 0 15px !important;
    }

    .modal .close-btn {
        right: 8px;
        top: 8px;
    }

    .form-container .w-btn .input-container {
        width: calc(100% - 135px);
    }

    .form-group .form-btn {
        width: 130px;
    }

    .emoji-menu {
        margin: 20px 0 0;
    }

    .emoji-menu button {
        width: calc(16.66% - 16px);
        max-width: 50px;
        max-height: 40px;
    }
}


/* - - - - - Subpages Queries - - - - - */

@media(max-width: 1024px){
    .page-header {
        width: calc(100% + 30px);
        min-height: 40px;
        margin: 0 -15px 15px;
        border-radius: 0;
        background-image: linear-gradient(to bottom right, rgba(10, 0, 70, 0.75), rgba(4, 46, 144, 0.75), rgba(46, 128, 234, 0.75));
    }

    .view-content h1 { font-size: 32px; }
    .view-content h2 { font-size: 24px; }
    .view-content h3 { font-size: 20px; }
    .view-content h4 { font-size: 18px; }
    .view-content h5 { font-size: 16px; }
    .view-content h6 { font-size: 14px; }
    .font-sz-36 { font-size: 24px; }

    .view-content table {
        font-size: 20px;
    }

    /* Calendar */

    .calendar ul {
        max-width: 500px;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin: 0 auto;
    }

    .calendar ul li {
        width: 10%;
    }
}

@media(max-width: 767px){
    .page-menu {
        flex-wrap: wrap;
    }

    .page-menu a {
        width: 33.33% !important;
        height: 38px;
        margin: 0;
        padding: 0;
        min-width: initial;
        white-space: nowrap;
    }

    .form-container .infos.convert-menu a {
        width: calc(20% - 2px);
        height: 30px;
    }

    .form-container .infos.convert-menu a:first-child {
        height: initial;
        white-space: wrap;
        padding: 5px 10px;
    }

    .tip-btn .img-panel {
        width: 100%;
        margin: 0 0 5px;
    }

    .tip-btn .info-panel {
        width: 100%;
        padding: 0;
    }

    .tip-btn .info-panel .info {
        height: 35px;
        padding-left: 5px;
    }

    .attendance-ul {
        margin: 10px 0 0;
    }

    .attendance-ul li {
        height: 80px;
        padding: 0 10px 0 70px;
        background-color: var(--bg-03);
        border-radius: 5px;
        margin: 2px 0;
        flex-wrap: wrap;
        align-content: center;
    }

    .attendance-ul li .labels {
        width: 100%;
        margin: 0 0 5px;
    }

    .attendance-ul li .info {
        width: 100%;
        font-size: 14px;
    }

    .attendance-ul .avatar-icon {
        width: 50px;
        height: 50px;
        position: absolute;
        left: 10px;
        top: 0;
        bottom: 0;
        margin: auto 0;
    }

    .attendance-ul .date,
    .attendance-ul .time {
        margin-left: 10px;
    }

    .attend-tag {
        height: 18px;
        padding: 0 10px;
        font-size: 11px;
        position: absolute;
        top: 10px;
        right: 10px;
    }
}

@media(max-width: 600px){
    .form-container .infos.convert-menu a {
        width: calc(25% - 2px);
        font-size: 12px;
    }

    .view-content {
        padding: 15px;
    }

    .attendance-nav button {
        padding: 0 5px;
        height: 24px;
        font-size: 11px;
        margin: 0 2px;
    }

    .attendance-nav button .text {
        display: none;
    }

    .attendance-nav .date {
        font-size: 20px;
        margin: 0 15px;
    }

    .attendance-nav .symbol {
        font-size: 16px;
    }
}

@media(max-width: 500px){
    .page-header {
        width: calc(100% + 20px);
        margin: 0 -10px 10px;
    }

    .page-menu a {
        height: 32px;
    }

    .notice-marquee {
        height: 36px;
    }

    .notice-marquee .icon-panel {
        height: 24px;
    }

    .page-nav .btn-grp button {
        height: 36px;
    }

    .view-content h1 { font-size: 28px; }

    .tip-btn .info-panel .info ul li {
        font-size: 14px;
    }

    .mypage-wrap .header .title {
        width: 100%;
        margin: 0 0 10px;
    }

    .mypage-wrap .header .btn-grp {
        width: 100%;
        justify-content: center;
        margin: 0 0 10px;
    }

    .mypage-panel .profile-panel {
        width: 140px;
    }

    .mypage-panel .progress-panel {
        width: calc(100% - 140px);
        padding: 0 15px 0 30px;
    }

    .mypage-panel .avatar-panel {
        width: 80px;
    }

    .mypage-panel .progress-panel ul li:nth-child(1), .mypage-panel .progress-panel ul li:nth-child(2) {
        width: 100%;
    }

    /* Activity */

    .activity-wrap {
        padding: 0;
    }

    .activity-wrap:before {
        right: auto;
        left: 5px;
    }

    .activity-panel {
        width: calc(100% - 30px);
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .activity-panel:nth-child(odd) {
        margin-right: 0;
        margin-left: auto;
    }

    .activity-panel:nth-child(odd):before {
        left: -10px;
        right: auto;
        border-left: none;
        border-right: 10px solid #0a0d10;
        top: 0;
        bottom: 0;
        margin: auto 0;
        filter: drop-shadow(-1px 0 0 #232b35);
    }

    .activity-panel:nth-child(even):before {
        bottom: 0;
        top: 0;
        margin: auto 0;
    }

    .activity-panel:nth-child(odd) .indicator {
        right: auto;
        left: -33px;
        bottom: 0;
        top: 0;
        margin: auto 0;
    }

    .activity-panel:nth-child(even) .indicator {
        left: -33px;
        top: 0;
        bottom: 0;
        margin: auto 0;
    }

    .avatar-wrap button {
        width: calc(25% - 20px);
    }
}


/* - - - - - Gallery Queries - - - - - */

@media(max-width: 1400px){
    .gallery-btn {
        width: calc(50% - 20px);
    }
}

@media(max-width: 1024px){
    .gallery-btn {
        width: calc(33.33% - 20px);
    }
}

@media(max-width: 767px){
    .gallery-btn {
        width: calc(50% - 20px);
    }
}

@media(max-width: 500px){
    .gallery-wrap {
        width: calc(100% + 10px);
        margin: 0 -5px;
    }

    .gallery-btn {
        width: calc(50% - 10px);
        margin: 0 5px 10px;
    }

    .gallery-btn .g-title .title {
        font-size: 14px;
    }

    .gallery-btn .g-details {
        margin: 5px 0 0;
    }

    .gallery-btn .g-footer .views {
        padding: 0 5px;
    }
}


/* - - - - - Bulletin Queries - - - - - */

@media(max-width: 767px){
    .bulletin-table,
    .bulletin-table tbody,
    .bulletin-table tbody tr {
        width: 100%;
        display: flex;
        align-content: center;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .bulletin-table thead {
        display: none;
    }

    .bulletin-table tr {
        background-color: rgba(255, 255, 255, 0.03);
        border: solid 1px rgba(255, 255, 255, 0.05);
        border-radius: 5px;
        margin: 0 0 2px;
        padding: 10px 10px 6px;
    }

    .bulletin-table tr td,
    .bulletin-table tr:hover td,
    .bulletin-table tr:nth-child(even) td,
    .bs-table tr:nth-child(even):hover td {
        background-color: rgba(255, 255, 255, 0);
        border: none;
    }

    .bs-table tr.highlight td {
        background-color: transparent;
    }

    .bulletin-table tr td {
        height: initial;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bulletin-table tr .count-td {
        display: none;
        order: 1;
    }

    .bulletin-table tr td.title-td {
        width: 100%;
        justify-content: flex-start;
        padding: 0;
        order: 2;
    }

    .bulletin-table tr td.author-td {
        order: 5;
        margin-left: auto;
    }

    .bulletin-table tr td.date-td {
        order: 3;
        width: initial;
        padding-right: 15px;
    }

    .bulletin-table tr td.views-td {
        order: 4;
        width: initial;
    }

    .bulletin-table tr td.reco-td {
        display: none;
    }

    .bulletin-table tr td .mob-icon {
        display: inline-block;
        font-size: 16px;
        margin: 0 5px 0 0;
    }
}

@media(max-width: 500px){
    .bulletin-table tr td a {
        max-width: 220px;
    }

    .view-content {
        font-size: 16px;
    }
    .view-content img{
        width:100%
    }
    .bs-table thead .th-title {
        font-size: 14px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
}