/* Back to Top Button Style */
#back-to-top {
    position: fixed;
    bottom: 120px;
    right: 26px;
    width: 60px;
    height: 60px;
    background-color: #3F5FE6;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    display: none;
    /* Initially hidden */
    transition: opacity 0.3s ease-in-out;
    box-shadow: rgba(64, 29, 186, 0.5) 0px 2px 16px;
}

#back-to-top svg {
    margin-top: 10px !important;
}

#back-to-top:hover {
    background-color: #FFAA2B;
}

@media (max-width:480px) {
    #back-to-top {
        width: 45px;
        height: 45px;
        right: 17px;
        bottom: 90px;
        box-shadow: rgba(64, 29, 186, 0.5) 0px 2px 16px;
    }
    #back-to-top svg {
        width: 18px;
        height: 22px;
        /* margin-top: 1px !important; */
    }
}