body {
    min-height: 100%;
    min-height: -webkit-fill-available;
}

html {
    height: -webkit-fill-available;
}

.loading_container {
    display: grid;
    grid-template-rows: 2.7fr 5.5fr 1.5fr 2.5fr;
    gap: 1em;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: #FBFAFF;
}

.loading__logo_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading__logo {
    align-self: center;
    justify-self: center;
    width: 78%;
    height: auto;
}

.loading__icon_container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    width: 100%;
}

.loading__icon_circle {
    position: absolute;
    width: 38vh;
    padding-bottom: 38vh;
    border-radius: 50%;
    background: #EDEDED;
}

.loading__icon {
    position: absolute;
    width: 70%;
    height: 70%;
}

.loading__title {
    display: flex;
    align-items: center;
    text-align: center;
    align-self: center;
    justify-self: center;
    color: #555555;
}

.loading__progressbar_container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: flex-start;
    justify-self: center;
    text-align: center;
    width: 80%;
    height: 50%;
    margin-top: 1em;
    background: #CDCCFF;
    border-radius: 25px;
    overflow: hidden;
}

.loading__progressbar {
    position: absolute;
    left: 0;
    width: 0;
    height: 100%;
    background: #8583FF;
    z-index: 0;
}

.loading__progressbar__text {
    color: #FFFFFF;
    z-index: 1;
}

.loading_finished {
    -webkit-transition: opacity 200ms ease-in-out;
    -moz-transition: opacity 200ms ease-in-out;
    -ms-transition: opacity 200ms ease-in-out;
    -o-transition: opacity 200ms ease-in-out;
    transition: opacity 200ms ease-in-out;
    opacity: 0;
}
