.preloader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: var(--main-background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.preloader__container {
    max-width: 500px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader__image-container {
    width: 100%;
    height: 100%;
    max-width: 60px;
    max-height: 60px;
}

.preloader__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preloader-text {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    margin: 10px 0 0 0;
    color: var(--main-text-color);
    text-align: center;
}

@media (max-width: 700px) {
    .preloader-text {
        font-size: 12px;
    }
}