body {
    margin: 0;
}

.loading-bg {
    width: 100%;
    height: 100%;
    position: relative;
}

.loading-logo-wrapper {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
}

.loading-logo-wrapper img {
    width: 84px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 0.6px), -50%);
    z-index: 1;
}

.spinner-wrapper {
    animation: spinner-animation-custom 2000ms linear infinite;
}

.spinner-wrapper .spinner-custom {
    width: 86px;
    height: 86px;
    border: solid 4px transparent;
    /* border: solid 4px transparent; */
    /* background: rgb(95, 211, 255);
    background: radial-gradient(circle, rgba(95, 211, 255, 0.1) 0%, rgba(0, 174, 239, 0.5) 35%, rgba(203, 241, 255, 0.3) 100%); */
    /* background: rgb(95,211,255);
  background: linear-gradient(90deg, rgba(95,211,255,0.5690476874343487) 0%, rgba(0,174,239,1) 35%, rgba(203,241,255,0.798739564185049) 100%);  */
    border-top-color: #501312 !important;
    /* border-left-color: #00aeef !important; */
    border-radius: 50%;
}

@keyframes spinner-animation-custom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}