@charset "UTF-8";
* {
  font-size: 14px; }

:root {
  --color-background: #f5f5f5;
  --color-accent: #000000;
  --color-accent-text: #ffffff;
  --color-container: #ffffff;
  --color-header: #ffffff;
  --color-text-header: #171717;
  --color-input-label: rgba(23, 23, 23, 0.53);
  --color-border-default: rgba(23, 23, 23, 0.14);
  --color-text: #171717;
  --color-input: #ffffff;
  --radius-main: 16px;
  --radius-sm: 8px;
  --radius-xs: 4px;
  --box-shadow: 0px -1px 2px 0px rgba(0, 0, 0, 0.04), 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  --vh: 3.7px; }

@media (min-width: 1200px) {
  .container {
    max-width: 1032px; } }

.header-checkout {
  padding: 8px 0; }
  .header-checkout img, .header-checkout svg {
    height: 60px; }

#confirm_address {
  height: 40px;
  line-height: 40px;
  border: none;
  background: var(--color-accent);
  color: var(--color-accent-text);
  font-weight: 700;
  border-radius: 8px;
  padding: 0 20px;
  min-width: 200px; }

.w-checkout {
  background: var(--color-background);
  padding: 12px 0 50px; }
  .w-checkout .container .d-flex {
    gap: 24px; }
    .w-checkout .container .d-flex .column-left {
      flex: 0 0 auto;
      width: 57%; }
    .w-checkout .container .d-flex .column-right {
      flex: 0 0 auto;
      width: calc(43% - 24px); }
    @media (max-width: 767px) {
      .w-checkout .container .d-flex .column-left, .w-checkout .container .d-flex .column-right {
        width: 100%; } }
  @media (max-width: 767px) {
    .w-checkout .container {
      padding: 0; } }

.customer-logged {
  display: flex;
  gap: 15px;
  width: 100%; }
  .customer-logged .avatar-customer {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center; }
    .customer-logged .avatar-customer svg {
      width: 80%;
      height: 80%;
      fill: #fff; }
  .customer-logged .info-customer {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 45px); }

.item-step, .column-right {
  display: flex;
  flex-direction: column;
  gap: 16px; }
  .item-step > div, .column-right > div {
    padding: 20px;
    background: #fff;
    box-shadow: var(--box-shadow); }
    @media (min-width: 768px) {
      .item-step > div, .column-right > div {
        border-radius: 16px; } }

.title_block {
  font-weight: bold;
  font-size: 16px; }

.title_mb_15 {
  margin-bottom: 15px; }

