.small-preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    margin-top: 56px;
}

.small-preloader__spinner {
    margin: 0;
    padding: 0;
    display: inline-block;
    border: 3px solid transparent;
    mask: linear-gradient(white, white) padding-box, linear-gradient(white, white);
    mask-composite: exclude;
    border-radius: 50%;
    box-sizing: border-box;
    animation: 1s loader-spinner linear infinite;
    width: 48px;
    height: 48px;
    background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.1) 50%, rgba(52, 152, 219, 1) 100%) border-box
}

.small-preloader__text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.small-preloader__text span:first-child {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #001A34;
}

.small-preloader__text span:last-child {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #667685;
}

@keyframes loader-spinner {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}