.hideonload {
    display: none;
}
.loader-container {
    position: relative;
    width: 100%;
    height: 100vh;
}
.loader {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    vertical-align: middle;
}
.custom-loader {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 10px solid #0000;
    border-right-color: #80E2EC97;
    position: relative;
    animation: s4 1s infinite linear;
}
.custom-loader:before,
.custom-loader:after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: inherit;
    animation: inherit;
    animation-duration: 2s;
}
.custom-loader:after {
    animation-duration: 4s;
}
.custom-loader img{
    height : 180px;
    width : 180px;
    padding: 20px;
    animation: spinlogo 1s linear infinite;
}
@keyframes s4 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes spinlogo {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}