/* Large desktop */
@media (min-width: 1200px) { 

}
 
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {
  
  
}
@media (min-width: 768px) {
  
  
}
 

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
  
  /*  header */
  header .header-left {
    text-align: center;
  }
  header .header-center,
  header .header-right {
    margin-top: 15px;
  }
  header .search-form {
    max-width: 100%;
  }
  /* cart modul */
  #module_cart {
    display: table;
    float: none;
    margin: 0 auto;
    width: auto;
  }
  
}
 
/* Landscape phones and down */
@media (max-width: 480px) {
  .hidden-xx {
    display: none;
  }
  .visible-xx {
    display: block !important;
  }
  
  
  
  
}