.spinner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    z-index: 1;
}

.spinner-sector {
    border-radius: 50%;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 10px solid transparent;
    mix-blend-mode: overlay;
}

.spinner-text {
    animation: loading-opacity 3s ease-in-out infinite;
    font-size: 2em;
}

.spinner-text img{
    width:90px;
}

.spinner-sector-blue {
    animation: rotate 2s ease-out infinite;
    border-top: 7px solid #f3bb09;
}

.spinner-sector-red {
    animation: rotate 2.5s ease-in infinite;
    border-top: 7px solid #71bfe7;
}

.spinner-sector-green {
    animation: rotate 1.5s ease-in-out infinite;
    border-top: 7px solid #27384e;
}

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

@keyframes loading-opacity {
    0%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: .5;
    }
    50% {
        opacity: .1;
    }
}
