@media only screen and (max-width: 767px) {
    .cart-header {
        display:none
    }

    .show-mobile{
        display: block;
    }
}

@media only screen and (min-width: 768px) {
    .show-mobile{
        display: none;
    }
}

.addToBag {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
    border: 1px solid black;
    color: white;
    border-radius: 0px;
    margin-right: 2px;
    font-family: 'Motserrat', sans-serif;
    height: 30px;
    padding-top: 4px;
    width: 100%;
    text-align: center;
    background-color: black;
}

.addToBag :hover {
    background: black;
    color: white;
}

.products-search {
    width: 80%;
    padding-right: 4px;
    height: 40px;
    font-size: 18px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    padding-top: 4px;
    padding-bottom: 6px;
    text-align: center;
    border: 2px solid black;
}

.products-search-botton {
    font-size: 18px;
    color: #dedada;
    background: #090909;
    border-radius: 5%;
    height: 40px;
    margin-bottom: 4px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
}