.component-coupon {
  background: #fff;
  font-size: 14px;
  border-radius: 4px;
  height: 500px;
  width: 350px;
  display: flex;
  flex-direction: column;

  .loader {
    width: 16px;
    height: 16px;
  }

  .modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    text-transform: uppercase;
    height: 50px;
    position: relative;
    .close {
      position: absolute;
      right: 10px;
      font-weight: 300;
      font-size: 30px;
      top: 3px;
      cursor: pointer;
    }
  }

  .coupon-field {
    padding: 20px;
    background-color: #f6f6f6;
    .coupon-input {
      display: flex;
      border: 1px solid #4a4a4a;
      border-radius: 3px;
      input {
        flex-grow: 1;
        background-color: transparent;
        border: none;
        font-size: 14px;
        padding: 7px;
      }
      .coupon-button {
        cursor: pointer;
        padding: 7px;
        border-left: 1px solid #4a4a4a;
        flex-basis: 30%;
        font-weight: 500;
        display: flex;
        justify-content: center;
        align-items: center;
        &.apply {
          color: #70ad4d;
        }
      }
    }
    .coupon-error {
      color: #f34541;
    }
    .coupon-success {
      color: #70ad4d;
    }
  }

  .available-coupons {
    overflow: scroll;
    .title {
      height: 45px;
      display: flex;
      align-items: center;
      padding: 20px;
      font-weight: 500;
    }
    .coupon-list {
      .coupon {
        border-top: 1px solid #c8c8c8;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        .details {
          .promo {
            color: #4a4a4a;
            font-weight: 700;
          }
        }
        .available-coupon-button {
          cursor: pointer;
          align-self: center;
          padding: 7px;
          border-radius: 3px;
          background-color: #ffffff;
          border: solid 1.5px #70ad4d;
          color: #70ad4d;
          font-weight: 500;
          &:hover {
            color: #fff;
            background-color: #70ad4d;
          }
        }
      }
    }
    .no-coupons {
      text-align: center;
      padding: 50px 20px;
      display: flex;
      flex-direction: column;
      img {
        width: 50%;
        margin: 0 auto;
      }
    }
  }
}
