.parentContainer {
  max-width: var(--main-container-max);
  margin: 0 auto;
  margin-top: 2rem;
  padding: 0 1.6rem;

  @include min(tablet) {
    padding-bottom: 0;
  }
}

.slotHeader {
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid #e9e9e9;
  padding: 1.6rem;
  width: 99.9%;

  @include flex-direction(column);

  @include min(tablet) {
    padding: 2.4rem;
    margin-bottom: 1.6rem;
    gap: 4rem;
  }

  h1 {
    color: #1c1a28;
  }
}

.data {
  flex-direction: column;
  position: relative;

  @include min(tablet) {
    flex-direction: row;

    @include flex-align(flex-end, flex-start);

    gap: 4.8rem;
  }

  >img {
    border-radius: 1.6rem;
    height: 96px;
    width: 96px;
    margin-top: -3.5rem;

    @include min(tablet) {
      height: 179px;
      min-width: 179px;
      object-fit: cover;
      margin-top: -5.5rem;
    }
  }

  .operatorName {
    display: flex;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    flex-grow: 1;
    gap: 0.8rem;
    margin: 0.9rem 0 0;

    h1 {
      font-weight: bold;
      font-size: 2.8rem;
      line-height: 3.5rem;
      margin: 0 0 1.6rem;
      padding: 0;

      @include min(tablet) {
        font-size: 3.2rem;
        line-height: 4.2rem;
      }
    }

    @include min(tablet) {
      margin: 0;
      margin-right: 20rem;
    }

    > img {
      min-width: 24px;
      align-self: baseline;
    }
  }

  .averageRating {
    display: none;

    @include min(laptop) {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fbfbfb;
      border-radius: 100px;
      border: 1.5px solid #e9e9e9;
      max-width: 10.3rem;
      height: 3.8rem;

      > svg {
        width: 2.3rem;
        height: 2.3rem;
        color: #ffdb20;
        margin-right: 6.3px;
      }

      > p {
        color: #1c1a28;
        font-weight: 700;
        font-size: 20px;
        line-height: 30px;
      }
    }
  }
}

