.shipping-methods {
  margin-bottom: 30px;
}
.shipping-methods.last {
  margin-bottom: 0;
}
.top-banner img,
.shipping-methods img {
  width: 100%;
}
.shipping-methods img {
  height: 185px;
}
.swiper-pagination-bullet-active {
  background: #26323e;
  color: #fff !important;
}

.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  font-size: 11px;
  color: #fff;
}
.display-area {
  margin-top: 15px;
}

.product-box:hover .p-img {
  border: 1px solid #4fbe31;
}
.p-img {
  position: relative;
  padding: 0.25rem;
  border: 1px solid #ebebeb;
  background: #fff;
  text-align: center;
  min-height: 100px;
  transition: all 0.3s ease;
}
.product-box img {
  width: 100%;
  max-height: 300px;
  vertical-align: middle;
  font-size: 0;
  transition: all 0.3s ease;
}
.p-name,
.p-aside {
  margin-top: 1px;
  margin-bottom: 1px;
}
.p-name {
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p-name a {
  line-height: 120%;
  color: #8d8c8c;
  transition: all 0.3s ease;
}
.p-name a:hover {
  color: #4fbe31;
}
.p-aside {
  color: #8d8c8c;
}
.price {
  color: #343434;
  font-size: 16px;
  font-weight: bold;
  font-family: Arial;
}
.original-price {
  font-family: Arial;
  color: #1b1b1b;
  font-size: 14px;
}
.area-btns {
  text-align: center;
  margin: 15px auto;
  display: block;
}
.area-btns:after {
  content: "";
  display: block;
  clear: both;
}
.area-btns .btn,
.area-btns .btn:focus,
.area-btns .btn:active {
  background-color: transparent;
  border: 0;
  color: #8d8c8c;
  outline: none;
  padding: 0;
}
.area-btns .btn i {
  display: inline-block;
  height: 27px;
  width: 15px;
  line-height: 28px;
  margin-left: 7px;
  border: 1px solid #dce3ea;
  font-size: 16px;
}
.area-btns .btn:hover i {
  border: 1px solid #4fbe31;
}
.area-title,
.order-checkout-box-title,
.client-checkout-box-title {
  margin: 0 0 15px 0;
  color: #2e3a47;
  font-size: 24px;
  font-family: "Fira Sans", sans-serif;
}
.p-item {
  margin-bottom: 15px;
}
.brand-img {
  width: 100px !important;
  height: auto !important;
}
.modal-body {
  overflow: auto;
}

.launcher {
  position: fixed;
  right: 0px;
  bottom: 65px;
  height: 100px;
  width: 100px;
  overflow: hidden;
  z-index: 9999;
}

.launcher-button-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 60px;
  width: 60px;
  margin: auto;
}

.launcher-button {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid transparent;
  background: #ff4242 center center no-repeat;
  background-size: 50%;
  left: -1px;
  position: relative;
  box-shadow: 0 0 30px rgba(116, 116, 116, 0.33);
  animation: launcher-button-init 0.7s cubic-bezier(0.62, 0.28, 0.23, 0.99),
    launcher-button infinite 6s 2s;
  transition: background-color 0.4s;
  outline: 0;
}

.launcher-button.opened {
  background: #fff url(~/themes/keybox/images/ic-close.png) no-repeat center
    center !important;
  background-size: 40%;
  animation: launcher-button-init 0.7s cubic-bezier(0.62, 0.28, 0.23, 0.99),
    launcher-button-rotate 0.4s;
  border: 1px solid #ececec !important;
}

.launcher .rings {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.6;
  z-index: -1;
  display: none;
}

.launcher .rings .ring {
  border: 1px solid #ff4242;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  animation: launcher-button-pulsate infinite 3s;
}

.launcher .rings .ring:nth-child(1) {
  animation-delay: 0.1s;
}

.launcher .rings .ring:nth-child(2) {
  animation-delay: 0.25s;
}

.launcher .rings .ring:nth-child(3) {
  animation-delay: 0.4s;
}

.launcher .launcher-powered {
  display: none;
  position: absolute;
  bottom: 10px;
  right: 33px;
  font-size: 14px;
  text-align: center;
  color: #afafaf;
  animation: launcher-powered-init 0.25s;
}

.launcher.blinger-launcher-ring-false .launcher-button {
  bottom: auto;
  box-shadow: none;
  animation: inherit;
}

