    .custom-cart {
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
    
        display: flex;
    
        align-items: center;
    
        justify-content: flex-end;
    
        white-space: nowrap;
    
        font-size: 20px;
    
        font-weight: 800;
        font-family: var(--t-text-font, Arial);
        line-height: 1;
    
        letter-spacing: -1px;
    
        text-transform: uppercase;
    
        color: #201E1E;
    
        cursor: pointer;
    
        z-index: 100;
    }

    .cart-count {
    
        display: inline-block;
    
        min-width: 16px;
    
        text-align: center;
    
    }
    
    @media (max-width: 640px) {

    .custom-cart {

        right: 20px;

        font-size: 20px;

    }

}

    .uc-menu-wrapper {
        position: fixed;
        inset: 0;
                                
        background: #f2f0ea;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
                            
        z-index: 99999;
                            
        transition: .3s ease;
    }
                            
    .uc-menu-wrapper.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
                            
    .active {
        top: 0;
    }
                            
    .btn-menu {
        cursor: pointer;
    }
                            
    .btn-menu-close {
        cursor: pointer;
    }
    
 