#spinWheelPopup {
    overflow: hidden;
    z-index: 1000000;
}

#spinWheelPopup .popup-body {
    position: relative;
    padding: 20px 25px 30px;
    padding: 0;
}

#spinWheelPopup .popup-body .hideModel {
    position: absolute;
    right: 1.5%;
    top: 1.5%;
}

#spinWheelPopup .popup-body .hideModel button svg {
    width: 28px;
    height: auto;
}

#spinWheelPopup .popup-body .hideModel button {
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    float: unset;
    color: #fff;
    opacity: 1;
}

#spinWheelPopup .popup-body .mainTitle {
    margin-bottom: 0;
}

#spinWheelPopup .popup-body .mainTitle p {
    font-size: 26px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    width: max-content;
    margin: 0 auto;
    padding-bottom: 0;
}

#spinWheelPopup .popup-body .mainTitle p:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to right, #fff5e4, #fff, #fff5e4);
    height: 1px;
}

#spinWheelPopup .popup-body .spinBody {
    position: relative;
    margin-top: 65px;
}

#spinWheelPopup .popup-body .spinBody .spinButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14%;
    cursor: pointer;
}

#spinWheelPopup .popup-body .spinBody .spinButton.disabled {
    pointer-events: none;
    cursor: not-allowed;
}

#spinWheelPopup .popup-body .spinBody .spinArrow {
    position: absolute;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 7%;
}

#spinWheelPopup .popup-body .spinBody .spinButton img {
    box-shadow: 2px 7px 7px 0px rgba(103, 63, 29, 0.51);
    border-radius: 50%;
}

#spinWheelPopup .modal-body {
    padding: 0;
}

#spinWheelPopup .modal-dialog {
    width: 35%;
    margin: 0 auto;
    height: 100%;
    max-width: unset;
}

#spinWheelPopup .modal-dialog::before {
    display: none;
}

#spinWheelPopup .popup-body .spinBody .spinImage {
    border-radius: 50%;
    filter: drop-shadow(0px 0px 12px #fdc996);
    width: 100%;
    margin: 0 auto;
}

@keyframes spin {
    100% {
        transform: rotate(4000deg);
    }
}

#spinWheelPopup .modal-dialog .modal-content {
    background: transparent;
    border: 0;
}

.modal-backdrop.show {
    opacity: 0.7;
    z-index: 999999;
}

.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.confetti-container.show {
    display: block;
}

@-webkit-keyframes makeItRain {
    from {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    to {
        -webkit-transform: translateY(350px);
    }
}

@keyframes confetti-slow {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }
    100% {
        transform: translate3d(25px, 105vh, 0) rotateX(360deg) rotateY(180deg);
    }
}

@keyframes confetti-medium {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }
    100% {
        transform: translate3d(100px, 105vh, 0) rotateX(100deg) rotateY(360deg);
    }
}

@keyframes confetti-fast {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }
    100% {
        transform: translate3d(-50px, 105vh, 0) rotateX(10deg) rotateY(250deg);
    }
}

.confetti-container {
    perspective: 700px;
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.confetti {
    position: absolute;
    z-index: 1;
    top: -10px;
    border-radius: 0;
}

.confetti--animation-slow {
    animation: confetti-slow 2.25s linear 1 forwards;
}

.confetti--animation-medium {
    animation: confetti-medium 1.75s linear 1 forwards;
}

.confetti--animation-fast {
    animation: confetti-fast 1.25s linear 1 forwards;
}

#offerSpinAction.hide {
    display: none;
}

#offerApply {
    display: none;
    text-align: center;
}

#offerApply.show {
    display: block;
}

#offerApply p {
    color: #fff;
    font-size: 32px;
    text-align: center;
}

#offerApply img {
    width: auto;
    height: 15vh;
    margin: 0 auto 25px;
}

#offerApply p:nth-child(1) {
    font-family: "Dancing Script", cursive;
    font-size: 38px;
    color: #ffcc77;
}

@media (max-width: 767px){
    #spinWheelPopup .modal-dialog {
        width: 90%;
    }
}