/* Dropdown Button */
.dropbtn {
  background-color: #333;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #4f4e4e;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  position: absolute;
  background-color: #f1f1f1;
  min-width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 51;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Add or remove this to hide or show */
.hide {display:none;}


/* LOGO */
.store-logo-module .store-logo-link img {
    /* margin: 10px 0; */
    /* max-height: 60px; */
    max-width: 100%;
}

#primary-header .logo-wrap img {
    max-height: 100%;
}

.store-logo-module .store-logo-link img {
    margin: -1px 0;
    max-height: 80px;
    max-width: 100%;
}

.page-builder-page-layout .page-builder-layout-section.wide-content>.container-wrap {
    max-width: auto; 
    width: auto;
}

#primary-header .logo-wrap .store-logo-module {
    min-height: 78px;
    display: flex;
    flex-direction: row !important;
    justify-content: center;
}