/*
    Document   : main.css
    Created on : 19-nov-2013, 15.47.44
    Author     : Biagio Iannuzzi
    Description:
        Purpose of the stylesheet follows.
*/
root {
  display: block;
}

body {
  background-color: #000000;
  background-repeat: repeat-x;
  background-position: top;
  background-image: url(../sprites/bg_tile.jpg);
}

*, *:before, *:after {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input, input:before, input:after {
  -webkit-user-select: initial;
  -khtml-user-select: initial;
  -moz-user-select: initial;
  -ms-user-select: initial;
  user-select: initial;
}

::selection {
  background: transparent;
  color: inherit;
}

::-moz-selection {
  background: transparent;
  color: inherit;
}

#canvas {
  position: fixed;
}

canvas {
  image-rendering: optimizeSpeed;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  -ms-interpolation-mode: nearest-neighbor;
  -ms-touch-action: none;
}

.ani_hack {
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  /* mobile webkit */
}

/***************FONTS*******************/
@font-face {
  font-family: 'ArialBold';
  src: url('GothamRounded-Medium.eot');
  src: url('GothamRounded-Medium.eot?#iefix') format('embedded-opentype'),
    url('GothamRounded-Medium.woff2') format('woff2'),
    url('GothamRounded-Medium.woff') format('woff'),
    url('GothamRounded-Medium.ttf') format('truetype'),
    url('GothamRounded-Medium.svg#GothamRounded-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Digital';
  src: url('GothamRounded-Medium.eot');
  src: url('GothamRounded-Medium.eot?#iefix') format('embedded-opentype'),
    url('GothamRounded-Medium.woff2') format('woff2'),
    url('GothamRounded-Medium.woff') format('woff'),
    url('GothamRounded-Medium.ttf') format('truetype'),
    url('GothamRounded-Medium.svg#GothamRounded-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

.check-fonts {
  position: fixed;
  opacity: 0;
}

.check-font-1 {
  font-family: 'ArialBold';
}

.check-font-2 {
  font-family: 'Digital';
}