/* container (parent) of the loader animations */

.loaderCurtain {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #00000042;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(.33vmin);
    -webkit-backdrop-filter: blur(.33vmin);
    z-index: 111112;
}

.loaderCurtain .closeButton {
    font-size: 48px;
    text-shadow: 2px 4px 10px black;
    right: 0;
    top: 0;
    margin: 10px;
    color: white;
    position: absolute;
    cursor: pointer;
}

.loaderCurtain .closeButton:hover{
    transform: scale(1.2);
}

.loaderCurtain .loader {
    --size: 33vmin;
    width: calc(var(--size)* 1.25);
    height: calc(var(--size)* 1);

    /* glass pane effect */
    background: rgba(255, 255, 255, 0.66);
    border-radius: calc(var(--size)* 0.05);
    -webkit-border-radius: calc(var(--size)* 0.05);
    box-shadow: 0 0 calc(var(--size)* 0.05) rgba(0, 0, 0, .5);
    backdrop-filter: blur(calc(var(--size)* 0.01));
    -webkit-backdrop-filter: blur(calc(var(--size)* 0.01));
    border: calc(var(--size)* 0.00375) solid rgba(255, 255, 255, 0.5);
    overflow: hidden;

    /* display: flex;
    align-items: center;
    justify-content: center; */

    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

}