@charset "UTF-8";
/* --------------------------------------------------
 Base
-------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100;200;300;400;500;600;700;800;900&display=swap');

body, ol, ul, dl, li, dt, dd, table, th, td, input, textarea, select, h1, h2, h3, h4, h5, h6 {
    color: #ccc;
    font-family: 'Noto Sans Thai', sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #06C rgba(255,255,255,0);
}

html::-webkit-scrollbar {
    background-color: #222;
    width: 6px;
}

html::-webkit-scrollbar-thumb {
    background-color: #06C;
    border-radius: 6px;
}

body {
    background: #000;
    min-width: 320px;
    line-height: 2;
    font-size: 100%;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    background: url(../img/common/bg.jpg) no-repeat center center;
    background-size: cover;
    width: 100vw;
    height: calc(100vh + 100px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
}

body::after {
    content: "";
    background: linear-gradient(180deg, #000000ad 0%, #000000ad 100%);
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    width: 100vw;
    height: calc(100vh + 100px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    body {
        font-size: 90%;
        line-height: 1.8;
    }
    body::before {
        background-image: url(../img/common/bg_sp.jpg);
    }
}

@keyframes pageLoad {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

h1, h2, h3, h4, h5, h6 {
    line-height: 2;
}

dt, dd {
    line-height: 2;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

input,
textarea {
    padding: 5px 8px;
}

select {
    font-family: 'Prompt', sans-serif!important;
    padding: 5px 8px;
}

ul {
    list-style: none;
}

ol {
    margin: 0px 0px 0px 21px;
}

ol>li {
    list-style: decimal outside;
    margin: 0px 0px 3%;
}

a {
    color: #09C;
    text-decoration: none;
    outline: 0;
}

a:hover, a:active {
    color: #09C;
    text-decoration: none;
}

em {
    font-style: italic;
}

strong {
    font-weight: bold;
}

h1 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 0.67em;
}

h2 {
    font-size: 1.5em;
    font-weight: bold;
}

h3 {
    font-size: 1.17em;
    font-weight: bold;
}

h4 {
    font-weight: bold;
}

/* --------------------------------------------------
 drwNavBtn
-------------------------------------------------- */

#drw-nav-trigger {
    display: none;
}

.drw-nav-btn {
    position: fixed;
    top: 4px;
    right: 0;
    display: none;
    width: 32px;
    height: 57px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    text-align: center;
    cursor: pointer;
    z-index: 1050;
    transition: all 0.4s ease-in-out;
}

.drw-nav-btn-bar {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 21px;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    transition: all 0.8s ease;
    transform-origin: left top;
}

.drw-nav-btn-bar.top {
    top: 19px;
    left: 2px;
    animation: bar-tb-stretch 2.4s infinite ease;
}

.drw-nav-btn-bar.middle {
    top: 27px;
    left: 2px;
    opacity: 1;
    animation: bar-m-stretch 2.4s infinite ease;
}

.drw-nav-btn-bar.bottom {
    top: 35px;
    left: 2px;
    transform-origin: left bottom;
    animation: bar-tb-stretch 2.4s infinite ease;
}

@keyframes bar-m-stretch {
    0% {
        width: 21px;
        left: 2px;
    }
    18% {
        width: 17px;
        left: 3px;
    }
    36%, 100% {
        width: 21px;
        left: 2px;
    }
}

@keyframes bar-tb-stretch {
    0% {
        width: 21px;
        left: 2px;
    }
    18% {
        width: 25px;
        left: 0;
    }
    36%, 100% {
        width: 21px;
        left: 2px;
    }
}

.drw-nav-close {
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    transition: all 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
    display: none;
}

#drw-nav-trigger:checked~.drw-nav-close {
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease-in-out;
    visibility: visible;
    opacity: 1;
    z-index: 993;
}

#drw-nav {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    transition: all 0.4s ease-in-out;
    display: flex;
    opacity: 1;
    overflow: hidden;
    transform-origin: left center;
    transform: translateX(280px);
    z-index: 993;
    display: none;
}

#drw-nav::before {
    background: linear-gradient(45deg, transparent 0%, #06c 50%, transparent 100%);
    width: 2px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    height: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
    z-index: 9999999998;
}

#drw-nav-trigger:checked~#drw-nav {
    transform: translateX(0);
    z-index: 999;
}

.drw-nav-inner {
    background: #222222ec;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-sizing: border-box;
    width: 100%;
    min-width: 280px;
    height: 100%;
    padding-top: 20px;
    padding-bottom: 60px;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #06C rgba(255,255,255,0);
}

