.lucky-wheel {
    width: 390px;
    height: 972px;
    background: url(../../modules/lucky_wheel/background.png);
    background-size: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.lucky-wheel .lucky-wheel-header {
    width: 100%;
    height: 266px;
    margin-bottom: -104px;
}

.lucky-wheel .lucky-wheel-header .content {
    width: 100%;
    height: 266px;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -266px;
}

.lucky-wheel .lucky-wheel-header .content .close-button-container {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    width: calc(100% - 20px);
    margin-bottom: -40px;
    /* position: absolute; */
    z-index: 1;
}
.lucky-wheel .lucky-wheel-header .content .close-button-container .close-button {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(3px);
    -o-backdrop-filter: blur(3px);
    -moz-backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 200ms;
}

.lucky-wheel .lucky-wheel-header .content .close-button-container .close-button svg {
    width: 16px;
    height: 16px;
    opacity: 0.8;
    transition: opacity 200ms;
}

.lucky-wheel .lucky-wheel-header .content .close-button-container .close-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transition: background 200ms;
}

.lucky-wheel .lucky-wheel-header .content .close-button-container .close-button:hover svg {
    opacity: 1;
    transition: opacity 200ms;
}

.lucky-wheel .lucky-wheel-header .content .logotype {
    width: 302px;
    height: 117px;
    background: url(../../modules/lucky_wheel/logotype.png);
    background-size: 100%;
    margin-bottom: -10px;
}