.group-account-customer {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .group-account-customer a {
    display: inline-block;
    padding: 0 16px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    background: rgba(23, 23, 23, 0.08);
    border-radius: 8px;
    height: 40px;
    line-height: 40px; }
  @media (max-width: 767px) {
    .group-account-customer {
      gap: 12px; }
      .group-account-customer a {
        min-width: 104px;
        padding: 0;
        text-align: center; } }

.group-info-shipping label {
  display: none; }

.group-info-shipping .input-field {
  width: 100%;
  min-height: 48px;
  margin: 6px 0;
  border-radius: 8px;
  border: 1px solid var(--color-border-default);
  padding: 0 12px; }

.wrapper-shipping-method .empty-shipping {
  background: rgba(23, 23, 23, 0.05);
  color: rgba(23, 23, 23, 0.45);
  border: 1px solid rgba(23, 23, 23, 0.45);
  border-radius: 8px;
  padding: 0 12px;
  min-height: 40px;
  line-height: 40px; }
  @media (max-width: 767px) {
    .wrapper-shipping-method .empty-shipping {
      line-height: 20px;
      padding: 8px 12px; } }

.list-payment-method label, .list-shipping-method label {
  display: block; }
  .list-payment-method label:first-child > span, .list-payment-method label:first-child > .wrap-ship, .list-shipping-method label:first-child > span, .list-shipping-method label:first-child > .wrap-ship {
    border-radius: 8px 8px 0 0;
    border-bottom: none; }
  .list-payment-method label:last-child > span, .list-payment-method label:last-child > .wrap-ship, .list-shipping-method label:last-child > span, .list-shipping-method label:last-child > .wrap-ship {
    border-radius: 0 0 8px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14) !important; }
  .list-payment-method label:not(:first-child, :first-child) > span, .list-payment-method label:not(:first-child, :first-child) > .wrap-ship, .list-shipping-method label:not(:first-child, :first-child) > span, .list-shipping-method label:not(:first-child, :first-child) > .wrap-ship {
    border-bottom: none; }
  .list-payment-method label input, .list-shipping-method label input {
    display: none; }
  .list-payment-method label > span, .list-payment-method label > .wrap-ship, .list-shipping-method label > span, .list-shipping-method label > .wrap-ship {
    border: 1px solid rgba(0, 0, 0, 0.14);
    width: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px; }
    .list-payment-method label > span:before, .list-payment-method label > .wrap-ship:before, .list-shipping-method label > span:before, .list-shipping-method label > .wrap-ship:before {
      content: '';
      display: inline-block;
      border: 5px solid var(--color-border-default);
      border-radius: 50%;
      background: #fff;
      width: 20px;
      height: 20px; }
  .list-payment-method label > .wrap-ship > span, .list-shipping-method label > .wrap-ship > span {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between; }
  .list-payment-method label input:checked + span, .list-payment-method label input:checked + .wrap-ship, .list-shipping-method label input:checked + span, .list-shipping-method label input:checked + .wrap-ship {
    border: 1px solid #000 !important; }
    .list-payment-method label input:checked + span:before, .list-payment-method label input:checked + .wrap-ship:before, .list-shipping-method label input:checked + span:before, .list-shipping-method label input:checked + .wrap-ship:before {
      border: 5px solid #000; }

.product-list {
  padding: 16px 0 0; }
  .product-list .item-product {
    padding: 8px 0; }
    .product-list .item-product .item-left {
      display: flex;
      gap: 12px; }
      .product-list .item-product .item-left .box-img {
        flex: 0 0 auto;
        width: 54px;
        height: 54px;
        border-radius: 8px;
        border: 1px solid var(--color-border-default);
        overflow: hidden; }
        .product-list .item-product .item-left .box-img img {
          max-width: 100%; }
      .product-list .item-product .item-left .box-info h4 {
        font-size: 14px;
        font-weight: normal;
        color: var(--color-text); }
      .product-list .item-product .item-left .box-info .variant {
        display: inline-block;
        padding: 5px 12px;
        color: #000;
        font-weight: normal;
        background: rgba(23, 23, 23, 0.08);
        border-radius: 8px;
        margin-bottom: 8px; }
      .product-list .item-product .item-left .box-info .info_khac {
        font-size: 12px;
        color: var(--color-text); }
      .product-list .item-product .item-left .box-info .item-price {
        font-weight: 500; }
      .product-list .item-product .item-left .box-info .item-action {
        display: inline-flex; }
        .product-list .item-product .item-left .box-info .item-action button {
          width: 28px;
          height: 28px;
          background: none;
          border: 1px solid var(--color-border-default);
          text-align: center;
          line-height: 28px; }
          .product-list .item-product .item-left .box-info .item-action button.minus {
            border-radius: 8px 0 0 8px; }
          .product-list .item-product .item-left .box-info .item-action button.plus {
            border-radius: 0 8px 8px 0; }
          .product-list .item-product .item-left .box-info .item-action button svg {
            width: 14px;
            height: 14px; }
        .product-list .item-product .item-left .box-info .item-action .item-quantity {
          width: 60px;
          border: 1px solid var(--color-border-default);
          text-align: center;
          line-height: 25px;
          border-left: 0;
          border-right: 0; }

.head-voucher {
  display: flex;
  border-radius: 8px;
  border: 1px solid #d4d4d4;
  padding: 8px 12px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px; }
  .head-voucher .head-voucher--icon svg {
    width: 20px;
    height: 20px;
    fill: var(--color-input-label); }
  .head-voucher .head-voucher--icon span {
    color: var(--color-input-label); }
  .head-voucher .head-voucher--right svg {
    transform: rotate(-90deg); }

#form-discount {
  display: flex;
  gap: 12px;
  justify-content: space-between; }
  #form-discount input {
    width: calc(100% - 92px);
    border-radius: 8px;
    padding: 8px 12px;
    border: 1px solid #d4d4d4; }
    #form-discount input:hover, #form-discount input:focus {
      border-color: var(--color-accent); }
  #form-discount button {
    display: inline-block;
    padding: 0;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    background: #000;
    border-radius: 8px;
    height: 40px;
    line-height: 40px;
    width: 80px;
    border: none; }

