@mobile: ~"only screen and (max-width: 900px)";
@landscape: ~"only screen and (orientation: landscape)";
@portrait: ~"only screen and (orientation: portrait)";
@tabs-width: 250px;
@font-family: 'troika';
@color-yelow: #febb00;
@color-blue: #c4eaff;

@import "./loading.less";
@import "./splash.less";
@import "./info.less";
@import "./rules.less";

/* 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 {

  .paylines .flex-container {
    display: inline-block;
  }

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

  .sprite {
    display: inline-block;
    overflow: hidden;
    // background-color: transparent;
    // background-image: url('../assets/ui/spritesheet.png');
    // background-repeat: no-repeat;
  }

  .keypadUI {
    border-top: none;
    // background-image: url('../assets/ui/bar.png');
    // background-position: center;
    // background-repeat: no-repeat;
    // background-size: cover;
  }

  .gameControls {
    &:before {
      // background-image: url('../assets/ui/spritesheet.png');
    }

    .spin-area {
      &:before {
        // background-image: url('../assets/ui/spritesheet.png');
      }
    }
  }

  .bet {
    @media @mobile {

      .increase,
      .decrease {
        display: none;
      }
    }
  }

  .settings .menu .active button {
    color: @color-yelow;
  }

  .settings-slider .rangeslider__fill {
    background-color: @color-yelow;
  }

  .settings {
    .menu {

      button {
        color: @color-blue;
      }

      .menu-item.active::before {
        border-right-color: @color-yelow;
      }
    }

    .content {

      .auto-play .autoPlayMenu button.selected,
      .bet-grid button.selected {
        color: @color-yelow;
        border-color: @color-yelow;
      }

      .content-block {
        .game-divider {
          background-repeat: no-repeat;
          background-size: contain;
          background-position: center center;
          background-image: url("../assets/common/paytable/separator.png");
          width: 70%;
          height: 5vw;
          margin-top: 3vw;
        }

        .feature-bet-amount {
          font-family: @font-family;
          color: @color-yelow;
          font-size: 1.5vw;
          -webkit-text-stroke-width: 0.08vw;
          -webkit-text-stroke-color: #000e6e;
          margin: 0 0 3vw;
          z-index: 10;
          text-align: center;

          .bet-amount {
            -webkit-text-stroke-width: 0.03vw;
          }

          @media @landscape and (max-aspect-ratio: 4/3) {
            font-size: 2.5vw;
            -webkit-text-stroke-width: 0.13vw;

            .bet-amount {
              -webkit-text-stroke-width: 0.06vw;
            }
          }

          @media @portrait {
            font-size: 4vw;
            margin: 0 0 3vw;
            -webkit-text-stroke-width: 0.15vw;

            .bet-amount {
              -webkit-text-stroke-width: 0.07vw;
            }
          }
        }
      }
    }

    .auto-play .start-area .sprite {

      &:not(:active):not(.disabled):hover:before,
      // hover
      &:active:not(.disabled):before {
        // clicked
        color: @color-yelow;
      }
    }
  }
}