/** TO TOP BUTTON **/
#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 30px; 
    z-index: 45;
    border: solid white; 
    background-color: black;
    color: white; 
    cursor: pointer; 
    padding: 15px;
    border-radius: 100px; 
    font-size: 10px; 
    opacity: 0.7;
}

#scrollToTop:hover{
    color: white;
    background-color: black;
    opacity: 1;
}

.to-top-arrow {
    width: 1rem;
    height: 1rem;
}

/** PROGRESS WHEEL **/
#progress{
    height: 70px;
    width: 70px;
    background-color: white;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    display: grid;
    place-items: center;
}

#progress-value{
    display: block;
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    background-color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 500;
}


