/*======================================
    Item Details CSS
========================================*/
.item-details {
  background-color: #f9f9f9;
}

.item-details .top-area {
  background-color: #fff;
  padding: 10px 30px 30px 30px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
}

.item-details .product-images img {
  width: 100%;
  cursor: pointer;
  height: 500px;
  object-fit:cover;
}

.item-details .product-images .images {
  display: -ms-grid;
  display: grid;
  Grid-template-columns: repeat(5, 1fr);
  Grid-gap: 1em 1em;
  Margin-top: 1em;
}

@-webkit-keyframes fadeIn {
  to {
    Opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    Opacity: 1;
  }
}

.item-details .product-images .fade-in {
  -webkit-animation: fadeIn 0.5s ease-in 1 forwards;
  animation: fadeIn 0.5s ease-in 1 forwards;
}

.item-details .product-info {
  padding-left: 40px;
}

.item-details .product-info .title {
  font-size: 30px;
  margin-bottom: 10px;
}

.item-details .product-info .location {
  display: block;
  margin-bottom: 20px;
}

.item-details .product-info .location i {
  display: inline-block;
  margin-right: 5px;
  color: #5b704c;
}

.item-details .product-info .location a {
  color: #888;
}

.item-details .product-info .location a:hover {
  color: #5b704c;
}

.item-details .product-info .price {
  color: #5b704c;
  display: block;
}

.item-details .product-info .list-info {
  border-top: 1px solid #e6e6e6;
  margin-top: 30px;
  padding-top: 30px;
}

.item-details .product-info .list-info h4 {
  font-size: 20px;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}

.item-details .product-info .list-info ul li {
  display: block;
  margin-bottom: 6px;
}

.item-details .product-info .list-info ul li:last-child {
  margin: 0;
}

.item-details .product-info .list-info ul li span {
  display: inline-block;
  font-weight: 500;
  min-width: 150px;
}

.item-details .product-info .contact-info {
  margin-top: 30px;
}

.item-details .product-info .contact-info ul li {
  display: inline-block;
  margin-right: 10px;
}

.item-details .product-info .contact-info ul li:last-child {
  margin: 0;
}

.item-details .product-info .contact-info ul li .call {
  position: relative;
  padding: 17px 20px;
  padding-left: 58px;
  color: #5b704c;
  background-color: #fff;
  border: 2px solid #5b704c;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  float: left;
}

.item-details .product-info .contact-info ul li .call:hover {
  color: #fff;
  background-color: #5b704c;
}

.item-details .product-info .contact-info ul li .call span {
  font-size: 14px;
  display: block;
  margin-top: 2px;
  font-weight: 400;
}

.item-details .product-info .contact-info ul li .call i {
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 30px;
}

.item-details .product-info .contact-info ul li .mail {
  padding: 14px 30px;
  color: #5b704c;
  background-color: #fff;
  border: 2px solid #5b704c;
  border-radius: 4px;
  font-size: 22px;
  float: left;
}

.item-details .product-info .contact-info ul li .mail:hover {
  background-color: #5b704c;
  color: #fff;
  border-color: transparent;
}

.item-details .product-info .social-share {
  display: block;
  margin-top: 35px;
}

.item-details .product-info .social-share h4 {
  font-size: 16px;
  font-weight: 500;
  color: #888;
  display: inline-block;
  margin-right: 15px;
}

.item-details .product-info .social-share ul {
  display: inline-block;
}

.item-details .product-info .social-share ul li {
  display: inline-block;
  margin-right: 5px;
}

.item-details .product-info .social-share ul li:last-child {
  margin-right: 0;
}

.item-details .product-info .social-share ul li a {
  height: 40px;
  width: 40px;
  text-align: center;
  display: block;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  color: #5b704c;
  line-height: 40px;
  font-size: 14px;
}

.item-details-blocks .list-info {
  border-bottom: 1px solid #e6e6e6;
  margin-top: 0px;
  padding-top: 0px;
  margin-bottom: 20px;
}
.item-details-blocks .list-info h4 {
  font-size: 20px;
  font-weight: 500;
  display: block;
  margin-bottom: 0px;
}
.item-details-blocks .list-info ul li {
  display: block;
  margin-bottom: 6px;
}
.item-details-blocks .list-info ul li span {
  display: inline-block;
  font-weight: 500;
  min-width: 180px;
}



.carousel-control-prev-icon {
  background-image: url(../images/ico-img-left.png);
}
.carousel-control-next-icon {
  background-image: url(../images/ico-img-right.png);
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  width: 2.5rem;
  height: 2.5rem;
}

.carousel-control-next, .carousel-control-prev {
  opacity: .8;
}

.item-details .product-images .camara-paginate{
  background-image: url("../images/camara-pag.png");
  background-repeat: no-repeat;
  padding-left: 40px;
  padding-top: 3px;
  width: 82px;
  height: 30px;
  position: absolute;
  left: 54%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}

@media only screen and (max-width: 1200px){
  .item-details .product-images img {
    height: 400px;
    object-fit: cover;
  }
}

@media only screen and (max-width: 991px){
  .item-details .product-info {
    padding-left: 0;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px){
  .item-details .product-images img {
    height: 300px;
    object-fit: cover;
  }
  .item-details .product-info {
    padding-left: 0;
    margin-top: 30px;
  }
  .item-details .product-info .contact-info ul li {
    margin: 0;
    width: 100%;
  }
  .item-details .product-info .contact-info ul li:last-child {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }
  .item-details .product-info .contact-info ul li:last-child a {
    width: 100%;
  }
  .item-details .product-info .social-share h4 {
    display: block;
    margin-bottom: 15px;
  }
  .item-details-blocks .single-block.comments .single-comment {
    position: relative;
    padding-left: 0;
    margin-top: 30px;
  }
  .item-details-blocks .single-block.comments .single-comment img {
    position: relative;
    margin-bottom: 15px;
  }
  .item-details .product-images .images {
    display: -ms-grid;
    display: grid;
    Grid-template-columns: repeat(4, 1fr);
    Grid-gap: 1em 1em;
    Margin-top: 1em;
  }
  .item-details .product-info .social-share ul li {
    margin-bottom: 8px;
  }
  .item-details .product-info .contact-info ul li .call {
    width: 100%;
  }
  .item-details .product-info .title {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .item-details .top-area {
    background-color: #fff;
    padding: 10px 10px 30px 10px;
    border: 0px;
    border-radius: 6px;
  }

  .item-details .breadcrumbs{
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 420px){
  .item-details .product-images img {
    height: 240px;
    object-fit: cover;
  }
}

 