/* Responsive  Styles */

.mobile {
    display: none;
}

.left-menu-btn {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    padding: 0;
    position: relative;
    z-index: 100;
    margin-right: 18px;
}

.left-menu-btn span {
    width: 100%;
    display: block;
    height: 3px;
    background-color: #39f1f1;
    margin: 0 0 8px;
    border-radius: 5px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.75);
}

.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) {
    opacity: 1;
    transition: opacity .3s;
}

.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: calc( 100% - 6px);
    top: 11px;
    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: calc( 100% - 6px);
    top: -11px;
    transform: rotate(45deg);
    transition: top .3s 0s, transform .3s .3s;
    box-shadow: none;
}

.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: 24px;
    margin: 0 0 2px;
}

.right-menu-btn.opened .open-icon {
    opacity: 1;
    transform: rotate(0deg) translateY(2px);
    position: absolute;
}

.sn-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 98;
    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: 1480px){
    .main-menu {
        margin: 0;
    }

    .logo-panel {
        width: 220px;
        /* margin-top: 20px; */
    }
}

@media(max-width: 1400px){
    .main-menu {
        margin-left: 10px;
    }

    .main-menu li {
        padding: 0 15px;
    }

    .after-login button {
        width: 100px;
    }

    .al-d-info {
        padding: 0 15px;
    }
}

@media(max-width: 1260px){
    .mobile {
        display: block;
    }

    .desktop {
        display: none !important;
    }

    .wrapper {
        padding: 80px 0 0;
    }

    .header-section {
        height: 80px;
    }

    .logo-panel {
        width: 170px;
        position: absolute;
        left: 0;
        right: 0;
        margin: 10px auto 0;
    }

    /* Sidebar Left  */

    .sidebar-left{
        width:280px;
        max-width:280px;
        height:100%;
        top: 80px;
        left: 0;
        transform: translateX(-100%);
        background-color: #0f172b;
        border:none;
        border-right: solid 1px #1f2a48;
        border-radius: 0;
        margin: 0 !important;
        padding: 10px 10px 135px;
        display:block;
        overflow-y:auto;
        position:fixed;
        transition:0.5s;
        align-content: flex-start;
        z-index: 80;
    }

    .sidebar-left.active{
        transform: translateX(0);
    }

    .sidebar-left::-webkit-scrollbar {
        width:0px;
        background:transparent;
    }

    .sidebar-left::-webkit-scrollbar-thumb {
        background:transparent;
    }

    .main-menu .bs-ul {
        width: 100%;
        height: auto;
        flex-wrap: wrap;
    }

    .main-menu .bs-ul li {
        width: 100%;
        padding: 0;
    }

    .main-menu .bs-ul li .link-a {
        width: 100%;
        height: 50px;
        padding: 0 0 0 15px;
        justify-content: flex-start;
        margin: 1px 0;
        color: #ffffff;
        font-size: 14px;
        text-shadow: none;
        overflow: visible;
        border-radius: 5px;
        background-image: linear-gradient(to right, rgba(62, 97, 174, 0), rgba(62, 97, 174, 0.2));
    }

    .main-menu .bs-ul li .depth-btn .link-a {
        border-top-color: #1a1a1a;
        border-bottom-color: #2a2a2a;
    }

    .main-menu .bs-ul li:first-child .depth-btn .link-a {
        border-top-color: none;
    }

    .main-menu .bs-ul li .link-a i {
        font-size: 24px;
        margin-right: 10px;
    }

    .depth-btn {
        width: 100%;
    }

    .drop-d {
        width: 100%;
        position: relative;
        left: 0;
        transform: translateX(0);
        pointer-events: auto;
    }

    .drop-d.active {
        pointer-events: auto;
    }

    .drop-d .drop-d-inner {
        background-image: none;
        margin-top: 0;
        opacity: 1;
        border-radius: 0;
        padding: 0 0 0 20px;
        border: none;
        background-color: transparent;
        box-shadow: none;
    }

    .drop-d.active .drop-d-inner {
        margin-top: 0;
        opacity: 1;
    }

    .drop-d .depth-a {
        height: 45px;
        border-radius: 0;
        margin: 0;
        background-image: none;
        border-bottom: dashed 1px rgba(137, 174, 255, 0.15);
        position: relative;
    }

    .drop-d .depth-a:last-child {
        border-bottom: none;
    }

    .drop-d .depth-a:before {
        content: '';
        width: 0;
        height: 0;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto 0;
        position: absolute;
        border-top: 4px solid transparent;
        border-left: 4px solid #6a8ebc;
        border-bottom: 4px solid transparent;
        opacity: 1;
    }

    .drop-d .depth-a .icon-panel {
        width: 34px;
        height: 34px;
        left: 15px;
    }

    .drop-d .depth-a .icon-panel img {
        max-height: 24px;
    }

    .drop-d .depth-a .text-cont {
        font-size: 12px;
    }

    /* Sidebar Right  */

    .sidebar-right{
        width:280px;
        max-width:280px;
        height:100%;
        top: 80px;
        right: 0;
        left: auto;
        transform: translateX(100%);
        background-color: #0f172b;
        background-image: none;
        border:none;
        border-left: solid 1px #1f2a48;
        border-radius: 0;
        margin: 0 !important;
        padding: 0 0 135px;
        display:block;
        overflow-y:auto;
        position:fixed;
        transition:0.5s;
        align-content: flex-start;
        opacity: 1;
        pointer-events: auto;
        z-index: 80;
    }

    .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 {
        padding: 10px 10px;
    }

    .after-login .account-info .row {
        margin: 0 0 5px;
    }

    .after-login .account-info .labels .icon-panel i {
        font-size: 16px;
    }

    .after-login .drop-down .btn-grp {
        width: calc(100% + 2px) !important;
        margin: 10px -1px 0;
    }
}

