:root {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*,
*::before,
*::after {
    box-sizing: inherit;
}
.floating-btn {
	position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color:#222429;
    transform: scale(0);
    transition: all .2s linear;
    display: flex;
    justify-content: center;
    align-items: center;
	cursor: pointer;
	z-index: 999;
}

.floating-btn:hover {
  background-color:#222429;
}
.fa-arrow-up{
	transition: all .2s linear;
	font-size: 36px;
	color: #eee;
	cursor: pointer;
}
.fa-arrow-up:hover{
	  color:var(--color_blue);
}
@media(max-width:320px){
.floating-btn {
    width: 27px;
    height: 27px;
	margin: 1px;
}
.fa-arrow-up{
	font-size: 23px;
}}
