recharge-widget {
  --rc-widget-brand-color: #121212;
  --rc-widget-brand-color-10: color-mix(in srgb, #121212 10%, #ffffff);
  --rc-widget-brand-color-20: color-mix(in srgb, #121212 20%, #ffffff);
  --rc-widget-brand-color-50: color-mix(in srgb, #121212 50%, #ffffff);
  --rc-widget-brand-color-70: color-mix(in srgb, #121212 70%, #ffffff);
  --rc-widget-brand-color-80: color-mix(in srgb, #121212 80%, #ffffff);
  --rc-widget-brand-contrast-color: #ffffff;
  --rc-widget-text-color: #121212;
  --rc-widget-selected-bg-color: #ffffff;
  --rc-widget-selected-text-color: #121212;
  --rc-widget-badge-text-color: #ffffff;
  --rc-widget-badge-bg-color: #000000;
  --rc-widget-card-radius: 0;
  --rc-widget-button-radius: 0;
  --rc-widget-badge-radius: 0;
  --rc-widget-field-radius: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em;
  margin-top: 2rem;
  margin-bottom: 1rem;
  width: 100%;

  .recharge-container {
    font-family: "GT Pressura Mono Text";
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    flex-direction: row;
    justify-content: space-between;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    cursor: pointer;
    padding: 14px 20px;
    border: 1px solid #000;
    width: 100%;
    position: relative;

    &.recharge-subscribe {
      padding-top: 20px;
    }

    .recharge-details {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;

      .recharge-radio {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
        .recharge-radio-icon {
          width: 16px;
          height: 16px;
        }
        .recharge-icon {
          display: flex;
          align-items: center;
          & > div {
            display: flex;
            align-items: center;
          }
          .recharge-filled {
            display: none;
          }
        }
        .recharge-label {
          font-family: "GT Pressura Mono Text";
          font-weight: normal;
          font-size: 14px;
        }
      }
      .recharge-price {
        font-weight: normal;
        font-size: 14px;
        .recharge-old-price {
          text-decoration-line: line-through;
        }
      }
    }

    .recharge-benefits {
      flex-direction: column;
      gap: 8px;
      padding-left: 22px;
      padding-top: 8px;
      padding-bottom: 10px;
      display: none;
      .recharge-benefits-label {
        display: flex;
        flex-direction: row;
        gap: 8px;
        .recharge-benefits-icon {
          display: flex;
          align-items: center;
          width: 16px;
          height: 16px;
        }
        .recharge-label {
          font-family: "GT Pressura Mono Text";
          font-weight: normal;
          font-size: 12px;
          margin-top: 0 !important;
          padding-left: 0;
          line-height: 14px;
        }
      }
    }

    .recharge-delivery {
      width: 100%;
      display: none;
      .recharge-label {
        font-family: "GT Pressura Mono Text";
        font-weight: normal;
        font-size: 12px;
        line-height: 1;
        margin-bottom: 5px;
      }
      .recharge-select-container {
        position: relative;
        select {
          border-color: black;
          box-shadow: none !important;
          outline: 0 !important;
          font-family: "GT Pressura Mono Text";
          font-size: 12px;
          -moz-appearance: none;
          -webkit-appearance: none;
          padding: 8px 12px;
          background: transparent;
          color: inherit;
          border: 1px solid #000;
          width: 100%;
          padding-right: 28px;
        }
        svg {
          color: var(--rc-widget-brand-color);
          position: absolute;
          right: 8px;
          bottom: 0px;
          height: 100%;
          width: 20px;
          pointer-events: none;
        }
      }
    }

    .recharge-badge {
      font-size: 11px;
      position: absolute;
      top: -1em;
      right: 1em;
      background: #000;
      color: #fff;
      line-height: 12px;
      padding: 0.5em;
    }

    &.active {
      .recharge-benefits {
        display: flex;
      }
      .recharge-delivery {
        display: block;
      }
      .recharge-filled {
        display: flex !important;
      }
      .recharge-unfilled {
        display: none !important;
      }
    }
  }
}
