@charset "UTF-8";

.logoFrame{
    margin: -1px
}

.gamePage {
    animation: 0s ease 0s 1 normal none running none !important;
}

.gameZone {
    background-size: cover;
    width: 100%;
    transition: all 0.4s ease-out 0s;
}

.gameZone .gameWrapper {

}

.gameZone .gameWrapper .title {
    width: 100%;
    display: flex;
    align-items: center;
}

.gameZone .gameWrapper .title .leftZone {
    color: #828282;
    font-weight: 700;
    transform: translateZ(0px);
}

.gameZone .gameWrapper .title .leftZone span.icon-logob {
    font-size: 2.3vw;
    margin-right: 4px;
}

.gameZone .gameWrapper .title .leftZone h4 {
    font-size: 1.4vw;
    margin-right: 0.5vw;
}

.gameZone .gameWrapper .title .leftZone span {
    color: #a441ca;
    font-size: 24px;
    word-break: keep-all;
    margin: 0 30px;
}

.gameZone .gameWrapper .title .leftZone span.Logo {
    width: 146px;
    height: auto;
    aspect-ratio: 300 / 67;
    background-image: url("../images/main/logo-213930c7.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 5px;
}

.gameZone .gameWrapper .title .line {
    height: 2px;
    position: relative;
}

.gameZone .gameWrapper .title .line::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #a441ca;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(-50%, -50%);
}

.gameZone .gameWrapper .content {
    display: flex;
    align-items: start;
    justify-content: space-around;
    margin-top: 4vh;
}

.gameZone .gameWrapper .content .leftFrame {
    width: 40%;
    position: relative;
    animation: 0.4s ease 0s 1 normal forwards running rightIn;
    opacity: 0;
    min-height: 695px;
}

.gameZone .gameWrapper .content .leftZone {
    background: url(../images/main/mini_bg.png) no-repeat center;
    background-size: contain;
    width: 100%;
    padding-bottom: 100%;
    position: relative;
}

.gameZone .gameWrapper .content .leftZone .obj {
    background-repeat: no-repeat;
    padding-bottom: 100%;
    background-size: cover;
    position: absolute;
}

.gameZone.casino .gameWrapper .content .leftZone {
    background-image: url("../images/main/live_bg.png");
}

.gameZone.holdem .gameWrapper .content .leftZone {
    background-image: url("../images/main/holdem_bg.png");
}
.gameZone.casual .gameWrapper .content .leftZone {
    background-image: url("../images/main/casual_bg.png");
}
.gameZone.virtual .gameWrapper .content .leftZone {
    background-image: url("../images/main/vir_bg.png");
}

.gameZone.slot .gameWrapper .content .leftZone {
    background-image: url("../images/main/slot_bg.png");
}

.gameZone.mgm .gameWrapper .content .leftZone {
    background-image: url("../images/main/mgm_bg.png");
}

.gameZone.touch .gameWrapper .content .leftZone {
    background-image: url("../images/main/touch_bg.png");
}

.gameZone.lotus .gameWrapper .content .leftZone {
    background-image: url("../images/main/lotus_bg.png");
}

.gameZone .gameWrapper .content .rightZone {
    width: 55%;
}

.gameZone .gameWrapper .content .rightZone .txt {
    margin-bottom: 27px;
    animation: 0.4s ease 0s 1 normal forwards running leftIn;
    opacity: 0;
}

.gameZone .gameWrapper .content .rightZone .txt h2 {
    color: var(--main);
    font-size: 1.5vw;
    font-weight: 700;
    margin-bottom: 10px;
}

.gameZone .gameWrapper .content .rightZone .txt p {
    color: #474747;
    line-height: 1.6;
    font-size: 0.6vw;
}

.gameZone .gameWrapper .content .rightZone .btns {
    animation: 0.4s ease 0s 1 normal forwards running leftIn;
    opacity: 0;
    min-height: 560px;
}

.gameZone .gameWrapper .content .rightZone .btns ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}

.gameZone .gameWrapper .content .rightZone .btns ul li {
    width: 100%;
    height: 175px;
    border: 2px solid var(--main);
    border-radius: 10px;
    position: relative;
    background: url(../images/common/game_bg.png) center;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease 0s;
}

