@mobile: ~"only screen and (max-width: 900px), only screen and (pointer: coarse)";
@desktop: ~"only screen and (min-width: 900.01px) and (pointer: fine)";
@portrait: ~"only screen and (orientation: portrait)";
@landscape: ~"only screen and (orientation: landscape)";
@mobilePortrait: ~"only screen and (max-width: 900px) and (orientation: portrait), only screen and (pointer: coarse) and (orientation: portrait)";
@mobileLandscape: ~"only screen and (max-width: 900px) and (orientation: landscape), only screen and (pointer: coarse) and (orientation: landscape)";
@tabs-width: 250px;
@main-font-family: 'troika', 'sans-serif', 'Arial', 'Helvetica';
@plain-font-family: 'sans-serif', 'Arial', 'Helvetica';
@splash-font-color: #ffeea0;
@main-font-color: #ffeea0;
@light-font-color: #fff5dd;

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.noselect,
div,
span,
a,
p,
h1,
h2,
h3,
h4 {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.gameUI {

  .game-divider {
    width: 100%;
    margin-top: 20px;
    margin-bottom: -15px;

    img {
      width: 100%;
      max-width: 100% !important;
    }
  }

  .highlightText {
    color: @main-font-color;
  }

  .paylines {
    display: inline-block;
    width: 600px;
    max-width: 90%;

    .flex-container {
      display: inline-block;
      margin: 15px;
    }
  }

  .paylines .square {
    display: inline-flex;
  }

  .replay {
    justify-content: center;
    font-size: 28px !important;
    margin-top: 30px !important;
  }

  #settings-rules {
    h1 {
      font-size: 28px;
      font-family: @plain-font-family;
      color: @light-font-color;

      @media @mobile {
        font-size: 22px;
      }
    }

    p,
    ul,
    li {
      color: @light-font-color;
      font-size: 15px;
      font-family: @plain-font-family;
    }
  }

  .settings {

    h1,
    h2,
    h3,
    h4,
    p {
      color: @light-font-color;
      width: 90%;
      font-family: @plain-font-family;
      margin: 3px 0;
    }

    h1 {
      font-family: @main-font-family;
      text-transform: uppercase;
      font-size: 44px;
      margin-top: 20px;
      margin-bottom: 20px;
      font-weight: 500;
      color: @main-font-color;
      text-shadow: 0px 5px 0px #2d0503;

      @media @mobile {
        font-size: 30px;
      }
    }

    h2 {
      font-size: 24px;
      margin: 4px 0;
    }

    h3 {
      font-size: 20px;
      margin: 3px 0;
    }

    .subtitle {
      color: @light-font-color;
      margin-top: -15px;
    }

    img {
      max-width: 90%;
      margin-bottom: 10px;
    }

    .winUpToImg {
      margin-top: -20px;
      max-width: 70%;
    }

    ul {
      width: 600px;
      max-width: 90%;
      text-align: left;
      font-style: 18px;
      color: @light-font-color;

      li {
        margin: 4px 0;
      }
    }

    .logo {
      width: 330px;
      max-width: 90%;
      margin: 20px;

      @media @mobileLandscape {
        max-width: 65%;
      }

      @media @mobilePortrait {
        max-width: 84%;
      }
    }

    .symbol-group-payout {
      width: 650px;
      max-width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }

    .symbol-payout {
      min-width: 140px;
      img {
        max-width: 140px;
        margin: 20px;
        margin-bottom: 5px;
      }

      p {
        font-size: 16px;
        font-weight: 700;
      }

    }

    .symbol-payout-M3 {
      img { 
        margin-top: 23px !important;
      }
    }

    .symbol-payout-L5 {
      img { 
        margin-top: 25px !important;
      }
    }

    .buy-feature-button {
      position: relative;
      left: auto;
      right: auto;
      top: auto;
      bottom: auto;
      width: auto;
      margin: -20px !important;
      transform: scale(1.2) !important;
      pointer-events: none;

      .svg-container {
        position: relative;
      }

      .svg-icon {
        position: relative;
        width: 100px;
        height: 100px;
      }

      .enable-pointer-events {
        pointer-events: none !important;
      }
    }

  }

}