@charset "UTF-8";

.logoFrame{
    margin: -1px
}
.game-list img.full {
    width: 100% !important;
}
.game-list .bg {
    background: url(../images/common/game_bg1.png) no-repeat;
    background-size: 100% 100%;
    padding-bottom: 38%;
    height: 0px;
    border-radius: 10px;
    margin-bottom: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}

.game-list .bg .title{
    font-size: 7vw;
    position: absolute;
    color: #e8eef9;
    font-weight: 800;
    right: 3%;
    top: 4%;
}
.game-list .bg img.model{
    width: 38%;
    position: absolute;
    right: 7%;
    bottom: 0;
}
.game-list .bg .ico-wrap{
    position: absolute;
    bottom: 50%;
    left: 18%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(#cad1e6, #b3bad3);
    border-radius: 8px;
}
.game-list .bg .ico-wrap .ico{
    width: 6vw;
    height: 6vw;
    background: white;
    mask-image: var(--bg-url);
    mask-size: contain;
    margin: 5px;
}
.game-list .bg .logo-wrap{
    position: absolute;
    bottom: 18%;
    left: 7%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    color: #a1a2c4;
}
.game-list .bg .logo-wrap .tit{
    font-size: 4vw;
    text-transform: uppercase;
    font-weight: 800;
    white-space: nowrap;
}
.game-list .bg .logo-wrap .txt{
    font-size: 3vw;
    position:relative;
    white-space: nowrap;
}
.game-list .bg .logo-wrap .txt:before{
    content: "-";
    margin-right: 5px;
}
.game-list .bg .logo-wrap .txt:after{
    content:'-';
    margin-left: 5px;
}

.game-list .bg.sm {
    background: url(../images/common/game_bg2.png) no-repeat;
    padding-bottom: 99%;
}

.game-list .bg.sm .title{
    display: none;
}
.game-list .bg.sm img.model{
    width: 74%;
    right: 13%;
    bottom: -13%;
    z-index: 1;
}
.game-list .bg.sm .ico-wrap {
    display:none;
}
.game-list .bg.sm .logo-wrap{
    top: 11%;
    left: 0%;
    width: 100%;
}
.gameWrapper{
    background-size: cover;
    width: 100%;
    transition: all 0.4s ease-out 0s;
    padding-top: 30px;
    position: relative;
}

.gameWrapper .content {
    display: flex;
    align-items: start;
    justify-content: space-around;
}

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

.gameWrapper .content .leftZone {
    width: 100%;
    height: 760px;
    position: relative;
    text-align: center;
    animation: 0.4s ease 0s 1 normal rightIn;
}
.gameWrapper .content .leftZone img {
    max-height: 100%;
    max-width: 100%;
}

.gameWrapper .content .rightZone {
    width: 100%;
    animation: 0.4s ease 0s 1 normal leftIn;
    font-weight:900;
    color: var(--main);
}

.gameWrapper .content .rightZone .tit {
    font-size: 3em;
    margin-bottom: 20px;
}
.gameWrapper .content .rightZone .titEn {
    font-size:2.5em;
    margin-bottom: 15px;
    text-transform:uppercase;
}
.gameWrapper .btn-icons {
    position: absolute;
    top: 280px;
    width: 43%;
    right: 7%;
}
.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) {
    .gameWrapper .content .rightZone .btns ul li .txt01 h2 {
        font-size: 20px;
    }

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

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

@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);
    }
}

.slotWrapper {
    margin-top: 20px;
    display: flex;
    gap: 5px;
}

.slotWrapper .tabZone {
    animation: leftIn .4s;
    animation-fill-mode: forwards;
    max-height: 720px;
    overflow: scroll;
}