.gameZone .gameWrapper .content .rightZone .btns ul li .model {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100%;
    top: 5%;
    position: absolute;
    margin: 0px auto;
    z-index: 2;
    left: 15px;
    transition: all 0.3s ease-out 0s;
}

.gameZone.slot .gameWrapper .content .rightZone .btns ul li .model {height: 116%;top: 0%;left: 7%;}

.gameZone .gameWrapper .content .rightZone .btns ul li:hover .model {
    background-position-y: 5px;
}

.gameZone .gameWrapper .content .rightZone .btns ul li .logo {
    position: absolute;
    right: 3%;
    top: 3%;
    z-index: 3;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 30%;
    padding-bottom: 12%;
    transition: all 0.3s ease-out 0s;
}

.gameZone .gameWrapper .content .rightZone .btns ul li .txt01 {
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2;
    position: absolute;
    top: 15px;
    left: 15px;
}

.gameZone .gameWrapper .content .rightZone .btns ul li .txt01 h2 {
    font-size: 18px;
    color: var(--main);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
    width: 100%;
}

.gameZone .gameWrapper .content .rightZone .btns ul li .txt01 span {
    font-size: 12px;
    color: var(--main);
    margin-top: 5px;
}

.gameZone .gameWrapper .content .rightZone .btns ul li .mask {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: url("../images/common/vitbg.svg");
    border-radius: 8px;
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-out 0s;
    opacity: 0.7;
    background-size: cover;
}

.gameZone .gameWrapper .content .rightZone .btns ul li .mask .inner {
    width: 100%;
    height: 100%;
    background-image: url("../..../images/main/images/lobby/game/minibg.svg");
    background-size: 100%;
    background-position: center center;
    border-radius: 8px;
    z-index: 1;
    display: none;
    transition: all 0.4s ease-out 0s;
    opacity: 0;
}

.gameZone .gameWrapper .content .rightZone .btns ul li:hover {
    filter: drop-shadow(var(--main) 0px 0px 20px);
}

.gameZone .gameWrapper .content .rightZone .btns ul li:hover .mask, .gameZone .gameWrapper .content .rightZone .btns ul li:hover .inner {
    opacity: 1;
}

.aniLogoMini {
    animation: 1s ease 0s infinite normal none running aniLogoMini;
}

.aniLogo01 {
    animation: 2.3s ease 0s infinite normal none running aniLogo01;
}

@keyframes aniLogoMini {
    0% {
        background-position-y: 0px;
    }

    50% {
        background-position-y: 5px;
    }

    100% {
        background-position-y: 0px;
    }
}

@keyframes aniLogo01 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.98);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 1350px) {
    .gameZone .gameWrapper .content .rightZone .btns ul li .txt01 h2 {
        font-size: 20px;
    }

    .gameZone .gameWrapper .content .rightZone .btns ul li .txt01 span {
        font-size: 12px;
    }

    .gameZone .gameWrapper .content .rightZone .txt h2 {
        font-size: 24px;
    }
}

@media (max-width: 1080px) {
    .gameZone .gameWrapper .title .line {
        width: 73vw;
    }
}

@media (max-width: 1053px) {
    .gameZone .gameWrapper .content .rightZone .btns ul li {
        height: 135px;
    }
}

@keyframes leftIn {
    0% {
        transform: translate(50%);
        opacity: 0;
    }

    100% {
        transform: translate(0px);
        opacity: 1;
    }
}

@keyframes rightIn {
    0% {
        transform: translate(-50%);
        opacity: 0;
    }

    100% {
        transform: translate(0px);
        opacity: 1;
    }
}