.error-coupon {
  color: red;
  font-size: 14px;
  margin: 0 0 15px 0; }

.success-coupon {
  color: green;
  font-size: 14px;
  margin: 0 0 15px 0; }

.row-total {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .row-total:not(:last-child) {
    margin-bottom: 8px; }
  .row-total.line-promotion {
    align-items: flex-end; }
    .row-total.line-promotion .title-line > span {
      display: block;
      margin-bottom: 8px; }
    .row-total.line-promotion .group-code-promo .code-apply {
      margin-left: 15px;
      color: var(--color-input-label);
      display: inline-flex;
      gap: 5px;
      align-items: center;
      background: var(--color-border-default);
      padding: 0 8px;
      border-radius: 4px; }

.code-clear, .redeem-clear {
  /*width: 17px; height: 17px;*/
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  padding: 4px;
  cursor: pointer;
  background: #fff; }
  .code-clear img, .redeem-clear img {
    width: 15px;
    height: 15px; }

.list_applied {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }
  .list_applied .code-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    border: 1px solid var(--color-border-default);
    border-radius: 8px; }
    .list_applied .code-clear--voucher {
      background: #ffedd6;
      display: inline-flex;
      width: 28px;
      height: 28px;
      justify-content: center;
      align-items: center;
      border-radius: 8px 0 0 8px; }
    .list_applied .code-clear--code {
      font-size: 12px;
      padding: 0 8px;
      border-right: 1px dashed var(--color-border-default); }
    .list_applied .code-clear--icon {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 28px;
      height: 28px; }

.action-bottom {
  position: relative;
  gap: 0 !important;
  align-items: center; }

.action-bottom.one-step {
  margin-top: 16px;
  justify-content: space-between !important; }

p.notice {
  margin: 8px 0 0;
  color: #f00; }

#checkout_complete_2 {
  width: 100%;
  height: 40px;
  line-height: 40px;
  border: none;
  background: var(--color-accent);
  color: var(--color-accent-text);
  font-weight: 700;
  border-radius: 8px;
  margin-top: 16px; }
  #checkout_complete_2.disabled {
    background: rgba(0, 0, 0, 0.4);
    margin-bottom: 40px; }
    #checkout_complete_2.disabled:after {
      content: "Đơn hàng vượt quá công nợ cho phép";
      color: #f00;
      font-weight: 500;
      position: absolute;
      left: 0;
      width: 100%;
      bottom: 0;
      text-align: center;
      opacity: 1; }
    #checkout_complete_2.disabled.disabled2 {
      margin-bottom: 50px; }
      #checkout_complete_2.disabled.disabled2:after {
        content: "Giỏ hàng của bạn hiện chưa đạt mức tối thiểu để thanh toán.";
        line-height: 20px; }
      @media (max-width: 767px) {
        #checkout_complete_2.disabled.disabled2 {
          margin-bottom: 40px; } }
  #checkout_complete_2[disabled] {
    background: rgba(0, 0, 0, 0.4); }

#popup-confirm-properties h3 {
  font-size: 16px;
  padding-right: 30px;
  margin-bottom: 30px; }

#popup-confirm-properties .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: -14px;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0; }
  #popup-confirm-properties .close svg {
    height: 50%; }

#popup-confirm-properties ul {
  list-style: none;
  padding-left: 0; }
  #popup-confirm-properties ul:not(:last-child) {
    padding-bottom: 15px;
    border-bottom: 1px solid #bababa; }
  #popup-confirm-properties ul input {
    margin-right: 8px; }

#popup-confirm-properties #btn-confirm-properties {
  background: #820813;
  color: #fff; }

