﻿#gt-loader{
    align-items: center;
    background-color: rgb(97 34 50 / 82%);
    display: flex;
    height: 100vh;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}
    
.loader {
    width: 48px;
    height: 48px;
    border: 10px solid rgb(97 34 50);
    border-radius: 50%;
    margin:auto;
    position: relative;
    transform: rotate(45deg);
    box-sizing: border-box;
}

    .loader::before {
        content: "";
        position: absolute;
        box-sizing: border-box;
        inset: -10px;
        border-radius: 50%;
        border: 10px solid rgb(176 149 91);
        animation: prixClipFix 2s infinite linear;
    }

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)
    }

    25% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)
    }

    50% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)
    }

    75% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)
    }

    100% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)
    }
}
