.m-cart-drawer__custom-cart-gifts {
  margin: 0 2.5rem;
  padding: 1.5rem 0 2rem;
  --gift-color: #7aa59e;
}
.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: 3.7rem;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--gift-color);
  z-index: 1;
}
.m-cart-drawer__custom-cart-gifts-list-progress {
  z-index: 2;
  border-bottom: 2px solid #003B36;
  width: 0%;
  height: 1px;
  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.2rem;
  line-height: 1.4rem;
  font-weight: 400;
  margin: 1.9rem 0 0;
  text-decoration: underline;
}

.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 img {
  opacity: 0.5;
}
.m-cart-drawer__custom-cart-gift-check {
  border: 1px solid var(--gift-color);
  color: var(--gift-color);
  background-color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-cart-drawer__custom-cart-gift-check svg {
  display: none;
}
.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--active img {
  opacity: 1;
}
.m-cart-drawer__custom-cart-gift--active {
  --gift-color: #003B36;
}
.m-cart-drawer__custom-cart-gift--active .m-cart-drawer__custom-cart-gift-check {
  border: 2px solid #003B36;
}
.m-cart-drawer__custom-cart-gift--active .m-cart-drawer__custom-cart-gift-check svg {
  display: block;
}
.m-cart-drawer__custom-cart-gift--active .m-cart-drawer__custom-cart-gift-check svg path {
  stroke-width: 0.5px;
  stroke: currentColor;
}