@keyframes topIn {
    0% {
        transform: translateY(-300%);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.liveCasinoPage {
    animation: 0s ease 0s 1 normal none running none !important;
}

.casinoZone {
    background-size: cover;
    width: 100%;
    transition: all 0.4s ease-out 0s;
    position: relative;
    padding-bottom: 20px;
}

.casinoZone .casinoWrapper {
    width: 92%;
    height: 90%;
    padding: 5% 0px 0px 5.4%;
}

.casinoZone .casinoWrapper .title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.casinoZone .casinoWrapper .title .leftZone {
    color: #828282;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 6.5vw;
    transform: translateZ(0px);
    margin-right: 1vw;
}

.casinoZone .casinoWrapper .title .leftZone span.icon-logob {
    font-size: 2.3vw;
    margin-right: 4px;
}

.casinoZone .casinoWrapper .title .leftZone h4 {
    font-size: 1.4vw;
    margin-right: 0.5vw;
}

.casinoZone .casinoWrapper .title .leftZone span {
    color: #4a00ea;
    font-size: 1.4vw;
}

.casinoZone .casinoWrapper .title .leftZone span.Logo {
    width: 146px;
    height: auto;
    aspect-ratio: 300 / 67;
    background-image: url("../images/main/logo-213930c7.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 5px;
}

.casinoZone .casinoWrapper .title .line {
    height: 2px;
    width: 81vw;
    background-color: var(--color-main);
    position: relative;
}

.casinoZone .casinoWrapper .title .line::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--color-main);
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(-50%, -50%);
}

.casinoZone .casinoWrapper .content {
    display: flex;
    align-items: start;
    justify-content: space-around;
    margin-top: 4vh;
}

.casinoZone .casinoWrapper .content .leftFrame {
    width: 55%;
    position: relative;
    animation: 0.4s ease 0s 1 normal forwards running rightIn-b815f136;
    opacity: 0;
    min-height: 695px;
}

.casinoZone .casinoWrapper .content .leftZone {
    background-image: url("../images/main/liveCasino_bg.png");
    background-size: cover;
    width: 91%;
    padding-bottom: 111%;
    position: relative;
}

.casinoZone .casinoWrapper .content .leftZone .obj {
    background-image: url("../images/main/live_obj01.png");
    background-repeat: no-repeat;
    width: 119%;
    height: 0px;
    padding-bottom: 91%;
    background-size: cover;
    position: absolute;
    margin-left: -10%;
    margin-top: 15%;
}

.casinoZone .casinoWrapper .content .rightZone {
    width: 45%;
}

.casinoZone .casinoWrapper .content .rightZone .txt {
    margin-bottom: 27px;
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: justify;
    animation: 0.4s ease 0s 1 normal forwards running leftIn-b815f136;
    opacity: 0;
}

.casinoZone .casinoWrapper .content .rightZone .txt h2 {
    color: var(--color-main);
    font-size: 1.5vw;
    font-weight: 700;
    margin-bottom: 10px;
}

.casinoZone .casinoWrapper .content .rightZone .txt p {
    color: #474747;
    line-height: 1.6;
    font-size: 0.6vw;
}

.casinoZone .casinoWrapper .content .rightZone .btnA {
    background: linear-gradient(0deg, rgb(242, 208, 155) 0%, rgb(219, 184, 151) 34%, rgb(142, 112, 84) 100%);
    position: relative;
    border-radius: 50px;
    padding: 28px 91px;
    color: #5a3200;
    transition: all 0.3s ease-out 0s;
    display: inline-block;
    margin-top: 28px;
    cursor: pointer;
}

.casinoZone .casinoWrapper .content .rightZone .btnA:hover {
    color: #ffffff;
}

.casinoZone .casinoWrapper .content .rightZone .obj {
    background-image: url("../images/main/live_obj02.png");
    background-repeat: no-repeat;
    width: 50%;
    height: 0px;
    padding-bottom: 100%;
    background-size: cover;
    position: absolute;
    top: -23%;
    z-index: 2;
    opacity: 0.8;
    transition: all 0.4s ease-out 0s;
    right: 0%;
    pointer-events: none;
}

.casinoZone .casinoWrapper .content .rightZone .btns {
    z-index: 3;
    position: relative;
    animation: 0.4s ease 0s 1 normal forwards running leftIn-b815f136;
    opacity: 0;
    min-height: 560px;
}

.casinoZone .casinoWrapper .content .rightZone .btns ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.casinoZone .casinoWrapper .content .rightZone .btns ul li {
    width: 31.5%;
    height: 150px;
    border: 1px solid #304059;
    border-radius: 10px;
    padding-bottom: 23px;
    margin-bottom: 21px;
    background: linear-gradient(360deg,#21273a 0%,#0b0f11 100%);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    margin-right: 1.5%;
    transition: all 0.4s ease 0s;
}

.casinoZone .casinoWrapper .content .rightZone .btns ul li .ppPro {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 3;
}

.casinoZone .casinoWrapper .content .rightZone .btns ul li .ppPro img {
    width: 3.5vw;
}

.casinoZone .casinoWrapper .content .rightZone .btns ul li .logo {
    position: absolute;
    right: 5%;
    top: 7%;
    z-index: 3;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 30%;
    padding-bottom: 12%;
    transition: all 0.3s ease-out 0s;
}

.casinoZone .casinoWrapper .content .rightZone .btns ul li .model {
    background-repeat: no-repeat;
    background-size: cover;
    width: 80%;
    height: 0px;
    transition: all 0.3s ease-out 0s;
    position: absolute;
    z-index: 2;
    margin: 0px auto;
    padding-bottom: 49%;
    top: 5%;
    left: 10%;
}

.casinoZone .casinoWrapper .content .rightZone .btns ul li:hover {
    border: 1px solid #4fcdff;
    filter: drop-shadow(rgb(0, 163, 255) 0px 0px 20px);
}

.casinoZone .casinoWrapper .content .rightZone .btns ul li:hover .model {
    background-position-y: 5px;
}

.casinoZone .casinoWrapper .content .rightZone .btns ul li .txt01 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: absolute;
    bottom: 13px;
}

.casinoZone .casinoWrapper .content .rightZone .btns ul li .txt01 h2 {
    font-size: 0.9vw;
    color: var(--color-main);
    font-family: arial;
}

.casinoZone .casinoWrapper .content .rightZone .btns ul li .txt01 span {
    font-size: 0.4vw;
    color: var(--color-main);
}

.casinoZone .casinoWrapper .content .rightZone .btns ul li:hover .txt01 h2, .casinoZone .casinoWrapper .content .rightZone .btns ul li:hover .txt01 span {
    color: #ffffff;
}

.casinoZone .casinoWrapper .content .rightZone .btns ul li .mask {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: url("../images/main/vitbg-5690ea68.svg");
    background-size: cover;
    border-radius: 8px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-out 0s;
    opacity: 0;
}

.casinoZone .casinoWrapper .content .rightZone .btns ul li .mask .inner {
    width: 99%;
    height: 99%;
    border-radius: 8px;
    z-index: 1;
    display: none;
    transition: all 0.4s ease-out 0s;
}

.casinoZone .casinoWrapper .content .rightZone .btns ul li:hover .mask, .casinoZone .casinoWrapper .content .rightZone .btns ul li:hover .inner {
    opacity: 1;
}

.rightContent .contents .proSlide {
    position: relative;
    z-index: 4;
    margin-top: 29px;
}

.rightContent .contents .proSlide .Slider .item .banners {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 100%;
    height: 0px;
    padding-bottom: 27.1%;
}

.aniLogo {
    animation: 1.5s ease 0s infinite normal none running aniLogo-b815f136;
}

@keyframes aniLogo-b815f136 {
    0% {
        background-position-y: 0px;
        transform: scale(1);
    }

    50% {
        background-position-y: 5px;
        transform: scale(1.03);
    }

    100% {
        background-position-y: 0px;
        transform: scale(1);
    }
}

.aniLogo01 {
    animation: 2.6s ease 0s infinite normal none running aniLogo01-b815f136;
}

@keyframes aniLogo01-b815f136 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.01);
    }

    100% {
        transform: scale(1);
    }
}

