.icon-cart svg {
  width: 20px;
}.checkbox-child .child-container {
  height: 0;
  transition: all 0.4s;
  overflow: hidden;
}
.checkbox-child .child-container.active {
  height: fit-content;
  transition: all 0.4s;
}
.checkbox-child .btn-child {
  cursor: pointer;
  position: absolute;
  right: 0;
  height: 100%;
}
.checkbox-child .btn-child i {
  transition: all 0.4s;
}
.checkbox-child .btn-child.opened i {
  transform: rotate(180deg);
  transition: all 0.4s;
}