.booking-header {
  // position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  margin-bottom: -40px;
  padding: 24px 32px 64px 32px;
  background: #069456;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    background: #069456;
    z-index: -1;
  }

  .booking-order-sales-channel {
    width: 100%;
    color: var(--Gray-900, #101828);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
  }

  .booking-header-line-2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .booking-header-left {
    color: var(--Gray-900, #101828);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
  }

  .booking-header-right {
    .booking-header-right-status {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--Gray-900, #101828) !important;
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      cursor: pointer;
      border: 1px solid var(--Gray-900, #101828);
      padding: 4px 12px;
      border-radius: 24px;

      span {
        color: var(--Gray-900, #101828) !important;
      }

      .booking-header-right-status-icon {
        font-size: 20px;
      }
    }
  }
}

.go-payments-modal-wrap {
  padding: 0;
}

.go-payments-modal-content {
  margin: 0 -24px;

  .go-payments-modal-content-title {
    color: var(--Gray-900, #101828);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    padding: 0 24px;
  }

  .go-payments-modal-content-desc {
    color: var(--Gray-900, #101828);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 0 24px;
    margin-top: 4px;
  }

  .cancelled-modal-content-title {
    color: var(--Gray-900, #101828);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    padding: 0 24px;
  }

  .cancelled-modal-content-desc {
    margin-top: 4px;
    color: #101828;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 0 24px;

    &.cancelled-modal-content-desc-red {
      color: var(--Error-600, #D92D20);
    }
  }

  .cancelled-modal-content-list-wrap {
    padding: 0 24px;

    .cancelled-modal-content-list-title {
      color: var(--Gray-900, #101828);
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 24px;
      margin-top: 4px;
    }

    .cancelled-modal-content-ul {
      margin-top: 4px;

      .cancelled-modal-content-li {
        color: var(--Gray-900, #101828);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
      }

    }

  }

  .go-payments-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--Gray-200, #EAECF0);
    margin-top: 16px;
    padding: 24px 24px 4px;
    width: 100%;

    .go-payments-footer-btn {
      flex: 1;
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
    }

    &.go-payments-footer-column {
      flex-direction: column;
      gap: 12px;

      .go-payments-footer-btn {
        width: 100%;
      }
    }


  }

}