.PopularProducts_Box {
  display: block;
  width: 100%;
  min-height: 100px;
  z-index: 10000;
  color: #ffffff;
  padding: 20px 20px;
  height: fit-content;
}

.PopularProducts_Loading {
  width: 100%;
  float: left;
  text-align: center;
}

.Show {
  display: block;
}

.Hide {
  display: none;
}

.product-item-row {
  cursor: pointer;
  padding: 0 15px;
}

.product-item-row:focus {
  outline: -webkit-focus-ring-color auto 0px;
  outline-color: -webkit-focus-ring-color;
  outline-style: auto;
  outline-width: 0px;
}

.loader {
  margin: 20px auto;
  height: 28px;
  width: 28px;
  animation: rotate 0.8s infinite linear;
  border: 3px solid #1f597c;
  border-right-color: transparent;
  border-radius: 50%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.ProductImage {
  display: block;
  width: 100% !important;
  margin: 0 auto 10px;
}

.ProductImage img {
  width: 100%;
  height: auto;
}

.ProductDetails {
  height: 100%;
  vertical-align: bottom;
}

.ProductName,
.ProductDescription,
.ProductPrice {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #4d4d4d;
  height: 24px;
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ProductDescription {
  font-weight: normal;
}

.arrow {
  border: solid #4d4d4d;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 8px;
  line-height: 0;
  position: absolute;
  cursor: pointer;
}

.right {
  top: 50%;
  right: -20px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  top: 50%;
  left: -20px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  top: -10px;
  right: -20px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  bottom: -10px;
  right: -20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
/* Slick Dots */

.slick-vert.slick-dots {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  list-style: none;
  text-align: center;
  margin: 0px 3px;
  padding: 11% 1% 11% 0.001%;
  /* border-left: 1px solid lightgrey; */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
}

.slick-vert.slick-dots li:nth-child(1) {
  display: block;
}

.slick-vert.slick-dots li:nth-child(2) {
  display: none;
}

.slick-vert.slick-dots li.slick-active:nth-child(1) {
  display: none;
}

.slick-vert.slick-dots li.slick-active:nth-child(2) {
  display: block;
}
