@font-face {
    font-family: 'GmarketSans';
    src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff") format("woff");
    font-weight: 100;
    font-style: normal
}

@font-face {
    font-family: 'GmarketSans';
    src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff") format("woff");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: 'GmarketSans';
    src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff") format("woff");
    font-weight: 900;
    font-style: normal
}

.promotion-wrap {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Pretendard';
    position: relative;
    background-image: url(/images/month2605/bg.jpg);
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-color: #876bfb;
    margin-bottom: -120px;
}

.promotion-wrap * {
    font-family: inherit
}

.promotion-wrap:is(.not-period, .event-end) {
    pointer-events: none
}

.promotion-wrap:is(.not-period, .event-end)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    z-index: 997;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85)
}

.promotion-wrap:is(.not-period, .event-end)::after {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    font-size: 60px;
    color: #fff
}

.promotion-wrap.not-period::after {
    content: '이벤트 시작 전입니다.'
}

.promotion-wrap.event-end::after {
    content: '이벤트가 종료되었습니다.'
}

.confetti-box {
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
    pointer-events: none;
    width: 100%; height: 60vh;
    overflow: hidden;
}

.promotion-wrap>section {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 1040px
}

.promotion-wrap>section.roulette-section {
    width: 1280px;
    padding-top: 1028px;
    position: relative
}

.promotion-wrap>section.roulette-section .roulette-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 162px
}

.promotion-wrap>section.roulette-section .roulette-wrap .roulette-arc {
    width: 952px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    box-shadow: 19px 0 51px rgba(0, 0, 0, 0.15);
    position: relative
}

.promotion-wrap>section.roulette-section .roulette-wrap .roulette-arc .roulette {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: url(/images/month2605/roulette-board.png);
    background-repeat: no-repeat;
    background-position: 50% 50%
}
.promotion-wrap>section.roulette-section .roulette-wrap .roulette-arc .roulette.result0 {
    background-image: url(/images/month2605/roulette-board0.png);
}
.promotion-wrap>section.roulette-section .roulette-wrap .roulette-arc .roulette.result1 {
    background-image: url(/images/month2605/roulette-board1.png);
}
.promotion-wrap>section.roulette-section .roulette-wrap .roulette-arc .roulette.result2 {
    background-image: url(/images/month2605/roulette-board2.png);
}
.promotion-wrap>section.roulette-section .roulette-wrap .roulette-arc .roulette.result3 {
    background-image: url(/images/month2605/roulette-board3.png);
}
.promotion-wrap>section.roulette-section .roulette-wrap .roulette-arc .roulette.result4 {
    background-image: url(/images/month2605/roulette-board4.png);
}
.promotion-wrap>section.roulette-section .roulette-wrap .roulette-arc .roulette.result5 {
    background-image: url(/images/month2605/roulette-board5.png);
}
.promotion-wrap>section.roulette-section .roulette-wrap .roulette-arc .roulette.result6 {
    background-image: url(/images/month2605/roulette-board6.png);
}