.drw-nav-inner::-webkit-scrollbar {
    background-color: #222;
    width: 6px;
}

.drw-nav-inner::-webkit-scrollbar-thumb {
    background-color: #06C;
    border-radius: 6px;
}

#drw-nav .logo {
    max-width: 220px;
    text-align: center;
    margin: 0 auto 0;
    padding: 0 20px;
    position: relative;
    box-sizing: border-box;
}

#drw-nav .search-box {
    margin: 10px;
    position: relative;
}

#drw-nav .search-box .input-g {
    display: flex;
    align-items: center;
}

#drw-nav .search-box .input-g > i {
    color: #fff;
    width: 24px;
    position: absolute;
    left: 7px;
}

#drw-nav .search-box .input-g > input {
    background-color: rgb(19, 19, 30);
    color: #fff;
    width: 100%;
    border: 0.2vw solid rgb(38, 41, 58);
    border-radius: 10px;
    padding-left: 32px;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
}

#drw-nav .search-box .input-g > input:focus {
    border-color: rgb(48, 51, 71);
}

#drw-nav .g-nav {
    padding: 0 20px;
    margin-top: 20px;
}

#drw-nav .g-nav > ul {
    position: relative;
}

#drw-nav .g-nav > ul:last-child {
    margin-bottom: 20px;
}

#drw-nav .g-nav > ul > li > a {
    color: white;
    font-size: 16px;
    display: block;
    padding: 10px;
    transition: all .3s;
    text-decoration: none;
}

#drw-nav .g-nav > ul > li.active > a ,
#drw-nav .g-nav > ul > li > a.active {
    filter: brightness(1.4);
}

#drw-nav .g-nav > ul > li > a:hover {
    filter: brightness(1.4);
}

#drw-nav .g-nav .icn {
    width: 38px;
    margin: 7px 10px;
    margin-right: 12px;
    box-sizing: border-box;
}

#drw-nav .line{
    width: 100%;
    max-width: 150px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 1000px) {
    .drw-nav-btn {
        display: block;
    }
    .drw-nav-close {
        display: block;
    }
    #drw-nav {
        display: flex;
    }
}

/* --------------------------------------------------
 Wrapper
-------------------------------------------------- */

#wrapper {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
}

/* --------------------------------------------------
 Header
-------------------------------------------------- */

#header {
    width: 100%;
    min-width: 320px;
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
    z-index: 992;
}

#header .top-bar {
    background: linear-gradient(180deg, #222, #222);
    height: 65px;
    display: flex;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 0 15px black;
}

#header .top-bar .left-blc,
#header .top-bar .middle-blc,
#header .top-bar .right-blc {
    position: relative;
}

#header .top-bar .left-blc {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#header .top-bar .right-blc {
    margin-left: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#header .top-bar .user-dropdown {
    text-decoration: none;
    display: flex;
    align-items: center;
}

#header .top-bar .dropdown-menu {
    background: #222;
    border-radius: 3px;
    padding: 0;
    box-shadow: 2px 2px 18px 0px rgba(0,0,0,0.47);
    overflow: hidden;
    top: 14px!important;
}

#header .top-bar .dropdown-menu .inner {
    background: #111;
    min-width: 230px;
}

#header .top-bar .dropdown-menu .ttl {
    font-size: 14px;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #222;
    padding: 0 10px;
}

#header .top-bar .dropdown-menu .message {
    color: #fff;
    line-height: 1.4;
    border-bottom: 1px solid #222;
    padding: 7px 10px;
    display: flex;
}

#header .top-bar .dropdown-menu .message .icn {
    width: 24px;
    margin-right: 5px;
}

#header .top-bar .dropdown-menu .message .txt {
    flex: 1;
}

#header .top-bar .dropdown-menu .message .time {
    font-size: 85%;
    margin-left: 5px;
}

#header .top-bar .dropdown-menu .link {
    border-bottom: 1px solid #222;
}

#header .top-bar .dropdown-menu .link:last-child {
    border-bottom: none;
}

#header .top-bar .dropdown-item {
    color: #fff;
    font-size: 12px;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

#header .top-bar .dropdown-item:hover {
    background-color: #333;
}

#header .top-bar .dropdown-item.focus,
#header .top-bar .dropdown-item:focus {
    background-color: #333;
}

#header .top-bar .dropdown-item.active,
#header .top-bar .dropdown-item:active {
    background-color: #333;
}

