.operatorBanner {
  display: grid;
  gap: 0.8rem;
  align-items: center;
  grid-template-columns: 0.1fr 1fr;
  border-radius: 8px;
  background: #1c1a28;
  border: 1px solid #e9e9e9;
  padding: 0.8rem;

  > a {
    justify-self: end;
    align-self: center;

    @include max(mobile) {
      padding: 0.8rem 2.1rem;
      font-size: 14px;
      line-height: 18px;
      border-radius: 8px;
    }
  }

  > img {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
    border-radius: 8px;
    background-color: white;
    border: 1px solid #6b6a72;
    flex: none;

    @include min(tablet) {
      min-width: 6.4rem;
      width: 6.4rem;
      height: 6.4rem;
    }
  }

  @include min(tablet) {
    gap: 1.6rem;
    border-radius: 16px;
    padding: 1.6rem 2.4rem;
    grid-template-columns: 0.1fr 2fr;
  }

  > div {
    max-width: 100%;
    background-color: transparent;
    border: none;
    padding: 0;

    > div {
      flex-direction: row;
      gap: 1.6rem;

      > a:first-child {
        display: block;

        > p {
          display: none;
          text-align: left;
          @include min(tablet) {
            display: block;
            font-weight: 700;
            font-size: 16px;
            line-height: 24px;
            margin-bottom: 0.4rem;
            text-transform: capitalize;
            color: #5ce482;
            text-transform: uppercase;
          }
        }

        > span {
          font-weight: 700;
          font-size: 12px;
          line-height: 20px;
          color: white;
          padding-right: 0rem;
          text-align: left;

          @include min(tablet) {
            font-size: 16px;
            line-height: 27px;
          }
        }
      }

      > a:last-child {
        margin-top: 0;
        width: 30%;

        > svg {
          display: none;

          @include min(tablet) {
            display: block;
          }
        }
      }
    }
  }
}

.bonus {
  display: flex;

  > div {
    > span {
      font-weight: 700;
      font-size: 12px;
      line-height: 20px;
      color: white;
      padding-right: 0rem;

      @include min(tablet) {
        font-size: 16px;
        line-height: 27px;
      }
    }
  }

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

.bonusTitle {
  display: none;

  @include min(tablet) {
    display: block;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0.4rem;
    text-transform: capitalize;
    color: #5ce482;
    text-transform: uppercase;
  }
}

.coming_soon,
.inactive,
.not_recommended {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;

  @include min(tablet) {
    font-size: 20px;
    line-height: 30px;
  }
}
