/* 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;
}

.left-menu-btn span {
    width: 100%;
    display: block;
    height: 2px;
    background-color: #9f9fbe;
    margin: 0 0 9px;
    border-radius: 2px;
}

.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-right: 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: 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: 100%;
    top: -11px;
    transform: rotate(45deg);
    transition: top .3s 0s, transform .3s .3s;
    box-shadow: none;
}

.right-menu-btn .icon-panel {
    position: relative;
    margin-right: 5px;
}

.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;
    bottom: -1px;
}

.right-menu-btn.opened .icon-panel .open-icon {
    opacity: 1;
    transform: rotate(0deg) translateY(2px);
    position: absolute;
    font-size: 23px;
}

.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: 1760px){
    .header-section .logo {
        width: 200px;
    }

    .header-section .logo .logo-text {
        font-size: 56px;
    }

    .header-section .logo .logo-char {
        height: 54px;
    }

    .main-menu ul li {
        padding: 0 14px;
    }

    .after-login .nav-btn {
        margin-right: 15px;
    }

    .al-d-info {
        margin-right: 30px;
    }
}

@media(max-width: 1559px){
    .main-menu .btn-panel {
        margin-left: 20px;
    }

    .main-menu ul li {
        padding: 0 10px;
    }

    .after-login button {
        width: 120px;
    }
}

@media(max-width: 1400px){
    .header-section .logo {
        width: 180px;
    }

    .header-section .logo .logo-text {
        font-size: 50px;
    }

    .header-section .logo .logo-char {
        height: 48px;
    }

    .after-login button {
        width: 100px;
    }

    .al-d-info {
        margin-right: 20px;
    }

    .after-login .nav-btn {
        margin-right: 5px;
    }
}

@media(max-width: 1320px){
    .mobile { display: block !important; }
    .desktop { display: none !important; }

    .wrapper {
        padding-top: 70px;
    }

    .header-section {
        height: 70px;
    }

    .sound-btn {
        width: 40px;
        height: 40px;
    }

    .header-section .logo {
        width: 140px;
        margin: 8px auto 0;
        position: absolute;
        left: 0;
        right: 0;
        text-align: center;
    }

    .header-section .logo .logo-text {
        font-size: 40px;
    }

    .header-section .logo .logo-char {
        height: 40px;
    }

    /* Sidebar Left  */

    .sidebar-left{
        width:280px;
        max-width:280px;
        height:100%;
        top: 71px;
        left: 0;
        transform: translateX(-100%);
        background-color: #26262f;
        border: none;
        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;
        align-items: flex-start;
    }

    .sidebar-left.active{
        transform: translateX(0);
        box-shadow: 5px 0 10px rgba(0, 0, 0, 0.5);
    }

    .sidebar-left::-webkit-scrollbar {
        width:0px;
        background:transparent;
    }

    .sidebar-left::-webkit-scrollbar-thumb {
        background:transparent;
    }

    .main-menu:before {
        display: none;
    }

    .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: 3px 0;
        color: #ffffff;
        font-size: 14px;
        text-shadow: none;
        overflow: visible;
        border-radius: 10px;
        background-color: rgba(164, 164, 195, 0.05);
        border: solid 1px rgba(164, 164, 195, 0.1);
    }

    .main-menu .bs-ul li .link-a i {
        color: #ff230a;
        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;
        margin-bottom: 5px;
        opacity: 1;
        border-radius: 0;
        padding: 0;
        border: none;
        background-color: rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        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;
        position: relative;
        background-color: transparent;
        border: none;
    }

    .drop-d .depth-a:last-child {
        border-bottom: none;
    }

    .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: 71px;
        right: 0;
        left: auto;
        transform: translateX(100%);
        background-color: #26262f;
        border: none;
        border-radius: 0;
        margin: 0 !important;
        padding: 20px 10px 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;
    }

    .before-login button,
    .after-login button {
        width: 130px;
        height: 40px;
        margin-left: 5px;
    }

    .before-login .btn-gray,
    .after-login .btn-gray {
        height: 42px;
    }
}

