/*
   ----------------------- Loading screen
*/
.LoadingBackground {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(73, 89, 101, 0.62);
    z-index: 999;
    display: none;
    top: 0;
    opacity: 0;
}



.LoadingBlurEffectOn {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    animation: LoadingBlurEffectIn 0.2s ease-in forwards;
    transition: 0.2s;
}

.LoadingBlurEffectOff {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    animation: LoadingBlurEffectOut 0.2s ease-in forwards;
    transition: 0.2s;
}

@-webkit-keyframes LoadingBlurEffectIn {
    0% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }

    100% {
        -webkit-filter: blur(10px);
        filter: blur(10px);
    }
}

@-webkit-keyframes LoadingBlurEffectOut {

    0% {
        -webkit-filter: blur(10px);
        filter: blur(10px);
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}

.LoadingFade {
}

.LoadingObject {
    background-color: transparent;
    position: absolute;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20vw;
    height: 20vw;
}

.LoadingSpinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 100px auto;
}

.LoadingDouble-bounce1, .LoadingDouble-bounce2 {
    width: 200%;
    height: 200%;
    border-radius: 50%;
    background-color: #a7d5f7;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.LoadingDouble-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}
#MessageBox {
    background-color: ghostwhite;
    z-index: 999;
    display: flex;
    position: absolute;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 3px;
    flex-wrap: wrap;
    flex-direction: column;
}

.MessageBoxTitleContainer {
    align-content: center;
    justify-content: center;
    display: flex;
    background: #caddf3;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    width: max-content;
}

    .MessageBoxTitleContainer h1 {
        margin: 20px 80px;
        display: inline;
    }

.MessageBoxBodyContainer {
    min-height: 0px;
    padding: 5px;
    display: flex;
    align-content: center;
    justify-content: center;
    font-size: large;
}

.MessageBoxAnimationContainer {
    height: 20px;
    display: flex;
}

    .MessageBoxAnimationContainer > .animblock {
        position: fixed;
        overflow: hidden;
        height: 10px;
        width: 40px;
        background-color: #5b9cd4;
        display: flex;
    }

.animblockStart {
    animation: animblock1 1s linear infinite;
    left: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 12px;
}

.animblock1 {
    animation: animblock2 2s linear infinite;
}

.animblock2 {
    animation: animblock2 2s linear infinite;
    animation-delay: 1s;
}

.animblockEnd {
    animation: animblock3 1s linear infinite;
    right: 0;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 8px;
}

@@keyframes animblock1 {
    10% {
        opacity: 1;
    }

    55% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
    }
}

@keyframes animblock2 {
    0% {
        margin: 0 0 0 90%;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 8px;
    }

    100% {
        margin: 0 0 0 0;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 12px;
    }
}

@keyframes animblock3 {

    10% {
        opacity: 0;
    }

    55% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

/*
   ----------------------- END OF Loading screen
*/