.wheel {
    position: relative;
    margin: 0 auto;
    height: 84vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wheel::before {
    content: "";
    background-image: url(../../assets/images/spin/ring.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 360px;
    height: 360px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 3;
}
 
.sky-bg {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
} 
.spiner-wrapper {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 360px;
    height: 360px;
    margin: auto;
    left: 0;
    right: 0;
}
.spiner-wrapper #spin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0;
    width: 80px;
    height: 80px;
    font-family: sans-serif;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    letter-spacing: 1px;
    background-image: url(../../assets/images/spin/arrow.png);
    background-repeat: no-repeat;
    background-size: cover;
} 
.spiner-wrapper .arrow {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 1;
    background: url(../../assets/images/spin/top-arrow.png);
    height: 50px;
    width: 53px;
    background-repeat: no-repeat;
    background-size: 50px;
    right: 0;
    margin: 0 auto;
    z-index: 3;
}

.spiner-round {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: 3s;
    transform: rotate(0deg);
    z-index: 1;
    margin: 0 auto;

}
.spiner-round div.sec {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 50%;
    transform-origin: 0% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}   

/* The parent allows this to have a base of 90Â° (== 0deg)
If you want to have 3rds (120Â°) -> + skewY(30deg) and scale to cover */ 

.spiner-round div.sec:nth-child(1) {
    transform: rotate(0deg) skewY(-30deg);
    background: #FBB516;
}

.spiner-round div.sec:nth-child(2) {
    transform: rotate(60deg) skewY(-30deg);

    background: #EE58B5;
}

.spiner-round div.sec:nth-child(3) {
    transform: rotate(120deg) skewY(-30deg);
    background: #8E01F9;
}

.spiner-round div.sec:nth-child(4) {
    transform: rotate(180deg) skewY(-30deg);
    background: #FC9B02;
}

.spiner-round div.sec:nth-child(5) {
    transform: rotate(240deg) skewY(-30deg);
    background: #199BD3;
}

.spiner-round div.sec:nth-child(6) {
    transform: rotate(300deg) skewY(-30deg);
    background: #6FCC12;
} 

.spiner-round div.sec img {
    width: 70px;
    height: auto;
    display: block;
    z-index: 2;
    transform: skewY(30deg) rotate(34deg) translate(0px, 60px);
} 

.stand-image {
    text-align: center;
    margin-top: -60px;
}  


@media only screen and (max-width: 420px) {
    .spiner-round,
    .spiner-wrapper,
    .wheel::before {
        width: 270px;
        height: 270px;
    }
    .spiner-wrapper .arrow {
        height: 37px;
        width: 37px; 
        background-size: 34px;
    }
    .spiner-wrapper #spin { 
        width: 50px;
        height: 50px; 
    }
    .spiner-round div.sec img {
        width: 50px; 
        transform: skewY(30deg) rotate(34deg) translate(0px, 45px);
    }
    .stand-image {
        margin-top: -30px;
    }
} 