@media(max-width: 767px){
    .wrapper {
        padding: 105px 0 0;
    }

    .header-section {
        height: 60px;
        background-color: #000000;
        z-index: 1050;
    }

    .header-section .container {
        justify-content: flex-start;
    }

    .logo-panel {
        width: 150px;
        /*top: -41px;*/
        margin: 0 auto;
    }

    .logo-panel .logo .glow,
    .logo-panel .logo .diamond,
    .logo-panel .logo .glare,
    .logo-panel .logo .glow,
    .logo-panel .logo .line {
        display: none;
    }

    .logo-panel .logo .slot {
        left: 0;
        right: 12%;
        bottom: 18%;
    }

    .logo-panel .logo .symbol {
        left: auto;
        right: 14%;
        top: auto;
        bottom: 18%;
        margin: 0;
    }

    .logo-panel .logo .symbol .arrow-up {
        top: 25%;
    }

    .sound-btn {
        margin-left: auto;
    }

    .bal-container {
        width: 100%;
        height: 44px;
        position: absolute;
        left: 0;
        bottom: -45px;
        background-color: #0f172b;
        border-bottom: solid 1px #20315b;
        padding: 0 13px;
    }

    .bal-container .before-login,
    .bal-container .mobile,
    .bal-container .after-login {
        width: 100%;
    }

    .bal-container .before-login button,
    .bal-container .after-login .mobile button {
        width: calc(50% - 4px);
        height: 34px;
        margin: 0 2px;
        border-radius: 30px;
    }

    .sidebar-left, .sidebar-right {
        top: 105px;
    }
}

@media(max-width: 500px){
    .bal-container {
        padding: 0 3px;
    }
}


/* - - - - - - - - - - Banner Queries - - - - - - - - - - */

@media(max-width: 1260px){
    .banner-background {
        width: 110%;
        left: -5%;
    }

    .banner-background .singer-man {
        bottom: -6%;
    }

    .banner-background .singer-girl {
        right: 5%;
    }

    .banner-background .karaoke {
        right: 16.5%;
    }

    .banner-background .note-02 {
        top: -17%;
    }
}