.promotion-wrap>section.roulette-section .roulette-wrap .roulette-arc .roulette-button {
    width: 212px;
    height: 212px;
    position: relative;
    z-index: 3;
    background-image: url(/images/month2605/roulette-button.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
.promotion-wrap>section.roulette-section .roulette-wrap .roulette-arc .roulette-button.on {
    background-image: url(/images/month2605/roulette-button-on.png);
}

@keyframes roulette_button {
    0% { opacity: 0.2; }
    50% { opacity: 1; }
    100% { opacity: 0.2; }
}
.promotion-wrap>section.roulette-section .roulette-wrap .roulette-arc .roulette-button:not(.on)::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    display: block;
    width: 100%; height: 100%;
    border-radius: 50%;
    /*box-shadow: inset 0 0 80px rgba( 255, 255, 130, 1 );*/
    box-shadow: inset 0 0 80px rgba( 43, 30, 85, 1 );
    pointer-events: none;
    animation-name: roulette_button;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-duration: 2s;
}

.promotion-wrap>section.roulette-section .roulette-wrap .roulette-arc .roulette-button .btn-roulette-start {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: inherit;
    height: inherit;
    font-size: 0;
    color: transparent
}

.promotion-wrap>section.roulette-section .roulette-wrap .roulette-arc::after {
    content: '';
    display: inline-block;
    width: 125px;
    height: 153px;
    position: absolute;
    top: -37px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    background-image: url(/images/month2605/roulette-arrow.png);
    background-repeat: no-repeat;
    background-position: 50% 50%
}

.promotion-wrap>section.roulette-section .roulette-wrap::after {
    content: '';
    position: absolute;
    bottom: 28px;
    left: 13px;
    display: block;
    width: 345px;
    height: 351px;
    background-image: url(/images/month2605/roulette-charictor.png);
    background-repeat: no-repeat;
    background-position: 50% 50%
}

.promotion-wrap>section.roulette-section .roulette-notice {
    width: 100%;
    font-size: 22px;
    color: #fff;
    opacity: 0.5;
    text-align: center;
    margin-top: 38px
}

.promotion-wrap>section.roulette-section .roulette-information {
    font-family: 'GmarketSans'
}

.promotion-wrap>section.roulette-section .roulette-information .roulette-my-won {
    width: 1078px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 15px 0 30px rgba(255, 255, 255, 0.14)
}

.promotion-wrap>section.roulette-section .roulette-information .roulette-my-won>dt {
    width: 100%;
    height: 120px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #383838;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    padding-top: 1%;
    position: relative;
}
.promotion-wrap>section.roulette-section .roulette-information .roulette-my-won>dt .pointer {
    display: inline-block;
    width: 0px; height: 0px;
    position: absolute;
    top: -180px; left: 50%;
    opacity: 0;
    pointer-events: none;
}

.promotion-wrap>section.roulette-section .roulette-information .roulette-my-won>dd {
    width: 100%;
    height: 503px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 0 66px
}

.promotion-wrap>section.roulette-section .roulette-information .roulette-my-won>dd .roulette-result-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 74px
}

.promotion-wrap>section.roulette-section .roulette-information .roulette-my-won>dd .roulette-result-error .roulette-result-text {
    font-size: 43px;
    color: #000
}

.promotion-wrap>section.roulette-section .roulette-information .roulette-my-won>dd .roulette-result-goods {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-top: 7px
}

.promotion-wrap>section.roulette-section .roulette-information .roulette-my-won>dd .roulette-result-goods .goods-image.product {
    width: 337px;
    height: 337px;
    border-radius: 50%;
    background-color: #f5f5f5;
    overflow: hidden
}

.promotion-wrap>section.roulette-section .roulette-information .roulette-my-won>dd .roulette-result-goods .goods-image.null {
    width: 295px;
    height: 300px;
    padding: 20px
}

.promotion-wrap>section.roulette-section .roulette-information .roulette-my-won>dd .roulette-result-goods .goods-image.null img {
    box-shadow: 15px 0 30px rgba(255, 255, 255, 0.14)
}

.promotion-wrap>section.roulette-section .roulette-information .roulette-my-won>dd .roulette-result-goods .goods-image img {
    width: 100%;
    height: 100%
}

.promotion-wrap>section.roulette-section .roulette-information .roulette-my-won>dd .roulette-result-goods .goods-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 80px
}

.promotion-wrap>section.roulette-section .roulette-information .roulette-my-won>dd .roulette-result-goods .goods-text .celebrate-message {
    font-size: 48px;
    color: #000
}

.promotion-wrap>section.roulette-section .roulette-information .roulette-my-won>dd .roulette-result-goods .goods-text .goods-message {
    font-size: 30px;
    color: #5b5b5b;
    padding-left: 1.25em;
    line-height: 1.36;
    position: relative
}

.promotion-wrap>section.roulette-section .roulette-information .roulette-my-won>dd .roulette-result-goods .goods-text .goods-message::before {
    content: '※';
    position: absolute;
    top: 0;
    left: 0
}

.promotion-wrap>section.other-contents-section {
    width: 1529px;
    flex: 1;
    background-color: #f5f3ff;
    margin-top: 100px;
    border-radius: 2.5em 2.5em 0 0;
    box-shadow: 14px 0 95px rgba(44, 26, 118, 0.3);
    padding: 100px 224px 100px 224px
}

.promotion-wrap>section.other-contents-section .prize-article {
    width: 1078px
}

.promotion-wrap>section.other-contents-section .prize-article img {
    width: 100%;
    height: auto
}

.promotion-wrap>section.other-contents-section .comment-top-article {
    width: 1078px;
    margin-top: 85px
}

.promotion-wrap>section.other-contents-section .comment-top-article img {
    width: 100%;
    height: auto
}

