/*
	Include fonts using @font-face, as below:
	Be sure to have fonts in .eot, .woff, .ttf and .svg formats.
	Where possible, fonts can be optimised by using the unicode-range property to load only specific characters, reducing the load. Check out http://www.w3.org/TR/css3-fonts/#font-prop-desc
	Fonts can sometimes play up due to cross-domain restrictions - see http://www.w3.org/TR/css3-fonts/#font-fetching-requirements
*/
@font-face {
  font-family: 'testFont';
  src: url("/font/font.woff") format("woff"), url("/font/font.ttf") format("truetype"), url("/font/font.svg") format("svg");
  /* Optional properties */
  font-weight: normal;
  font-style: normal;
  font-stretch: condensed;
  unicode-range: U+0-7F;
}
body {
  background: url(/images/src/ui/html_bg.png) #A98436 no-repeat left top;
  background-size: 100%;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.inline-block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

.flex {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
}

.align-self {
  -ms-flex-item-align: center;
  align-self: center;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.select {
  -webkit-touch-callout: inherit;
  -webkit-user-select: inherit;
  -khtml-user-select: inherit;
  -moz-user-select: inherit;
  -ms-user-select: inherit;
  user-select: inherit;
}

.translate_center {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.translate_center_x {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.translate_center_y {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.translate_zero {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

@media (max-width: 767px) {
  .desktop_only {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .mobile_only {
    display: none !important;
  }
}
* {
  padding: 0;
  border: 0;
  margin: 0;
  outline: none;
  -webkit-border-radius: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
}

html,
body {
  width: 100%;
  font-size: 62.5%;
  -webkit-text-size-adjust: none;
}

body {
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-weight: normal;
}

h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty,
p:empty,
li:empty,
blockquote:empty {
  display: none;
}

h2 {
  font-size: 104px;
  font-size: 10.4rem;
  line-height: 1.1;
  line-height: .8;
  color: #da0077;
  font-family: 'dirtyego', Arial, sans-serif;
  text-transform: uppercase;
}

h3 {
  font-family: 'texgyrecursor-bold', Arial, sans-serif;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.1;
}

h4 {
  font-size: 102px;
  font-size: 10.2rem;
  line-height: 1.1;
  line-height: 0.7;
}

h5 {
  font-size: 60px;
  font-size: 6rem;
  line-height: 1.1;
  font-family: 'dirtyego', Arial, sans-serif;
  text-transform: uppercase;
  line-height: 0.9;
}

h6 {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.large_copy {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.1;
}

#cookie-warning,
.terms {
  font-size: 9px;
  font-size: 0.9rem;
  line-height: 1.1;
  font-family: Arial, Helvetica, freesans, sans-serif;
}

#cookie-warning h2,
.terms h2 {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.1;
  font-family: 'texgyrecursor-regular', Arial, sans-serif;
  color: #3bf7cf;
  font-family: Arial, Helvetica, freesans, sans-serif;
}

body,
html {
  width: 100%;
  min-height: 100%;
}

body {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #000;
  color: #fff;
  overflow: hidden;
  background-position: 50% 50%;
}

footer {
  width: 100%;
  position: fixed;
  bottom: 28px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .5s, visibility .5s .1s;
  transition: opacity 0.5s, visibility 0.5s 0.1s;
}

footer .wrapper {
  max-width: 980px;
}

footer .indicator.red {
  position: absolute;
  left: 0;
}

footer .indicator.blue {
  position: absolute;
  right: 0;
}

footer.active {
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  opacity: 1;
  visibility: visible;
}

.box {
  padding: 10px;
  border-radius: 20px;
  background-image: url("/images/texture_white.png");
  background-size: 700px;
  background-position: 54% 50%;
  color: #000;
  margin: 0 auto;
  display: inline-block;
}

#cookie-warning {
  position: fixed;
  bottom: -500px;
  left: 0;
  width: 100%;
  padding: 6px;
  background-color: #3a3a3a;
  color: #fff;
  z-index: 99999;
}

#cookie-warning .inner {
  position: relative;
  width: 100%;
  display: block;
  margin: 0 auto;
  max-width: 980px;
}

#cookie-warning .copy {
  width: 100%;
  padding-right: 138px;
}

#cookie-warning .copy .cookie_btn {
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 56px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-color: #3bf7cf;
  color: #000;
  padding: 4px 8px;
}

#cookie-warning .copy .cookie_btn.js_close_cookies {
  right: 10px;
}

#cookie-warning.active {
  bottom: 0;
}

.desktop #cookie-warning .copy .cookie_btn:hover {
  background-color: #fff;
}

.terms {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999;
  padding: 4px 18px;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
}

.desktop .terms a:hover {
  color: #da0077;
}

.taster-offsite-panel {
  position: fixed;
  top: -200px;
  left: 0;
  height: 50px;
  z-index: 999;
  -webkit-transition: top .4s;
  transition: top 0.4s;
}

.taster .taster-offsite-panel {
  top: 0;
}

.taster nav.active {
  top: -200px;
}

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=font.css.map */


