.scrlbrrpl-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: transparent;
    transition: top 0.3s ease;
}

/* Стандартное положение с админ-баром */
.admin-bar .scrlbrrpl-progress-container {
    top: 32px;
}

/* Мобильный админ-бар */
@media screen and (max-width: 782px) {
    .admin-bar .scrlbrrpl-progress-container {
        top: 46px;
    }
    
    /* Когда админ-бар скрыт */
    .admin-bar .scrlbrrpl-progress-container.hide-admin-bar {
        top: 0;
    }
}

.scrlbrrpl-progress-bar {
    width: 0;
    transition: width 0.3s ease-out;
} 