.INFO {
  .submenu-header {
    font-family: "MysticEast";
    font-size: 50px;
    margin-bottom: 10px;
    color: @color-yellow;
    font-weight: bold;
    text-shadow: 0 5px 2px #89360a;
    -webkit-text-stroke: 0.5px #6e1028;
    text-align: center;
    word-break: break-word;

    @media @mobile {
      font-size: 8vmin;
    }
  }

  .logo {
    margin-top: 10px;
    max-width: 100%;
    width: 400px;
    align-self: center;
  }

  .infinity-reels {
    display: flex;
    align-items: center;
    justify-content: center;

    img {
      object-fit: contain;
      height: 5vw;
      max-height: 30px;
      width: auto;
      margin: 0 10px;
    }

    span {
      color: @color-text;
      text-transform: uppercase;
      font-size: 20px;

      @media @portrait {
        font-size: 2.2vw;
      }
    }
  }

  .content-block {
    .divider {
      height: 2px !important;
      margin-top: 10px !important;
      margin-bottom: 10px !important;
      background: -webkit-gradient(linear,
          0 0,
          100% 0,
          from(transparent),
          to(transparent),
          color-stop(50%, @color-text)) !important;
    }
  }

  .feature-bet-amount {
    font-size: 22px;
    color: @color-text;
    text-align: center;
  }

  .symbols-row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-flow: row wrap;
    margin-bottom: 10px;
  }

  .symbol {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 1vw;

    img {
      width: 160px;
    }

    p {
      margin: 10px;
      color: @color-text;
      font-size: 18px;

      &.symbol-value {
        font-size: 22px;
      }

      max-width: 180px;
      letter-spacing: -1px;
    }
  }

  p {
    font-size: 18px;
    margin: 10px 0;
    color: @color-text;
    text-align: center;
    max-width: 600px;
  }

  .buy-feature-button {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    width: 95%;
    height: 95%;
    justify-content: center;

    .buy-feature-text {
      font-family: "MysticEast";
      font-weight: bold;
      color: @color-text;
      text-shadow: 0 5px 2px black;
      -webkit-text-stroke: 0.5px black;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      margin: 0px;
    }
  }
}