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

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

/* 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;}


/* Custom Banner Design */

@keyframes wiggle {
    0% { transform: translate3d(0, 0, 0); }
   75% { transform: translate3d(0, 0, 0); }
   80% { transform: translate3d(7px, 0, 0); }
   85% { transform: translate3d(-7px, 0, 0); }
   90% { transform: translate3d(7px, 0, 0); }
   95% { transform: translate3d(-7px, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.wiggle { animation: wiggle 5s infinite; }
.wiggle:hover { animation: none; }
.promotional-banner-wrap .promotional-banner-text { background-color: #0275d8; color:#fff; font-family: Open Sans,Helvetica Neue,Helvetica,Arial,sans-serif; font-weight: 500; font-size: 14px; }
.promotional-banner-wrap .promo-close { color:black; height:34px; }
.store-logo-module .store-logo-link img { max-height: 50px; }