.card-loyalty {
  background-image: url(/assets/images/reward.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.card-loyalty .card-body {
  background-image: url(/assets/images/multi-coins.svg);
  background-position: right center;
  background-size: auto 100%;
  background-repeat: no-repeat;
}
.card-loyalty .for-text {
  max-width: 150px;
}

.point-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  border: 1px solid var(--neutral-70);
  border-radius: 8px;
  padding: 8px 10px;
  font-weight: 600;
  font-size: 14px;
}

.daily-card {
  background-image: url(/assets/images/reward-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.daily-card.blue {
  background-image: url(/assets/images/module-project/bg-loyalti.svg);
  background-size: cover;
  background-position: top;
}
.daily-card.digital-stamps {
  background-image: url(/assets/images/module-project/digital-stamps-bg.svg);
  background-size: cover;
  background-position: top;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.voucher-panel-list {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--neutral-20);
  height: 122px;
  display: flex;
}
.voucher-panel-list .left-panel {
  height: 100%;
  width: 126px;
  border-right: 1px dashed var(--neutral-20);
}
.voucher-panel-list .right-panel {
  height: 100%;
  width: 100%;
  display: flex;
}
.voucher-panel-list .right-panel .content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.voucher-panel-list .right-panel .content .bottom {
  display: flex;
  justify-content: end;
}

.redeem-top {
  background-image: url(/assets/images/module-project/redeem-top-bg.svg);
  background-size: cover;
  background-position: center;
  height: 44px;
  width: 100%;
}

.redeem-content .top {
  display: flex;
  gap: 10px;
  border-bottom: 1px dashed var(--neutral-20);
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.redeem-content .top .img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
}
.redeem-content .top .img img {
  width: 100%;
}

.daily-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.daily-timeline .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.daily-timeline .item:before {
  content: "";
  width: 26px;
  min-width: 26px;
  max-width: 26px;
  position: absolute;
  top: 14px;
  left: -28px;
  min-height: 1px;
  height: 1px;
  max-height: 1px;
  background: var(--neutral-30);
}
.daily-timeline .item.done:before {
  background: var(--primary);
}
.daily-timeline .item:first-child:before {
  content: unset;
}
.daily-timeline .item i {
  height: 31.6px;
  display: flex;
  align-items: center;
}
.daily-timeline .item span {
  width: 29.1px;
  height: 29.1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--neutral-30);
  border-radius: 100%;
}

.stamp-content {
  background: linear-gradient(178deg, #FFF 64.72%, #E8F4FF 93.03%);
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.stamp-content .stamp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.stamp-content .stamp-list .item {
  width: calc(20% - 20px);
  height: 60px;
  border: 1px solid #E6E6E4;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.stamp-content .stamp-list .item.stamped {
  border-color: #69B1FF;
  background: #E6F4FF;
}
.stamp-content .stamp-list .item .stamp-float {
  position: absolute;
  top: -7px;
  right: -7px;
  color: #16A163;
  border: 1px solid white;
  border-radius: 100%;
  padding: 0;
  background: white;
}
.stamp-content .stamp-progress {
  box-shadow: 0px 0.25px 1px 0px rgba(26, 25, 25, 0.04), 0px 0.85px 4px 0px rgba(26, 25, 25, 0.16);
  padding: 15px 20px;
  border-radius: 6px;
  background: white;
}
.stamp-content .stamp-progress .stamp-line {
  background: rgba(26, 25, 25, 0.0784313725);
  width: 100%;
  height: 4px;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
}

.reward-list .rewards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reward-list .rewards .item {
  display: flex;
  gap: 20px;
  padding: 15px;
  border: 1px solid var(--neutral-20);
  border-radius: 6px;
  text-decoration: none;
}
.reward-list .rewards .item .icon {
  height: 40px;
  width: 40px;
  min-width: 40px;
  background: #E6F4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}