.loading-ovl {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0; }
  .loading-ovl.open {
    visibility: visible;
    opacity: 1; }
  .loading-ovl .load-3 .line:nth-last-child(1) {
    animation: loadingC .6s .1s linear infinite; }
  .loading-ovl .load-3 .line:nth-last-child(2) {
    animation: loadingC .6s .2s linear infinite; }
  .loading-ovl .load-3 .line:nth-last-child(3) {
    animation: loadingC .6s .3s linear infinite; }
  .loading-ovl .load-3 .line {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background-color: #222; }

@keyframes loadingC {
  0 {
    transform: translate(0, 0); }
  50% {
    transform: translate(0, 15px); }
  100% {
    transform: translate(0, 0); } }

#noti-modal {
  width: 500px;
  padding: 30px;
  border-radius: 4px;
  text-align: center; }
  #noti-modal .head-modal {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px 0; }

.swal2-container {
  z-index: 10000; }

#layout-checkout ~ .swal2-container .swal2-confirm {
  background: #820813 !important; }

#layout-checkout ~ .swal2-container #swal2-html-container h4 {
  text-transform: uppercase; }

#layout-checkout ~ .swal2-container #swal2-html-container p {
  font-size: 14px;
  line-height: 20px;
  text-align: left; }

#layout-checkout ~ .swal2-container button.swal2-styled {
  text-transform: uppercase; }

#modalCoupon .modal-header {
  background: #820813;
  color: #fff;
  position: relative; }
  #modalCoupon .modal-header .close {
    background: transparent;
    border: none;
    color: #fff;
    position: absolute;
    top: 8px;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 32px;
    line-height: 32px; }

#modalCoupon .coupon-row {
  display: flex;
  column-gap: 30px; }
  #modalCoupon .coupon-row .code {
    font-weight: 700; }
  #modalCoupon .coupon-row .coupon-info {
    width: 100%;
    padding-left: 30px;
    margin-top: 10px;
    margin-bottom: 30px; }

#modalCoupon .coupon_copy {
  background: #820813;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500; }

/* MODAL */
.modal .modal-content {
  border-radius: 0;
  padding: 0 30px; }
  .modal .modal-content .modal-header {
    border-radius: 0;
    border-bottom: 1px solid #d0d1d2;
    padding: 20px 0;
    align-items: center; }
    .modal .modal-content .modal-header h4 {
      font-size: 18px;
      text-transform: uppercase;
      margin-bottom: 0; }
    .modal .modal-content .modal-header .close {
      margin: 0;
      opacity: 1;
      padding: 4px 0;
      outline: none;
      background: transparent;
      border: none; }
    .modal .modal-content .modal-header svg {
      width: 20px;
      height: 20px; }
  .modal .modal-content .modal-body {
    padding: 20px 0;
    font-size: 12px; }
  .modal .modal-content .modal-footer {
    padding: 0 0 20px;
    gap: 20px;
    border-top: none; }
    .modal .modal-content .modal-footer button {
      margin: 0; }

.modal.modal-coupon .modal-dialog {
  position: relative; }

.modal.modal-coupon .modal-content {
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 40px);
  overflow: hidden;
  -ms-overflow-y: visible;
  padding: 0; }

.modal.modal-coupon .modal-header {
  padding: 12px 16px;
  justify-content: center;
  position: relative; }
  .modal.modal-coupon .modal-header .close {
    position: absolute;
    right: 16px;
    top: 0;
    width: 46px;
    height: 46px; }
  .modal.modal-coupon .modal-header .close_detail_coupon {
    position: absolute;
    left: 16px;
    top: 50%;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    transform: translateY(-50%) rotate(90deg); }

.modal.modal-coupon .modal-body {
  padding: 0;
  -webkit-overflow-scrolling: touch;
  flex-grow: 1;
  flex-shrink: 1;
  overflow: auto; }

.modal.modal-coupon .modal-footer {
  padding: 0 16px; }

