.coupon-box[data-v-c1c17aa9] {
  border: 1px solid var(--gj-border-color);
  background: var(--gj-bg-color);
  color: #566C7B;
  font-size: 13px;
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px 0 6px;
}
.coupon-box.cursor-pointer[data-v-c1c17aa9] {
  cursor: pointer;
}
@media (min-width: 768px) {
.coupon-box[data-v-c1c17aa9] {
    background: #F9F9F9;
    font-size: 11px;
}
}
.coupon-box.selected[data-v-c1c17aa9] {
  color: var(--gj-text-color);
}
.coupon-box .c-icon.is-stroke-right[data-v-c1c17aa9] {
  transform: rotate(90deg);
  transition: transform 0.2s;
}
.coupon-box .c-icon.is-stroke-right.open[data-v-c1c17aa9] {
  transform: rotate(-90deg);
}
.coupon-box.selected[data-v-c1c17aa9] {
  color: var(--gj-text-color);
}
.coupon-box.selected .c-icon.is-coupon[data-v-c1c17aa9] {
  color: var(--gj-color-blue);
}
.price-radio-box[data-v-c1c17aa9] {
  padding: 16px 15px;
  border: 1px solid var(--gj-border-color);
  display: flex;
  gap: 8px;
}
.price-radio-box[data-v-c1c17aa9]:not(:first-child) {
  border-top: none;
}
.price-radio-box.no-top-border[data-v-c1c17aa9] {
  border-top: none;
}
.price-radio-box .custom-radio[data-v-c1c17aa9] {
  flex: 0 0 auto;
  appearance: none;
  border: 1px solid #b7c5cb;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  position: relative;
  opacity: 1;
  cursor: pointer;
  pointer-events: unset;
}
.price-radio-box .custom-radio[data-v-c1c17aa9]:checked {
  border-color: var(--gj-color-blue);
}
.price-radio-box .custom-radio[data-v-c1c17aa9]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--gj-color-blue);
}
.price-radio-box label[data-v-c1c17aa9] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 130%;
  gap: 2px;
  color: var(--gj-text-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  flex: 1 1 auto;
}
.price-radio-box label .coupon-title[data-v-c1c17aa9] {
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}
.price-radio-box label .coupon-detail[data-v-c1c17aa9] {
  color: var(--gj-text-color-light);
  font-size: 11px;
  font-weight: 300;
  line-height: 130%;
}
.price-radio-box label .coupon-detail.alert[data-v-c1c17aa9] {
  font-size: 10px;
  color: var(--gj-color-red);
}
.price-radio-box label .discount-rate[data-v-c1c17aa9] {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-radio-box label .now-sale[data-v-c1c17aa9] {
  color: var(--gj-color-pink);
  font-size: 11px;
  font-weight: 600;
  line-height: 130%;
}.overlay {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1045;
  transition: all 0.5s ease;
  text-align: center;
  font-weight: bold;
}
.panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 8px 24px 24px 24px;
}
.panel .icon-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: -8px;
  width: 100%;
}
.panel .icon-wrapper .c-icon {
  transform: translate(16px, 0px);
}
.panel .panel-title {
  color: #202830;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}
.panel .panel-message {
  color: #202830;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 130%;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
.panel {
    top: 50%;
}
}
.modal-enter,
.modal-leave-active {
  opacity: 0;
}
.modal-enter .panel,
.modal-leave-active .panel {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}