.scrollToTopBtn {
    background-color: #FB9526;
    border: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
}

.scrollToTopBtn i.material-icons{
    font-size: 2rem;
}

.showBtn {
    z-index: 9999;
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

button.scrollToTopBtn:hover{background-color: #1842C4;}
button.scrollToTopBtn:active, button.scrollToTopBtn:focus, button.scrollToTopBtn:focus-visible {
    mso-outline-style: userset;
    outline: none !important;
}

html {
    overflow-y: scroll;
    scroll-behavior: smooth;
    --scroll-behavior: smooth;
}