#header .top-bar .dropdown-item > i {
    margin-right: 10px;
}

#header .top-bar .user {
    width: 32px;
    margin-right: 5px;
}

#header .top-bar .coin {
    background-color: rgba(0, 0, 0, 0.9);
    max-width: 110px;
    line-height: 1;
    border-radius: 999px;
    padding: 4px 7px;
    margin-bottom: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .top-bar .coin:last-child {
    margin-bottom: 0;
}

#header .top-bar .coin .icn {
    width: 16px;
    margin-right: 5px;
}

#header .top-bar .coin .amount {
    font-size: 12px;
    text-align: right;
    width: calc(100% - 21px);
    white-space: nowrap;
}

#header .top-bar .logo {
    max-width: 200px;
    margin-right: auto;
    margin-left: 10px;
    position: relative;
    z-index: 1;
}

#header .top-bar .jackpot {
    line-height: 1;
    padding-top: 18px;
    display: flex;
    flex-wrap: wrap;
    text-shadow: 1px 1px 0px #5c0010;
}

#header .top-bar .jackpot .amount {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

#header .top-bar .jackpot .unit {
    color: #fff;
    font-size: 10px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

#header .top-bar .btn-list {
    padding-right: 40px;
    display: flex;
    justify-content: flex-end;
}

#header .top-bar .btn-list li {
    margin-right: 5px;
}

#header .top-bar .btn-list li:last-child {
    margin-right: 0;
}

#header .top-bar .btn-list li a {
    text-decoration: none;
    display: block;
}

#header .top-bar .btn-list li .icn {
    min-height: 48px;
    display: flex;
    align-items: center;
}

#header .top-bar .btn-list li .icn img {
    flex: 0 0 auto;
}

#header .top-bar .btn-list li .txt {
    font-size: 10px;
    text-align: center;
    line-height: 0.9;
    margin-top: -4px;
    text-shadow: 2px 2px 2px #000, 2px 2px 2px #000, 2px 2px 2px #000;
}

#header .top-bar .btn-login {
    background-image: linear-gradient(180deg, #06c, #004285), linear-gradient(90deg, #006dda, #006dda 31.53%, #00162c 64.87%, #006dda);
    background-origin: border-box;
    background-clip: content-box,border-box;
    width: calc(50% - 10px);
    max-width: 180px;
    max-height: 50px;
    border-radius: 4px;
    padding: 2px;
    margin: 0 5px;
    display: flex;
    align-items: center;
}

#header .top-bar .btn-login .elem {
    width: 100%;
    text-decoration: none;
    padding: 5px 15px;
    display: flex;
    align-items: center;
}

#header .top-bar .btn-login .elem .icn {
    width: 24px;
    text-decoration: none;
    margin-right: 5px;
    display: block;
}

#header .top-bar .btn-login .elem .txt {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    flex: 1;
}

#header .top-bar .btn-register {
    background: radial-gradient(100% 100% at 50% 0,#FD5 0,#d8a81a,#8d7101 100%), linear-gradient(90deg, #FD5, #FD5 31.53%, #fff 64.87%, #FD5);
    background-origin: border-box;
    background-clip: content-box,border-box;
    width: calc(50% - 10px);
    max-width: 180px;
    max-height: 50px;
    border-radius: 4px;
    padding: 2px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#header .top-bar .btn-register::after {
    content: "";
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(128, 186, 232, 0) 100%);
    width: 300%;
    height: 300%;
    position: absolute;
    top: 0;
    transform: translateX(100%) rotate(30deg);
    z-index: 1;
    -webkit-animation: shine 3s infinite ease-in;
    animation: shine 3s infinite ease-in;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

#header .top-bar .btn-register .elem {
    width: 100%;
    text-decoration: none;
    padding: 5px 15px;
    display: flex;
    align-items: center;
}

#header .top-bar .btn-register .elem .icn {
    width: 24px;
    text-decoration: none;
    margin-right: 5px;
    display: block;
}

#header .top-bar .btn-register .elem .txt {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    flex: 1;
}

#header .top-bar .g-nav {
    margin-left: 20px;
    display: flex;
}

#header .top-bar .g-nav li a {
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    padding: 20px 8px;
    position: relative;
}

#header .top-bar .g-nav li a:hover,
#header .top-bar .g-nav li a.active {
    background-color: #393939;
}

#header .top-bar .g-nav li a.active::after {
    content: "";
    background: #06C;
    width: 100%;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
}

