﻿.scroll-bridge-container {
    position: relative;
}

.scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

#scroll-bridge-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    /*color: white;*/
    padding: 15px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    #scroll-bridge-box.visible {
        opacity: 1;
    }

.scroll-bridge {
    display: block;
    /*color: white;*/
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.2s ease;
}

    .scroll-bridge:hover {
        /*color: #ccc;*/
    }

    .scroll-bridge .fa {
        margin-right: 5px;
    }
