.wheel {
    position: relative;
    margin: 0 auto; 
    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: 520px;
    height: 520px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
}
 
.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: 520px;
    height: 520px;
    margin: auto;
    left: 0;
    right: 0;
}
.spiner-wrapper #spin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0;
    width: 98px;
    height: 98px;
    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: 29px;
    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: 460px;
    height: 460px;
    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;
}   
.spiner-round div.sec img {
    width: 97px;
    height: 39px;
    display: block;
    z-index: 2;
    transform: skewY(28deg) rotate(41deg) translate(0px, 80px);
} 
/* 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(-45deg);
    background: #FFBF44;
}

.spiner-round div.sec:nth-child(2) {
    transform: rotate(45deg) skewY(-45deg);
    background: #3EABF9;
}

.spiner-round div.sec:nth-child(3) {
    transform: rotate(90deg) skewY(-45deg);
    background: #FFBF44;
}

.spiner-round div.sec:nth-child(4) {
    transform: rotate(135deg) skewY(-45deg);
    background: #3EABF9;
}

.spiner-round div.sec:nth-child(5) {
    transform: rotate(180deg) skewY(-45deg);
    background: #FFBF44;
}

.spiner-round div.sec:nth-child(6) {
    transform: rotate(225deg) skewY(-45deg);
    background: #3EABF9;
}

.spiner-round div.sec:nth-child(7) {
    transform: rotate(270deg) skewY(-45deg);
    background: #FFBF44;
}

.spiner-round div.sec:nth-child(8) {
    transform: rotate(315deg) skewY(-45deg);
    background: #3EABF9;
} 
.stand-image {
    text-align: center;
    margin-top: 0;
}  



.myModal-congratulations .modal-dialog {
    max-width: 430px; 
}
.myModal-congratulations .modal-content { 
    border-radius: 25px; 
}
.myModal-congratulations .modal-body {
    overflow-y: auto;
    padding: 0;
    border-radius: 25px;
}
.myModal-congratulations .congratulations-top{
    background-color: #34A5F8;
    padding: 80px 0;
    border-radius: 25px;
}
.myModal-congratulations  .congratulations-bottom {
    padding: 30px 20px;
}

.myModal-congratulations  .congratulations-bottom .congratulations-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    list-style: circle;
    padding-left: 25px;
    margin-bottom: 30px;
}
.myModal-congratulations  .congratulations-bottom .congratulations-list li {
    list-style: circle;
}
.myModal-congratulations  .congratulations-bottom .congratulations-list li p{
    color: #11142D;
    font-size: 13px;
}
.myModal-congratulations  .congratulations-bottom .follow-now {
    background: #FFB82F;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}



@media only screen and (max-width: 1400px) {
    .wheel::before { 
        width: 360px;
        height: 360px; 
    }

    .spiner-wrapper { 
        width: 360px;
        height: 360px; 
    }

    .spiner-round {
        width: 360px;
        height: 360px;
    }
    .spiner-wrapper #spin { 
        width: 80px;
        height: 80px; 
    } 

    .spiner-wrapper .arrow { 
        top: 19px; 
    }
    .stand-image { 
        margin-top: -30px;
    }

    .spiner-round div.sec img {
        width: 77px;
        height: 29px; 
    }
}
@media only screen and (max-width: 420px) {
    .spiner-round,
    .spiner-wrapper,
    .wheel::before {
        width: 270px;
        height: 270px;
    }
    .spiner-wrapper .arrow {
        height: 31px;
        width: 32px;
        background-size: 32px;
        top: 15px;
    }
    .spiner-wrapper #spin { 
        width: 50px;
        height: 50px; 
    }
    .spiner-round div.sec img { 
        width: 67px;
        height: 24px;
        transform: skewY(29deg) rotate(40deg) translate(0px, 54px);
    }
    .stand-image {
        margin-top: -30px;
    }
} 