// for list header
.cdp-panel__container {
  //height: 5.9375vh;
  height: 57px;
  background: $grey-7;
  border-radius: 7px 7px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid $grey-6;

  .panel__title--left {
    @include font-20;
    font-weight: bold;
    color: $grey-1;
    margin-bottom: 0;
  }

  .panel__title--right {
    font-size: $f12-caps-font-size;
    line-height: $f12-caps-line-height;
    color: $grey-2;

    span {
      font-weight: bold;
    }
  }
}


// for div wrapper
.cdp-panel__wrapper {
  @include wrapper_col;
  width: 100%;
  height: fit-content;
  border: 1px solid $grey-5;
  border-radius: 8px;
  max-width: 37vw;
  min-width: 714px;
  background: #FFFFFF;

  &.review {
    min-width: 1024px;
    //margin-top: 100px;
  }

  .panel__title {
    @include font-20;
    font-weight: bold;
    color: $grey-1;

    background: $grey-7;
    border-radius: 8px 8px 0 0;
    padding: 16px 24px;
    border-bottom: 1px solid $grey-6;
  }

  .panel__content {
    padding: 40px 24px;
    background: $grey-9;

    box-sizing: border-box;
    //border-radius: 0 0 8px 8px;
    border-radius: 8px;
    height: fit-content;
    max-height: calc(100vh - 366px);
    overflow: auto;
  }

  .panel__footer {
    border-top: 1px solid #D6D6D7;
    @include wrapper_row;
    justify-content: space-between;
    padding: 32px 0 40px 0;
    margin: 0 24px;
    background-color: white;
    border-radius: 0 0 8px 8px;

    &--has-one-btn {
      justify-content: flex-end;
    }
  }
}