/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

/* Custom CSS */
.latest-product{
  margin-bottom: 30px;
  background-color: #fff;
  /*box-shadow: 0 2px 4px 0 rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.08);*/
}
.latest-product .heading {
  /*border-bottom: 1px solid #e3e3e3;*/
  padding: 15px 0px;
}
.latest-product .heading .title {
  margin-bottom: 0px;
  margin-top: 5px;
  font-size: 21px;
  /*text-transform: uppercase;
  font-weight: bold;*/
}
.latest-product .owl-carousel{
   padding-left: 20px;
   margin-top: 20px;
}

.latest-product .owl-nav {
  position: absolute;
  right: 15px;
  top: -45px;
  width: 100%;
  display: block;
}

.latest-product .owl-nav .owl-prev {
  position: absolute;
  width: 20px;
  height: 20px;
  top: -25px;
  right: 27px;
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #dddddd !important;
}
.latest-product .owl-nav .owl-prev:hover {
  background: #229ac8 !important;
}
.latest-product .owl-nav .owl-next {
  position: absolute;
  width: 20px;
  height: 20px;
  top: -25px;
  right: 0px;
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #dddddd !important;
}
.latest-product .owl-nav .owl-next:hover {
  background: #229ac8 !important;
}
.latest-product .product {
  margin-left: 0px;
  margin-right: 15px;
  margin-bottom: 20px;
  /*padding-bottom: 15px;*/
  position: relative;
  /*border:1px solid #ddd;*/

}

.latest-product .product .image img {
  width: 70%;
  margin-top: 15px;
}

.latest-product .label {
  font-size: 10px;
  font-weight: 700;
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-transform: uppercase;
  top: 2.5%;
  z-index: 100;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  color: #fff;
  right: 10px;
  text-align: center;
}

.latest-product .label span {
  position: relative;
   z-index: 100;
}
.latest-product .product .image .label {
  position: absolute;
}
.latest-product .label.sale {
  background: #fdd922;
  color: #333;
}
.latest-product .name {
  padding: 0 20px;
  height: 50px;
  overflow: hidden;
  
}
.latest-product .name h4 a{
  font-weight: 700;
}
.latest-product .rating {
  padding: 0 20px;
}
.latest-product .price{
  padding: 10px 0px 20px 0px;
  font-size: 14px;
  color: #444;
  text-align: center;
}
.latest-product .price-new{
  font-weight: 600;
}
.latest-product .price-old{
  color: #999;
  text-decoration: line-through;
  margin-left: 10px;
}
.latest-product .button-group{
  /*border-top: 1px solid #ddd;
  background-color: #eee;*/
  overflow: auto;
  display: flex;
}

.latest-product .button-group button {
  width: 90%;
    border: none;
    display: inline-block;
    /* float: left; */
    background-color: #eee;
    color: #888;
    line-height: 38px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
}
.latest-product .button-group button + button {
  width: 20%;
  /*border-left: 1px solid #ddd;*/
}
.latest-product .button-group button:hover {
  color: #444;
  background-color: #ddd;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 1000px) {
 .latest-product .name{
  height: 70px;
 }
}

@media (max-width: 428px) {
 .latest-product .product .image img {
    width: 50%;
    margin-top: 15px;
  }
}