.combo-details {
  background-color: #fff;
  padding: 40px;
  position: relative;
  border-radius: 10px;
  margin-bottom: 20px;
}
.combo-details .header-controls {
  position: relative;
  height: 70px;
}
.combo-details .header-controls>.btIconeRedondo {
  position: absolute;
  left: 0;
  top: 0;
}
.combo-details .header-controls>.btIconeRedondo.transparent {
  position: absolute;
  right: 0;
  top: 0;
  left: unset;
  background-color: transparent;
}
.combo-details .header-controls>.btIconeRedondo.transparent i {
  color: var(--theme-main-color);
  font-size: 28px;
}
.combo-details h1 {
  margin-bottom: 40px;
}
.combo-details .combo-item {
  display: flex;
  width: 100%;
  height: 180px;
  max-height: 180px;
  margin-bottom: 10px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  padding: 15px;
  overflow: hidden;
  position: relative;
  transition: max-height 3s ease;
}
.combo-details .combo-item.open {
  height: auto;
  max-height: 9999px;
}
.combo-details .combo-item .gallery {
  min-width: 150px;
  width: 150px;
  height: 100%;
  margin-right: 20px;
}
.combo-details .combo-item .gallery,
.combo-details .combo-item .gallery>.slick-list,
.combo-details .combo-item .gallery>.slick-list>.slick-track {
  height: 100%;
}
.combo-details .combo-item .gallery img {
  height: 100%;
  max-width: 100%;
  width: 100%;
  object-fit: contain;
}
.combo-details .combo-item .gallery .slick-arrow {
  color: #ccc;
  font-size: 25px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(50% - 16.5px);
}
.combo-details .combo-item .gallery .slick-arrow:hover {
  color: #666;
}
.combo-details .combo-item .basic-info {
  margin-right: 20px;
  position: relative;
  min-width: 250px;
  width: 250px;
}
.combo-details .combo-item .basic-info .breadcrumbs {
  font-weight: normal;
  color: #666;
  margin-bottom: 10px;
}
.combo-details .combo-item .basic-info .breadcrumbs a:hover {
  color: var(--theme-main-color)
}
.combo-details .combo-item .basic-info .breadcrumbs i {
  font-size: 12px;
  margin: 0 1px;
}
.combo-details .combo-item .basic-info .name {
  color: #333;
  font-size: 18px;
  font-weight: bold;
}
.combo-details .combo-item .basic-info .name:hover {
  color: var(--theme-main-color);
}
.combo-details .combo-item .basic-info .price {
  color: var(--verde);
  font-weight: 800;
  font-size: 16px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.combo-details .combo-item .advanced-info .attribute {
  font-size: 14px;
  margin-bottom: 15px;
}
.combo-details .combo-item .advanced-info .description {
  font-size: 14px;
  color: #666;
}
.combo-details .combo-item .advanced-info .description h1,
.combo-details .combo-item .advanced-info .description h2,
.combo-details .combo-item .advanced-info .description h3,
.combo-details .combo-item .advanced-info .description h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}
.combo-details .combo-item .show-more {
  position: absolute;
  width: calc(100% - 30px);
  background: transparent;
  border: 0;
  bottom: 0;
  font-size: 14px;
  text-shadow: 0 0 15px white, 0 0 15px white, 0 0 15px white, 0 0 15px white, 0 0 15px white, 0 0 15px white, 0 0 15px white;
  font-weight: bold;
}
.combo-details .combo-item .show-more i {
  position: relative;
}
.combo-details .combo-item.open .show-more {
  display: none;
}
.combo-details .total-actions {
  display: flex;
  justify-content: space-between;
}
.combo-details .total-actions .price {
  font-size: 18px;
  margin-right: 10px;
}
.combo-details .total-actions .price>p {
  display: flex;
  min-width: 300px;
  justify-content: space-between;
}
.combo-details .total-actions .price .total {
  font-size: 22px;
}
.combo-details .total-actions .price .total span {
  color: var(--verde);
  font-weight: 800;
  font-size: 22px;
}
.combo-details .total-actions .controls>* {
  margin-left: auto;
  margin-bottom: 10px;
}
@media only screen and (max-width: 800px) {
  .combo-details .combo-item {
    flex-wrap: wrap;
    max-height: 300px;
    height: 300px;
  }
  .combo-details .combo-item .gallery {
    height: 150px;
    max-width: calc(50% - 10px);
    margin-right: 10px;
  }
  .combo-details .combo-item .basic-info {
    min-width: unset;
    height: 150px;
    max-width: 50%;
    margin-right: 0;
  }
  .combo-details .combo-item .advanced-info {
    flex: 0 0 100%;
    margin-top: 20px;
  }
  .combo-details .total-actions {
    flex-wrap: wrap;
  }
  .combo-details .total-actions .price,
  .combo-details .total-actions .controls {
    flex: 0 0 100%;
  }
}