.promotion-wrap>section.other-contents-section .comment-article {
    width: 1034px;
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    background-color: #fff;
    padding: 47px 43px 41px 43px;
    border: 1px solid #e4e4e4
}

.promotion-wrap>section.other-contents-section .comment-article form {
    width: 100%
}

.promotion-wrap>section.other-contents-section .comment-article .comment-form {
    width: 100%;
    height: 172px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-left: 5px;
    margin-right: 2px
}

.promotion-wrap>section.other-contents-section .comment-article .comment-form .pmt-textarea {
    flex: 1;
    border: 2px solid #b0a5e3;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px 25px;
    font-size: 20px;
    color: #30323d;
    background-color: #fff
}

.promotion-wrap>section.other-contents-section .comment-article .comment-form .pmt-textarea textarea {
    width: 100%;
    height: 100%;
    flex: 1;
    font-size: inherit;
    line-height: 1.4;
    color: inherit;
    border: 0 none;
    outline: 0 none
}

.promotion-wrap>section.other-contents-section .comment-article .comment-form .pmt-textarea textarea::placeholder {
    color: #30323d30
}

.promotion-wrap>section.other-contents-section .comment-article .comment-form .pmt-textarea textarea:focus {
    border: 0 none;
    outline: 0 none
}

.promotion-wrap>section.other-contents-section .comment-article .comment-form .pmt-textarea .text-length {
    opacity: 0.5;
    text-align: right
}

.promotion-wrap>section.other-contents-section .comment-article .comment-form .pmt-button {
    width: 180px
}

.promotion-wrap>section.other-contents-section .comment-article .comment-form .pmt-button :is(button, a) {
    width: 100%;
    height: 100%;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 30px;
    background-color: #624cc7;
    font-size: 28px;
    color: #fff;
    box-shadow: inset -3px -3px 5px rgba(64, 48, 165, 0.15)
}

.promotion-wrap>section.other-contents-section .comment-article .comment-list-wrap {
    width: 100%;
    height: 553px;
    margin-top: 49px;
    padding: 2px;
    border: 1px solid #efefef
}

.promotion-wrap>section.other-contents-section .comment-article .comment-list-wrap ul {
    width: 100%;
    height: 100%;
    overflow-y: scroll
}

.promotion-wrap>section.other-contents-section .comment-article .comment-list-wrap ul>li {
    padding: 10px 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative
}

.promotion-wrap>section.other-contents-section .comment-article .comment-list-wrap ul>li .comment-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between
}

.promotion-wrap>section.other-contents-section .comment-article .comment-list-wrap ul>li .comment-head .name {
    font-size: 14px;
    font-weight: 700;
    color: #000
}

.promotion-wrap>section.other-contents-section .comment-article .comment-list-wrap ul>li .comment-head .date {
    font-size: 11px;
    color: #767676
}

.promotion-wrap>section.other-contents-section .comment-article .comment-list-wrap ul>li .comment-content {
    position: relative;
    font-size: 14px;
    color: #767676;
    padding-right: 19px;
    word-break: break-all;
    word-wrap: break-word
}

.promotion-wrap>section.other-contents-section .comment-article .comment-list-wrap ul>li .comment-content > p {
    margin: 0;
}

.promotion-wrap>section.other-contents-section .comment-article .comment-list-wrap ul>li .comment-content .btn-delete-comment {
    width: 19px;
    height: 19px;
    padding: 0;
    min-width: 0;
    background-color: #fff;
    position: absolute;
    top: 1px;
    right: 0
}

.promotion-wrap>section.other-contents-section .comment-article .comment-list-wrap ul>li .comment-content .btn-delete-comment img {

    vertical-align: top;
}

.promotion-wrap>section.other-contents-section .comment-article .comment-list-wrap ul>li .comment-like .btn-like {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    min-width: 0;
    padding: 0;
}

.promotion-wrap>section.other-contents-section .comment-article .comment-list-wrap ul>li .comment-like .btn-like::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-top: -1px;
    background-image: url(/imgs/svg/icon/ico-like.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain
}

.promotion-wrap>section.other-contents-section .comment-article .comment-list-wrap ul>li .comment-like .btn-like.active::before {
    background-image: url(/imgs/svg/icon/ico-zzim-like.svg)
}

.promotion-wrap>section.other-contents-section .comment-article .pagination-wrap {
    margin-top: 21px
}

.promotion-wrap>section.other-contents-section .comment-article .pagination-wrap>ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 7px
}

