.product-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
  display: block;
  margin-bottom: 100px;
}

.search-input {
  background: #fff;
  width: 100%;
  border-radius: 5px;
  position: relative;

}

.search-input input {
  height: 63px;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0 60px 0 20px;
  font-size: 18px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}

.search-input.active input {
  border-radius: 5px 5px 0 0;
}

.search-input .autocom-box {
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
}

.search-input.active .autocom-box {
  padding: 10px 8px;
  opacity: 1;
  pointer-events: auto;
}

.autocom-box li {
  list-style: none;
  padding: 8px 12px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 3px;
}

.search-input.active .autocom-box li {
  display: block;
}

.autocom-box li:hover {
  background: #efefef;
}

.search-input .icon {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
  color: #0983CE;
  cursor: pointer;
}

.product-filter-range {
  position: relative;
  padding: 28px 30px 30px;
  margin-top: 24px;
  border: 1px solid #e1eaea;
  background-color: #fff;

}


.price-ranger {
  position: relative;
  display: block;
}

.price-input {
  width: 100%;
  display: flex;
  margin-bottom: 30px;
  margin-top: 20px;
}

.price-input .field {
  display: block;
  width: 100%;
  height: 40px;
  align-items: center;
}

.field input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 18px;
  margin-left: 0;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #999;
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.price-input .separator {
  width: 12px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}

.slider {
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
  margin-top: 60px;
}

.slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: #0983CE;
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #0983CE;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #0983CE;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.sidebar-cat-filter {
  position: relative;
  display: block;
  border: 1px solid #e1eaea;
  padding: 28px 15px 15px;
  margin-top: 24px;
  background-color: #fff;
}

.cat-accordion {
  margin: 1em auto;
}

.cat-accordion .toggle {
  display: none;
}

.cat-accordion ul {
  margin: 0;
  padding: 0;
}

.cat-accordion ul li {
  list-style: none;
  border-bottom: 1px solid #e4e4e4;
}

.cat-accordion ul li:last-child {
  border-bottom: none;

}

.cat-accordion .title,
.cat-accordion .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.2s;
}

.cat-accordion .title {
  background: #fff;
  padding: 10px 0;
  display: block;
  color: #7A7572;
  font-weight: normal;
}

.cat-accordion .content ul {
  margin: 0;
  padding: 0;
}

.cat-accordion .content ul li {
  list-style: none;
  border-bottom: none;
  padding: 10px 12px;
}

.cat-accordion .title:after,
.cat-accordion .title:before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  background-color: #7A7572;
  transition: all 0.2s;
}

.cat-accordion .title:after {
  transform: rotate(90deg);
}

.cat-accordion .content {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
}

.cat-accordion input[type=checkbox]:checked+label {
  color: #0983CE;
}

.cat-accordion .toggle:checked+.title,
.cat-accordion .toggle:checked+.title+.content {}

.cat-accordion .toggle:checked+.title+.content {
  max-height: 500px;
}

.cat-accordion .toggle:checked+.title:before {
  transform: rotate(90deg) !important;
}

.cat-accordion .subcat {
  margin-left: 8px;
  padding-left: 8px;
}

.cat-accordion .count {
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 14px;
  background: #f4f4f8;
  color: #343434;
  padding: 5px;
  border-radius: 2px;
  margin-left: 4px;
}

.filter-clear {
  font-weight: 400;
  text-align: right;
  float: right;
  font-size: 12px;
  text-decoration: underline;
  margin-right: 8px;
}


.cat-accordion input[type="checkbox"] {
  position: relative;
  cursor: pointer;
}

.product-grid-items {
  position: relative;
  display: block;
}

.product-showcase-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  margin-bottom: 30px;
  background-color: #fff;
  border-bottom: 1px solid #e4e4e4;
}

.product-shorting .input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.product-shorting .input-group-prepend {
  margin-right: -1px;
  display: flex;
}

