@charset "utf-8";
/* CSS Document */

* {
  margin:0;
  padding:0;
}

html {
  scroll-behavior: smooth;
}

.to-top {
    background-color: #009BDB;
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 45px;
    height: 45px;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all .4s;
    z-index: 99;
}
.to-top:hover {
    background-color: #E0E0E0;
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 45px;
    height: 45px;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #009BDB;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all .4s;
    z-index: 99;
}

.to-top.active { 
  bottom:32px;
  pointer-events: auto;
  opacity:1;
}
