#search-box {
    width: 100%;
    padding: 8px;
}

#suggestions {
    border: 1px solid #ccc;
    width: 100%;
    max-width: 100%;
    display: none;
    position: absolute;
    background: #fff;
    z-index: 9999;

    max-height: 200px;
    overflow-y: auto;
}

#suggestions div {
    padding: 8px;
    cursor: pointer;
}

#suggestions div:hover {
    background: #f0f0f0;
}

#suggestions div.active {
    background: #dcdcdc;
    color: #000000;
}

#cart_div {width: 80%; padding:30px;}

#mySidebar {  width: 50%;  display:none;z-index:5 }

@media screen and (max-width: 768px) 
{
  #mySidebar {  width: 90%;  display:none;z-index:5 }
  #cart_div {width: 100%; padding:2px;}
}