#header .top-bar .g-nav li a:hover::after {
    content: "";
    background: #FD5;
    width: 100%;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
}

#header .mobile-short {
    display: none;
}

#header #login {
    text-align: right;
    padding: 5px 0;
}

#header #login form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#header #login input {
    width: calc(49% - 60px);
    margin-right: 5px;
}

#header #login input, #header #login select {
    color: #111;
    font-size: 12px;
    padding: 5px 5px;
    border: #CCC solid 1px;
    border-radius: 4px;
}

#header #login .btn-login .elem {
    background-image: linear-gradient(180deg, #06c, #004285), linear-gradient(90deg, #006dda, #006dda 31.53%, #00162c 64.87%, #006dda);
    background-origin: border-box;
    background-clip: content-box,border-box;
    width: 100px;
    max-width: 180px;
    max-height: 50px;
    border: none;
    border-radius: 4px;
    padding: 2px;
    display: block;
    align-items: center;
    -webkit-appearance: none;
}

#header #login .btn-login .elem .icn {
    width: 24px;
    text-decoration: none;
    margin-right: 5px;
    display: block;
}

#header #login .btn-login .elem .txt {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    padding: 5px 10px;
    flex: 1;
}

@-webkit-keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(30deg);
    }
    80% {
        transform: translateX(-100%) translateY(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(30deg);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(30deg);
    }
    80% {
        transform: translateX(-100%) translateY(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(30deg);
    }
}

@media screen and (max-width: 1200px) {
    #header .top-bar .right-blc {
        justify-content: flex-end;
    }
    #header .top-bar .g-nav {
        margin-left: 10px;
    }
    #header .top-bar .g-nav li a {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media screen and (max-width: 1000px) {
    #header .top-bar .right-blc {
        padding-right: 34px;
    }
    #header .top-bar .g-nav {
        display: none;
    }
    #header .top-bar .btn-login-sp {
        display: flex;
    }
    #header .top-bar .btn-register .elem {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    #header .top-bar .btn-register .elem .icn {
        width: 24px;
        margin-right: 5px;
    }
    #header .top-bar .btn-register .elem .txt {
        font-size: 16px;
    }
    #header #login {
        display: none;
    }
}

@media screen and (max-width: 890px) {
    #header .top-bar .g-nav {
        display: none;
    }
    #header .mobile-short {
        background: linear-gradient(180deg, #00454a, #00454a);
        padding-top: 10px;
        display: block;
    }
    #header .mobile-short .contact {
        display: flex;
    }
    #header .mobile-short .contact .mobile,
    #header .mobile-short .contact .line {
        width: 50%;
        text-align: center;
        height: 40px;
        font-size: 16px;
    }
    #header .mobile-short .contact .mobile {
        background: #fe1010;
    }
    #header .mobile-short .contact .line {
        background: #00c41c;
    }
    #header .mobile-short .contact a {
        color: #fff;
    }
    #header .mobile-short .contact .contact-icon {
        height: 30px;
        width: 35px;
        vertical-align: -7px;
        display: -moz-inline-stack;
        display: inline-block;
        zoom: 1;
        border-radius: 2px;
        margin-right: 5px;
    }
    #header .mobile-short .contact .mobile .contact-icon {
        background: url(../img/common/call-mobile-01.png) 0 0 no-repeat;
    }
    #header .mobile-short .contact .line .contact-icon {
        background: url(../img/common/line-mobile-01.png) 0 0 no-repeat;
    }
    #header .mobile-short #mainmenu {
        border-top: solid 2px #ffde45;
        margin-bottom: 3px;
        display: flex;
        flex-wrap: wrap;
    }
    #header .mobile-short #mainmenu a {
        color: #eee;
        display: inline-block;
        font-size: 15px;
        line-height: 45px;
        width: 33.33%;
        border-left: #00454a solid 1px;
        border-bottom: #00454a solid 1px;
        text-align: center;
        background: linear-gradient(180deg, #00454a, #002427);
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    #header #login input {
        width: calc(49% - 40px);
    }
    #header #login .btn-login {
        width: 70px;
    }
}

@media screen and (max-width: 575px) {
    #header .top-bar .left-blc {
        width: 36vw;
    }
    #header .top-bar .right-blc {
        width: calc(100% - 36vw);
    }
    #header .top-bar .btn-login .elem .txt,
    #header .top-bar .btn-register .elem .txt {
        font-size: 2.8vw;
        width: calc(100% - 8vw);
        flex: auto;
    }
}

