/*--------------------------- Spin Wheel Modal ---------------------------*/

.srwc-wheel-modal {
    position: fixed;
    left: 0;
    top: 0;  
    right: 0;
    display: none;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
}

.srwc-wheel-container {
    box-sizing: border-box;
    max-width: 1200px;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
    transform: translateX(-100%);
    transition: transform 0.7s ease-out;
}

.srwc-wheel-container.slide-in {
    transform: translateX(0)
}

.srwc-wheel-container.slide-out {
    transform: translateX(-100%)
}

.srwc-wheel-left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.srwc-wheel {
    position: relative;
}

.wheel-inner canvas {
    max-width: 550px;
    max-height: 550px;
    width: 100%;
    height: 100%;
    min-width: 300px;
    min-height: 300px;
    display: block; 
}

/*--------------------------- End Spin Wheel Modal ---------------------------*/

/*--------------------------- Loader ---------------------------*/

.srwc-loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;     
    border-top-color: #ff4444;         
    border-radius: 50%;
    animation: srwc-spin 0.8s linear infinite;
    margin-right: 6px;
    vertical-align: middle;
}

@keyframes srwc-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/*--------------------------- End Loader ---------------------------*/

/*--------------------------- Wheel Pointer ---------------------------*/

.srwc-pointer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    pointer-events: none;
    z-index: 20;
}

.srwc-pointer::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    width: 80px;
    height: 80px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-135deg);
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.srwc-pointer .srwc-pointer-cutout {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    z-index: 21;
}

/*--------------------------- End Wheel Pointer ---------------------------*/

/*--------------------------- Form ---------------------------*/

.srwc-wheel-right {
    width: 46%;
}

.srwc-input {
    width: 100% !important;
    padding: 10px 15px !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #333 !important;
    box-sizing:border-box !important;
    background: #fff !important;
}

.srwc-input::placeholder {
    color:#999 !important;
}

.srwc-spin-btn {
    padding: 10px 15px !important;
    border: none !important;
    cursor: pointer !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    transition: all 0.3s ease !important;
}

.srwc-spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.srwc-error {
    display: none;
    font-weight: 400;       
}

.srwc-win-message {
    display: none;
}

/*--------------------------- End Form ---------------------------*/

/*--------------------------- Win & Loss Message ---------------------------*/

.srwc-win-text {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.srwc-hidden {
    display: none;
}

/*--------------------------- End Win & Loss Message ---------------------------*/

.srwc-title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.srwc-form-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.srwc-close {
    position: absolute;
    cursor: pointer;
    right: 15px;
    top: 10px;
    font-size: 30px;
    line-height: 1;
    color: #fff;
    z-index: 10;
}

.srwc-wheel-right p {
    font-size: 13px;
    opacity: 0.8;
    margin: 0;
    text-align: left;
}

/*--------------------------- Mini Spin Wheel ---------------------------*/

.srwc-floating-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    display: flex;
}

/*--------------------------- End Mini Spin Wheel ---------------------------*/

/*--------------------------- GDPR Checkbox ---------------------------*/

.srwc-gdpr-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.srwc-gdpr-checkbox {
    margin-right: 8px;
    margin-top: 3px;
    flex-shrink: 0;
    cursor: pointer;
}

.srwc-gdpr-text {
    flex: 1;
    cursor: default;
}

.srwc-gdpr-error {
    margin-top: 5px;
    display: none;
}

/*--------------------------- End GDPR Checkbox ---------------------------*/

/*----------------------------- Close Button -----------------------------*/

.srwc-close-bottom {
    position: absolute;
    bottom: -5px;
    right: -5px;
    z-index: 10;
}

.srwc-close-btn {
    border: none;
    background: none;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.srwc-close-text {
    letter-spacing: 0.5px;
}

/*----------------------------- End Close Button -----------------------------*/

@media (max-width: 1024px) {
    .srwc-wheel-left {
        width: 100% !important;
    }
    .srwc-wheel-right {
        width: 100% !important;
    }
}