
/* Основной контейнер для высоты страницы */
html, body {
    height: 100%;
}
/* Контейнер для содержимого */
.content, .container-fluid {
    min-height: 100%; /* Минимальная высота 100% экрана */
    display: flex;
    flex-direction: column;
}
/* Футер всегда внизу */
footer {
    margin-top: auto; /* Автоматический отступ для "прилипания" */
}


.spinner-border {
    display: block;
    position: fixed;
    width: 158px;
    height: 158px;
    top: calc(50% - (158px / 2));
    right: calc(50% - (158px / 2));
    color: #282850;
}

#backdrop {
    position:absolute;
    display: block;

    top:0;
    width: 100vw;
    height: 160vh;
    z-index: 999999999;
    /*background-color: rgb(0,0,0,0.2);*/
    /*background-color: rgba(255,255,255,1);*/
    /*background-color: #FFD8B7;*/
    background-color: #ffffff;
}
