.gt-back-to-top {
position: fixed;
display: inline-block;
z-index: 999;
right: 30px;
bottom: 40%;
transition: all 0.4s ease-in-out;
opacity: 0;
visibility: hidden;
transform: translateY(20px);
border: none;
background: var(--theme-accent-orange);
width: 55px;
height: 55px;
justify-content: center;
box-shadow: 0px 4px 4px 0px #00000040;
border-radius: 50px;
}
@media screen and (max-width: 767.98px) {
.gt-back-to-top {
bottom: 11%;
}
}
.gt-back-to-top.show {
opacity: 1;
visibility: visible;
transform: translate(0);
}