/* ========= START UTILS ========= */

/*  SCROLL TOP BUTTON */
.scrollTop{
    display: flex;
    pointer-events: none;
    width: 50px;
    height: 50px;
    background-color: #8f7a6f;
    border-radius: 50%;
    position: fixed;
    opacity: 0.8;
    right: 15px;
    bottom: 15px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
    z-index: 110;
}
.scrollTop.active{
    pointer-events: auto;
    transform: translateY(0);
    opacity: 1;
}
.scrollTop svg{
    display: block;
    margin: auto;
    width: 50%;
    transform: translateY(-1px);
    color:#fff;
}
.scrollTop:hover{
    opacity: 1;
}
/*  END SCROLL TOP BUTTON */