/* Header */
.d-none {
	display: none !important;
}
.navigationWrap {
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.navigationWrap .targetLink {
	background-color: #636363;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
@media (max-width: 991.98px) {
    .navigationWrap .dropbtn,
    .navigationWrap .targetLink {
        padding: 15px 10px;
        font-size: 14px;
    }
    
}
.navigationWrap .targetLink:hover,
.navigationWrap .targetLink:focus {
	background-color: #858282;
    text-decoration: none;
}

/* START: Sister Stores */
#sisterStore .title {
    text-align: center;
    font-weight: 500;
    font-size: 18px;    
    margin-bottom: 2em;
    color: #fff;
}
#sisterStore .storeLogos {
    text-align: center;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 2%;
}
#sisterStore .storeLogos > div {
	max-width: 175px;
}
/* END: Sister Stores */

/*footer*/
.sister-store-logos {
	background-color: #252525 !important;
}

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

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

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