@media only screen and (min-width: 768px) {
    /* For desktop: */
    .cart-floating-btn {
  visibility: hidden !important;
       
    }
    .cart-wrapper {
       
        position: relative !important;
        top: 50% !important;
        height: 70% !important;
        width: 80% !important;
    }
    .order-cart {
        overflow-y: scroll !important;
        top: 0;
        z-index: 1000 !important;
        overflow: auto !important;
        height: 70% !important;
        padding-bottom: 60px !important;
    }
    .php-email-form {
        z-index: -1 !important;
    }
}
@media only screen and (max-width: 768px) {
    .cart-wrapper {
        visibility: hidden !important;
    }
    .cart-floating-btn {
        position: fixed !important;
        bottom: 0;
        background-color: #cda45e !important;
        z-index: 9999999 !important;
    }
}