@media(max-width: 767px){
    .wrapper {
        padding: 60px 0 0;
    }

    .header-section {
        height: 60px;
    }

    .sidebar-left, .sidebar-right {
        top: 61px;
    }

    .before-login button,
    .after-login .mobile button {
        width: 34px;
        height: 34px;
        overflow: visible;
        margin: 0 0 14px 8px;
    }

    .before-login .btn-gray,
    .after-login .btn-gray {
        width: 36px;
        height: 36px;
        margin: 0 0 14px 8px;
        background-color: #3b3b4a;
        border-color: #4e4e61;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    /* center the donald icon inside the round login button */
    .before-login .login-donald {
        height: 30px;
        margin: 0;
    }

    .before-login button i,
    .after-login .mobile button i {
        font-size: 20px;
        margin: 0;
    }

    .right-menu-btn .icon-panel {
        margin-right: 0;
    }

    .before-login button .text,
    .after-login .mobile button .text {
        width: 100%;
        display: inline-block;
        color: #a8b9ce;
        font-size: 8px;
        line-height: 8px;
        white-space: nowrap;
        position: absolute;
        left: 50%;
        bottom: -14px;
        transform: translateX(-50%);
        font-weight: 300;
    }

    @keyframes shadowAnim {
        0% {
            box-shadow: 0 0 0 0 rgba(70, 70, 88, 1.0);
        }
        100% {
            box-shadow: 0 0 0 5px rgba(70, 70, 88, 0);
        }
    }
}

@media(max-width: 500px){
    .header-section .container-fluid {
        padding-right: 10px;
    }

    .header-section .logo {
        width: 130px;
    }
}

@media(max-width: 414px){
    .left-menu-btn {
        width: 30px;
    }

    .sound-btn.mobile {
        margin-left: 10px;
    }
}


/* - - - - - Banner Queries - - - - - */

@media(max-width: 1024px){
    .top-section {
        background-size: cover;
    }

    .container {
        max-width: 100%;
    }

    .banner-section {
        height: initial;
        padding: 4% 0 0;
    }

    /* login button donald icon is too big on mobile — shrink it to fit */
    .login-donald {
        height: 28px;
        margin-right: 4px;
    }

    /* tighten the gap between the banner and the WIN GAME LIST below */
    .providers-section {
        margin-top: 0;
    }

    .banner-section .container {
        padding-bottom: 0;
        height: auto;        /* no forced 320px height -> no empty gap below the video */
    }

    /* tighten the vertical gaps between the stacked mobile sections */
    .mobile-quick { padding: 6px 10px 0; }
    .slot-banners { padding-top: 6px; }
    .board-section { margin-top: 0; padding-top: 4px; }
    .banner-cta { margin-top: 6px; }
    .footer-section { margin-top: 0; }

    .banner-carousel {
        padding-left: 7%;
    }

    .banner-carousel h1 {
        font-size: 4.3vw;
    }

    .banner-carousel h6 {
        font-size: 1.47vw;
    }

    .banner-background {
        width: 100%;
        left: 0;
        bottom: 0;
    }

    .side-wrapper {
        position: fixed;
        top: auto;
        bottom: 0;
    }
}

@media(max-width: 767px){
    .carousel-indicators li {
        width: 12px;
        height: 12px;
        margin: 4px 0;
    }

    .carousel-control-next,
    .carousel-control-prev {
        width: 16px;
        height: 28px;
        margin: 8px 0;
    }
}

@media(max-width: 500px) {
    .top-section {
        padding-top: 35px;
    }

    .marquee-section {
        height: 35px;
    }

    .marquee-section .icon-panel {
        width: 26px;
        height: 26px;
    }

    .marquee-section .marquee-wrap {
        width: calc(100% - 31px);
    }

    .marquee ul li {
        font-size: 12px;
        padding-top: 0;
    }

    .carousel-control-next,
    .carousel-control-prev {
        width: 14px;
        height: 22px;
        font-size: 10px;
    }
}


/* - - - - - Jackpot Queries - - - - - */

@media(max-width: 1024px){
    .jackpot-wrap {
        height: initial;
        padding: 0.75% 0 0.5%;
    }

    .jackpot-panel {
        width: 28%;
        margin: 0 1%;
    }

    .jackpot-panel.mega {
        width: 38%;
    }

    .jackpot-panel .labels {
        padding: 8.75% 0 2%;
        height: initial;
        font-size: 3.32vw;
        transform: translateY(-116%);
        top: 0;
    }

    .jackpot-panel.mega .labels {
        padding: 6.5% 0 1%;
        height: initial;
        font-size: 4.25vw;
        transform: translateY(-110%);
        top: 0;
    }

    .jackpot-panel .amount {
        font-size: 4vw;
    }

    .jackpot-panel.mega .amount {
        font-size: 4.5vw;
    }
}

@media(max-width: 767px){
    .jackpot-wrap {
        padding: 0.75% 1% 0.5%;
    }

    .jackpot-wrap:before, .jackpot-wrap:after {
        width: calc(100% - 6px);
        height: calc(100% - 6px);
    }

    .jackpot-panel .labels {
        transform: translateY(-117%);
    }

    .jackpot-panel.mega .labels {
        transform: translateY(-108%);
    }

    .jackpot-panel .labels:before {
        border-width: 3px;
    }
}

@media(max-width: 600px){
    .jackpot-wrap {
        padding: 1.5% 1% 1%;
    }

    .jackpot-panel .labels {
        transform: translateY(-128%);
    }

    .jackpot-panel.mega .labels {
        transform: translateY(-117%);
    }
}

@media(max-width: 500px){
    .jackpot-wrap:before, .jackpot-wrap:after {
        width: calc(100% - 4px);
        height: calc(100% - 4px);
    }

    .jackpot-wrap {
        padding: 2% 1% 1.5%;
    }

    .jackpot-panel .labels {
        transform: translateY(-132%);
    }

    .jackpot-panel.mega .labels {
        transform: translateY(-122%);
    }
}


/* - - - - - SideWrap Queries - - - - - */

@media(max-width: 767px){
    .side-wrapper .side-panel {
        max-height: 100px;
        margin-bottom: 5px;
    }

    .side-wrapper .side-panel .side-toggle {
        width: 55px;
        height: 100px;
        left: -57px;
        font-size: 14px;
        line-height: 18px;
        padding: 0 0 0 13px;
    }
}

@media(max-width: 500px){
    .side-wrapper .side-panel {
        max-height: 90px;
    }

    .side-wrapper .side-panel .side-toggle {
        width: 50px;
        height: 90px;
        left: -52px;
        line-height: 16px;
    }

    .side-wrapper .side-panel .side-toggle:before,
    .side-wrapper .side-panel .side-toggle:after {
        border-width: 2px;
    }
}


/* - - - - - Category Queries - - - - - */

@media(max-width: 767px){
    .page-content {
        padding-top: 20px;
    }

    .gamelist-category ul {
        width: 100%;
        display: flex;
    }

    .gamelist-category ul li {
        width: 100%;
        padding: 0;
    }

    .gamelist-category ul li a {
        font-size: 14px;
        height: initial;
        padding: 0 0 10px;
    }

    .gamelist-category ul li a .icon-panel {
        margin: 0 0 5px;
    }

    .gamelist-category ul li a .title {
        display: inline-block;
        width: 100%;
    }
}

@media(max-width: 500px){
    .gamelist-category {
        margin-bottom: 20px;
    }

    .gamelist-category ul li a {
        font-size: 12px;
    }
}

@media(max-width: 420px){
    .gamelist-category ul li a {
        font-size: 10px;
    }
}


/* - - - - - - - - - - Providers Menu Queries - - - - - - - - - - */

@media(max-width: 1199px){
    .providers-menu .menu-btn {
        width: calc(16.66% - 10px);
    }
}

@media(max-width: 900px){
    .providers-menu .menu-btn {
        padding: 0;
    }

    .providers-menu .menu-btn:before,
    .providers-menu .menu-btn:after {
        background-image: linear-gradient(90deg, rgba(164, 164, 195, 0.1), rgba(164, 164, 195, 0.1));
    }

    .providers-menu .menu-btn .char-panel {
        display: none;
    }

    .providers-menu .menu-btn .b-panel {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .providers-menu .menu-btn .b-name {
        text-align: center;
    }
}

@media(max-width: 767px){
    .provider-toggle {
        display: block;
    }

    .providers-dropdown {
        display: none;
        padding: 10px 6px 5px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 20px;
        margin: 5px 0 0;
    }

    .providers-menu .menu-btn {
        width: calc(25% - 8px);
        margin: 0 4px 5px;
    }
}

@media(max-width: 500px){
    .providers-menu .menu-btn {
        height: 50px;
    }

    .providers-menu .menu-btn .b-logo img {
        max-width: 30px;
        max-height: 22px;
    }
}

@media(max-width: 414px){
    .providers-menu .menu-btn {
        width: calc(33.33% - 8px);
    }
}


/* - - - - - - - - - - Gamelist Queries - - - - - - - - - - */

@media(max-width: 1199px){
    .game-btn {
        width: calc(20% - 12px);
        max-width: initial;
    }
}

@media(max-width: 767px){
    .game-btn {
        width: calc(25% - 12px);
    }
}

@media(max-width: 500px){
    .game-btn {
        width: calc(33.33% - 12px);
    }

    .game-btn .g-title {
        font-size: 12px;
        margin-top: 5px;
    }

    .game-btn .btn-grp {
        max-width: 90px;
    }

    .game-btn .btn-grp button {
        height: 25px;
        font-size: 10px;
    }

    .game-btn .hot-tag {
        width: 40px;
        height: 35px;
        font-size: 10px;
    }
}


/* - - - - - - - - - - Company Queries - - - - - - - - - - */

@media(max-width: 1024px){
    .providers-section {
        margin: 90px 0 0;
    }

    .providers-section .header:before {
        width: 424px;
        height: 100px;
    }

    .providers-section .header:after {
        width: 70px;
        height: 50px;
        top: -60px;
    }

    .providers-section .header .title {
        font-size: 36px;
    }

    .owl-nav-btn {
        height: 48px;
    }
}

@media(max-width: 767px){
    .providers-section .header {
        margin: 0 0 20px;
    }

    .providers-section .header .title {
        font-size: 30px;
    }
}

@media(max-width: 600px){
    .providers-section .header:before {
        width: 300px;
        height: 80px;
    }

    .providers-section .header .title {
        font-size: 24px;
    }

    .owl-nav-btn {
        padding: 0 15px;
    }
}

@media(max-width: 500px){
    .providers-section {
        margin: 8px 0 0;
    }

    .providers-section .header {
        margin: 0;
    }

    .providers-section .header:after {
        width: 50px;
        height: 38px;
        top: -45px;
    }

    .providers-section .header .title {
        font-size: 20px;
    }

    .owl-nav-btn {
        height: 40px;
    }

    .slot-btn .g-footer {
        height: 50px;
        padding: 0 0 4%;
    }

    .owl-item .slot-btn .g-footer img {
        max-width: 70px;
    }

    .slot-btn .g-name {
        font-size: 12px;
    }
}

@media(max-width: 414px){
    .slot-btn .g-footer {
        height: 40px;
        padding: 0 0 4%;
    }

    .owl-item .slot-btn .g-footer img {
        max-width: 60px;
    }
}

@media(max-width: 375px){
    .providers-section .header .title {
        font-size: 18px;
    }
}


/* - - - - - - - - - - Board Queries - - - - - - - - - - */

@media(max-width: 1559px){
    .realtime-board {
        padding: 15px 10px;
    }

    .realtime-ticker ul li div.amount {
        font-size: 16px;
    }

    .board-panel table tr td {
        font-size: 12px;
    }

    .board-panel table tr .date-td {
        font-size: 10px;
    }
}

@media(max-width: 1199px){
    /* tighten the gap above the stacked board (slot grid -> 출금현황) */
    .board-section {
        margin-top: 0;
        padding-top: 2px;
    }

    .board-panel {
        width: 100%;
        max-width: 600px;
        margin: 12px auto;
    }

    .board-panel:first-child {
        order: 2;
    }

    .board-panel:last-child {
        order: 3;
    }

    .realtime-board {
        width: 100%;
        max-width: 600px;
        margin: 4px auto 12px;   /* less top gap (it's the first stacked panel) */
        order: 1;
    }

    .realtime-ticker {
        max-width: 420px;
    }

    .realtime-ticker ul li .icon-panel {
        margin: 0 10px 0 5px;
    }

    .board-panel table tr td {
        font-size: 14px;
    }

    .board-panel table tr .date-td {
        font-size: 12px;
    }
}

@media(max-width: 767px){
    .board-section {
        margin: 4px 0 0;
    }

    .board-download ul li {
        padding: 0 30px;
    }
}

@media(max-width: 500px){
    .board-section {
        margin-top: 4px;
        padding-top: 4px;
    }

    .board-panel table tr td {
        height: 45px;
    }

    .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-download ul li a img {
        margin: 0 0 5px;
    }

    .board-download ul li a span {
        width: 100%;
        display: inline-block;
    }
}

@media(max-width: 500px) {
    .realtime-ticker ul li div.amount {
        font-size: 14px;
    }

    .realtime-ticker ul li div.user {
        font-size: 12px;
    }

    .realtime-ticker ul li div.date {
        padding-right: 0;
        font-size: 12px;
    }
}


/* - - - - - - - - - - Footer Section Queries - - - - - - - - - - */

@media(max-width: 1024px){
    .scroll-top {
        position: relative;
        width: 100%;
        height: 50px;
        border-radius: 0;
        background-color: transparent;
        right: 0;
        bottom: 0;
        font-size: 16px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 1.0);
    }

    .scroll-top:before {
        display: none;
    }

    .scroll-top i {
        font-size: 28px;
        position: relative;
        top: 0;
        margin: 0;
        opacity: 1.0;
        display: inline-block;
        vertical-align: middle;
    }
}

@media(max-width: 767px){
    .footer-providers {
        padding: 44px 0 25px;
    }

    .footer-providers img {
        max-width: 90px;
        max-height: 22px;
        margin: 8px 10px;
        vertical-align: middle;
    }
}

@media(max-width: 500px){
    .footer-copyright .logo {
        width: 140px;
    }

    .footer-copyright {
        width: 100%;
        background-color: #262631;
        border-top: solid 1px #16161d;
        padding: 20px 0 20px;
    }
}

@media(max-width: 420px){
    .footer-providers img {
        max-width: 86px;
        margin: 6px 12px;
    }
}


/* - - - - - - - - - - Modal Queries - - - - - - - - - - */

@media(max-width: 1400px){
    .event-btn {
        width: calc(33.33% - 20px);
    }
}

@media(max-width: 1024px){
    .header-section {
        z-index: 1080;
    }

    .modal {
        z-index: 1100;
    }

    .modal.subpage-modal {
        z-index: 1050;
        padding: 0 !important;
    }

    .subpage-modal .modal-dialog {
        min-height: 100%;
        background-color: #0f0f14;
        align-items: flex-start;
    }

    .loginModal .modal-dialog {
        max-width: 100%;
    }

    .loginModal .logo {
        display: none;
    }

    .subpage-modal .modal-content {
        padding: 90px 15px 15px;
        background-color: #0f0f14;
        box-shadow: none;
        border-radius: 0;
    }

    .modal-sidebar {
        display: none;
    }

    .modal-panel {
        width: 100%;
        min-height: 100%;
        max-width: 760px;
    }

    .terms-use .icon-wrap {
        background-color: #0f0f14;
    }

    .terms-use .icon-wrap:before,
    .terms-use .icon-wrap:after {
        box-shadow: -5px -5px 0 #0f0f14;
    }

    .terms-use .icon-wrap:after {
        box-shadow: -5px -5px 0 #0f0f14;
    }

    .subpage-modal .modal-header .icon-wrap {
        background-color: #0f0f14;
    }

    .subpage-modal .modal-header .icon-wrap:before,
    .subpage-modal .modal-header .icon-wrap:after {
        box-shadow: 5px 5px 0 #0f0f14;
    }

    .subpage-modal .modal-header .icon-wrap:after {
        box-shadow: -5px 5px 0 #0f0f14;
    }

    .event-btn .title {
        font-size: 16px;
    }

    .event-btn .date-panel {
        font-size: 12px;
    }
}

@media(max-width: 767px){
    .subpage-modal .modal-content {
        padding-top: 80px;
    }
}

@media(max-width: 600px){
    .subpage-modal .modal-content {
        padding-top: 60px;
    }

    .modal-panel {
        padding: 0;
    }

    .modal-header {
        margin-bottom: 15px;
        font-size: 18px;
    }

    .modal-header .icon-wrap {
        width: 40px;
        margin-left: 25px;
        margin-right: 20px;
    }

    .modal-header .icon-wrap:before,
    .modal-header .icon-wrap:after {
        width: 30px;
        height: 30px;
        left: -30px;
    }

    .modal-header .icon-wrap:after {
        left: auto;
        right: -30px;
    }

    .modal-header .icon-panel {
        height: 34px;
    }

    .modal-header .title-panel {
        width: calc(100% - 55px);
        height: 50px;
    }

    .modal .close-btn {
        width: 50px;
        height: 50px;
    }

    .event-btn {
        width: calc(50% - 20px);
    }
}

@media(max-width: 500px){
    .terms-use .scroll-panel {
        font-size: 12px;
    }

    .terms-use .terms-content {
        padding: 0 10px 5px;
    }

    .terms-use .icon-wrap {
        padding: 8px;
    }

    .modal-banner {
        padding: 12px 10px;
        font-size: 12px;
        margin-bottom: 20px;
    }

    .modal-banner:before,
    .modal-banner:after {
        width: calc(100% - 4px);
        height: calc(100% - 4px);
    }

    .modal-banner .icon-img {
        max-width: 30px;
    }

    .modal-banner button {
        padding: 0 15px;
    }

    .form-container .form-group .infos .btn-grp button {
        width: calc(16.66% - 4px);
        height: 35px;
        margin: 0 2px 4px;
    }

    .transferModal .form-container .w-btn .input-container {
        width: calc(100% - 135px);
    }

    .transferModal .form-container .form-group .form-btn {
        width: 140px;
        height: 45px;
        font-size: 12px;
        margin-left: 5px;
    }

    .transferModal .form-container .form-group .form-btn i {
        margin: 0 5px;
    }

    .message-content .inner-container {
        font-size: 12px;
    }

    /* Tables */

    .bs-table thead th,
    .bs-table tbody td {
        font-size: 12px;
    }

    .bs-table tr .count-td {
        width: auto;
        padding: 0;
    }

    .bs-table tr .count-tag {
        width: 20px;
        height: 20px;
    }

    .bs-table tr td a {
        max-width: 180px;
    }

    .bs-table tr .title-td {
        max-width: 180px;
        padding-left: 5px;
    }

    .bs-table tr .date-td {
        font-size: 10px;
    }

    .bs-table tr .nav-td {
        width: auto;
    }

    .new-icon {
        margin-left: 0;
    }

    .ne-wrap {
        width: calc(100% + 10px);
        margin: 0 -5px;
    }

    .event-btn {
        width: calc(50% - 10px);
        margin: 0 5px 10px;
    }

    .event-btn .title {
        font-size: 14px;
    }

    .event-btn .date-panel {
        font-size: 11px;
    }

    .event-btn .view-btn {
        max-width: 96px;
        height: 32px;
    }

    .event-btn .tag {
        width: 70px;
        height: 22px;
        font-size: 12px;
        padding: 0 0 0 10px;
    }

    .table-nav .btn-grp button {
        width: 66px;
        height: 24px;
        font-size: 12px;
        margin-left: 4px;
    }

    .view-content {
        padding: 5px;
        margin: 0;
    }

    .view-content img {
        border-radius: 8px;
    }
}


/* - - - - - Gameplay Queries - - - - - */

@media(max-width: 1024px){
    .gameplay-container {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        overflow-y: visible;
    }

    .gameplay-btn {
        width: calc(20% - 10px);
    }

    .gameplay-btn .g-tag {
        width: 70px;
        height: 70px;
    }
}

@media(max-width: 767px){
    .gameplay-btn {
        width: calc(25% - 10px);
    }
}

@media(max-width: 500px){
    .gameplay-btn .btn-grp button {
        height: 25px;
        font-size: 10px;
        margin-bottom: 6px;
    }

    .gameplay-btn .g-footer {
        width: calc(100% - 8px);
        height: 25px;
        font-size: 10px;
    }

    .gameplay-btn .count-tag {
        width: 35px;
        height: 35px;
        font-size: 12px;
        padding: 2px 0 0 9px;
    }
}

@media(max-width: 414px){
    .gameplay-btn .btn-grp button,
    .game-btn .btn-grp button {
        height: 26px;
        margin-bottom: 6px;
    }

    .gameplay-btn.reserved .g-tag {
        font-size: 42px;
    }

    .gameplay-btn .g-tag {
        font-size: 38px;
    }
}

@media(max-width: 375px){
    .gameplay-btn .g-footer {
        height: 20px;
    }
}


/* - - - - - - - - - - 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:500px){
    .lotteryModal .modal-content {
        padding: 5px;
    }
}

@media(max-width:460px){
    .lottery-win .main-cont .inner .amount {
        position: relative;
        top: 4%;
    }
}


@media (max-width: 600px) {
    .terms-use {
        margin: 0 0 5px;
    }

    .depositModal .form-container .row .form-group {
        margin: 0;
    }

    .gift-cards {
        margin-top: 0;
    }
}
/* - - - - - - - - - - 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%;
    }
}

@media(max-width:600px){
    .deposit-info-link {
        margin: 5px auto;
    }

    .terms-use .terms-panel .header {
        height: 40px;
        padding: 0 0 0 40px;
        margin: 0 0 -10px;
        font-size: 14px;
    }

    .terms-use .icon-wrap {
        width: 40px;
        height: 40px;
        background-color: transparent;
    }

    .terms-use .icon-wrap:before,
    .terms-use .icon-wrap:after {
        display: none;
    }

    .terms-use .scroll-panel {
        padding: 0 5px;
    }

    .form-container .form-group .gift-form button:last-child {
        font-size: 11px;
    }

    .depositModal .form-container .form-group input {
        height: 44px;
    }
}

@media(max-width: 500px){
    .gift-cert .title {
        font-size: 14px;
    }
}
