.floatingArea{
    @include flex-direction(column);
    width: 100%;
    position: fixed;
    transition: all 1s;
    bottom: -40rem;
    z-index: map-get($z-index, scroll-to-top);
}

.show {
    bottom: 0;
}