/* ===== Pg BacktoTop button ===== */

#pgtopback{
    position: fixed;
    right: 18px;
    bottom: 60px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,182,237,.65);
    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+) */
}

#pgtopback:hover{
    background: rgba(0,182,237,.85);
    transform: translateY(-2px);
}

#pgtopback i{
    position: relative;
    width: 18px;
    height: 18px;
    display:block;
}

#pgtopback 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 #pgtopback,
body.menu-open #pgtopback,
body.cart-open #pgtopback,
.ordering-process #pgtopback{
    opacity:0 !important;
    pointer-events:none !important;
}

/* Media queries */
@media (max-width: 767px) {
    #pgtopback {
        bottom: 40px;
    }
}