.pbst_progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #ddd;
    z-index: 1000;
}

.pbst_progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #ec3034, #fdbd18);
}

/* Bottone per tornare su */
.pbst_scroll-top {
    position: fixed;
    z-index: 10;
    bottom: 20px;
    right: calc( (100vw - 1360px) / 2 );
    background: white;
    color: #111;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 1699px) {
    .pbst_scroll-top {
        right: calc( ((100vw - 1000px) / 2) - 80px ) ;
    }
}

.pbst_scroll-top:hover {
    background: white;
}
.pbst_scroll-top .icon-arrow-small-right {
transform: rotate(270deg);
}
.pbst_scroll-top .icon-arrow-small-right::before {
    font-size:  20px;
}