/* Above */

.go__top__container{
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    z-index: 0;
    opacity: 0;
}

.go__top__button{
    width: 50px;
    height: 50px;
    background-color: var(--blue-color);
    border-radius: 50%;
    cursor: pointer;
    transform: .2s;
    z-index: 0;
    border: none;
}

.go__top__button .go__up{
    position: absolute;
    width: 30px;
    height: 30px;
    transition: .2s;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.go__top__button .go__up img{
    width: 20px;
    height: 20px;
}

.show{
    z-index: 10;
    opacity: 1;
}

.show .go__top__button{
    width: 50px;
    height: 50px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease .3s;
}
