/*
*Template Name: Kaymaklar Peynircilik
Version: 1.0
Author: AjansBzn
*/

.custom-loader {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: radial-gradient(farthest-side, #FFFFFF 94%, #0000) top/4px 4px no-repeat, conic-gradient(#0000 30%, #FFFFFF);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
    animation: s3 1s infinite linear;
}

.custom-loader-2 {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: radial-gradient(farthest-side, #eb1d2a 94%, #0000) top/4px 4px no-repeat, conic-gradient(#0000 30%, #eb1d2a);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
    animation: s3 1s infinite linear;
}

@keyframes s3 {
    100% {
        transform: rotate(1turn)
    }
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}