/* Alternative Spinner Style */
.pd-spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow: hidden;
}

.pd-spinner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.pd-spinner-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(26, 179, 148, 0.1);
    border: 2px solid #1ab394;
    padding: 30px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(26, 179, 148, 0.5);
}

.pd-spinner-wrapper.small {
    padding: 15px;
}

.pd-spinner-wrapper.large {
    padding: 40px;
}

.pd-spinner-animation {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.small .pd-spinner-animation {
    width: 30px;
    height: 30px;
}

.large .pd-spinner-animation {
    width: 100px;
    height: 100px;
}

.pd-spinner-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #1ab394;
    border-radius: 50%;
    animation: pd-spinner-rotate 2s linear infinite;
}

.pd-spinner-circle:nth-child(1) {
    animation: pd-spinner-rotate 2s linear infinite;
}

.pd-spinner-circle:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: #ffffff;
    animation: pd-spinner-rotate 1.5s linear infinite reverse;
}

.pd-spinner-circle:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: #1ab394;
    animation: pd-spinner-rotate 1s linear infinite;
}

.pd-spinner-shadow {
    display: none;
}

.pd-spinner-text {
    position: absolute;
    width: 200px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.small .pd-spinner-text {
    font-size: 12px;
    bottom: -30px;
}

.large .pd-spinner-text {
    font-size: 20px;
    bottom: -50px;
}

@keyframes pd-spinner-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Glow effect */
.pd-spinner-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid transparent;
    border-top-color: rgba(26, 179, 148, 0.8);
    border-bottom-color: rgba(26, 179, 148, 0.8);
    animation: pd-spinner-glow 2s linear infinite;
}

@keyframes pd-spinner-glow {
    0% {
        transform: rotate(0deg);
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0.5;
    }
}