/* ===== XFotoBazar BacktoTop button ===== */

#xfbtopback{
    position: fixed;
    right: 18px;
    bottom: 60px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(196,0,0,.65);
    border: 1px solid #e40000;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity .25s ease, background .25s ease, transform .2s ease;
    z-index: 250; /* pod modály Shoptetu (modal ~1000+) */
}

#xfbtopback:hover{
    background: rgba(196,0,0,.85);
    transform: translateY(-2px);
}

#xfbtopback i{
    position: relative;
    width: 18px;
    height: 18px;
    display:block;
}

#xfbtopback i::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:10px;
    height:10px;
    border-left:2px solid #fff;
    border-top:2px solid #fff;
    transform:translate(-50%,-30%) rotate(45deg);
    border-radius:1px;
}

/* nezobrazovat při otevřených překryvech */
body.modal-open #xfbtopback,
body.menu-open #xfbtopback,
body.cart-open #xfbtopback,
.ordering-process #xfbtopback{
    opacity:0 !important;
    pointer-events:none !important;
}

/* Media queries */
@media (max-width: 767px) {
    #xfbtopback {
        bottom: 40px;
    }
}