body
{
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body.disabled::after
{
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1040;
    overflow: hidden;
    pointer-events: all;
}
body.disabled *
{
    pointer-events: none;
}

.body-content
{
    padding-top: var(--default-space-between);
    padding-bottom: var(--default-space-between);
    flex: 1 0 auto;
}
.body-content.disabled::after
{
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 50;
}

.choose-language
{
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
}
.choose-language select
{
    padding: 0;
    margin: 0;
    height: auto;
    margin-left: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    outline: none;
    box-shadow: none;
    box-sizing: border-box;
    border: none;
    font-size: inherit;
    color: inherit;
    background-color: inherit;
}

@media (max-width:575.98px) /* extra small */
{
    body
    {
        min-height: -webkit-fill-available;
    }
}
