.wheel {
        top: calc(50% - 162px); /* (312px width + (6px border*2)) / 2 = 162px */
        left: calc(50% - 162px);
        width: 312px;
        height: 312px;
        border-radius: 50%;
        border: solid 6px #662d91;
        box-shadow: 0 0 500px 0 rgb(0 0 0);
        position: fixed;
        z-index: 999;
        /*display: none;*/
}
/*.wheel::before{
        content: ' ';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        position: fixed;
        z-index: -1;
        background: rgba(0,0,0,0.7);
}*/
.wheel__inner {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        position: relative;
        overflow: hidden;
        transition: cubic-bezier(0.19, 1, 0.22, 1) 5s;
}
.wheel__sec {
        position: absolute;
        top: 0;
        left: 91px;
        width: 0;
        height: 0;
        border: solid;
        border-width: 150px 58.67px 0;
        border-color: transparent;
        transform-origin: 50% 100%;
        color: transparent;
}
.wheel__sec:nth-child(1) {
            border-top-color: #6d06f4;
        }
.wheel__sec:nth-child(2) {
            border-top-color: #c906f9;
            transform: rotate(40deg);
        }
.wheel__sec:nth-child(3) {
            border-top-color: #ff03ff;
            transform: rotate(80deg)
        }
.wheel__sec:nth-child(4) {
            border-top-color: #6d06f4 ;
            transform: rotate(120deg)
        }
.wheel__sec:nth-child(5) {
            border-top-color: #c906f9 ;
            transform: rotate(160deg)
        }
.wheel__sec:nth-child(6) {
            border-top-color: #ff03ff  ;
            transform: rotate(200deg)
        }
.wheel__sec:nth-child(7) {
            border-top-color: #6d06f4 ;
            transform: rotate(240deg)
        }
.wheel__sec:nth-child(8) {
            border-top-color: #c906f9 ;
            transform: rotate(280deg)
        }
.wheel__sec:nth-child(9) {
            border-top-color: #ff03ff  ;
            transform: rotate(320deg)
        }

.wheel__text {
        margin: 70px 0 0 70px;
    }
.wheel__arrow {
        width: 70px;
        height: 70px;
        background: #662d91;
        position: absolute;
        top: 115px;
        left: 115px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Open sans', sans-serif;}
.wheel::after {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        border: solid;
        border-width: 0 5px 30px;
        border-color: transparent;
        border-bottom-color: #fbb03b;
        top: calc(50% - 30px - 20px);
        left: calc(50% - 5px);
}
.wheel__button {
        width: 50px;
        height: 50px;
        background-color: #fbb03b;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        transition: 0.3s;
        font-weight: 600;
        font-size: 18px;
        margin: 0;
        padding: 0;
        outline: none !important;
}
.wheel__button::focus, .wheel__button::focus-visible{
        outline: none;
}
.wheel__button span{
        margin-left: 10px;
        display: block;
        background: #ad6609;
        width: 30px;
        height: 30px;
        border-radius: 50%;
}
.wheel:hover {
    color: #27AE60;
}
.wheel:active{
    border: solid 3px rgba(0, 0, 0, 0.1);
    font-size: 15px;
}

.popup {
        position: fixed;
        width: 30vw;
        top: 0;
        left: 50%;
        transform: translate(-50%, -110%);
        background: #fff;
        box-shadow: 0 4px 9px 0 rgba($color: #000000, $alpha: 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
        transition: all 0.5s;
        opacity: 0;
}
.popup.active {
        transform: translate(-50%, 0);
        opacity: 1;
}
.popup__emotion {
        color: #f39c12;
        text-align: center;
        font-size: 30px;
        margin: 0 0 25px 0;
}
.popup__note { text-align: center;}

.congratulation {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba($color: #000000, $alpha: 0.2);
    display: none;
}
.congratulation__container {
        /*width: 40vw;
        padding: 30px;
        background-color: #fff;*/
        background: url('../../img/luckywheel-modalbg.png') center center no-repeat;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 350px;
        min-height: 307px;
        background-size: cover;
    }
.congratulation__close {
        position: absolute;
        top: 10px;
        right: 10px;
        color: #c0392b;
        cursor: pointer;
        transition: all 0.5s;
}
.congratulation:hover {
        transform: rotate(360deg);
}
.congratulation__emotion {
        color: #f39c12;
        text-align: center;
        margin: 0 0 20px 0;
}
.congratulation__note {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 307px;
        text-align: center;
        font-size: 1.8rem;
        font-weight: bold;
        background: -webkit-linear-gradient(45deg, #fe9e0a, #f5df60);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
}