* {
  box-sizing: border-box;
}

body {

}

.card-slider {
  margin: 0 auto;
  width: 97%;
}

.card-slider .slick-prev-icon,
.card-slider .slick-next-icon {

  background-color: #31ea8bc4;
  height: 100%;
  border-radius: 9px;
}
.slick-next-icon:hover {

  background-color: #f44242;
  height: 100%;
  border-radius: 9px;
}

.slick-prev-icon:hover {

  background-color: #f44242;
  height: 100%;
  border-radius: 9px;
}


.card-slider .slick-slide {
  padding: 0 10px;
}



.shuzio{
    font-size: 12px;
    color: #f84545;
}
@media screen and (max-width: 1360px) {
.card-slider {
  margin: 0 auto;
  width: 96%;
}
  }
@media screen and (max-width: 1039px) {
.card-slider {
  margin: 0 auto;
  width: 95%;
}
}
@media screen and (max-width: 820px) {
.card-slider {
  margin: 0 auto;
  width: 94%;
}
}
@media screen and (max-width: 700px) {
.card-slider {
  margin: 0 auto;
  width: 93%;
}
}

@media screen and (max-width: 600px) {
  .card-slider .card {
    height: auto;
  }
}
.card-slider .card .main-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.card-slider .card .main-link:focus {
  outline: none;
}
.card-slider .card .main-link:focus .title {
  outline: 3px dashed orange;
  outline-offset: -4px;
  color: royalblue;
  text-decoration: underline;
}
.card-slider .card .title {
  color: #000;
  margin: 0;
  padding: 10px 10px 5px 10px;
  font-size: 16px;
  font-weight: bold;
}
.card-slider .card .title:hover {
  text-decoration: underline;
}
.card-slider .card .image {
  /** Visually place the image above all other content (like the heading) in the parent flex container (.card). */
  order: -1;
  position: relative;
  height: 100px;
  padding: 2px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-slider .card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(0.5);
  transition: all 0.3s ease-in-out;
}
.card-slider .card .image:hover img {
  width: 110%;
  height: 110%;
}
.card-slider .card .description {
  margin: 7px 10px 15px 10px;
  font-size: 14px;
  opacity: 0.8;
}
.card-slider .card .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 1;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background-color: #c80000;
}
.card-slider .card .price {
  padding-left: 10px;
}
.card-slider .card .price .new-price {
  font-weight: bold;
}
.card-slider .card .price .original-price {
  margin-left: 5px;
  font-size: 14px;
  font-style: italic;
  opacity: 0.5;
  text-decoration: line-through;
}
.card-slider .card .rating {
  margin: 10px 0 15px 10px;
  color: orange;
  font-size: 12px;
}
.card-slider .card .rating .reviews-link {
  color: rgba(0, 0, 0, 0.6);
  margin-left: 5px;
}
.card-slider .card .rating .reviews-link:hover {
  color: black;
}
.card-slider .card .rating .reviews-link:focus {
  color: royalblue;
  outline: 3px dotted royalblue;
  outline-offset: 2px;
}
.card-slider .card:hover {
  border-color: rgb(34 124 82);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
      background-color: #072014;
}
.card-slider .card:hover .image img,
.card-slider .card:focus .image img {
  filter: grayscale(0);
}
.card-slider .card a:focus {
  outline: none;
}

/**
  Demo only
*/
.note {
  text-align: center;
  font-size: 14px;
  max-width: 960px;
  padding: 40px 20px;
  margin: 0 auto;
  opacity: 0.8;
}
.note a {
  color: black;
  font-weight: bold;
}
.note a:hover, .note a:focus {
  color: royalblue;
}