@media screen and (max-width: 480px) {
    #header .top-bar .left-blc {
        width: 34vw;
    }
    #header .top-bar .right-blc {
        width: calc(100% - 34vw);
    }
    #header .top-bar .btn-list {
        padding-right: 28px;
    }
    #header .top-bar .btn-login,
    #header .top-bar .btn-register {
        width: calc(50% - 4px);
        margin-left: 2px;
        margin-right: 2px;
    }
    #header .top-bar .btn-login .elem,
    #header .top-bar .btn-register .elem {
        padding-left: 5px;
        padding-right: 5px;
    }
    #header .top-bar .btn-login .elem .icn,
    #header .top-bar .btn-register .elem .icn {
        width: 6vw;
    }
    #header .top-bar .btn-login .elem .txt,
    #header .top-bar .btn-register .elem .txt {
        font-size: 3.2vw;
        width: calc(100% - 6vw);
    }
}

@media screen and (max-width: 380px) {
    #header .top-bar .btn-list li .txt {
        font-size: 2.6vw;
    }
}

/* --------------------------------------------------
 btm-bar
-------------------------------------------------- */

#btm-bar {
    background: rgb(7 7 12);
    width: 100%;
    min-width: 320px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 65px;
    left: 0;
    z-index: 992;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
}

#btm-bar::after {
    background: linear-gradient(90deg, transparent, #fdd47bbb 50%, transparent);
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
}

#btm-bar .user-blc {
    background-image: linear-gradient(90deg,#ffb01d2d 27%,#ffda6165 68%,#fcba05a1 100%);
    width: calc(50% - 10px);
    max-width: 180px;
    height: 50px;
    border-radius: 20px 5px 20px 5px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    box-shadow: inset 0px 0px 10px 1px #ffebb3;
}

#btm-bar .user-blc .icn {
    width: 48px;
}

#btm-bar .user-blc .info {
    width: calc(100% - 48px);
    line-height: 1.2;
    padding: 5px;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.6);
}

#btm-bar .user-blc .info .toper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#btm-bar .user-blc .info .toper .level {
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 11px;
    text-align: center;
    width: 40px;
    border-radius: 99px;
    padding: 2px 4px;
    margin-right: 4px;
    white-space: nowrap;
    box-shadow: inset 0px 0px 2px 0px #ffebb39f;
}

#btm-bar .user-blc .info .toper .txt {
    font-size: 11px;
    width: calc(100% - 40px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#btm-bar .user-blc .info .btm {
    margin-top: 2px;
}

#btm-bar .user-blc .info .btm .amount {
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 12px;
    text-align: center;
    border-radius: 99px;
    padding: 2px 4px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    box-shadow: inset 0px 0px 2px 0px #ffebb39f;
}

/* --------------------------------------------------
 Contents
-------------------------------------------------- */

#contents {
    min-height: calc(100vh - 100px);
    padding-top: 65px;
    position: relative;
    transition: all .4s;
}

/* --------------------------------------------------
 Footer
-------------------------------------------------- */

#footer {
    background: #222;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 98;
    padding-bottom: 90px;
}

#footer .top-zone {
    background: linear-gradient(to bottom,#222 0,#000 100%);
    width: 100%;
}

#footer .top-zone > .comm-blc {
    width: 96%;
    max-width: 1200px;
}

#footer .part-txt-link {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

#footer .word-blc {
    color: #fff;
    font-size: 85%;
    width: 32%;
    margin-right: 4%;
    box-sizing: border-box;
}

#footer .f-nav {
    font-size: 85%;
    line-height: 1.4;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

#footer .f-nav a {
    color: rgb(206, 206, 206);
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

#footer .f-nav a:hover {
    opacity: 0.6;
}

#footer .f-nav .subj {
    color: #0AF;
    font-weight: 600;
    margin-bottom: 6px;
}

#footer .f-nav .main-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

#footer .f-nav .main-list > li {
    width: 23.5%;
    margin: 0 2% 2% 0;
}

#footer .f-nav .main-list > li:nth-of-type(4n+4) {
    margin-right: 0;
}

#footer .f-nav .sub-list > li {
    margin-bottom: 6px;
}

#footer .sitemap {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#footer .sitemap .sitemap-link {
    width: 100%;
}

#footer .sitemap .sitemap-link .bank {
    display: flex;
    justify-content: center;
}

#footer .sitemap .sitemap-link .bank li {
    margin-left: 5px;
    margin-right: 5px;
}