.product-shorting .input-group>.input-group-prepend>.input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.product-shorting .input-group-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: .375rem .75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: .25rem;
}

a.product-single {
  background-color: #ffff;
  transition: all 300ms ease-in-out;
  position: relative;
  display: block;
  color: #212121;
  margin-bottom: 20px;
}

.product-single-image-block {
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  height: 282px;
  width: 100%;
  padding: 40px 20px 20px;
  z-index: 1;

}

.product-single-image {
  height: 180px;
  width: auto;
  margin: 0 auto;
}

.product-single-image img {
  height: 100%;
  width: auto;
  transition: transform .4s;
}

.product-single-image:hover img {
  transform: scale(1.1);
}

a.product-single:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.product-single-content {
  padding: 18px;
  border-top: 1px solid #e4e4e4;
}

.single-product-price-block {
  position: relative;
  display: flex;
  align-items: center;

}

.single-product-title {
  margin-bottom: 12px;
}

.single-product-title h5 {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #212121;
}

.single-product-title:hover h5 {
  color: #0983CE;
}

.off-price {
  font-size: 20px;
  font-weight: 600;
  color: #0983CE;
}

.act-price {
  font-size: 16px;
  margin-left: 8px;
}

.rate-ofr-per {
  font-weight: normal;
  color: #7A7572;
  font-size: 12px;
  margin-left: 12px;
}


.heart-stroke {
  fill: none;
  stroke: #ddd;
  stroke-width: 2px;
  opacity: 1;
  transform-origin: center center;
}

.wish-button {
  position: absolute;
  top: 24px;
  right: 24px;
  scale: 1.4;
}

.wish-button.active .heart-stroke {
  opacity: 0;
}

.heart-full {
  opacity: 0;
  transform-origin: 50% 50%;
}

.wish-button.active .heart-full {
  opacity: 1;
}

.heart-lines {
  stroke-width: 2px;
  display: none;
}

.wish-button:not(.active):hover .heart-stroke {
  -webkit-animation: pulse 1s ease-out infinite;
  animation: pulse 1s ease-out infinite;
}

.wish-button.animate .heart-full {
  -webkit-animation: heart 0.35s;
  animation: heart 0.35s;
}

.wish-button.animate .heart-lines {
  -webkit-animation: lines 0.2s ease-out forwards;
  animation: lines 0.2s ease-out forwards;
  display: block;
}

@-webkit-keyframes lines {
  0% {
    stroke-dasharray: 6;
    stroke-dashoffset: 16;
  }

  100% {
    stroke-dasharray: 13;
    stroke-dashoffset: 18;
  }
}

@keyframes lines {
  0% {
    stroke-dasharray: 6;
    stroke-dashoffset: 16;
  }

  100% {
    stroke-dasharray: 13;
    stroke-dashoffset: 18;
  }
}

@-webkit-keyframes heart {
  0% {
    transform: scale(1);
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  10% {
    transform: scale(1.2);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  35% {
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  75% {
    transform: scale(1.1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes heart {
  0% {
    transform: scale(1);
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  10% {
    transform: scale(1.2);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  35% {
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  75% {
    transform: scale(1.1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@-webkit-keyframes pulse {
  0% {
    opacity: 1;
    transform-origin: center center;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.15);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform-origin: center center;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.15);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.seller-tag {
  position: absolute;
  top: 0;
  left: 0;

}

.seller-tag span {
  font-size: 12px;
  display: block;
  padding: 6px 15px;
  border-bottom-right-radius: 8px;
}

.seller-tag .best-seller {
  background-color: #0983CE;
  color: #fff;
}

.product-page-lube-logo {
  position: relative;
  z-index: 9;
  height: 160px;
  width: auto;
  display: flex;
  align-items: center;
}

.product-page-lube-logo img {
  height: 100%;
  width: auto;
  margin: 0 auto;
}

.side-bar-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}