html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    background: none;
    background-image: url(../uploads/images/back_img.png);
    background-size: cover; /* Это позволит картинке покрывать весь фон */
    /*background-position: center;*/ /* Центрирует картинку */
    /*background-attachment: scroll;*/ /* Фон прокручивается вместе со страницей */
    /*background-repeat: no-repeat;*/
    background-attachment: scroll;
}

.bsc-back-style {
    background: white;
}

.bsc-contain-style {
    outline: 1px solid #4a76a8;
}

.modal-backdrop {
    background-color: rgba(0,0,0,.0001) !important;
}

.collapse-modify{
    width: 100%;
    text-align: left;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-container {
    display: flex; /* Скрываем прелоадер по умолчанию */
    justify-content: center;
    align-items: center;
    height: 50vh; /* Занимает всю высоту экрана */
    background-color: rgba(255, 255, 255, 0.8); /* Полупрозрачный фон */
}

@keyframes rotateY {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

.preloader-image {
    width: 200px; /* Ширина изображения */
    height: 200px; /* Высота изображения */
    animation: rotateY 2s infinite; /* Анимация вращения */
    transform-style: preserve-3d; /* Сохранение 3D-эффекта */
}

.midgard {

}

.lvl-transparency {
    background-color: rgba(255, 255, 255, 0.87);
}

.lvl-transparency-elis {
    background-color: rgba(240, 248, 255, 0.37);
}

.null-transparency {
    background-color: rgba(255, 255, 255, 0);
}

.breadcrumb-item.active {
    background-color: #007bff; /* Синий цвет */
    color: white; /* Белый текст */
    border-radius: 0.25rem; /* Скругленные углы */
    padding: 0.5rem 1rem; /* Отступы */
}

.breadcrumb-style{
    margin-top: 10px;
}

.corner-label-outside {
    position: absolute;
    bottom: 0px;
    right: -2px;
    z-index: 1;
    width: 145px; 
    height: 170px;
    overflow: hidden;
    margin: 2px 4px;
}

.corner-label-inside1 {
    width: 215px;
    height: 100px;
    font-size: 12px;
    font-family: Segoe UI; /* Decrease line-height to move text up */
    font-weight: bold;
    margin-top: 85px;
    color: #fff;
    background-color: rgba(0, 128, 0, 0.87);
    text-align: center;
    transform: rotate(-45deg);
    padding-top: 4px; /* Add padding to the top */
    padding-left: 5px; /* Add padding to the top */
}

.corner-label-inside1-vb {
    width: 215px;
    height: 100px;
    font-size: 12px;
    font-family: Segoe UI; /* Decrease line-height to move text up */
    font-weight: bold;
    margin-top: 85px;
    color: #fff;
    background-color: black;
    text-align: center;
    transform: rotate(-45deg);
    padding-top: 4px; /* Add padding to the top */
    padding-left: 5px; /* Add padding to the top */
}

.corner-label-inside2 {
    width: 215px;
    height: 100px;
    font-size: 12px;
    font-family: Segoe UI; /* Decrease line-height to move text up */
    font-weight: bold;
    margin-top: 85px;
    color: #fff;
    background-color: rgba(255, 0, 0, 0.87);
    text-align: center;
    transform: rotate(-45deg);
    padding-top: 4px; /* Add padding to the top */
    padding-left: 5px; /* Add padding to the top */
}

.corner-label-inside3 {
    width: 215px;
    height: 100px;
    font-size: 12px;
    font-family: Segoe UI; /* Decrease line-height to move text up */
    font-weight: bold;
    margin-top: 85px;
    color: #fff;
    background-color: rgba(255, 165, 0, 0.87);
    text-align: center;
    transform: rotate(-45deg);
    padding-top: 4px; /* Add padding to the top */
    padding-left: 5px; /* Add padding to the top */
}

.corner-label-inside4 {
    width: 215px;
    height: 100px;
    font-size: 12px;
    font-family: Segoe UI; /* Decrease line-height to move text up */
    font-weight: bold;
    margin-top: 85px;
    color: #fff;
    background-color: rgba(128, 128, 128, 0.8);
    text-align: center;
    transform: rotate(-45deg);
    padding-top: 4px; /* Add padding to the top */
    padding-left: 5px; /* Add padding to the top */
}

.local_tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.local_tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.local_tooltip .tooltiptext {
    visibility: hidden;
    width: 333px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Позиция над элементом */
    left: 50%;
    margin-left: -60px; /* Центрирование */
    opacity: 0;
    transition: opacity 0.3s;
}

.local_tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 767.98px) {
    .bsc-logo {
        width: 50px;
        height: 50px;
    }

    .bsc-title {
        font-size: 18px;
    }

    .bsc-subtitle {
        font-size: 12px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .bsc-logo {
        width: 60px;
        height: 60px;
    }

    .bsc-title {
        font-size: 24px;
    }

    .bsc-subtitle {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .bsc-logo {
        width: 70px;
        height: 70px;
    }

    .bsc-title {
        font-size: 28px;
    }

    .bsc-subtitle {
        font-size: 16px;
    }
}