#footer .sitemap .sitemap-link .social {
    margin-top: 10px;
    display: flex;
}

#footer .sitemap .sitemap-link .social li {
    margin-right: 5px;
}

#footer .sitemap .sitemap-contact {
    width: 59%;
    display: flex;
    justify-content: space-between;
}

#footer .sitemap .sitemap-contact a {
    width: 49%;
    text-decoration: none;
}

#footer .logo-blc {
    color: #fff;
    font-size: 85%;
    max-width: 190px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

#footer .f-menu {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

#footer .f-menu > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#footer .f-menu > ul > li {
    margin: 0 10px 10px;
}

#footer .f-menu > ul > li a {
    color: #ccc;
}

#footer .f-menu > ul > li a:hover {
    color: #FD5;
}

#footer .f-menu > ul > li a h5 {
    font-size: 100%;
}

#footer .providers {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

#footer .providers > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#footer .providers > ul > li {
    margin: 0 10px 10px;
    cursor: pointer;
}

#footer .providers > ul > li:hover {
    filter: brightness(5) drop-shadow(1px 1px 1px #ffd144);
}

#footer .copyright {
    background: #222;
    color: #fff;
    font-size: 90%;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    box-sizing: border-box;
}

#footer .copyright > strong {
    font-weight: 500;
}

#footer .txt-version {
    color: #fff;
    font-size: 90%;
    text-align: right;
    box-sizing: border-box;
}

@media screen and (max-width: 875px) {
    #footer .word-blc {
        width: 100%;
        margin-right: 0;
        margin-bottom: 4%;
    }
    #footer .f-nav {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    #footer .sitemap .sitemap-link {
        width: 100%;
    }
    #footer .sitemap .sitemap-link .bank {
        justify-content: center;
    }
    #footer .sitemap .sitemap-link .bank li {
        margin-right: 3px;
        margin-left: 3px;
    }
    #footer .sitemap .sitemap-link .social {
        justify-content: center;
    }
    #footer .sitemap .sitemap-link .social li {
        margin-right: 3px;
        margin-left: 3px;
    }
    #footer .sitemap .sitemap-contact {
        width: 100%;
        margin-top: 10px;
    }
    #footer .sitemap .sitemap-contact a {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    #footer .f-nav .main-list > li {
        width: 49%;
    }
    #footer .f-nav .main-list > li:nth-of-type(4n+4) {
        margin-right: 2%;
    }
    #footer .f-nav .main-list > li:nth-of-type(2n+2) {
        margin-right: 0;
    }
    #footer .copyright {
        font-size: 75%;
        width: 100%;
        text-align: center;
    }
    #footer .txt-version {
        width: 100%;
        text-align: center;
    }
}

/* --------------------------------------------------
 mobile-shortcut
-------------------------------------------------- */

.mobile-shortcut {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 998;
}

.mobile-shortcut .inner {
    display: flex;
    align-items: flex-end;
}

.mobile-shortcut .left-blc,
.mobile-shortcut .right-blc {
    display: flex;
    align-items: flex-end;
    flex: 1;
    z-index: 2;
    height: 70px;
    padding-bottom: 6px;
    background: linear-gradient(180deg, #222, #000);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 3px solid #222;
    transition: -webkit-filter .2s;
    transition: filter .2s;
    transition: filter .2s, -webkit-filter .2s;
}

.mobile-shortcut .left-blc {
    border-top-left-radius: 10px;
    border-top-right-radius: 22px;
    justify-content: flex-end;
}

.mobile-shortcut .right-blc {
    border-top-right-radius: 10px;
    border-top-left-radius: 22px;
}

.mobile-shortcut .item {
    width: 50%;
    max-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    position: relative;
}

.mobile-shortcut .item .txt01 {
    font-size: .75rem;
    line-height: 1.4;
    color: #fff;
    transition: color .2s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    margin: 0 auto;
    margin-top: 0.25rem;
}

.mobile-shortcut .item .img img {
    width: 34px;
    height: auto;
    display: block;
    margin: 0 auto;
    padding-bottom: 20px;
    position: relative;
}

.mobile-shortcut .center-blc {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
    width: 74px;
    height: 74px;
    margin: 0 8px 16px;
    padding: 2px;
    color: #000;
    border-radius: 50%;
    background: radial-gradient(ellipse farthest-corner at center bottom, #59c3e1 0%, #1979e0 8%, #0857ac 25%, #033f80 62.5%, #033f80 100%), radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, #FEDB37 80%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    animation: x-jello-horizontal 3s infinite both;
    box-shadow: 0 0 10px hsl(0deg 0% 100% / 40%);
}

.mobile-shortcut .c-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    transition: all .4s;
    background-size: 450px;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    background-position: 0 0;
    border-radius: 50%;
}

.mobile-shortcut .c-item .img img {
    width: 65px;
    max-width: 65px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 111111111;
    margin-top: -25px;
}

.mobile-shortcut .c-item .txt01 {
    position: absolute;
    bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-shadow: 0 0 10px #000, 0 0 10px #00000000;
}

.mobile-shortcut .fake-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 50px;
    transition: -webkit-filter .2s;
    transition: filter .2s;
    transition: filter .2s, -webkit-filter .2s;
    overflow: hidden;
}

