.rating-box ul li {
  padding: 2px;
}

.main-menu_area .hm-dropdown {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}

.menu-item-has-children.menu-open .sub-menu {
  max-height: 300px !important;
}

.bct-product_content {
  padding: 6px 20px;
  text-align: left;
}

.float-btn {
  position: fixed;
  display: grid;
  place-items: center center;
  width: 50px;
  height: 50px;
  bottom: 80px;
  left: 15px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.template-color-1 .float-btn:hover {
  color: white !important;
}

::selection {
  background: #001081;
  color: white;
}

.my-float {
  margin-top: 16px;
}

.category-box {
  background: #e5e5e5;
  padding: 10px 20px;
  border-left: 4px solid #001081;
}

.category-box a {
  color: #001081;
}

@media only screen and (max-width: 500px) {
  .category-box {
    padding: 6px 8px;
  }

  .category-box-wrapper .col-4 {
    padding: 0px !important;
  }
}

.single_product {
  border: 1px solid #e5e5e5;
  transition: all .5s;
  margin-bottom: 18px;
}

.single_product:hover {
  border-color: #001081;
}

.sticker {
  left: 40px;
}

#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 10px;
  font-size: 17px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

.alert-success {
  background-color: #001081 !important;
  color: white !important;
}

.alert-error {
  background-color: #f93e5d !important;
  color: white !important;
}