.loader::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    margin: -20px 0 0 -20px;
    border: 4px solid #fc03f3;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 10;
}

.loader {
    position: relative;
    min-height: 100px;
    pointer-events: none;
    opacity: 1;
}
@keyframes spin {
    to {
      transform: rotate(360deg);
    }
}