.mobile-shortcut .fake-bg svg {
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 108px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: hidden;
    vertical-align: middle;
}

.mobile-shortcut .fake-bg svg path {
    fill: url(#rectangleGradient);
}

.mobile-shortcut .item #contact-choice-trigger {
    display: none;
}

.mobile-shortcut .item .contact-choice-close {
    text-align: center;
    cursor: pointer;
    margin: auto;
    display: block;
    filter: brightness(5) drop-shadow(1px 1px 1px #000000);
}

.mobile-shortcut .item #contact-choice {
    background: #161616a2;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
    position: absolute;
    bottom: 100%;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    max-width: 70px;
    border-radius: 10px;
    padding: 10px 0;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 993;
    transform: translateY(0);
    box-shadow: inset 0px 0px 10px 1px #797979;
}

.mobile-shortcut .item #contact-choice-trigger:checked~#contact-choice {
    transform: translateY(-10px);
    z-index: 999;
    opacity: 1;
    visibility: visible;
}

.mobile-shortcut .item #contact-choice .btn-item {
    margin-top: 10px;
}

.mobile-shortcut .item #contact-choice .btn-item .btn-elem {
    width: 48px;
    height: 48px;
    line-height: 1;
    text-decoration: none;
    border-radius: 10px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.mobile-shortcut .item #contact-choice .btn-line .btn-elem {
    background-color: #00b900;
}

.mobile-shortcut .item #contact-choice .btn-telegram .btn-elem {
    background-color: #229ED9;
}

.mobile-shortcut .item #contact-choice .btn-phone .btn-elem {
    background-color: #d1a000;
}

.mobile-shortcut .item #contact-choice .btn-item .btn-elem i {
    font-size: 34px;
    line-height: 1;
}

.mobile-shortcut .item #contact-choice .btn-telegram .btn-elem i {
    color: #229ED9;
}

.mobile-shortcut .item #contact-choice .btn-item .btn-elem img {
    width: 32px;
}

.mobile-shortcut .item .tag-a {
    cursor: pointer;
}

@keyframes x-jello-horizontal {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    5% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1);
    }
    7.5% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1);
    }
    10% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1);
    }
    15% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }
    20% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }
    25%, 100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

/* --------------------------------------------------
 contactfixed
-------------------------------------------------- */

