.m-cart-drawer__custom-cart-gifts {
  margin: 0 2.5rem;
  padding: 1.5rem 0 1rem;
  --gift-color: #003B36;
}
.m-cart-drawer__custom-cart-gifts-list {
  display: flex;
  position: relative;
}
.m-cart-drawer__custom-cart-gifts-list-line, .m-cart-drawer__custom-cart-gifts-list-progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 0.8rem;
  width: 100%;
  height: 0.85rem;
  background-color: #EFEFEF;
  z-index: 1;
  border-radius: 2rem;
}
.m-cart-drawer__custom-cart-gifts-list-progress {
  z-index: 2;
  background-color: #00ea93;
  width: 0%;
  transition: width 0.3s ease-in-out;
}
.m-cart-drawer__custom-cart-gifts-title {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.m-cart-drawer__custom-cart-gifts-next-step {
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 400;
  margin: 1.5rem 0 0 !important;
  text-align: center;
}
.m-cart-drawer__custom-cart-gifts-next-step b {
  font-weight: 600;
}

.m-cart-drawer__custom-cart-gift {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  position: relative;
  z-index: 5;
}
.m-cart-drawer__custom-cart-gift-check {
  border: 0.5px solid var(--gift-color);
  color: var(--gift-color);
  background-color: #EFEFEF;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.m-cart-drawer__custom-cart-gift-title {
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 400;
  margin-bottom: 0rem;
  text-align: center;
  color: var(--gift-color);
}
.m-cart-drawer__custom-cart-gift-title p {
  margin: 0;
}
.m-cart-drawer__custom-cart-gift--active .m-cart-drawer__custom-cart-gift-check {
  background-color: #00ea93;
}
