@charset "UTF-8";

.logoFrame{
    margin: -1px
}

.gamePage {
    animation: 0s ease 0s 1 normal none running none !important;
}
.game-list img.full {
    width: 100%;
}
.game-list a {
    cursor: pointer;
}
.game-list a:hover {
    filter: drop-shadow(0px 0px 10px var(--main));
    transition: all 0.4s ease 0s;
}

.game-list .game-bg {
    width: 100%;
    padding-bottom: 54%;
    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;
}

.game-list .game-bg .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;
}

.game-list .game-bg.slot .model {
    height: 116%;
    top: 0%;
    left: 7%;
}
.game-bg:hover {
    filter: drop-shadow(var(--main) 0px 0px 20px);
}
.game-list .game-bg:hover .model {
    background-position-y: 5px;
}

.game-list .game-bg .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;
}

.game-list .game-bg .txt {
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2;
    position: absolute;
    top: 15px;
    left: 15px;
}

.game-list .game-bg .txt h2 {
    font-size: 18px;
    color: var(--main);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
    width: 100%;
}

.game-list .game-bg .txt span {
    font-size: 12px;
    color: var(--main);
    margin-top: 5px;
}

.game-list .mask {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    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;
}

.game-list .mask .inner {
    width: 100%;
    height: 100%;
    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 {
    background-size: cover;
    width: 100%;
    transition: all 0.4s ease-out 0s;
}

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

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

.gameZone .leftZone img {
    width: 85%;
}

.gameZone .rightZone {
    width: 55%;
}

.gameZone .rightZone .tit {
    margin-bottom: 27px;
    animation: 0.4s ease 0s 1 normal forwards running leftIn;
    opacity: 0;
    color: var(--main);
    font-size: 1.5vw;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.gameZone .rightZone .game-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.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;
    }
}

.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;
    }
}

@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%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1px;
    overflow: hidden;
}

.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 .name {
    position: relative;
    width: 100%;
    height: 40px;
    margin: 0 auto;
    background: #e2e2e2;
    border-radius: 7px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: 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: #00000091;
    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 .roulette-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

#roulette .roulette-info {
    position: relative;
    background: #fffae4;
    padding: 15px;
    width: 500px;
    box-shadow: 4px 0px 4px 0px rgba(0, 0, 0, 0.49);
    height: 600px;
}

#roulette .roulette-info .title {
    font-size: 1.4em;
    color: #825000;
    font-weight: 700;
    padding: 1em 0;
    border-bottom: 1px solid #dcdcdc;
    text-align: center;
}
#roulette .roulette-info .coupon {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top:15%;
}
#roulette .roulette-info .coupon .coupon-cnt {
    font-size: 24px;
    background: #f0ac19;
    color: #fff;
    border: 1px solid #825000;
    padding: 5px 30px;
    border-radius: 8px;
    margin:0 5px
}

#roulette .roulette {
    max-width: 500px;
    position: relative;
    display: block;
    z-index: 1;
}
#roulette .roulette .wheel {
    position: absolute;
    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 .wheel.waiting {
    transition-duration: 60s;
}
#roulette .roulette .wheel .roulete_img {
    will-change: transform;
    border-radius: 50%;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.5);
    width: 100%;
}

#roulette .roulette .outside {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
}
#roulette .roulette .outside img {
    width: 100%;
    height: auto;
}

#roulette .roulette .btn-start {
    z-index: 103;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 37.5%;
    left: 50%;
    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;
}
#roulette .roulette .btn-start::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 .btn-start.disabled {
    filter: grayscale(1);
    opacity: 1;
}
#roulette .roulette .btn-start.disabled::after {
    opacity: 1;
}

#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%;
}

@media screen and (max-width: 990px) {
    #roulette .roulette-info {
        height: auto;
        border-radius: 12px;
    }
    #roulette .roulette-info .coupon {
        margin:30px 0;
    }
}