.promotion-wrap>section.other-contents-section .comment-article .pagination-wrap>ul>li {
    display: inline-flex;
    flex-direction: row;
    align-items: center
}

.promotion-wrap>section.other-contents-section .comment-article .pagination-wrap>ul>li.page-func.page-disabled {
    pointer-events: none;
    opacity: 0.4
}

.promotion-wrap>section.other-contents-section .comment-article .pagination-wrap>ul>li>:is(a, button) {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 33px;
    height: 33px;
    border: 1px solid transparent;
    padding: 0 4px
}

.promotion-wrap>section.other-contents-section .comment-article .pagination-wrap>ul>li>:is(a, button).active span {
    color: #624cc7
}

.promotion-wrap>section.other-contents-section .comment-article .pagination-wrap>ul>li>:is(a, button):is(.page-first, .page-prev, .page-next, .page-last) {
    border: 1px solid #ccc;
    background-repeat: no-repeat;
    background-position: 50% 50%
}

.promotion-wrap>section.other-contents-section .comment-article .pagination-wrap>ul>li>:is(a, button):is(.page-first, .page-prev, .page-next, .page-last) span {
    display: none
}

.promotion-wrap>section.other-contents-section .comment-article .pagination-wrap>ul>li>:is(a, button):is(.page-first, .page-prev, .page-next, .page-last)+:is(.page-first, .page-prev, .page-next, .page-last) {
    margin-left: -1px
}

.promotion-wrap>section.other-contents-section .comment-article .pagination-wrap>ul>li>:is(a, button).page-first {
    background-image: url(/images/month2605/page-first.png)
}

.promotion-wrap>section.other-contents-section .comment-article .pagination-wrap>ul>li>:is(a, button).page-prev {
    background-image: url(/images/month2605/page-prev.png)
}

.promotion-wrap>section.other-contents-section .comment-article .pagination-wrap>ul>li>:is(a, button).page-next {
    background-image: url(/images/month2605/page-next.png)
}

.promotion-wrap>section.other-contents-section .comment-article .pagination-wrap>ul>li>:is(a, button).page-last {
    background-image: url(/images/month2605/page-last.png)
}

.promotion-wrap>section.other-contents-section .comment-article .pagination-wrap>ul>li>:is(a, button) span {
    font-size: 15px;
    color: #878787
}

.promotion-wrap>section.other-contents-section .comment-article .comment-example {
    width: 955px;
    margin-top: 50px
}

.promotion-wrap>section.other-contents-section .comment-article .comment-example img {
    width: 100%;
    height: auto
}

.promotion-wrap>section.other-contents-section .manual-article {
    width: 1073px;
    margin-top: 200px;
    position: relative;
}

.promotion-wrap>section.other-contents-section .manual-article img {
    width: 100%;
    height: auto
}

.promotion-wrap>section.other-contents-section .manual-article .btn-my-prize {
    display: block;
    width: 289px;
    aspect-ratio: 289 / 66;
    height: auto;
    position: absolute;
    top: 631px; right: 19px;
    padding: 0;
    border: 0 none;
    background: transparent;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    text-decoration: none;
}
.promotion-wrap>section.other-contents-section .manual-article .btn-my-prize img {
    display: block;
    width: 100%;
    height: 100%;
}

.promotion-wrap>section.other-contents-section .app-article {
    width: 1078px;
    margin-top: 200px;
    aspect-ratio: 1078 / 1597;
    position: relative;
    background-image: url(/images/month2605/event-app.png);
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: 100% 100%
}

.promotion-wrap>section.other-contents-section .app-article .app-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: absolute;
    top: 33rem;
    left: 60rem
}

.promotion-wrap>section.other-contents-section .app-article .app-links>li :is(a, button) {
    width: 382px;
    height: 100px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 50% 50%;
    background-color: transparent;
    border-radius: 14px;
    font-size: 0;
    color: transparent
}

.promotion-wrap>section.other-contents-section .app-article .app-links>li :is(a, button).link-app {
    background-image: url(/images/month2605/btn-app.png)
}