.modal.modal-coupon .hrv-coupons--box {
  padding-bottom: 12px; }
  .modal.modal-coupon .hrv-coupons--box .hrv-coupons--title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    width: 100%;
    color: #424242; }
  .modal.modal-coupon .hrv-coupons--box .hrv-coupons--input {
    padding: 16px 0; }
    .modal.modal-coupon .hrv-coupons--box .hrv-coupons--input .hrv-discount-code--field {
      display: flex;
      border: 1px solid #f5f6f6;
      background: #f5f6f6;
      border-radius: 2px; }
    .modal.modal-coupon .hrv-coupons--box .hrv-coupons--input input {
      padding: 2px 16px;
      height: 40px;
      background: #f5f6f6;
      border: none;
      width: calc(100% - 95px);
      outline: none;
      box-shadow: none;
      border-radius: 0;
      border-radius: 2px 0 0 2px; }
      .modal.modal-coupon .hrv-coupons--box .hrv-coupons--input input::placeholder {
        font-size: 12px; }
    .modal.modal-coupon .hrv-coupons--box .hrv-coupons--input button {
      width: 95px;
      height: 40px;
      padding: 0 2px;
      border-radius: 0 2px 2px 0; }
    .modal.modal-coupon .hrv-coupons--box .hrv-coupons--input .error-coupon {
      color: red;
      font-size: 14px;
      margin: 0 0 15px 0; }
    .modal.modal-coupon .hrv-coupons--box .hrv-coupons--input .success-coupon {
      color: green;
      font-size: 14px;
      margin: 0 0 15px 0; }
  .modal.modal-coupon .hrv-coupons--box .hrv-coupons--notify {
    padding: 0 0 16px;
    text-align: center;
    font-size: 12px;
    color: #E30019; }
  .modal.modal-coupon .hrv-coupons--box .hrv-coupons--notify p {
    margin-bottom: 0; }
  .modal.modal-coupon .hrv-coupons--box .hrv-coupons--list .coupon-item {
    margin: 16px 16px; }
  .modal.modal-coupon .hrv-coupons--box .hrv-coupons--list .coupon-item.isSelect .coupon-item--inner {
    background: rgba(217, 32, 70, 0.07);
    border: 1px solid rgba(217, 32, 70, 0.5); }
  .modal.modal-coupon .hrv-coupons--box .hrv-coupons--list .coupon-item.isSelect .coupon-item--inner:before, .modal.modal-coupon .hrv-coupons--box .hrv-coupons--list .coupon-item.isSelect .coupon-item--inner:after {
    border-color: rgba(217, 32, 70, 0.5); }
  .modal.modal-coupon .hrv-coupons--box .hrv-coupons--list .coupon-item.notCondition .coupon-item--inner {
    filter: grayscale(1);
    opacity: 0.65;
    cursor: default;
    pointer-events: none; }
  .modal.modal-coupon .hrv-coupons--box .hrv-coupons--list .line-last {
    margin-top: 16px; }
  .modal.modal-coupon .hrv-coupons--box .hrv-coupons--empty {
    padding: 80px 16px;
    gap: 16px; }
    .modal.modal-coupon .hrv-coupons--box .hrv-coupons--empty .text-bodym {
      width: 100%;
      text-align: center; }
  .modal.modal-coupon .hrv-coupons--box #btn-show-all-coupon {
    width: 100%;
    color: #1982F9;
    font-size: 16px;
    background: transparent;
    border: none; }
    .modal.modal-coupon .hrv-coupons--box #btn-show-all-coupon svg {
      width: 10px;
      position: relative;
      margin-left: 8px; }
    .modal.modal-coupon .hrv-coupons--box #btn-show-all-coupon:focus {
      outline: none; }
    .modal.modal-coupon .hrv-coupons--box #btn-show-all-coupon.open svg {
      transform: rotate(180deg);
      display: inline-block; }
  .modal.modal-coupon .hrv-coupons--box::-webkit-scrollbar {
    width: 2px;
    background-color: transparent; }
  .modal.modal-coupon .hrv-coupons--box::-webkit-scrollbar-thumb {
    background-color: #e0e0e0;
    border-radius: 4px; }

.modal.modal-coupon .hrv-coupons--box-desc .coupon-detail--header {
  text-align: center;
  padding: 15px 10px;
  font-weight: bold; }

.modal.modal-coupon .modal-footer {
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08), 0 -1px 2px rgba(0, 0, 0, 0.04); }
  .modal.modal-coupon .modal-footer #close_popup_coupon {
    width: 100%;
    background: #ededed;
    height: 40px; }
  .modal.modal-coupon .modal-footer .popup_coupons_action {
    width: 100%; }
    .modal.modal-coupon .modal-footer .popup_coupons_action #popup_apply_coupons {
      background: #820813;
      color: #fff;
      width: 120px;
      height: 50px;
      text-align: center; }

