.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader.show {
    opacity: 1;
}

.spinner {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(rgb(186, 66, 255) 35%,rgb(0, 225, 255));
    animation: spinning82341 1.7s linear infinite;
    filter: blur(1px);
    box-shadow: 0px -5px 20px 0px rgb(186, 66, 255), 0px 5px 20px 0px rgb(0, 225, 255);
}

.spinner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: transparent;
    border-radius: 50%;
    z-index: 1;
}

.spinner1 {
    position: absolute;
    background-color: rgb(36, 36, 36);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(10px);
    z-index: 99;
}

@keyframes spinning82341 {
    to {
        transform: rotate(360deg);
    }
}

#fundo {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

#fundo.show {
    opacity: 1;
}
      