.container-youmaylike {
  margin-top: 100px;
  padding: 10px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.product-carousel-header {
  background: #fff;
  color: #000000;
  box-sizing: border-box;
  font-family:"Century Gothic", "Open Sans", sans-serif;
  padding: 10px 14px;
  width: 80%;
  margin: 0 auto;
  font-size: 25px;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 10px;
}
.product-carousel {
  background: #F5F5F5;
  border: none;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  padding: 20px 40px;
  width: 80%;
  margin: 0 auto;
  border-radius: 3px;
}
.product-carousel .product {
  box-sizing: border-box;
  margin: 0 7px;
  text-align: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-flow: column;
  align-content: space-between;
}
.product-carousel .product-top {
  width: 100%;
}
.product-carousel p,
.product-carousel .product-image,
.product-carousel img.review-stars {
  margin: 0 0 10px 0;
}
.product-carousel .product-image {
  align-self: flex-start;
  width: 100%;
  border-radius: 2px;
  max-width: 300px;
  max-height: auto;
}
img.review-stars {
  width: 100px;
  display: inline-block;
}
.product-carousel .product-name {
  font-weight: bold;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-flow: column wrap;
  -webkit-box-pack: start;
  justify-content: flex-start;
  width: 100%;
  font-size: 14px;
  font-family: "Century Gothic", "Arial", "Times New Roman";
  color: #121212;
}
.product-carousel .product-bottom {
  margin-top: auto;
  -webkit-box-align: end;
          align-items: flex-end;
}
.product-carousel .product-prices {
  display: -webkit-box;
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
  -webkit-box-flex: 1;
          flex: 1 0 100%;
  align-self: center;
}
.product-carousel .product-prices span {
  width: 100%;
}
.product-carousel .product-prices span.price-was {
  color: #a2a2a2;
  text-decoration: line-through;
}
.product-carousel .product-prices span.price-was:before {
  content: 'Was ';
}
.product-carousel .product-prices span.price-save {
  color: red;
}
.product-carousel .product-prices span.price-save:before {
  content: 'Save ';
}
.product-carousel .product-prices span.price-now {
  font-weight: bold;
}
.product-carousel .product-prices span.price-now:before {
  content: 'Now ';
}
.product-carousel button.shop-now {
  border: none;
  background-image: none;
  background-color: transparent;
  color: #000000;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  font-size: 18px;
  padding: 8px 10px;
  align-self: center;
  display: none;
}
/** ARROWS **/
i {
  border: solid #000000;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 12px;
  position: absolute;
  top: calc(50% - 12px/2);
  cursor: pointer;
}
.right {
  right: 20px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.left {
  left: 20px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
/** SLICK SLIDER CSS **/
/* Slider */
.slick-slider {
  position: relative;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  display: -webkit-box;
  display: flex;
  position: relative;
  top: 0;
  left: 0;
}
.slick-loading .slick-track {
  visibility: hidden;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
@media only screen and (max-width: 768px) {
	.product-carousel .product-name {
		font-size: 13px;
	}
}
@media only screen and (max-width: 480px) {
	.product-carousel .product-name {
		font-size: 11px;
	}
}