.slotWrapper .tabZone ul {
    display: flex;
    width: 100%;
    overflow: hidden;
    flex-direction: column;
    background: white;
    gap: 20px;
}
.slotWrapper .tabZone ul.all {
    height:auto;
}
.slotWrapper .tabZone ul li {
    display: flex;
    justify-content: flex-start;
    cursor: pointer;
    transition: .4s ease-out;
    width: 100%;
    position: relative;
    flex-direction: column;
    align-items: center;
    padding: 10px 5px;
}

.slotWrapper .tabZone ul li span {
    font-size: 46px;
    background: #b4b4b4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: .4s ease-out;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center
}

.slotWrapper .tabZone ul li h4 {
    font-size: 12px;
    transition: .4s ease-out;
    white-space: normal;
    width: 100%;
    text-align: center;
    word-wrap: break-word;
    margin-top: 10px;
}
.slotWrapper .tabZone ul li.active {
    border-color: var(--main);
    background: var(--main01);
    color: white;
}

.slotWrapper .tabZone ul li.active span {
    background: var(--main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.slotWrapper .tabZone ul li .pic {
    width: 3.5vw;
    display: flex;
    align-items: center;
    justify-content: center
}

.slotWrapper .tabZone ul li .innerPic {
    width: 100%;
    padding-bottom: 45.3%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: .4s ease-out;
    filter: grayscale(1);
}
.slotWrapper .tabZone ul li:hover .innerPic,
.slotWrapper .tabZone ul li.active .innerPic {
    filter: grayscale(0);
}

.slotWrapper .slotZone {
    overflow: hidden;
    height: auto;
    width: 100%;
    background: white;
}

.slotWrapper .slotZone .searchZone {
    position: relative;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid;
}
.slotWrapper .slotZone .searchZone .list {
    display:flex;
    gap:20px;
    align-items: center;
}
.slotWrapper .slotZone .searchZone .list .item {
    cursor:pointer;
}
.slotWrapper .slotZone .searchZone .list .item.active,
.slotWrapper .slotZone .searchZone .list .item:hover {
    color:var(--main)
}
.slotWrapper .slotZone .searchZone input {
    width: 200px;
    border-radius: 6px
}

.slotWrapper .slotZone .searchZone input:placeholder-shown + .searchIcon .icon-search{
    display: block;
}

.slotWrapper .slotZone .searchZone input:placeholder-shown + .searchIcon .icon-delet{
    display: none;
}

.slotWrapper .slotZone .searchZone input:not(:placeholder-shown) + .searchIcon .icon-search{
    display: none;
}

.slotWrapper .slotZone .searchZone input:not(:placeholder-shown) + .searchIcon .icon-delet{
    display: block;
}

.slotWrapper .slotZone .searchZone .searchIcon {
    position: absolute;
    right: 0px;
    top: 9px
}

.slotWrapper .slotZone .searchZone .searchIcon span {
    color: #b4b4b4;
    font-size: 13px;
    padding: 2px;
    cursor: pointer;
}

.slotWrapper .slotZone.off {
    animation-name: none
}

.slotWrapper .slotZone .tab-pane ul {
    display: grid;
    grid-template-columns: var(--pc-slot-cnt);
    gap: 10px;
}

.slotWrapper .slotZone .tab-pane ul li {
    width: 100%;
    min-width: 0;
    position: relative;
    border: 1px solid #d2d2d2;
}

.slotWrapper .slotZone .tab-pane ul li .pic {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1px;
    overflow: hidden;
}

.slotWrapper .slotZone .tab-pane ul li .pic img {
    z-index: 1;
    position: relative;
    transition: .3s ease-out;
    width: 100%;
    height: auto
}

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

.slotWrapper .slotZone .tab-pane ul li .name {
    position: relative;
    border-radius: 5px;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: normal;
    font-weight: 600;
    padding: 8px 0px;
}

.slotWrapper .slotZone .tab-pane ul li .name .favour {
    cursor: pointer;
}

.slotWrapper .slotZone .tab-pane ul li .name .favour::before {
    margin: 0px 10px;
    color: #a8a8a8;
    content: "\e90b";
    font-family: 'icomoon';
}

.slotWrapper .slotZone .tab-pane ul li.pinned .name .favour::before {
    color: var(--main01);
}

.slotWrapper .slotZone .tab-pane ul li .mask {
    cursor: pointer;
    transition: .4s ease-out;
    background: var(--main);
    border-radius: 10px;
    position: absolute;
    padding: 8px 10px;
    top: 50%;
    transform: translate(-50%,-50%);
    left: 50%;
    display: none;
    color: #ffffff;
    z-index: 2;
}

.slotWrapper .slotZone .tab-pane ul li:hover .mask {
    display: block
}
.slotWrapper .slotZone .tab-content.pinned ul li:not(.pinned) {
    display: none;
}
.miniWrapper .tabZone {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}
.miniWrapper .tabZone li {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    justify-content: space-between;
    cursor: pointer;
    border: 1px solid #d0d0d0;
    padding: 8px;
    border-radius: 10px;
    background: white;
}
.miniWrapper .tabZone li img {
    width:120px
}
.miniWrapper .tab-content {
    background: white;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    padding: 20px;
    gap: 10px;
}
.miniWrapper .tab-content li {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #c8c8c8;
    padding: 10px;
    border-radius: 7px;
}
.miniWrapper .tab-content li .pic{
    position: relative;
}
.miniWrapper .tab-content li .pic img {
    width: 100%;
}
.miniWrapper .tab-content li .pic .mask {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--main);
    color: white;
    padding: 10px;
    white-space: nowrap;
    display: none;
    border-radius: 7px;
}
.miniWrapper .tab-content li:hover .pic .mask {
    display:block;
    transition: all 0.5s;
}
.miniWrapper .tab-content li .name {
    font-size: 18px;
}

#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: 0px 8px 20px rgba(0, 0, 0, 0.1), 0px 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    font-size: 1.2em;
    padding: 0.75em;
    padding-right: 2em;
    color: #d5d5d5;
    width: 115px;
}
#attendance .calendar-wrap .head .left-wrap option {
    color: #d5d5d5;
}
#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: var(--main);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1), 0px 2px 8px rgba(0, 0, 0, 0.1);
    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: 0px 8px 20px rgba(0, 0, 0, 0.1), 0px 2px 8px rgba(0, 0, 0, 0.1);
}
#attendance .calendar-wrap .calendar .cols {
    display: grid;
    -webkit-justify-content: center;
            justify-content: center;
    grid-template-columns: repeat(7, 1fr);
    background-color: var(--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: var(--blue-04);
}
#attendance .calendar-wrap .calendar .rows .cell.today {
    color: white;
}
#attendance .calendar-wrap .calendar .rows .cell.day {
    font-weight: 700;
    padding-top: 0.5em;
    background: white;
    border: 1px solid #d7d7d7;
}
#attendance .calendar-wrap .calendar .rows .cell.day .image {
    width: 100%;
    height: 100%;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
    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-reward-btn {
    width: 100px;
    height: 35px;
}

#roulette .roulette-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#roulette .roulette-info {
    position: relative;
    background: #fffae4;
    padding: 1em;
    top: 0;
    width: 500px;
    box-shadow: 13px 0px 20px 0px rgba(0, 0, 0, 0.49);
    z-index: -1;
    height: 600px;
}
#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 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 .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%;
    margin-top: 20%;
}
#roulette .roulette-info .content .count-label {
    margin-right: 1em;
}
#roulette .roulette-info .content .coupon {
    font-size: 1.5em;
    width: 6em;
    height: 6em;
    border-radius: 50%;
    background: #f0ac19;
    color: #fff;
    border: 1px solid #825000;
    display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}
#roulette .roulette-info .content .coupon .coupon-cnt {
    font-size: 1em;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    margin-right: 0.2em;
}
#roulette .roulette-info .content .coupon span {
    font-size: 0.9em;
}

#roulette .roulette-container {
    padding: 15px;
}

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