/* 
    Reset
----------------------------*/
.j-last-views__wrapper * {
  box-sizing: border-box;
  outline: none;
  list-style: none;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
}
.j-last-views__wrapper svg:not(:root) {
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
}
.j-last-views__wrapper [class*="icon--"] {
  display: inline-block;
  fill: currentColor;
  width: 1em;
  height: 1em;
}
.j-last-views__wrapper img {
  max-width: 100%;
  max-height: 100%;
}
/* 
    Style
----------------------------*/
.j-last-views__title {
  width: 100%;
  font-size: 26px;
  margin-bottom: 15px;
  text-align: center;
}
.j-last-views__wrapper {
  position: relative;
  margin-bottom: 35px;
}
.j-last-views__wrapper:hover .j-last-views__buttons > div {
  opacity: 1;
  visibility: visible;
}
.j-last-views__buttons > div {
  position: absolute;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 45%;
  font-size: 22px;
  background: #cccccc;
  border-radius: 3px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .j-last-views__buttons > div {
    opacity: 0;
    visibility: hidden;
  }
}
.j-last-views__buttons > div .icon {
  color: #ffffff;
}
.j-last-views__buttons > div:hover {
  background: #bababa;
}
.j-last-views__buttons__prev {
  left: 15px;
}
.j-last-views__buttons__next {
  right: 15px;
}
.j-last-views .j-product {
  position: relative;
  width: 100%;
  padding: 10px;
  text-align: center;
}
.j-last-views .j-product:hover {
  box-shadow: inset 0px 0px 10px 0px #cccccc;
}
.j-last-views .j-product__image {
  display: block;
  position: relative;
  height: 200px;
}
.j-last-views .j-product__image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding: 5px;
}
.j-last-views .j-product__name {
  display: table;
  width: 100%;
  height: 65px;
  font-size: 16px;
  padding: 0 5px;
}
.j-last-views .j-product__name a {
  display: table-cell;
  vertical-align: middle;
  line-height: 20px;
  text-decoration: none;
}
.j-last-views .j-product__name a:hover {
  color: #000000;
}
.j-last-views .j-product__price {
  margin: 15px 0 5px 0;
  font-size: 19px;
}
.j-last-views .j-product__price__current {
  display: inline-block;
}
.j-last-views .j-product__price__current.j-red {
  color: #e93f11;
}
.j-last-views .j-product__price__old {
  display: inline-block;
  position: relative;
  margin-right: 5px;
  color: #666666;
}
.j-last-views .j-product__price__old:before {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  background: #e93f11;
  left: 0;
  top: 55%;
}