.contactfixed {
    position: fixed;
    right: 10px;
    z-index: 100;
    width: 65px;
    height: auto;
    bottom: 25%;
    display: none;
    flex-direction: column;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.contactfixed a {
    text-decoration: none;
    display: block;
    position: relative;
}

.contactfixed .num {
    color: #fff;
    font-size: 10px;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 4px;
    left: 0;
}

@media screen and (max-width: 767px) {
    .contactfixed {
        display: flex;
    }
}

/* --------------------------------------------------
 contact-stick
-------------------------------------------------- */

.contact-stick {
    background-color: transparent;
    display: flex;
    flex-direction: row;
    pointer-events: none;
    position: fixed;
    right: -169px;
    top: 50%;
    transition: .6s;
    transform: translateY(-50%);
    z-index: 99;
}

.contact-stick:focus, .contact-stick:hover {
    right: 0;
}

.contact-stick .icn-label {
    align-items: center;
    background-color: #333;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0,0,0,.6);
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    height: 190px;
    justify-content: start;
    max-width: 54px;
    padding: 5px;
    pointer-events: auto;
}

.contact-stick .icn-label .ttl {
    font-size: 13px;
    min-width: 100px;
    text-transform: uppercase;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.contact-stick .icn-label .icn {
    margin-top: 50px;
}

.contact-stick .icn-label .icn i {
    font-size: 22px;
}

.contact-stick .icn-label .icn img {
    width: 23px;
}

.contact-stick .stick-container {
    align-items: center;
    background-color: #111;
    box-shadow: 1px 1px 5px rgba(0,0,0,.6);
    cursor: pointer;
    min-width: 160px;
    display: flex;
    align-items: center;
    padding: 10px;
    pointer-events: auto;
    transition: .4s;
    z-index: 99!important;
}

.contact-stick .stick-container .btn-items {
    width: 100%;
}

.contact-stick .stick-container .btn-item {
    margin-bottom: 10px;
}

.contact-stick .stick-container .btn-item:last-child {
    margin-bottom: 0;
}

.contact-stick .stick-container .btn-item .btn-elem {
    color: #fff;
    background-origin: border-box;
    background-clip: content-box, border-box;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    line-height: 1.2;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    position: relative;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
    -webkit-appearance: none;
}

.contact-stick .stick-container .btn-line .btn-elem {
    background: #00b900;
}

.contact-stick .stick-container .btn-telegram .btn-elem {
    background: #229ED9;
}

.contact-stick .stick-container .btn-phone .btn-elem {
    background: #d1a000;
}

.contact-stick .stick-container .btn-item .btn-elem:hover {
    filter: brightness(1.2);
}

.contact-stick .stick-container .btn-item .btn-elem .txt01 {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    padding: 7px;
    display: block;
}

.contact-stick .stick-container .btn-item .btn-elem .icn {
    width: 33px;
    margin-right: 10px;
}

.contact-stick .stick-container .btn-item .btn-elem i {
    font-size: 22px;
}

@media screen and (max-width: 767px) {
    .contact-stick {
        display: none;
    }
}

/* --------------------------------------------------
 search-result
-------------------------------------------------- */

.search-result {
    background-color: rgba(0, 0, 0, 0.85);
    width: calc(100% - 20px);
    max-width: 600px;
    border-radius: 10px;
    display: none;
    position: fixed;
    right: 16px;
    z-index: 999;
    box-sizing: border-box;
}

.search-result .list-style01 {
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 10px;
    padding: 10px;
}

.search-result .list-style01 .item {
    width: 32%;
    margin: 0 2% 2% 0;
}

.search-result .list-style01 .item:nth-child(6n+6) {
    margin-right: 2%;
}

.search-result .list-style01 .item:nth-child(4n+4) {
    margin-right: 2%;
}

.search-result .list-style01 .item:nth-child(3n+3) {
    margin-right: 0;
}

.search-result .list-style01 .item .tag-list .tag {
    font-size: 7px;
}

@media screen and (max-width: 540px) {
    .search-result .list-style01 .item {
        width: 49%;
    }
    .search-result .list-style01 .item:nth-child(3n+3) {
        margin-right: 2%;
    }
    .search-result .list-style01 .item:nth-child(2n+2) {
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    .search-result .list-style01 .item .tag-list .tag {
        font-size: 1.8vw;
    }
}

/* --------------------------------------------------
 Other
-------------------------------------------------- */

.breadcrumb { 
    margin: 1rem 0;
}

.breadcrumb > li {
    list-style: none;
    margin: 0;
}

.breadcrumb .breadcrumb-item.active {
    color: #ccc;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #ccc;
}

.mfp-bg {
    z-index: 1051;
}

.mfp-wrap {
    z-index: 1052;
}

button.mfp-close {
    display: none;
}

.white-popup-block {
    background: #fff;
    padding: 30px 45px;
    text-align: left;
    max-width: 675px;
    margin: 70px auto;
    position: relative;
}

@media screen and (max-width: 767px) {
    .white-popup-block {
        padding: 3% 4%;
    }
}

#page-top {
    position: fixed;
    bottom: 2%;
    right: 2%;
    z-index: 998;
    display: none;
}

#page-top a {
    background: #d89597;
    width: 50px;
    height: 50px;
    border-radius: 99px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

#page-top a::after {
    font-family: "Font Awesome 5 Free";
    content: '\f106';
    color: #fff;
    font-weight: 900;
    font-size: 28px;
}

#page-top .txt {
    display: block;
}

@media screen and (max-width: 767px) {
    #page-top a {
        width: 40px;
        height: 40px;
    }
    #page-top a::after {
        font-size: 20px;
    }
}

.animation-hide {
    opacity: 0;
}

@keyframes slide-left {
    0% {
        transform: translateX(135px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}