

.peg,
.wheelSVG {
    visibility: hidden;
}

.centerCircle,
.valueContainer,
.wheelOutline,
.wheelText {
    pointer-events: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



#wheel-of-fortune-container {
    margin-top: 2rem;
    position: relative;
}

#wheel-of-fortune-container .hidden {
    display: none;
}

#wheel-of-fortune-container .wheelContainer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 6rem 0 0;
}

#wheel-of-fortune-container .wheel-mb {
    margin-bottom: 1rem;
}

#wheel-of-fortune-container .button-container {
    display: flex;
    justify-content: center;
}

#wheel-of-fortune-container button {
    position: relative;
    background-color: #E81D62;
}

#wheel-of-fortune-container .wheelSVG {
    position: relative;
    overflow: visible;
    max-width: 100%;
}

#wheel-of-fortune-container .wheelText {
    text-anchor: start;
    font-family: Montserrat, sans-serif;
    -webkit-user-select: none;
    user-select: none;
}

#wheel-of-fortune-container .wheelText tspan {
    text-anchor: middle;
    letter-spacing: 2px;
}

#wheel-of-fortune-container .toast {
    border-radius: 12px;
    opacity: 0;
    background-color: #E81D62;
    position: absolute;
    overflow: hidden;
    color: #FFF;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    width: 50%;
    padding: 20px 40px;

    max-width: 1000px;
}


#wheel-of-fortune-container .toast p,
#wheel-of-fortune-container .toast > div,
#wheel-of-fortune-container .toast .no-price-content {
    clear: both;
    font-family: Montserrat, Arial, sand-serif;
    margin: 1rem;
    font-size: 1.5rem;
    color: #ededed;
    letter-spacing: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 32px;
    -webkit-transition: line-height .2s ease;
    transition: line-height .2s ease;
    text-wrap: auto;
}

#wheel-of-fortune-container .toast p,
#wheel-of-fortune-container .toast .no-price-content {
    font-size: 2rem;
    line-height: 2rem;
}

#wheel-of-fortune-container .toast .no-price-content .count-down-container {
    margin-top: 2.5rem;
}

#wheel-of-fortune-container .toast .no-price-content .count-down {
    text-align: center;
    margin-top: 2rem;
    font-size: 3rem;
}

#wheel-of-fortune-container .toast .price-code .code {
    font-size: 2.5rem;
    display: flex;
    justify-content: center;

    margin-top: 3rem;
    margin-bottom: 3rem;
}

#wheel-of-fortune-container button {
    position: absolute;
    width: 60%;
    top: 20px;
    max-width: 400px;
    padding: 20px;
    font-weight: 700;
    font-size: 2rem;
    color: #ededed;
    border-radius: 6px;
    border: none;
    box-shadow: 0 2px 0 #D71559;
    cursor: pointer;
    font-family: Montserrat, sans-serif;
}

#wheel-of-fortune-container button.btn-spin.disabled {
    opacity: 0.4;
}

#wheel-of-fortune-container .email-container input {
    border: none;
    border-radius: 4px;
    background-color: #fff;
    width: 100%;
    padding: 8px;
}

#wheel-of-fortune-container .email-container input:focus, #wheel-of-fortune-container .email-container input:focus-visible {
    border: none;
    outline: none;
}

#wheel-of-fortune-container .submit-btn-container .cover {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-color: #ff6c2c;
}

#wheel-of-fortune-container .submit-btn-container .loader {
    border: 2px solid #fff;
    border-top: 2px solid #555;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 2s linear infinite;

    position: relative;
    top: 50%;
    margin-top: -9px;
    left: 50%;
    margin-left: -9px;
}

#wheel-of-fortune-container .submit-btn-container {
    position: relative;
}

@media only screen and (max-width: 480px) {


    #wheel-of-fortune-container button {
        font-size: 1rem;
        padding: 10px;
        width: 60vw;
    }
    #wheel-of-fortune-container .toast {
        padding: 0;
    }
    #wheel-of-fortune-container .toast p,
    #wheel-of-fortune-container .toast span,
    #wheel-of-fortune-container .toast .no-price-content {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }

    #wheel-of-fortune-container .toast .no-price-content .count-down {
        margin-top: 1rem;
        font-size: 2rem;
    }
}

@media only screen and (min-width: 481px) and (max-width: 800px) {

    #wheel-of-fortune-container .toast {
        padding: 0;
    }
    #wheel-of-fortune-container .toast p,
    #wheel-of-fortune-container .toast span {
        font-size: 1.8rem;
        line-height: 2rem;
    }
}

@media only screen and (min-width: 992px) {
    #wheel-of-fortune-container .wheelSVG {
        height: 75vh;
    }
}

@media only screen and (min-width: 801px) {
    #wheel-of-fortune-container .toast p,
    #wheel-of-fortune-container .toast span {
        font-size: 2rem;
        line-height: 2rem;
    }
}

@media only screen and (max-height: 480px) {

    #wheel-of-fortune-container .toast p,
    #wheel-of-fortune-container .toast span {
        font-size: 33px;
        line-height: 35px;
    }

    #wheel-of-fortune-container button {
        font-size: 22px;
        padding: 10px;
        width: 90%;
    }
}

#wheel-of-fortune-container button:focus {
    outline: 0;
}

#wheel-of-fortune-container a:link { color:#F1DC16; }
#wheel-of-fortune-container a:visited { color:#F1DC16; }
#wheel-of-fortune-container a:hover { color:#F1DC16; }
#wheel-of-fortune-container a:active { color:#F1DC16;}