@media (min-width: 768px) {
  .modal.modal-coupon .modal-dialog {
    max-width: 500px; } }

@media (max-width: 767px) {
  .modal.modal-coupon .modal-content {
    padding: 0; }
    .modal.modal-coupon .modal-content .modal-header {
      padding: 12px 16px; }
    .modal.modal-coupon .modal-content .modal-footer {
      padding: 12px 16px; } }

.coupon-initial .coupon-item {
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.1)); }
  .coupon-initial .coupon-item--inner {
    background: #fff;
    display: flex;
    display: -ms-flex;
    border-radius: 10px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative; }
    .coupon-initial .coupon-item--inner:after, .coupon-initial .coupon-item--inner:before {
      content: "";
      width: 10px;
      height: 6px;
      left: 75px;
      position: absolute;
      z-index: 10;
      border: 1px solid #e3e3e3;
      background: #f5f5f5; }
    .coupon-initial .coupon-item--inner:before {
      top: -1px;
      border-top: 0;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px; }
    .coupon-initial .coupon-item--inner:after {
      bottom: -1px;
      border-bottom: 0;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px; }
  .coupon-initial .coupon-item--left {
    width: 80px;
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center; }
    .coupon-initial .coupon-item--left .cp-img {
      border-radius: 50px;
      margin: auto; }
      .coupon-initial .coupon-item--left .cp-img span {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(217, 31, 70, 0.3); }
      .coupon-initial .coupon-item--left .cp-img svg {
        width: 30px;
        height: 30px; }
  .coupon-initial .coupon-item--right {
    width: calc(100% - 80px);
    position: relative;
    display: flex;
    display: -ms-flex;
    flex-direction: column;
    -ms-flex-direction: column;
    justify-content: space-between;
    -ms-justify-content: space-between;
    padding: 12px 50px 12px 12px; }
    .coupon-initial .coupon-item--right .cp-icon {
      background: transparent;
      border: 0;
      outline: none;
      cursor: pointer;
      position: absolute;
      z-index: 1;
      top: 12px;
      right: 12px;
      padding: 0;
      cursor: pointer; }
    .coupon-initial .coupon-item--right .cp-top {
      padding-bottom: 8px;
      padding-right: 24px; }
      .coupon-initial .coupon-item--right .cp-top h3 {
        margin: 0 0 4px;
        font-size: 13px;
        font-weight: 600; }
      .coupon-initial .coupon-item--right .cp-top ul {
        font-size: 11px;
        margin-bottom: 0;
        padding-left: 0; }
      .coupon-initial .coupon-item--right .cp-top p {
        font-size: 11px;
        margin-bottom: 0; }
    .coupon-initial .coupon-item--right .cp-bottom {
      display: flex;
      display: -ms-flex;
      justify-content: space-between;
      -ms-justify-content: space-between; }
      .coupon-initial .coupon-item--right .cp-bottom .cp-bottom-btn {
        display: flex;
        display: -ms-flex;
        outline: none;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%); }
      .coupon-initial .coupon-item--right .cp-bottom .detail_coupon {
        border: none;
        background: transparent;
        color: #0c57d0;
        font-weight: 700;
        font-size: 12px; }
      .coupon-initial .coupon-item--right .cp-bottom p {
        font-size: 10px;
        margin-bottom: 0; }
      .coupon-initial .coupon-item--right .cp-bottom p strong {
        letter-spacing: 0.4px;
        font-size: 14px; }
      .coupon-initial .coupon-item--right .cp-bottom .button {
        padding: 0;
        border-radius: 50%;
        margin-top: auto;
        border: none;
        outline: none;
        background: transparent;
        width: 40px;
        height: 40px; }
        .coupon-initial .coupon-item--right .cp-bottom .button svg:first-child {
          fill: #000; }
        .coupon-initial .coupon-item--right .cp-bottom .button svg:last-child {
          display: none; }
        .coupon-initial .coupon-item--right .cp-bottom .button.disabled {
          opacity: 0.6;
          cursor: default;
          pointer-events: none; }
    .coupon-initial .coupon-item--right ul {
      list-style: none; }
  .coupon-initial .coupon-item.copied .coupon-item--right .cp-btn {
    pointer-events: none; }
  .coupon-initial .coupon-item.coupon-omni {
    background: #fff;
    border-radius: 10px;
    filter: drop-shadow(0px 0px 6px rgba(225, 225, 225, 0.1)); }
    .coupon-initial .coupon-item.coupon-omni .coupon-item--inner {
      border: 0.5px solid #3415aa; }
      .coupon-initial .coupon-item.coupon-omni .coupon-item--inner:after, .coupon-initial .coupon-item.coupon-omni .coupon-item--inner:before {
        border: 0.5px solid #3415aa;
        background: #f6f6f6;
        width: 20px;
        height: 10px;
        left: 100px; }
      .coupon-initial .coupon-item.coupon-omni .coupon-item--inner:after {
        border-bottom: 0;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px; }
      .coupon-initial .coupon-item.coupon-omni .coupon-item--inner:before {
        border-top: 0;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px; }
    .coupon-initial .coupon-item.coupon-omni .coupon-item--left {
      width: 110px;
      border-right: 1px dashed #3415aa; }
      .coupon-initial .coupon-item.coupon-omni .coupon-item--left .cp-img span {
        width: 72px;
        height: 72px; }
    .coupon-initial .coupon-item.coupon-omni .coupon-item--right {
      width: calc(100% - 110px);
      padding: 12px 12px 12px 25px; }
      .coupon-initial .coupon-item.coupon-omni .coupon-item--right .cp-top {
        padding-bottom: 16px;
        padding-right: 0; }
        .coupon-initial .coupon-item.coupon-omni .coupon-item--right .cp-top h3 {
          font-size: 16px; }
        .coupon-initial .coupon-item.coupon-omni .coupon-item--right .cp-top p {
          font-size: 12px; }
      .coupon-initial .coupon-item.coupon-omni .coupon-item--right .cp-bottom p {
        font-size: 14px; }
      .coupon-initial .coupon-item.coupon-omni .coupon-item--right .cp-bottom p strong {
        padding: 2px 10px;
        background: rgba(104, 95, 196, 0.3);
        color: #3415aa;
        font-size: 18px; }
  .coupon-initial .coupon-item.isSelect .coupon-item--right .cp-bottom .button {
    background: transparent; }
    .coupon-initial .coupon-item.isSelect .coupon-item--right .cp-bottom .button svg:first-child {
      display: none; }
    .coupon-initial .coupon-item.isSelect .coupon-item--right .cp-bottom .button svg:last-child {
      display: block; }

@media (max-width: 991px) and (min-width: 768px) {
  .coupon-initial .list-coupon {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px; }
    .coupon-initial .list-coupon .coupon-item {
      flex: 0 0 auto;
      width: 50%;
      padding: 8px; } }

@media (max-width: 480px) {
  .coupon-initial .coupon-item--inner:after, .coupon-initial .coupon-item--inner:before {
    left: 55px; }
  .coupon-initial .coupon-item--left {
    width: 60px; }
    .coupon-initial .coupon-item--left span {
      width: 40px;
      height: 40px; }
    .coupon-initial .coupon-item--left svg {
      width: 22px;
      height: 22px; }
  .coupon-initial .coupon-item--right {
    width: calc(100% - 60px);
    padding: 8px 6px 8px 12px; }
    .coupon-initial .coupon-item--right .cp-icon {
      top: 8px;
      right: 6px; }
    .coupon-initial .coupon-item--right .cp-top {
      padding-right: 16px; }
    .coupon-initial .coupon-item--right .cp-bottom .button {
      padding: 2px 8px 3px; } }

@media (min-width: 992px) {
  .coupon-initial .list-coupon {
    display: block; }
    .coupon-initial .list-coupon:not(.swiper-initialized) .coupon-item + .coupon-item {
      margin-top: 12px; } }

.coupon-info {
  display: none;
  padding: 0 16px 16px; }
  .coupon-info .content-coupon {
    font-size: 13px;
    border: 1px solid #fafafa; }
    .coupon-info .content-coupon .dfex-txt {
      padding: 10px 16px;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .coupon-info .content-coupon .dfex-txt.dfex-none {
        display: none; }
      .coupon-info .content-coupon .dfex-txt--1 {
        width: 33%;
        min-width: 100px;
        flex: 0 0 auto;
        font-size: 13px;
        line-height: 20px;
        color: #787878; }
      .coupon-info .content-coupon .dfex-txt--2 {
        padding-left: 20px; }
        .coupon-info .content-coupon .dfex-txt--2 span {
          width: 24px;
          height: 24px;
          display: none;
          vertical-align: middle;
          margin-left: 6px;
          background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%20%20%20%20%3Cdefs%3E%20%20%20%20%20%20%20%20%3Cpath%20id%3D%22labrj0lkfa%22%20d%3D%22M6.527%202.099c.521%200%20.946.425.949.948v8.004c0%20.524-.425.949-.949.949H.95C.425%2012%200%2011.575%200%2011.051V3.047C0%202.524.425%202.1.949%202.1zm-.002.663H.946c-.157%200-.285.128-.285.285v8.002c0%20.157.128.285.285.285h5.579c.157%200%20.285-.128.285-.285V3.047c0-.157-.128-.285-.285-.285zM8.66%200c.524%200%20.949.425.949.949v8.004c0%20.523-.425.948-.949.948-.184%200-.332-.147-.332-.331%200-.185.148-.332.332-.332.158%200%20.285-.128.285-.285V.949c0-.158-.127-.285-.285-.285H3.082c-.158%200-.285.127-.285.285%200%20.184-.148.331-.332.331-.184%200-.332-.147-.332-.331%200-.524.425-.949.949-.949z%22%2F%3E%20%20%20%20%3C%2Fdefs%3E%20%20%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%20%20%20%20%20%20%20%3Cg%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20transform%3D%22translate%28-2760%20-4524%29%20translate%282708%2080%29%20translate%2852%204304%29%20translate%280%20140%29%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%2212%22%20fill%3D%22%23E5F2FF%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20transform%3D%22translate%286%206%29%20translate%281%29%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cmask%20id%3D%22n5b3eobj0b%22%20fill%3D%22%23fff%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23labrj0lkfa%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fmask%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22%23787878%22%20xlink%3Ahref%3D%22%23labrj0lkfa%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20fill%3D%22%23017FFF%22%20mask%3D%22url%28%23n5b3eobj0b%29%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M0%200H12V12H0z%22%20transform%3D%22translate%28-1%29%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%20%20%20%20%3C%2Fg%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E");
          background-repeat: no-repeat;
          background-size: 24px; }
      .coupon-info .content-coupon .dfex-txt--3 {
        width: 100%; }
        .coupon-info .content-coupon .dfex-txt--3 ul {
          list-style-type: disc;
          margin-bottom: 0;
          margin-top: 0;
          margin-left: 16px; }
        .coupon-info .content-coupon .dfex-txt--3 ul li {
          list-style-position: outside; }
        .coupon-info .content-coupon .dfex-txt--3 ul li + li {
          margin-top: 3px; }
        .coupon-info .content-coupon .dfex-txt--3 ul li::marker {
          color: #000; }
      .coupon-info .content-coupon .dfex-txt--cta {
        width: 100%;
        display: flex;
        column-gap: 10px;
        margin-top: 12px; }
        .coupon-info .content-coupon .dfex-txt--cta .btn-popover {
          display: block;
          width: 100%;
          padding: 0px 12px;
          font-size: 13px;
          height: 40px;
          line-height: 40px;
          border-radius: 4px;
          font-weight: 500;
          color: #d92046;
          background: #fff;
          border: 1px solid #d92046; }
          .coupon-info .content-coupon .dfex-txt--cta .btn-popover + .btn-popover {
            color: #fff;
            background: #d92046; }
    .coupon-info .content-coupon .dfex-bkg:nth-child(2n+1) {
      background-color: #fafafa; }
    .coupon-info .content-coupon .cpi-trigger {
      cursor: pointer; }
  .coupon-info.show {
    display: block; }
  @media (max-width: 767px) {
    .coupon-info .content-coupon .dfex-txt {
      padding: 12px 20px; }
      .coupon-info .content-coupon .dfex-txt.dfex-none {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex; } }

@media (max-width: 767px) {
  .modal-coupon--backdrop {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 999;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .modal-coupon--backdrop.js-modal-show {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto; }
  .action-bottom {
    flex-wrap: wrap;
    flex-direction: column-reverse; }
  #confirm_address {
    min-width: 100%; } }
