

#compatible-holders {
    position: relative;
}

#loader-container .loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
}

#loader-container .loader::before , #loader-container .loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #FFF;
    animation: prixClipFix 2s linear infinite ;
}

#loader-container .loader::after {
    border-color: #0482c1;
    animation: prixClipFix 2s linear infinite , rotate 0.5s linear infinite reverse;
    inset: 6px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@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)
    }
}

#loader-container {
    background: #000000ab;
    width: 150px;
    height: 120px;
    position: absolute;
    top: 190px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999999999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
}


#loader-container .text {
    color: #FFF;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
}


#debugging-compatible-holders-query-args {
    position: fixed;
    left: 0;
    top: 0;
    padding: 10px;
    font-size: 13px;
    line-height: 15px;
    border: solid 2px black;
    height: 100vh;
    overflow: auto;
        background: white;
    z-index: 9999;
}

#debugging-compatible-holders-sql-query {
    position: fixed;
    right: 0;
    top: 0;
    padding: 10px;
    font-size: 13px;
    border: solid 2px black;
    height: 100vh;
    overflow: auto;
    background: white;
    z-index: 9999;
}