.wheel-container {
    position: fixed;
    top: 0;
    z-index: 2147483647;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    flex-direction: column;
    row-gap: 45px;
    overflow: auto;
}

.wheel-container .top-text-wheel {
    display: flex;
    z-index: 5;
    color: white;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 5px;
    padding: 0 35px;
}

.wheel-container .top-text-wheel .top-title {
    font-size: 25px;
    font-weight: 600;
}

.wheel-container .top-text-wheel .bottom-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

.wheel-container .top-text-wheel .bottom-title b {
    color: #FFB801;
}

#wheelOfFortune {
  display: inline-flex;
  position: relative;
}

/*#wheelOfFortune:before {*/
/*    content: "";*/
/*    border: 7px dotted yellow;*/
/*    animation: wheel-light .7s linear infinite;*/
/*    position: absolute;*/
/*    width: 387px;*/
/*    height: 387px;*/
/*    border-radius: 50%;*/
/*    z-index: 2;*/
/*    left: -21px;*/
/*    top: -21px;*/
/*}*/

#wheelOfFortune:after {
    content: "";
    border: 10px solid #9c8463;
    position: absolute;
    width: 378px;
    height: 378px;
    border-radius: 50%;
    z-index: 1;
    left: -9px;
    top: -9px;
}

#wheel {
  display: block;
}

/*.border-canvas::before {*/
/*    content: "";*/
/*    border: 15px solid #3c2a50;*/
/*    position: absolute;*/
/*    width: 365px;*/
/*    height: 365px;*/
/*    border-radius: 50%;*/
/*    z-index: 1;*/
/*    left: -10px;*/
/*    top: -10px;*/
/*    box-shadow: 0 0 145px 35px #ec9873;*/
/*}*/

/*.border-canvas::after {*/
/*    content: "";*/
/*    border: 5px dotted yellow;*/
/*    animation: wheel-light .7s linear infinite;*/
/*    position: absolute;*/
/*    width: 356px;*/
/*    height: 356px;*/
/*    border-radius: 50%;*/
/*    z-index: 2;*/
/*    left: -5px;*/
/*    top: -5px;*/
/*}*/

#spin {
    font: 1.5rem/0 sans-serif;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 57%;
    left: 57%;
    width: 15%;
    height: 15%;
    margin: -15%;
    background: #fff;
    color: #fff;
    box-shadow: 0 0 0 3px currentColor, 0 0px 15px 5px rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    transition: 0.8s;
    z-index: 3;
}

#spin::after {
    content: "";
    position: absolute;
    top: -52px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 55px solid #444;
}

#spin::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: #faedd4;
    border: 3px solid white;
    border-radius: 50%;
    z-index: 2;
}

.first-spin-data {
    display: none;
    position: absolute;
    top: 0;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: white;
    border-radius: 50%;
    padding: 55px;
    flex-direction: column;
}

.first-spin-data .cong-text {
    font-size: 20px;
    font-weight: bold;
    color: #444444;
    line-height: 1.4;
}

.first-spin-data .cong-text b {
    font-size: 25px;
    color: #FFB801;
    line-height: 1.5;
}

.first-spin-data .light-text {
    color: #FFB801;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
}

.wheel-actions {
    margin-top: 20px;
    position: relative;
    z-index: 5;
    color: #2969ff;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.wheel-actions {
    line-height: 1;
}

.wheel-actions span {
    line-height: 1.3;
    color: #444444;
}

.first-spin-data .use-current-promocode {
    text-decoration: underline;
    cursor: pointer;
}

.first-spin-data .use-current-promocode:hover,
.first-spin-data .use-current-promocode:hover .light-text {
    text-decoration: none;
}

.first-spin-data .use-current-promocode .light-text {
    text-decoration: underline;
    line-height: 1;
}

.use-current-promocode .light-text {
    font-size: 16px;
}

.wheel-actions-btns {
    position: absolute;
    bottom: -65px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.promocode-validate {
    display: none;
    color: white;
    line-height: 1.3;
    text-align: center;
}

.close-wheel {
    height: 40px;
    width: 40px;
    position: absolute;
    box-sizing: border-box;
    display: inline-block;
    cursor: pointer;
    background: #FFB801;
    border-radius: 50%;
    right: 0;
    z-index: 10;
}

.start-wheel,
.repeat-wheel {
    cursor: pointer;
    background: #FFB801;
    color: white;
    padding: 5px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 25px;
}

.stop-wheel,
.repeat-wheel {
    display: none;
}

.close-wheel:hover,
.start-wheel:hover,
.repeat-wheel:hover {
    opacity: .6;
}

.close-wheel:before,
.close-wheel:after {
    transform: rotate(-45deg);
    content: '';
    position: absolute;
    top: auto;
    left: auto;
    margin-top: 18px;
    margin-left: 7px;
    display: block;
    height: 3px;
    width: 25px;
    background-color: #fff;
    transition: all 0.2s ease-out;
}

.close-wheel:after {
  transform: rotate(45deg);
}

.confetti-container i {
  position: absolute;
  display: block;
  left: 50%;
  top: 0;
  width: 5px;
  height: 16px;
  background: red;
  opacity: 0;
}

#spin i {
    font-size: 35px;
}

@keyframes bang {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes wheel-light {

    0% {
        filter: hue-rotate(0);
    }

    50% {
        filter: hue-rotate(130deg);
    }
    
    100% {
        filter: hue-rotate(0);
    }
}

@media(max-width: 800px) {
    #wheel {
        width: 300px;
        height: 300px;
    }
    #spin::before {
        width: 15px;
        height: 15px;
    }
    /*#wheelOfFortune:before {*/
    /*    width: 347px;*/
    /*    height: 347px;*/
    /*    left: -23px;*/
    /*    top: -23px;*/
    /*}*/
    #wheelOfFortune:after {
        width: 318px;
        height: 318px;
        left: -9px;
        top: -9px;
    }
    /*.border-canvas::before {*/
    /*    width: 327px;*/
    /*    height: 327px;*/
    /*    left: -13px;*/
    /*    top: -13px;*/
    /*}*/
    /*.border-canvas::after {*/
    /*    width: 317px;*/
    /*    height: 317px;*/
    /*    left: -8px;*/
    /*    top: -8px;*/
    /*}*/
    .close-wheel {
        top: -15px;
        right: -15px;
    }
    .first-spin-data .cong-text,
    .first-spin-data .light-text {
        font-size: 18px;
    }
    
}