.launcher.blinger-launcher-ring-false .launcher-powered {
  right: 6px;
  bottom: 0;
}

.launcher.blinger-launcher-ring-false .launcher-button-wrapper {
  bottom: auto;
}

.launcher .launcher-powered.closing {
  animation: launcher-powered-close 0.25s cubic-bezier(0.16, 0.44, 0.2, 0.96);
}

@keyframes launcher-powered-init {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes launcher-powered-close {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(10px);
    opacity: 0;
  }
}

@keyframes launcher-button-rotate {
  0% {
    transform: rotate(-90deg);
  }

  100% {
    transform: rotate(0);
  }
}

@keyframes launcher-button-pulsate {
  60% {
    transform: scale(1, 1);
    opacity: 0;
  }

  70% {
    transform: scale(1, 1);
    opacity: 1;
  }

  100% {
    transform: scale(1.7, 1.7);
    opacity: 0;
  }
}

@keyframes launcher-button-init {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  30% {
    transform: scale(0.5) rotate(-180deg);
    opacity: 0;
  }

  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

@keyframes launcher-button {
  0% {
    transform: rotate(0);
  }

  5% {
    transform: rotate(359deg);
  }

  to {
    transform: rotate(360deg);
  }
}

span.text-danger {
  font-weight: normal !important;
}
.cartinfo {
  font-size: 14px;
  margin-top: 15px;
  padding: 15px;
  border: 1px solid #e6e6e6;
  color: #465f73;
}
.cartinfo a {
  color: #337ab7;
}
.cartinfo ul {
  margin-left: 15px;
}
.cartinfo ul li {
  list-style: disc;
}
.BuyCount {
  font-size: 18px;
}
.alert-checkIsMinimumPurchase {
  display: none;
}
.alert-checkIsMinimumPurchase.active {
  display: block;
}
.category-display {
  background: #dce3ea;
  color: #2e3a47;
  font-size: 14px;
}
.category-display .list-group-item {
  padding: 5px 15px;
  border: 0;
  background-color: transparent;
}
.btn-show-more {
  border: 1px solid #ebebeb;
  color: #8d8c8c;
}
.btn-show-more:hover {
  background-color: #e6eff4;
  background-image: -moz-linear-gradient(top, #e6eff4, #e6eff4);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#e6eff4),
    to(#e6eff4)
  );
  background-image: -webkit-linear-gradient(top, #e6eff4, #e6eff4);
  background-image: -o-linear-gradient(top, #e6eff4, #e6eff4);
  background-image: linear-gradient(to bottom, #e6eff4, #e6eff4);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe6eff4', endColorstr='#ffe6eff4', GradientType=0);
  border: 1px solid #4fbe31;
  color: #4fbe31;
}
.breadcrumb {
  margin-bottom: 0;
}
.hc-nav-trigger span {
  width: 24px;
}
.hc-nav-trigger span::before {
  top: -7px;
}
.hc-nav-trigger span::after {
  bottom: -7px;
}
.btn-main-filter {
  float: right;
}
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 27px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  background: #e6eff4;
  color: #ed98bf;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  text-decoration: none;
  transition: opacity 0.2s ease-out;
  opacity: 0;
}

#back-to-top:hover {
  background: #e9ebec;
}

#back-to-top.show {
  opacity: 1;
}
.hc-offcanvas-nav .nav-container {
  width: 90%;
}
.hc-offcanvas-nav a,
.hc-offcanvas-nav .nav-item {
  margin-bottom: 0;
}
.hc-nav-trigger span,
.hc-nav-trigger span::before,
.hc-nav-trigger span::after {
  height: 2px;
}
.filter-content {
  max-height: 200px;
  overflow-y: auto;
}
.category-display .list-group-item:last-child,
.category-display .list-group-item:first-child {
  border-radius: 0 !important;
}
.category-display .title {
  padding: 10px 15px;
  display: block;
  border-bottom: 1px solid #d3dbe3;
  font-weight: bold;
  color: #5a728b;
  font-size: 16px;
}
.category-display .list-group {
  max-height: 300px;
  overflow-y: auto;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #b1cddd;
  border-color: #b1cddd;
}
.pagination > li > a,
.pagination > li > span {
  border-radius: 50% !important;
  margin: 0 5px;
  color: #26323e;
}