.aniLogo02 {
    animation: 1s ease 0s infinite normal none running aniLogo02-b815f136;
}

@keyframes aniLogo02-b815f136 {
    0% {
        background-position-y: 0px;
        transform: scale(1);
    }

    50% {
        background-position-y: 5px;
        transform: scale(1.01);
    }

    100% {
        background-position-y: 0px;
        transform: scale(1);
    }
}

.aniLogo03 {
    animation: 1s ease 0s infinite normal none running aniLogo03-b815f136;
}

@keyframes aniLogo03-b815f136 {
    0% {
        background-position-y: 0px;
    }

    50% {
        background-position-y: 2px;
    }

    100% {
        background-position-y: 0px;
    }
}

@media (max-width: 1350px) {
    .casinoZone .casinoWrapper .content .rightZone .btns ul li {
        height: 127px;
    }

    .casinoZone .casinoWrapper .content .rightZone .btns ul li .txt01 span {
        font-size: 12px;
    }

    .casinoZone .casinoWrapper .content .rightZone .txt h2 {
        font-size: 22px;
    }

    .casinoZone .casinoWrapper .content .rightZone .txt p {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .casinoZone .casinoWrapper .content .rightZone .btns ul li {
        height: 115px;
    }
}

@media (max-width: 963px) {
    .casinoZone .casinoWrapper .content .rightZone .btns ul li {
        height: 100px;
    }
}

@keyframes leftIn-b815f136 {
    0% {
        transform: translate(50%);
        opacity: 0;
    }

    100% {
        transform: translate(0px);
        opacity: 1;
    }
}

@keyframes rightIn-b815f136 {
    0% {
        transform: translate(-50%);
        opacity: 0;
    }

    100% {
        transform: translate(0px);
        opacity: 1;
    }
}

@keyframes topIn-b815f136 {
    0% {
        transform: translateY(-300%);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.gameZone .gameWrapper .content.off {
    animation-name: none
}

.gameZone.slotList .gameWrapper .content {
    display:block;
}

.gameZone.slotList .gameWrapper .content .info{
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    margin: 0 20px;
    border-bottom: 1px solid;
    margin-bottom: 15px;
}

.gameZone.slotList .gameWrapper .content .title{
    display: flex;
    font-size: 26px;
}

.gameZone.slotList .gameWrapper .content .title span{font-weight: 600;margin-right: 15px;}
.gameZone.slotList .gameWrapper .content .searchZone {
    position: relative;
    width: 300px;
}

.gameZone.slotList .gameWrapper .content .searchZone input {
    color: #474747;
    font-size: 16px;
    letter-spacing: 1px;
    padding-bottom: 0;
    margin-bottom: 0;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin: 0;
    padding: 0;
}

.gameZone.slotList .gameWrapper .content .searchZone input:placeholder-shown + .searchIcon .icon-search{
    display: block;
}

.gameZone.slotList .gameWrapper .content .searchZone input:placeholder-shown + .searchIcon .icon-delet{
    display: none;
}

.gameZone.slotList .gameWrapper .content .searchZone input:not(:placeholder-shown) + .searchIcon .icon-search{
    display: none;
}

.gameZone.slotList .gameWrapper .content .searchZone input:not(:placeholder-shown) + .searchIcon .icon-delet{
    display: block;
}

.gameZone.slotList .gameWrapper .content .searchZone input::placeholder {
    color: #b6b6b6;
    font-size: 14px
}

.gameZone.slotList .gameWrapper .content .searchZone .searchIcon {
    position: absolute;
    right: 10px;
    top: 9px
}

.gameZone.slotList .gameWrapper .content .searchZone .searchIcon span {
    color: #b4b4b4;
    font-size: 13px;
    padding: 2px;
    cursor: pointer;
}

.gameZone.slotList .gameWrapper .content ul {
    display: grid;
    grid-template-columns: var(--pc-slot-cnt);
    gap: 20px;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 50px;
}

.gameZone.slotList .gameWrapper .content ul li {
    width: 100%;
    position: relative;
    border-radius: 7px;
}

.gameZone.slotList .gameWrapper .content ul li .pic {
    width: 100%;
    height: 80%;
    position: relative;
    background-color: #2e3135;
    border: 1px solid #304059;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1px;
    overflow: hidden;
    border-radius: 9px;
}

.gameZone.slotList .gameWrapper .content ul li .pic .logoFrame img {
    height: 23px;
    width: auto
}

.gameZone.slotList .gameWrapper .content ul li .pic .logoFrame {
    clip-path: polygon(41% 0%,100% 0%,100% 100%,55% 100%);
    background-color: #000;
    width: 115%;
    height: 37px;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 57%
}

.gameZone.slotList .gameWrapper .content ul li .pic .ppPro {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2
}

.gameZone.slotList .gameWrapper .content ul li .pic .ppPro img {
    width: 4.5vw
}

.gameZone.slotList .gameWrapper .content ul li .pic img {
    z-index: 1;
    position: relative;
    transition: .3s ease-out;
    width: 100%;
    height: auto;
}

.gameZone.slotList .gameWrapper .content ul li .pic:before {
    content: "";
    position: absolute;
    width: 177px;
    height: 177px;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

.gameZone.slotList .gameWrapper .content ul li .name {
    position: relative;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    background: #3c3c3c;
    border-radius: 7px;
    color: white;
    margin-top: 2px;
    justify-content: center;
}

.gameZone.slotList .gameWrapper .content ul li .name span {
    z-index: 1;
    color: #474747;
    font-weight: bolder;
    font-size: .9vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gameZone.slotList .gameWrapper .content ul li .name span::before {
    margin: 0px 10px;
    color: #66696c;
}

.gameZone.slotList .gameWrapper .content ul li .name span.icon-favorfull {
    color: var(--color-main)!important
}

.gameZone.slotList .gameWrapper .content ul li .mask {
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 2;
    position: absolute;
    border-radius: 5px;
    display: none;
    transition: .4s ease-out;
    cursor: pointer
}

.gameZone.slotList .gameWrapper .content ul li .mask .imgFrame {
    height: 24%;
    width: 100%!important;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-116%);
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.gameZone.slotList .gameWrapper .content ul li .mask .imgFrame img {
    height: auto!important;
    width: 45px!important
}

.gameZone.slotList .gameWrapper .content ul li .cubeLogo .imgFrame img {
    width: 26%!important
}

.gameZone.slotList .gameWrapper .content ul li .cubeLogo .imgFrame {
    transform: translate(-50%,-138%)!important
}

.gameZone.slotList .gameWrapper .content ul li:hover .pic>img {
    transform: rotate(10deg) scale(1.1)
}

.gameZone.slotList .gameWrapper .content ul li .mask .gogo {
    width: 52%;
    height: 30px;
    position: relative;
    cursor: pointer;
    transition: .4s ease-out;
    box-shadow: 6px 5px 7px #a7b5cc .5;
    background: var(--color-main);
    border-radius: 20px;
    position: absolute;
    top: 56%;
    transform: translate(-50%,6%);
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.gameZone.slotList .gameWrapper .content ul li .mask .gogo span {
    color: #ffffff;
    font-size: .8vw
}

.gameZone.slotList .gameWrapper .content ul li:hover .mask {
    display: block
}

.gameZone.slotList .gameWrapper .content ul li .heart01 {
    position: absolute;
    top: 4px;
    left: -4px;
    cursor: pointer
}

.gameZone.slotList .gameWrapper .content ul li .heart01 span {
    transition: all .2s linear;
    font-size: 25px!important;
    font-weight: 400!important;
    color: #666666!important;
    position: absolute
}

.gameZone.slotList .gameWrapper .content ul li .heart:before {
    display: none!important
}

.gameZone.slotList .gameWrapper .content ul li .heart {
    position: absolute;
    top: -7px;
    left: -15px
}

.gameZone.slotList .gameWrapper .content ul li .heart label:before {
    display: none
}

#attendance .calendar-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column;
            flex-flow: column;
    gap: 0.2em;
}
#attendance .calendar-wrap .head {
    margin-top: 1em;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    font-size: 1em;
}
#attendance .calendar-wrap .head .left-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
}
#attendance .calendar-wrap .head .left-wrap select {
    box-shadow: var(--shadow-secondary);
    font-weight: 700;
    font-size: 1.2em;
    padding: 0.75em;
    padding-right: 2em;
    color: #7b7b7b;
    width: 115px;
}
#attendance .calendar-wrap .head .left-wrap option {
    color: #7b7b7b;
}
#attendance .calendar-wrap .head .left-wrap select.month {
    margin-left: 0.2em;
}
#attendance .calendar-wrap .head .right-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: 1.2em;
    background: #00a8ea;
    box-shadow: var(--shadow-primary);
    padding: 0 1em;
    border-radius: 1em;
    color: #ffffff;
}
#attendance .calendar-wrap .head .right-wrap .ac_cnt {
    font-weight: 700;
    padding: 0 1em;
}
#attendance .calendar-wrap .calendar {
    margin-top: 1em;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column;
            flex-flow: column;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
}
#attendance .calendar-wrap .calendar .cols {
    display: grid;
    -webkit-justify-content: center;
            justify-content: center;
    grid-template-columns: repeat(7, 1fr);
    background-color: var(--color-main);
}
#attendance .calendar-wrap .calendar .cols .cell {
    height: 3em;
    color: white;
    font-size: 1.5em;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
}
#attendance .calendar-wrap .calendar .rows {
    display: grid;
    -webkit-justify-content: center;
            justify-content: center;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    font-family: "Pretendard";
    font-size: 1.25em;
}
#attendance .calendar-wrap .calendar .rows .cell {
    height: 7em;
    color: var(--font-third);
    font-weight: 700;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column;
            flex-flow: column;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
}
#attendance .calendar-wrap .calendar .rows .cell:nth-child(7n+1) {
    color: var(--color-error);
}
#attendance .calendar-wrap .calendar .rows .cell:nth-child(7n) {
    color: #2e90fa;
}
#attendance .calendar-wrap .calendar .rows .cell.today {
    color: #00c2a4;
}
#attendance .calendar-wrap .calendar .rows .cell.day {
    font-weight: 700;
    padding-top: 0.5em;
    background: linear-gradient(0deg, #ececec, #eeeeee);
}
#attendance .calendar-wrap .calendar .rows .cell.day .image {
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
    -webkit-flex-grow: 1;
            flex-grow: 1;
    margin: 0.25em;
    background: url(../images/common/att2.png) no-repeat center;
    background-size: contain;
}
#attendance .calendar-wrap .calendar .rows .cell.day .image.consec {
    background-image: url(../images/common/att1.png);
}

