File: //var/www/innodrive/src/scss/blocks/slider-loader.scss
.slider-loader {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
background-color: white;
z-index: 999;
.loader {
display: inline-block;
width: 80px;
height: 80px;
&::after {
content: '';
display: block;
width: 64px;
height: 64px;
margin: 8px;
border-radius: 50%;
border: 6px solid #078ebe;
border-color: #078ebe transparent #078ebe transparent;
animation: loader 1.2s linear infinite;
}
}
}
@keyframes loader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}