/*
** Scrall to top button
*/
.scroll-to-top {
    right: 20px;
    border: none;
    position: fixed;
    bottom: 30px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
@media (min-width: 960px){
    .scroll-to-top {
        padding: 6px 10px 6px 10px;
    }
}
@media (min-width: 576px){
    .scroll-to-top {
        padding: 6px 10px 6px 10px;
    }
}

.scroll-to-top {
    color: #ffffff !important;
    padding: 6px 10px 6px 10px !important;
    border-radius: 3px;
    background: #0366d6;
}
.scroll-to-top:hover {
    background: #580061;
}

.scroll-to-top-icon {
    width: 16px;
    height: 16px;
}
@media (min-width: 960px){
    .scroll-to-top-icon {
        width: 16px;
        height: 16px;
    }
}
@media (min-width: 576px){
    .scroll-to-top-icon {
        width: 16px;
        height: 16px;
    }
}

.showBtn {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}