@media(max-width: 1024px){
    .banner-section {
        height: auto;
        padding: 3% 0 2%;
    }

    .banner-carousel {
        max-width: 100%;
        padding-left: 4%;
    }

    .banner-carousel .text-panel h1 {
        font-size: 3.52vw;
        margin: 0;
    }

    .banner-carousel .text-panel h2 {
        font-size: 3.27vw;
        margin: 0;
    }

    .banner-carousel .text-panel h4 {
        font-size: 2.54vw;
        margin: 0;
    }

    .banner-carousel .text-panel h5 {
        font-size: 2.29vw;
        margin: 0;
    }

    .banner-carousel .text-panel h6 {
        font-size: 1.66vw;
        margin: 0;
    }

    .banner-carousel .text-panel .mb-2 {
        margin-bottom: 1% !important;
    }

    .banner-carousel .text-panel .mt-2 {
        margin-top: 1% !important;
    }

    .carousel-nav .control-btn {
        display: none !important;
    }

    .banner-background .singer-man {
        left: auto;
        right: 24%;
        bottom: 10%;
    }

    .banner-background .karaoke {
        bottom: -6%;
        right: 22%;
    }
}

@media(max-width: 767px){
    .banner-background {
        width: 128%;
        left: -23%;
    }

    .banner-background .singer-man {
        right: 21%;
        bottom: 5%;
    }
}

@media(max-width: 500px){
    .banner-section {
        padding: 4% 0 3%;
    }

    .banner-carousel .text-panel .mb-2 {
        margin-bottom: 1% !important;
    }

    .carousel-nav {
        margin: 15px 0 0;
    }

    .carousel-indicators li {
        width: 8px;
        height: 8px;
    }

    .banner-background {
        width: 143%;
        left: -30%;
    }
}

@media(max-width: 414px){ 
    .banner-background {
        top: -8%;
    }

    .carousel-nav {
        margin-top: 10px;
    }
}


/* - - - - - - - - - - Jackpot Queries - - - - - - - - - - */

@media(max-width: 1024px){
    .jackpot-panel {
        background-color: #111830;
        border-bottom: solid 3px #edbb21;
        position: relative;
        padding: 0.75% 0 0;
    }

    .jackpot-panel.major {
        border-color: #a40caf;
    }

    .jackpot-panel.minor {
        border-color: #00a9d2;
    }

    .jackpot-panel:before {
        content: '';
        width: 100%;
        height: 12px;
        background-image: url(../img/bg/jp-major-top.png);
        background-size: 100% 100%;
        left: 0;
        top: -12px;
        position: absolute;
    }

    .jackpot-panel.minor:before {
        background-image: url(../img/bg/jp-minor-top.png);
    }

    .jackpot-panel.mega:before {
        height: 14px;
        top: -14px;
        background-image: url(../img/bg/jp-mega-top.png);
    }

    .jackpot-panel .labels {
        top: 0;
        position: relative;
        margin: 0 0 -0.5%;
    }

    .jackpot-panel .label-panel {
        width: initial;
        height: initial;
        position: relative;
        margin: 0 auto;
    }

    .jackpot-panel .label-panel .cd-bg {
        width: 30px;
        height: 30px;
        margin-right: 5px;
        position: relative;
    }

    .jackpot-panel .label-panel .cd-bg:after {
        width: 14px;
        height: 14px;
        border-width: 5px;
    }

    .jackpot-panel .label-panel .title {
        position: relative;
        top: 2px;
    }

    .jackpot-panel .amount-panel {
        height: initial;
        background-color: transparent;
        border: none;
        padding: 0;
    }

    .jackpot-panel .amount-panel:before {
        display: none;
    }

    .jackpot-panel .amount-panel .amount {
        font-size: 42px;
    }
}

@media(max-width: 940px) {
    .jackpot-panel .amount-panel .amount {
        font-size: 4.47vw;
    }
}

@media(max-width: 767px) {
    .jackpot-panel:before {
        height: 8px;
        top: -8px;
    }

    .jackpot-panel.mega:before {
        height: 10px;
        top: -10px;
    }

    .jackpot-panel .label-panel {
        font-size: 16px;
    }
}

