.cssload-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cssload-icon-spinner {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.cssload-speeding-wheel {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border: 7px solid rgb(255, 162, 7);
    border-radius: 50% !important;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: cssload-spin 0.5s infinite linear;
    -o-animation: cssload-spin 0.5s infinite linear;
    -ms-animation: cssload-spin 0.5s infinite linear;
    -webkit-animation: cssload-spin 0.5s infinite linear;
    -moz-animation: cssload-spin 0.5s infinite linear;
}
.spinner-ring {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 6px solid rgba(255, 162, 7, 0.2);
    border-top-color: rgb(255, 162, 7);
    border-radius: 50%;
    animation: cssload-spin 0.8s infinite linear;
    z-index: 1;
}

.icon-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    color: rgb(255, 162, 7);
    animation: icon-cycle-enhanced 6s infinite ease-in-out;
}

.icon-item svg {
    display: block;
    width: 70%;
    height: 70%;
}


/* Keyframes e delays mantidos */
@keyframes icon-cycle-enhanced {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    8% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
    12% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    25% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
}


.icon-item.icon1 { animation-delay: 0s; }
.icon-item.icon2 { animation-delay: 1.5s; }
.icon-item.icon3 { animation-delay: 3.0s; }
.icon-item.icon4 { animation-delay: 4.5s; }

@keyframes cssload-spin {
    to {
        transform: rotate(360deg);
    }
}