/* ==========================================================
   SCROLL TO TOP BUTTON
   ========================================================== */

.nv-scroll-top {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    background: #174f31;

    color: #ffffff;

    font-size: 16px;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    box-shadow:
        0 6px 18px rgba(0,0,0,0.18);

    z-index: 9998;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.25s ease;
}


/* Show button */

.nv-scroll-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* Hover */

.nv-scroll-top:hover {

    background: #f56845;

    color: #ffffff;

    transform: translateY(-3px);
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .nv-scroll-top {

        right: 15px;

        /*
           Fixed bottom navigation is 64px high.
           Keep Scroll Top above it.
        */

        bottom: 82px;

        width: 42px;

        height: 42px;

        font-size: 14px;
    }

}