.loader-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0000007a;
    z-index: 1000;
}

.loader-fullscreen .logo-container {
    max-width: 200px;
    padding-bottom: 10px;
}

.loader-fullscreen > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-message-wrapper {
    padding-top: 1em;
}

.loader-message-wrapper p {
    padding: .3em;
    background-color: rgba(255, 255, 255, 0.76);
    border-radius: 10px;
    text-align: center;
    border: 1px solid white;
    color: rgb(34, 32, 29);
}

.lds-ring {
    display: inline-block;
    position: relative;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    border: 8px solid var(--primary-color);
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--primary-color) transparent transparent transparent;
    top: 0;
    left: 0;
}

.lds-ring.size-medium {
    width: 40px;
    height: 40px;
}

.lds-ring.size-medium div {
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary-color);
    border-color: var(--primary-color) transparent transparent transparent;
}

.lds-ring.size-big {
    width: 70px;
    height: 70px;
}

div.lds-ring.size-big div {
    width: 70px;
    height: 70px;
    border: 8px solid var(--primary-color);
    border-color: var(--primary-color) transparent transparent transparent;
}

div.lds-ring.size-small {
    width: 24px;
    height: 24px;
}

div.lds-ring.size-small div {
    width: 24px;
    height: 24px;
    border: 3px solid var(--primary-color);
    border-radius: 100%;
    border-color: var(--primary-color) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

div.loader-fullscreen .lds-ring div {
    border-color: #fff transparent transparent transparent;
}