.lucky-wheel .lucky-wheel-header .content .text {
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

.lucky-wheel .lucky-wheel-header .background {
    width: 100%;
    height: 266px;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.lucky-wheel .lucky-wheel-header .background .confetti {
    width: 390px;
    height: 291px;
    background: url(../../modules/lucky_wheel/conf.png);
    background-size: 100%;
}

.lucky-wheel .lucky-wheel-wheel {
    width: 390px;
    height: 448px;
    margin-bottom: -325px;
    position: relative;
    z-index: 1;
}
.lucky-wheel .lucky-wheel-wheel .wheel-spinner {
    width: 414px;
    height: 414px;
    background: url(../../modules/lucky_wheel/wheel-circle.png);
    background-size: 100%;
    margin-left: -12px;
    position: relative;
    z-index: 0;
}

.lucky-wheel .lucky-wheel-wheel .wheel-spinner .sector {
    position: absolute;
    width: 118px;
    height: 382px;
    left: 148px;
    top: 16px;
    transform-origin: 50% 50%;
    display: flex;
    justify-content: center;
}


.lucky-wheel .lucky-wheel-wheel .wheel-spinner .sector .dot {
    width: 40px;
    height: 40px;
    background: red;
}

.lucky-wheel .lucky-wheel-wheel .wheel-spinner .sector:nth-child(1) {
    transform: rotate(0deg);
}
.lucky-wheel .lucky-wheel-wheel .wheel-spinner .sector:nth-child(2) {
    transform: rotate(40deg);
}
.lucky-wheel .lucky-wheel-wheel .wheel-spinner .sector:nth-child(3) {
    transform: rotate(80deg);
}
.lucky-wheel .lucky-wheel-wheel .wheel-spinner .sector:nth-child(4) {
    transform: rotate(120deg);
}
.lucky-wheel .lucky-wheel-wheel .wheel-spinner .sector:nth-child(5) {
    transform: rotate(160deg);
}
.lucky-wheel .lucky-wheel-wheel .wheel-spinner .sector:nth-child(6) {
    transform: rotate(200deg);
}
.lucky-wheel .lucky-wheel-wheel .wheel-spinner .sector:nth-child(7) {
    transform: rotate(240deg);
}
.lucky-wheel .lucky-wheel-wheel .wheel-spinner .sector:nth-child(8) {
    transform: rotate(280deg);
}
.lucky-wheel .lucky-wheel-wheel .wheel-spinner .sector:nth-child(9) {
    transform: rotate(320deg);
}

.lucky-wheel .lucky-wheel-wheel .wheel-mask {
    position: relative;
    z-index: 1;
    width: 390px;
    height: 390px;
    margin-bottom: -390px;
}
.lucky-wheel .lucky-wheel-wheel .wheel-mask .semi-wheel {
    width: 390px;
    height: 390px;
    background: url(../../modules/lucky_wheel/wheel.png);
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.lucky-wheel .lucky-wheel-wheel .wheel-mask .semi-wheel-lights {
    width: 390px;
    height: 390px;
    margin-bottom: -390px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}
.lucky-wheel .lucky-wheel-wheel .wheel-mask .semi-wheel-lights .light-sector {
    position: absolute;
}
.lucky-wheel .lucky-wheel-wheel .wheel-mask .semi-wheel-lights .light-sector:nth-child(1) {
    width: 20px;
    height: 470px;
    transform: rotate(-57.4deg);
}
.lucky-wheel .lucky-wheel-wheel .wheel-mask .semi-wheel-lights .light-sector:nth-child(2) {
    width: 20px;
    height: 472px;
    transform: rotate(-43.1deg);
}
.lucky-wheel .lucky-wheel-wheel .wheel-mask .semi-wheel-lights .light-sector:nth-child(3) {
    width: 20px;
    height: 478px;
    transform: rotate(-28.7deg);
}
.lucky-wheel .lucky-wheel-wheel .wheel-mask .semi-wheel-lights .light-sector:nth-child(4) {
    transform: rotate(-14.5deg);
    width: 20px;
    height: 472px;
}
.lucky-wheel .lucky-wheel-wheel .wheel-mask .semi-wheel-lights .light-sector:nth-child(5) {
    width: 20px;
    height: 478px;
    transform: rotate(-0.2deg);
}
.lucky-wheel .lucky-wheel-wheel .wheel-mask .semi-wheel-lights .light-sector:nth-child(6) {
    transform: rotate(14deg);
    width: 20px;
    height: 472px;
}
.lucky-wheel .lucky-wheel-wheel .wheel-mask .semi-wheel-lights .light-sector:nth-child(7) {
    width: 20px;
    height: 481px;
    transform: rotate(27.8deg);
}
.lucky-wheel .lucky-wheel-wheel .wheel-mask .semi-wheel-lights .light-sector:nth-child(8) {
    width: 20px;
    height: 472px;
    transform: rotate(42.4deg);
}
.lucky-wheel .lucky-wheel-wheel .wheel-mask .semi-wheel-lights .light-sector:nth-child(9) {
    width: 20px;
    height: 469px;
    transform: rotate(56.9deg);
}
.lucky-wheel .lucky-wheel-wheel .wheel-mask .semi-wheel-lights .light-sector .light {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: red;
    margin-top: 9px;
    margin-left: 1px;
}

.lucky-wheel .lucky-wheel-wheel .wheel-selector {
    width: 390px;
    height: 390px;
    margin-bottom: -390px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}
.lucky-wheel .lucky-wheel-wheel .wheel-selector .selector {
    width: 70px;
    height: 70px;
    background: url(../../modules/lucky_wheel/selector.png);
    background-size: 100%;
    margin-top: -2px;
}

.lucky-wheel .lucky-wheel-wheel .wheel-selector-shadow {
    width: 390px;
    height: 390px;
    margin-top: -42px;
    margin-bottom: -356px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.lucky-wheel .lucky-wheel-wheel .wheel-selector-shadow .selector-shadow {
    width: 45px;
    height: 44px;
    background: url(../../modules/lucky_wheel/selector-shadow.png);
    background-size: 100%;
    margin-top: 35px;
}

.lucky-wheel .lucky-wheel-details {
    width: 390px;
    height: 688px;
    background: linear-gradient(to bottom, transparent 0%, transparent 20%, #ECE7F7 20%, #ECE7F5 100%), url(../../modules/lucky_wheel/block-background.png);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
}

.lucky-wheel .lucky-wheel-details .background {
    width: 390px;
    height: 688px;
    position: relative;
    z-index: 1;
    margin-bottom: -688px;
    pointer-events: none;
}
.lucky-wheel .lucky-wheel-details .content {
    width: 390px;
    height: 688px;
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
}

.lucky-wheel .lucky-wheel-details .content .spin-button {
    width: 221px;
    height: 82px;
    background: url(../../modules/lucky_wheel/wheel-buttons.png);
    background-size: 100%;
    background-position: 0px -98px;
    cursor: pointer;
    margin-top: 70px;
}

.lucky-wheel .lucky-wheel-details .content .spin-button:hover {
    background-position: 0px -196px;
}

.lucky-wheel .lucky-wheel-details .content .rewards {}
.lucky-wheel .lucky-wheel-details .content .rewards .text {}
.lucky-wheel .lucky-wheel-details .content .rewards .rewards-list {}
.lucky-wheel .lucky-wheel-details .content .rewards .rewards-list .reward {}