@media (min-width:0) {
    .header-main{
        padding-bottom: 20px;
    }
    .search-bar-area {
        margin-bottom: 0;
    }
    .cart-overlay{
        background-color: #4B2DA5;
        height: 100%;
        left: 100%;
        opacity: 0;
        position: fixed;
        top: 0;
        transition: overlay 0.2s ease;
        width: 100%;
        z-index: 999;
    }
    .cart-overlay.show{
        left: 0;
        opacity: 0.7;
    }
    .flying-cart {
        background-color: #F5F8FF;
        height: 100%;
        max-width: 487px;
        position: fixed;
        top: 0;
        transform: translateX(100%);
        transition: transform 0.2s ease;
        right: 0;
        width: 100%;
        z-index: 1000;
    }
    .flying-cart.show{
        transform: translateX(0);
    }
}
@media (max-height: 610px) {
    .flying-cart.show {
        overflow-y: scroll;
    }
}
@media (min-width:576px) {
}
@media (min-width:768px) {
}
@media (min-width:992px) {
    .header-main{
        padding-bottom: 0;
    }
}
@media (min-width:1200px) {
}
@media (min-width:1400px) {
}