.shop-menu {
  position: fixed;
  left: 0;
  top: 0;
  background: #efefef;
  box-shadow: 4px 0px 8px 4px rgb(67 67 67 / 25%);
  height: 100vh;
  overflow: auto;
  z-index: 999;
  transition: 0.5s;
}

.shop-menu.faded {
  transition: 0.5s;
}

.shop-menu a {
  color: white;
}

.shop-menu button a {
  color: #1d4288 !important;
  text-decoration: none;
}

.shop-menu .shop-menu__header {
  background-color: #1d4288;
  border-bottom: 6px solid #3eb049;
  color: white;
  padding: 10%;
}

.shop-menu .shop-menu__header h2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.shop-menu .menu__header__content__left h5 {
  font-size: 18px;
  font-weight: 700;
}

.shop-menu .shop-menu__header__content {
  color: white;
}

.store-hours {
  opacity: 0.3;
  font-weight: 700;
}

.store-hours.active {
  opacity: 1;
}

.shop-menu .shop-menu__content__search-wrapper input {
  padding: 12px 80px 12px 12px;
  border: transparent;
  width: 100%;
  color: #1a1a1a;
}

/* TODO Fix Bootstraps CSS */
.form-control:focus {
  box-shadow: 0 0 0 0;
}

.shop-menu .shop-menu__content__search-result__item {
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1a1a1a;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}


.shop-menu .shop-menu__content__search-result__item h3 {
  color: #1a1a1a;
}

.shop-menu .shop-menu__content__search-result__item p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.shop-menu .shop-menu__content__search-result__item button:disabled {
  opacity: .65;
}

.shop-menu .shop-menu__content__search-result__item .shop-menu__content__search-result__item__btnDetail {
  line-height: 20px;
  color: #1d4288;
  text-decoration: underline;
  cursor: pointer;
}

.shop-menu .shop-menu__content__search-result__item__content {
  position: relative;
}

.shop-menu .shop-menu__content__search-result__item:last-child {
  border-bottom: 0px;
}

.shop-menu .close-icon {
  position: absolute;
  right: 28px;
  top: 28px;
  cursor: pointer;
  margin: 0px !important;
}

.shop-menu .shop-menu__content__search-result__item__hidden {
  margin-top: 30px;
}

.shop-menu .shop-menu__content .shop-menu__content__search-wrapper {
  position: relative;
  overflow: auto;
}

.shop-menu .shop-menu__content .shop-menu__content__search-wrapper .input-icon-prefix {
  position: absolute;
  top: 8px;
  right: 16px;
  cursor: pointer;
}

.shop-menu .shop-menu__content .shop-menu__content__search-wrapper #shop-menu-search-icon {
  width: 24px;
  cursor: pointer;
}

.shop-menu .shop-menu__content .shop-menu__content__search-wrapper #shop-menu-close-icon {
  width: 18px;
  cursor: pointer;
}

.backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 900;
  display: none;
  background-color: #00000073;
}


@media only screen and (max-width: 768px) {
  .shop-menu {
    width: 100%;
  }
}

@media only screen and (min-width: 769px) {
  .shop-menu {
    width: fit-content;
    min-width: 650px;
  }
}