#attendance .attendance-reward-wrap {
    
}

#attendance .attendance-reward-wrap .attendance-reward-btn {
    width: 100px;
    height: 35px;
}

#roulette {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column;
            flex-flow: column;
}
#roulette .roulette-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#roulette .roulette-container .roulette {
    max-width: 500px;
    position: relative;
    display: block;
    z-index: 1;
}
#roulette .roulette-container .roulette .wheel {
    position: absolute;
    display: -webkit-flex;
    display: flex;
    width: 90%;
    top: 3.8%;
    left: 5%;
    transition: transform 6.5s cubic-bezier(0, 0, 0.3, var(--pt-bezier)), -webkit-transform 6.5s cubic-bezier(0, 0, 0.3, var(--pt-bezier));
}
#roulette .roulette-container .roulette .wheel.waiting {
    transition-duration: 60s;
}
#roulette .roulette-container .roulette .wheel .roulete_img {
    will-change: transform;
    border-radius: 50%;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.5);
    width: 100%;
}
#roulette .wheel-slice {
    font-size: 1.5em;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 7%;
    font-weight: 900;
    text-align: center;
    -webkit-transform-origin: left center;
            transform-origin: left center;
    padding-left: 10%;
    -webkit-transform: translateY(-50%) rotate(136deg);
            transform: translateY(-50%) rotate(136deg);
    color: white;
}
#roulette .wheel-slice:nth-child(1) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 0));
            transform: translateY(-50%) rotate(calc(30deg * 0));
}
#roulette .wheel-slice:nth-child(2) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 1));
            transform: translateY(-50%) rotate(calc(30deg * 1));
}
#roulette .wheel-slice:nth-child(3) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 2));
            transform: translateY(-50%) rotate(calc(30deg * 2));
}
#roulette .wheel-slice:nth-child(4) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 3));
            transform: translateY(-50%) rotate(calc(30deg * 3));
}
#roulette .wheel-slice:nth-child(5) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 4));
            transform: translateY(-50%) rotate(calc(30deg * 4));
}
#roulette .wheel-slice:nth-child(6) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 5));
            transform: translateY(-50%) rotate(calc(30deg * 5));
}
#roulette .wheel-slice:nth-child(7) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 6));
            transform: translateY(-50%) rotate(calc(30deg * 6));
}
#roulette .wheel-slice:nth-child(8) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 7));
            transform: translateY(-50%) rotate(calc(30deg * 7));
}
#roulette .wheel-slice:nth-child(9) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 8));
            transform: translateY(-50%) rotate(calc(30deg * 8));
}
#roulette .wheel-slice:nth-child(10) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 9));
            transform: translateY(-50%) rotate(calc(30deg * 9));
}
#roulette .wheel-slice:nth-child(11) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 10));
            transform: translateY(-50%) rotate(calc(30deg * 10));
}
#roulette .wheel-slice:nth-child(12) {
    -webkit-transform: translateY(-50%) rotate(calc(30deg * 11));
            transform: translateY(-50%) rotate(calc(30deg * 11));
}
#roulette .wheel-slice:nth-child(even) {
    color: #d20000;
}
#roulette .wheel-slice .coupon {
    width: 40%;
}