.promotion-wrap>section.notice-section {
    width: 100%;
    height: 1028px;
    background-image: url(/images/month2605/notice-contents.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: auto 100%;
    background-color: #000540
}

.layer-promotion {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    pointer-events: none;
    transition: opacity .25s
}

.layer-promotion:not(.active) {
    opacity: 0
}

.layer-promotion:not(.active) .layer-promotion-container {
    pointer-events: none
}

.layer-promotion.active {
    opacity: 1;
    touch-action: none
}

.layer-promotion.active .layer-promotion-container {
    pointer-events: auto
}

.layer-promotion .layer-promotion-container {
    width: calc(100% - 20px);
    max-width: 534px;
    position: relative
}

.layer-promotion .layer-promotion-container img {
    width: 100%;
    height: auto
}

.layer-promotion .btn-close-promotion-layer {
    width: 14.42%;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    right: 0
}

.layer-promotion .btn-close-promotion-layer span {
    display: none
}

.roulette-layer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: rgba( 0, 0, 0, .6 );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .15s
}

.roulette-layer.active {
    pointer-events: auto;
    opacity: 1
}

.roulette-layer .roulette-layer-box {
    width: 100%;
    max-width: 512px;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 12px 0 32px rgba(0, 0, 0, 0.35);
    font-family: 'Pretendard';
    margin-top: 30px
}

.roulette-layer .roulette-layer-box .main-message {
    font-size: 40px;
    font-weight: bold;
    color: #010101;
    text-align: center;
    line-height: 1.45;
    word-break: keep-all;
    word-wrap: break-word
}

.roulette-layer .roulette-layer-box .small-message {
    font-size: 15px;
    font-weight: bold;
    color: #010101;
    text-align: center;
    line-height: 1.45
}

.roulette-layer .roulette-layer-box .sub-message {
    font-size: 25px;
    font-weight: bold;
    color: #010101;
    text-align: center;
    line-height: 1.45
}

.roulette-layer .roulette-layer-box .roulette-layer-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.roulette-layer .roulette-layer-box .roulette-layer-image .goods-thumb {
    border-radius: 50%;
    background-color: #feeded;
    overflow: hidden
}

.roulette-layer .roulette-layer-box .roulette-layer-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.roulette-layer .roulette-layer-box .roulette-layer-buttons :is(button, a) {
    width: 100%;
    height: 60px;
    max-width: 276px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    background-color: #6a6a6a;
    border-radius: 10px
}

.roulette-layer .roulette-layer-box .roulette-layer-buttons :is(button, a).btn-login {
    background-color: #e30413
}



.roulette-layer.duplicate .roulette-layer-box .main-message { margin-top: 50px; }
.roulette-layer.duplicate .roulette-layer-box .sub-message { margin-top: 72px; }
.roulette-layer.duplicate .roulette-layer-box .roulette-layer-buttons { margin-top: 24px; }

.roulette-layer.faild .roulette-layer-box .roulette-layer-image {
    margin-top: 38px;
    margin-bottom: 30px;
}
.roulette-layer.faild .roulette-layer-box .roulette-layer-buttons { margin-top: 60px; }

.roulette-layer.lose .roulette-layer-box .roulette-layer-image { margin-top: 54px; }
.roulette-layer.lose .roulette-layer-box .roulette-layer-buttons { margin-top: 60px; }

.roulette-layer.win .roulette-layer-box .sub-message { margin-top: 20px; }
.roulette-layer.win .roulette-layer-box .roulette-layer-image { margin-top: 20px; }
.roulette-layer.win .roulette-layer-box .roulette-layer-buttons { margin-top: 20px; }

.roulette-layer.login .roulette-layer-box .roulette-layer-image { margin-top: 36px; }
.roulette-layer.login .roulette-layer-box .sub-message { margin-top: 34px; }
.roulette-layer.login .roulette-layer-box .roulette-layer-buttons { margin-top: 36px; }

.pc-wrapper > .container {
    background-color: #876bfb;
    padding-top: 0 !important;
}

.promotion-wrap {
    margin-top: 146px;
    margin-bottom: 0;
}

.promotion-wrap img {
    -webkit-user-drag: none;
    user-select: none;
}

.promotion-wrap .roulette-button .btn-roulette-start {
    padding: 0;
    border: 0;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
}

.promotion-wrap > section.other-contents-section .comment-article .comment-list-wrap ul > li .comment-like .btn-like {
    line-height: 1;
}

.promotion-wrap > section.other-contents-section .comment-article .comment-list-wrap ul > li .comment-like .btn-like::before {
    width: 12px;
    height: 12px;
    margin-top: 0;
}

.promotion-wrap > section.other-contents-section .manual-article .btn-my-prize {
    top: 631px;
    right: 19px;
}
