/*@media (min-width: 1843px) {*/
/*    :root {*/
/*        font-size: 16px;*/
/*    }*/
/*}*/
/*@media (min-width: 760px) and (max-width: 1843px) {*/
/*    :root {*/
/*        font-size: calc(0.37vw + 9.18px);*/
/*    }*/
/*}*/
/*@media (max-width: 760px) {*/
/*    :root {*/
/*        font-size: 12px;*/
/*    }*/
/*}*/

.loader {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}
.loader::after {
    content: '';
    display: block;
    font-size: 4rem;
    width: 1em;
    height: 1em;
    border: 0.075em solid hsl(233, 73%, 56%);
    border-top-color: transparent;
    border-radius: 100%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
