<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.carousel {
  position: relative;
  background-color: #ffffff;
  width: 90vw;
}

.carousel-inner {
  position: relative;
  width: 70%;
  overflow: hidden;
  margin: 10px auto;
  border-radius: 10px;
}

.carousel-inner.inner-mobile {
  position: relative;
  width: 90%;
  overflow: hidden;
  margin: 10px auto;
  border-radius: 10px;
}

.carousel-inner-pack-jestmart{
  position: relative;
  width: 80%;
  overflow: hidden;
  margin: 10px auto;
  border-radius: 10px;
}

.carousel-indicators {
  position: relative;
  right: 0;
  bottom: -20%;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.mainCarousel .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.card{
  border-radius: 1.25rem;
  box-shadow: 0px 5px 10px rgba(0.1, 0.1, 0.1, 0.1);
}

.card-title {
  margin-bottom: .75rem;
  font-size: 12px;
}

.card-subtitle{
  font-size: 18px;
  font-weight: bolder;
  line-height: 22px;
  max-height: 44px; /* 2 lines * 22px line-height */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-text{
  font-size: 16px;
  line-height: 20px;
  max-height: 60px; /* 3 lines * 20px line-height */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}


.carousel-item img, .card-img-top{
  vertical-align: middle;
  border-style: none;
  height: 40px;
  min-height: 150px;
  border-radius: 1.25rem 1.25rem 0 0;
}

.carousel-item span{
  vertical-align: middle;
  border-style: none;
  height: 40px;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next, .carousel-control-prev {
  border-radius: 50%;
  max-width: 40px;
  max-height: 40px;
  margin: auto 1%;
  border: 1px solid #ccc; /* Establece un borde sólido de color gris */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-control-prev-icon:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-control-next.arrow-pack-jestmart, .carousel-control-prev.arrow-pack-jestmart {
  top:40%;
}

.carousel-control-next:hover, .carousel-control-prev:hover {
  background-color: #263F6A;
}

.carousel-item {
 /*  padding-top: 6%;
  padding-bottom: 6%; */
  /* position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: -webkit-transform .6s ease-in-out;
  transition: transform .6s ease-in-out;
  transition: transform .6s ease-in-out,-webkit-transform .6s ease-in-out; */
}

.carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  margin-left: 6px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #00ACC5;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity .6s ease;
}

.carousel-indicators .active {
  width: 30px;
  border-top: 1px solid transparent; 
  border-bottom: 1px solid transparent; 
  border-left: none; 
  border-right: none; 
  border-top-left-radius: 20px;
  border-top-right-radius: 20px; 
  border-bottom-left-radius: 20px; 
  border-bottom-right-radius: 20px;
  margin-top: 9px; 
  margin-bottom: 20px;
}



@media (min-width:576px){
  .carousel-inner {
    width: 80%;
  }
}

@media (min-width:1000px){
  .carousel-inner {
    width: 90%;
  }
}
@media (min-width:1001px) and (max-width: 1300px){
  .carousel-inner {
    width: 95%;
  }
}</pre></body></html>