.dot-progress {
  display: flex;
}

.dot-progress-dot {
  width: 16px;
  height: 16px;
  background: #B7CACE;
  border-radius: 10px;
  margin-top:-10px;
  z-index:1;
}

.dot-progress-dot.active {
  background: #165077;
}

.dot-progress-link {
  border-top: 2px solid #B7CACE;
  margin-top: -3px;
  width:99%;
}

.dot-progress-link-active {
  border-top: 2px solid #165077;
  margin-top: -2px;
  width:0%;
  transition: 0.4s;
}

.dot-progress-link-active.active {
  border-top: 2px solid #165077;
  width:99%;
}

.custom-combo-bubble {
  position:absolute;
  top:-20px;
  left:-5px;
  background-color:#FAE4B8;
  border-radius:50px;
  box-shadow:0px 4px 14px rgba(0, 0, 0, 0.14)
}

.custom-combo-bubble::after {
  position:absolute;
  width: 0;
  height: 0;
  bottom: -7px;
  left:50%;
  margin-left: -5px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #FAE4B8;
  content:""
}

.custom-combo-qty {
  position:absolute;
  top:0px;
  right:0px;
  width:30px;
  height:30px;
  transition: 0.3s;
  border-radius: 9999px;
  box-shadow: 0 0 7px rgb(0 0 0 / 20%);
  background-color: white;
}

.custom-combo-qty.active{
  top:0px;
  right:0px;
  width:125px;
  height:125px;
  border: none;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow:none;
}

.custom-combo-qty.inactive{
  top:0px;
  right:0px;
  width:0px;
  height:0px;
  border: none;
  overflow:hidden;
}

.custom-combo-item-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, 125px);
  justify-content:center;
  column-gap: 44px;
}
