.scrollToTop {
    position: fixed;
    bottom: 2%;
    right: 2%;
    z-index: 2;
    background: #EC7700; 
    color: #FFFF;
    padding: 0.9rem;
    border: 1px solid #4A4F54;
    transition: all 0.5s cubic-bezier(0.7, 0, 0, 1);

}

.scrollToTop:hover {
    background: var(--color-accent1-hover);
}

.scrollToTop img {
    width: 25px;
    cursor: pointer;
    filter: brightness(0) invert(1);
}

@media screen and (max-width:  40em) {
    .page-template-page-hotel .scrollToTop {
        bottom: 8%;
    }

    .scrollToTop img { 
        width: 20px;
    }
}