@use '../utils' as *;
/*----------------------------------------*/
/* 2.1 Back to top
/*----------------------------------------*/
#back-to-top {
position: fixed;
right: 50px;
bottom: 50px;
background: var(--mt-theme-1);
color: #000;
z-index: 9;
width: 50px;
height: 50px;
text-align: center;
line-height: 50px;
border-radius: 8px;
opacity: 0;
visibility: hidden;
transition: .3s;
transform: scale(.7);
&.show {
opacity: 1;
visibility: visible;
transform: scale(1);
}
}