/**
 * back-to-top button
*/
.page-top {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 27.5px;
    right: 10px;
    padding: 0;
    border: none;
    background-color: #C5AC8E;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s 0s, visibility 0s .3s;
    z-index: 11;
}
.page-top.visible,
.page-top.fade-out {
    transition: opacity .3s 0s, visibility 0s 0s;
}
.page-top.visible {
    visibility: visible;
    opacity: 1;
}
.page-top.fade-out {
    /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
    opacity: .5;
}
.page-top svg{
    fill:white;
}
.page-top:hover{
    opacity: 1;
}
@media only screen and (min-width: 1024px) {
    .page-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
    }
    .page-top span:before{
        line-height: 60px;
    }
}

@media (max-width: 769px){
    .page-top.fade-out{
        opacity:1;
    }
    .page-top{
        display: none;
    }
}