.load {
    cursor: wait;
    position: relative;
}

.load::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f110";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: bolder;
    color: #000;
    z-index: 10001;
    animation: load 1s linear infinite;
}

.load::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgb(207 216 234 / 50%);
    /* background-image: linear-gradient(to right, #0f0c29, #302b63, #24243e); */
    opacity: 0.9;
    z-index: 1;
    height: 100%;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

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

    to {
        transform: rotate(360deg);
    }
}