#roulette .roulette-container .roulette .outside {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
}
#roulette .roulette-container .roulette .outside img {
    width: 100%;
    height: auto;
}
#roulette .roulette-container .roulette .roulette-btn {
    z-index: 103;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: 37.5%;
    left: 50.3%;
}
#roulette .roulette-container .roulette .start-btn {
    background: url(../images/common/roul-start.png) center no-repeat;
    background-size: contain;
    width: 100px;
    height: 120px;
    border-radius: 100px;
    border-style: none;
    transition: all 0.3s;
    -webkit-transform-origin: 50% 60%;
            transform-origin: 50% 60%;
}
#roulette .roulette-container .roulette .start-btn::after {
    content: "";
    position: absolute;
    display: block;
    top: 53%;
    left: 49%;
    width: 45%;
    height: 22%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border-radius: 12px;
    background: rgba(59, 23, 1, 0.85);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    box-shadow: 0 0 1px 1px rgba(59, 23, 1, 0.85);
    opacity: 0;
    transition: all 0.2s;
}
#roulette .roulette-container .roulette .start-btn.disabled {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
}
#roulette .roulette-container .roulette .start-btn.disabled::after {
    opacity: 1;
}
#roulette .roulette-info {
    position: relative;
    background: #fffae4;
    padding: 1em;
    top: 0;
    width: 600px;
    height: 100;
    box-shadow: 13px 0px 20px 0px rgba(0, 0, 0, 0.49);
    z-index: -1;
}
#roulette .roulette-info::after {
    content: "";
    -webkit-mask-image: linear-gradient(102deg, black, transparent 60%);
    mask-image: linear-gradient(102deg, black, transparent 60%);
    background: url(../images/common/card-trail.png) left center no-repeat;
    background-size: 100% 100%;
    -webkit-filter: drop-shadow(5px 4px 6px rgba(0, 0, 0, 0.4901960784));
    filter: drop-shadow(5px 4px 6px rgba(0, 0, 0, 0.4901960784));
    position: absolute;
    display: block;
    height: 100%;
    top: 0;
    left: 100%;
    width: 26em;
    opacity: 0.8;
}
#roulette .roulette-info .count-wrap {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column;
            flex-flow: column;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    height: 70%;
}
#roulette .roulette-info .count-wrap h2.title {
    font-size: 1.4em;
    color: #825000;
    font-weight: 700;
    padding: 1em 0;
    border-bottom: 1px solid #dcdcdc;
    width: 100%;
    text-align: center;
}
#roulette .roulette-info .count-wrap .content {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    height: 100%;
}
#roulette .roulette-info .count-wrap .content .count-label {
    margin-right: 1em;
}
#roulette .roulette-info .count-wrap .content .coupon {
    font-size: 1.5em;
    width: 6em;
    height: 6em;
    border-radius: 50%;
    background: #f0ac19;
    color: #fff;
    border: 1px solid #825000;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-flex-flow: column;
            flex-flow: column;
    border-radius: 50%;
}
#roulette .roulette-info .count-wrap .content .coupon b.coupon-cnt {
    font-size: 1.5em;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    margin-top: -0.5em;
}
#roulette .roulette-info .count-wrap .content .coupon span {
    font-size: 0.9em;
}
#roulette .roulette-container {
    margin-left: 6em;
}

@media screen and (max-width: 990px) {
    #roulette .roulette-info {
        height: auto;
        border-radius: 12px;
    }
    
    #roulette .roulette-info:after {
        display: none;
    }
    
    #roulette .roulette-info .count-wrap .content {
        margin-top: 0;
    }
    
    #roulette .roulette-info .count-wrap .content .coupon {
        height: auto;
        background: none;
        border: none;
        color: black;
    }
}