@media(max-width: 500px) {
    .jackpot-section .container {
        padding: 0 2px;
    }

    .jackpot-panel {
        width: calc(33.33% - 4px);
        margin: 0 2px;
    }

    .jackpot-panel:before {
        height: 4px;
        top: -4px;
    }

    .jackpot-panel.mega:before {
        height: 5px;
        top: -5px;
    }

    .jackpot-panel .labels {
        margin: 0;
    }

    .jackpot-panel .label-panel {
        font-size: 14px;
    }

    .jackpot-panel .label-panel .cd-bg {
        width: 22px;
        height: 22px;
    }

    .jackpot-panel .label-panel .cd-bg:before {
        width: calc(100% - 4px);
        height: calc(100% - 4px);
    }

    .jackpot-panel .label-panel .cd-bg:after {
        width: 10px;
        height: 10px;
        border-width: 4px;
    }

    .jackpot-panel .amount-panel .amount {
        margin: 0 0 -1%;
    }
}


/* - - - - - - - - - - Gamelist Category Queries - - - - - - - - - - */

@media(max-width: 1140px){
    .gamelist-category {
        min-height: initial;
        background-color: transparent;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
    }

    .category-ul {
        width: 100%;
        min-height: 50px;
        background-color: #111830;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.75);
        padding: 5px 0;
        margin: 10px 0 0;
        order: 2;
    }

    .notice-rolling {
        order: 1;
    }

    .notice-rolling:after {
        width: 100%;
        height: 1px;
        right: -101%;
        top: 0;
        bottom: 0;
        margin: auto 0;
        background-image: linear-gradient(to left, transparent, #313c5a);
    }
}

@media(max-width: 767px){
    .category-ul {
        padding-top: 0;
    }

    .category-ul li {
        padding: 0;
    }

    .category-ul li a .icon-panel,
    .category-ul li a.active .icon-panel {
        margin: 0 auto;
        padding: 0;
    }

    .category-ul li a .icon-panel:before {
        bottom: 5px;
    }

    .category-ul li a .text {
        width: 100%;
        font-size: 12px;
    }
}

@media(max-width: 500px){
    .gamelist-section {
        margin-top: 10px;
    }    
}
@media(max-width: 414px){
    .category-ul li a .text {
        font-size: 10px;
    }
}


/* - - - - - - - - - - Gamelist Menu Queries - - - - - - - - - - */

@media(max-width: 1400px){
    .providers-menu .menu-btn {
        width: calc(14.28% - 10px);
    }
}

@media(max-width: 1260px){
    .providers-menu .menu-btn {
        width: calc(16.66% - 10px);
    }
}

@media(max-width: 1100px){
    .providers-menu .menu-btn .char-panel {
        display: none;
    }

    .providers-menu .menu-btn .b-panel,
    .providers-menu .menu-btn .b-name {
        justify-content: center;
        text-align: center;
    }
    .providers-menu .menu-btn .b-name {
        padding: 0;
    }
}

@media(max-width: 1024px){
    .gamelist-category {
        margin-bottom: 15px;
    }
}

@media(max-width: 767px){
    .provider-toggle {
        display: block;
    }

    .providers-dropdown {
        display: none;
        padding: 10px 6px 5px;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .providers-menu .menu-btn {
        width: calc(25% - 8px);
        margin: 0 4px 5px;
    }
}

@media(max-width: 500px){
    .providers-menu {
        margin-bottom: 10px;
    }

    .providers-menu .menu-btn {
        width: calc(33.33% - 6px);
        margin: 0 3px 5px;
    }

    .providers-dropdown {
        padding-left: 7px;
        padding-right: 7px;
    }
}


/* - - - - - - - - - - Gamelist Queries - - - - - - - - - - */

@media(max-width: 1300px){
    .game-btn {
        width: calc(14.28% - 10px);
    }
}

@media(max-width: 1024px){
    .game-btn {
        width: calc(16.66% - 10px);
    }
}

@media(max-width: 767px){
    .game-btn {
        width: calc(25% - 10px);
    }
}

@media(max-width: 500px){
    .game-btn {
        width: calc(33.33% - 10px);
    }

    .game-btn .g-panel:after {
        width: 40px;
        height: 40px;
        border-width: 15px;
    }

    .game-btn .g-footer {
        font-size: 12px;
    }

    .game-btn .g-footer .title {
        display: inline-block;
        vertical-align: middle;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .game-btn .hot-tag {
        padding: 2px 2px 0 0;
        font-size: 10px;
    }

    .game-btn .btn-grp {
        max-width: 90px;
    }

    .game-btn .btn-grp button {
        height: 25px;
        font-size: 10px;
    }
}

@media(max-width: 414px){
    .game-btn {
        width: calc(33.33% - 6px);
        margin: 0 3px 10px;
    }

    .game-btn .g-panel {
        border-width: 3px;
        margin-bottom: 2px;
    }

    .game-btn .g-panel:after {
        width: 32px;
        height: 32px;
        border-width: 12px;
    }

    .game-btn .hot-tag {
        font-size: 8px;
    }
}

/* - - - - - - - - - - Providers Queries - - - - - - - - - - */

@media(max-width: 767px){
    .providers-section {
        margin-top: 20px;
    }

    .providers-section .header {
        margin-bottom: 15px;
    }

    .providers-section .header .title {
        font-size: 28px;
    }
}

@media(max-width: 500px){
    .providers-section {
        margin-top: 10px;
    }

    .providers-section .header {
        margin-bottom: 5px;
    }

    .providers-section .header .title {
        font-size: 24px;
        margin: 0 15px;
    }

    .providers-section .header .owl-nav-btn {
        font-size: 24px;
    }

    .owl-carousel {
        width: calc(100% + 10px);
        margin: 0 -5px;
    }

    .owl-carousel .item {
        padding: 0 5px;
    }

    .slot-btn .g-panel .g-icon {
        width: 40px;
        height: 45px;
    }

    .slot-btn .g-footer {
        font-size: 12px;
        height: 35px;
    }

    .slot-btn .play-btn {
        bottom: 35px;
    }
}

@media(max-width: 414px){
    .owl-carousel {
        width: calc(100% + 6px);
        margin: 0 -3px;
    }

    .owl-carousel .item {
        padding: 0 3px;
    }

    .slot-btn .g-panel .g-icon {
        width: 35px;
        height: 40px;
    }

    .slot-btn .g-panel .g-icon img {
        max-width: 32px;
        max-height: 24px;
    }

    .slot-btn .g-footer {
        height: 30px;
    }

    .slot-btn .play-btn {
        width: 90px;
        height: 28px;
        font-size: 12px;
        bottom: 30px;
    }

    .providers-section .header .title {
        font-size: 20px;
        margin: 0 10px;
    }
}


/* - - - - - - - - - - Board Queries - - - - - - - - - - */

@media(max-width: 1480px){
    .board-panel .content {
        padding: 15px 15px;
    }
}

@media(max-width: 1300px){
    .board-panel {
        width: 100%;
        max-width: 600px;
        margin: 10px auto;
    }

    .board-panel:nth-child(1) {
        order: 2;
    }

    .board-panel:nth-child(3) {
        order: 3;
    }

    .realtime-board {
        width: 100%;
        max-width: 600px;
        margin: 10px auto;
        order: 1;
    }
}

@media(max-width: 500px){
    .board-section {
        padding-top: 10px;
    }

    .board-panel .content {
        padding: 5px 10px;
    }

    .realtime-board .header {
        font-size: 30px;
    }

    .board-panel table tr 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;
    }

    .board-panel table tr td {
        font-size: 13px;
        height: 45px;
    }

    .board-panel table tr .date-td {
        font-size: 12px;
    }

    .new-icon {
        margin: 0;
    }

    .realtime-ticker ul li .td {
        font-size: 13px;
    }

    .realtime-ticker ul li .icon-panel {
        margin-left: 10px;
    }

    .realtime-ticker ul li div.amount {
        padding-right: 0;
        font-size: 16px;
    }

    .realtime-ticker ul li .td:last-child {
        font-size: 12px;
    }
}

@media(max-width: 414px){
    .realtime-board .content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .realtime-ticker ul li .icon-panel {
        font-size: 16px;
    }

    .realtime-ticker ul li div.amount {
        padding-right: 0;
        font-size: 14px;
    }
}


/* - - - - - - - - - - Footer Section Queries - - - - - - - - - - */

@media(max-width: 1260px){
    .footer-download {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 0 25px;
    }
}

@media(max-width: 767px){
    .footer-section .container {
        padding: 0 10px;
    }

    .footer-company {
        padding: 20px 0;
    }

    .footer-company img {
        max-width: 90px;
        max-height: 22px;
        margin: 8px 10px;
    }
}

@media(max-width: 500px){
    .footer-copyright {
        padding: 20px 0 30px;
    }

    .footer-download ul li {
        padding: 0 15px;
    }

    .footer-download ul li a img {
        max-height: 30px;
        margin-right: 2px;
    }

    .footer-copyright .logo-footer {
        width: 160px;
    }
}

@media(max-width: 414px){
    .footer-company ul li a img {
        max-width: 28px;
        max-height: 28px;
        margin-right: 2px;
    }

    .footer-company .logo {
        width: 160px;
    }

    .footer-company img {
        max-width: 70px;
        max-height: 18px;
        margin: 6px 6px;
    }

    .footer-download ul li a{
        font-size: 10px;
    }
}

@media(max-width: 360px){
    .footer-download ul li a img {
        max-width: 24px;
    }
}

@media(max-width: 350px){
    .footer-company ul li a img {
        max-width: 28px;
        max-height: 28px;
        margin-right: 2px;
    }

    .footer-company ul li a {
        font-size: 10px;
    }
}


/* - - - - - - - - - - Side Wrapper Queries - - - - - - - - - - */

@media(max-width: 1260px){
    .side-wrapper {
        top: 90px;
    }
}

@media(max-width: 767px){
    .side-wrapper {
        top: 120px;
    }

    .side-wrapper .side-panel .side-toggle {
        width: 60px;
        height: 70px;
        left: -62px;
    }

    .side-wrapper .side-panel .side-toggle .icon-img {
        max-width: 40px;
    }

    .ws_coupon {
        width: 64px;
    }

    .side-wrapper .side-panel {
        max-height: 70px;
        margin-bottom: 5px;
    }

    .side-wrapper .side-panel .side-toggle span {
        font-size: 16px;
        line-height: 18px;
        display: inline-block;
        width: 100%;
    }

    .scroll-top {
        right: 5px;
        bottom: 5px;
    }
}

@media(max-width: 500px){
    .wrapper {
        padding-bottom: 50px;
    }

    .side-wrapper {
        top: auto;
        bottom: 48px;
    }

    .scroll-top {
        width: 100%;
        height: 50px;
        bottom: 0;
        right: 0;
        border-radius: 0;
        font-size: 14px;
        text-shadow: none;
        position: absolute;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }

    .scroll-top:before, .scroll-top:after {
        display: none;
    }

    .scroll-top i {
        position: relative;
        opacity: 1.0;
        top: 0;
        margin: 0;
        font-size: 22px;
    }

    .scroll-top span {
        text-shadow: none;
        top: -1px;
    }
}


/* - - - - - - - - - - Modal Queries - - - - - - - - - - */

@media(max-width: 767px){
    .subpage-modal {
        z-index: 1000;
    }

    .modal-backdrop {
        z-index: 900;
    }

    .subpage-modal .modal-dialog {
        min-height: 100%;
        margin: 0;
        padding: 0;
        align-items: flex-start;
        background-color: #0b172b;
    }

    .subpage-modal .modal-content {
        min-height: 100%;
        border-radius: 0;
        padding-top: 105px;
    }

    .subpage-modal .modal-header {
        height: auto;
        background-color: transparent;
        border-radius: 0;
        border: none;
        margin-bottom: 0;
        box-shadow: none;
        z-index: 2;
    }

    .subpage-modal .modal-header .header-bg,
    .subpage-modal .modal-menu,
    .subpage-modal .header-deco {
        display: none !important;
    }

    .subpage-modal .modal-header .close-btn {
        top: 27px;
        right: 15px;
    }

    .subpage-modal .modal-body {
        border-radius: 0;
        border: none;
        box-shadow: none;
    }

    .modal-wrap {
        padding-left: 15px;
        padding-right: 15px;
    }

    .subpage-modal .modal-wrap {
        padding: 15px 15px 60px;
    }

    .modal-title {
        justify-content: flex-start;
    }

    .modal-title .title-panel {
        min-width: 220px;
        height: 55px;
        padding: 0 15px;
    }

    .modal-title .title {
        font-size: 24px;
        white-space: nowrap;
        flex-wrap: nowrap;
    }

    .messageModal .modal-title .title {
        font-size: 18px;
    }

    .modal-title i {
        font-size: 32px;
    }

    .messageModal .modal-title i {
        font-size: 24px;
    }
}

@media(max-width: 500px) {
    .modal-title .title-panel {
        min-width: 180px;
    }

    .modal-title .title {
        font-size: 20px;
    }

    .modal-title i {
        font-size: 28px;
    }

    .bs-table tr td {
        font-size: 12px;
    }

    .bs-table tr .count-td {
        width: auto;
    }

    .bs-table tr td a {
        max-width: 180px;
        font-size: 12px;
    }

    .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;
    }

    .bs-table tr .count-tag {
        width: 24px;
        height: 24px;
    }

    .bs-table tr .date-td {
        font-size: 10px;
    }

    .form-footer button {
        width: 100%;
        font-size: 13px;
    }

    .modal-notice {
        padding: 10px;
    }

    .modal-notice .content {
        font-size: 12px;
    }

    .modal .logo {
        width: 200px;
        margin: 0 auto 15px;
    }

    .loginModal .modal-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .loginModal h2 {
        font-size: 26px;
    }

    .loginModal h2 i {
        font-size: 30px;
        margin-right: 5px;
    }
}

@media(max-width: 414px) {
    .modal-title .title-panel {
        height: 50px;
    }

    .subpage-modal .modal-header .close-btn {
        top: 25px;
    }

    .transferModal .form-container .w-btn .input-container {
        width: calc(100% - 135px);
    }

    .transferModal .form-container .form-group .form-btn {
        width: 130px;
        font-size: 12px;
        margin-left: 5px;
    }

    .transferModal .form-container .form-group .form-btn i {
        margin: 0 2px;
    }
}


/* - - - - - - - - - - Jackpot Winner Queries - - - - - - - - - - */

@media(max-width:858px){

    .jackpot-winner .user-panel .labels {
        font-size: 2.36vw;
    }

    .jackpot-winner .user-panel .user {
        font-size: 3.5vw;
    }

    .jackpot-winner .amount-text {
        font-size: 6.98vw;
    }

    .jackpot-winner .amount-text .symbol {
        font-size: 5.58vw;
    }

}

@media(max-width:600px){

    .jackpot-winner {
        width: 120%;
        left: -10%;
    }

}


/* - - - - - - - - - - Lottery Queries - - - - - - - - - - */

@media(max-width:700px){
    .scratch-btn .text-panel .amount {
        font-size: 2.7vw;
    }

    .scratch-btn .text-panel .text {
        font-size: 3.43vw;
    }

    .lottery-win .main-cont .inner .amount {
        font-size: 14.29vw;
    }
}

@media(max-width:460px){
    .lottery-win .main-cont .inner .amount {
        position: relative;
        top: 4%;
    }
}


/* - - - - - - - - - - Gameplay Queries - - - - - - - - - - */

@media(max-width:1024px){
    .gameplay-btn {
        width: calc(16.66% - 10px);
    }
}

@media(max-width:767px){
    .gameplay-container {
        height: initial;
        overflow-y: visible;
    }

    .gameplay-panel {
        justify-content: center;
    }

    .gameplay-btn {
        width: calc(25% - 10px);
    }
}

@media(max-width:500px){
    .gameplay-container {
        width: calc(100% + 10px);
        margin: 0 -5px;
    }

    .gameplay-btn {
        width: calc(33.33% - 10px);
    }

    .gameplayModal .modal-wrap {
        padding-top: 10px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media(max-width:414px){
    .gameplay-btn .g-footer {
        height: 25px;
        font-size: 12px;
    }

    .gameplay-btn .g-tag {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }
}

/* - - - - - - - - - - Spin Wheel Queries - - - - - - - - - - */

@media(max-width: 1020px) {
    .spin-wheel .amount-panel {
        font-size: 2.36vw;
    }
}

@media(max-width: 500px) {
    .spin-wheel .wheel-panel {
        width: 78%;
    }

    .spin-wheel .amount-panel {
        font-size: 3.25vw;
        padding-right: 45%;
    }
}