@keyframes spin3D {
    from {
        transform: rotate3d(.5,.5,.5, 360deg);
    }
    to{
        transform: rotate3d(0deg);
    }
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-box {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: relative; /* Для абсолютного позиционирования кругов */
}
.shortmessage, .shortmessagebottom {
    width: 300px;
}

.leo-border-1, .leo-border-2 {
    position: absolute;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.leo-border-1 {
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(63,249,220,0.1) 33%, rgba(63,249,220,1) 100%);
    animation: spin3D 1.8s linear 0s infinite;
}

.leo-core-1 {
    width: 100%;
    height: 100%;
    background-color: #37474faa;
    border-radius: 50%;
}

.leo-border-2 {
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(251, 91, 83, 0.1) 33%, rgba(251, 91, 83, 1) 100%);
    animation: spin3D 2.2s linear 0s infinite;
}

.leo-core-2 {
    width: 100%;
    height: 100%;
    background-color: #1d2630aa;
    border-radius: 50%;
}
.NotDisplayBeforeLoad {
    display: none !important;
}
.photoitem img  {
    display: contents;
    width: 100%;
}

.slick-slide video {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}
.video-slide {
    position: relative;
}

.video-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.loader {
    border: 6px solid #FFB347;
    border-top: 6px solid #B57EDC;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* Анимация вращения лоадера */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Когда видео загружается, скрываем лоадер */
.video-loaded .video-loader {
    display: none;
}
.shake-demo-im {
    position: absolute;
    z-index: 7;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.shake-demo-im.shownot {
    display: none !important;
}
.shake-demo-im img {
    width: 83px;
}
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10; /* Устанавливаем приоритет по оси Z */
    padding: 10px 0; /* Дополнительное пространство внутри футера */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Тень для футера, можно убрать если не нужна */
}

.footer .row {
    margin: 0;
}

.footer .col {
    flex: 1;
}
.pngbg {
    background-color: gray;
    border-radius: 17px;
}





