.scrollable-content {
    height: -webkit-fill-available;
    scrollbar-gutter: stable
}

.scrollable-content::-webkit-scrollbar {
    width: .5em
}

.scrollable-content::-webkit-scrollbar-track {
    background-color: #ebeaf0
}

.scrollable-content::-webkit-scrollbar-thumb {
    background-color: gray
}

.opacity-duration {
    transition-duration: 1s;
    transition-property: opacity
}

.arrow-animation-small {
    animation: moveSmallArrowUp .9s ease-out forwards
}

.arrow-animation-large {
    animation: moveLargeArrowUp .9s ease-out forwards
}

@keyframes moveSmallArrowUp {
    0% {
        left: -500px;
        top: 288.65px
    }

    to {
        left: -100px;
        top: 57.73px
    }
}

@keyframes moveLargeArrowUp {
    0% {
        bottom: -288.65px;
        right: 500px
    }

    to {
        bottom: 57.73px;
        right: -100px
    }
}

/*# sourceMappingURL=e1f448a4d5eff9e9.css.map*/