@font-face {
  font-family: 'UnitedSansHv';
  src: url('../assets/fonts/UnitedSansRgHv.otf');
}
@font-face {
  font-family: 'UnitedSansLt';
  src: url('../assets/fonts/UnitedSansRgLt.otf');
}
body {
  background-color: #000;
  font-family: Arial, sans-serif;
  margin: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
canvas {
  position: absolute;
  top: 0;
  left: 0;
}
#wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 1000px;
  min-height: 600px;
  overflow: hidden;
  z-index: 1;
  display: none;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
GLOBAL ITEMS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#preloader {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  width: 100%;
  height: 100%;
  background-image: url(../assets/bg_preloader.png);
  background-position: center top;
  background-size: cover;
  z-index: 10;
}
#preloader img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-animation: pulse 1s .5s infinite ease;
  -moz-animation: pulse 1s .5s infinite ease;
  -ms-animation: pulse 1s .5s infinite ease;
  -o-animation: pulse 1s .5s infinite ease;
  animation: pulse 1s .5s infinite ease;
}
#logo-button {
  display: block;
  position: absolute;
  top: 0px;
  left: 150px;
  left: 300px;
  width: 125px;
  height: 125px;
}
#logo-icon {
  display: block;
  position: absolute;
  top: 60px;
  left: 30px;
  pointer-events: none;
}
#logo-bar {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  /*width: 250px;
			height: 8px;*/
  width: 0;
  height: 0;
  background-color: #00ffcc;
  pointer-events: none;
}
#logo-button:hover #logo-icon {
  -webkit-animation: pulse 1s .25s infinite normal;
  -moz-animation: pulse 1s .25s infinite normal;
  -ms-animation: pulse 1s .25s infinite normal;
  -o-animation: pulse 1s .25s infinite normal;
  animation: pulse 1s .25s infinite normal;
}
#share-button {
  display: block;
  position: absolute;
  bottom: 20px;
  right: 150px;
  width: 100px;
  height: 40px;
}
#share-icon {
  display: block;
  position: relative;
  float: right;
  pointer-events: none;
}
#share-text {
  position: relative;
  float: right;
  margin: 5px 0px 0px 5px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 0.7em;
  text-align: left;
  pointer-events: none;
}
#share-button:hover #share-icon {
  -webkit-animation: pulse 1s .25s infinite normal;
  -moz-animation: pulse 1s .25s infinite normal;
  -ms-animation: pulse 1s .25s infinite normal;
  -o-animation: pulse 1s .25s infinite normal;
  animation: pulse 1s .25s infinite normal;
}
.close-button {
  display: block;
  position: absolute;
  top: 50px;
  right: 50px;
  width: 50px;
  height: 50px;
  opacity: 0;
}
.close-box {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: .15;
}
.close-box2 {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
}
.close-x {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
}
.close-button:hover .close-box {
  opacity: .5;
}
.close-button:hover .close-x {
  -webkit-animation: pulse 1s 0s infinite ease-out;
  -moz-animation: pulse 1s 0s infinite ease-out;
  -ms-animation: pulse 1s 0s infinite ease-out;
  -o-animation: pulse 1s 0s infinite ease-out;
  animation: pulse 1s 0s infinite ease-out;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ANIMATION KEYFRAMES
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.tweenAll_025 {
  -webkit-transition: all 0.25s cubic-bezier(0.25, 1, 0.25, 1);
  -moz-transition: all 0.25s cubic-bezier(0.25, 1, 0.25, 1);
  -ms-transition: all 0.25s cubic-bezier(0.25, 1, 0.25, 1);
  -o-transition: all 0.25s cubic-bezier(0.25, 1, 0.25, 1);
  transition: all 0.25s cubic-bezier(0.25, 1, 0.25, 1);
}
.tweenAll_05 {
  -webkit-transition: all 0.5s cubic-bezier(0.25, 1, 0.25, 1);
  -moz-transition: all 0.5s cubic-bezier(0.25, 1, 0.25, 1);
  -ms-transition: all 0.5s cubic-bezier(0.25, 1, 0.25, 1);
  -o-transition: all 0.5s cubic-bezier(0.25, 1, 0.25, 1);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.25, 1);
}
.anim-flicker {
  -webkit-animation: pulse .01s ease 0s infinite normal;
  -moz-animation: pulse .01s ease 0s infinite normal;
  -ms-animation: pulse .01s ease 0s infinite normal;
  -o-animation: pulse .01s ease 0s infinite normal;
  animation: pulse .01s ease 0s infinite normal;
}
.anim-pulse {
  -webkit-animation: pulse 0.5s ease 0s infinite ease-out;
  -moz-animation: pulse 0.5s ease 0s infinite ease-out;
  -ms-animation: pulse 0.5s ease 0s infinite ease-out;
  -o-animation: pulse 0.5s ease 0s infinite ease-out;
  animation: pulse 0.5s ease 0s infinite ease-out;
}
@-webkit-keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.file-link {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 40px;
  height: 40px;
  border: 1px dashed white;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-align: center;
  font-size: 12px;
  padding-top: 14px;
}
header {
  position: absolute;
  margin: 0;
}
header .title {
  color: white;
}
header .title h1 {
  font-size: 3em;
  line-height: 1;
  margin: 5px 0 0 0;
}
header .content {
  color: white;
  list-style-type: none;
  padding: 0;
}
header .content li {
  display: block;
  background-color: #808080;
  width: 20px;
  width: 300px;
  margin: 0 0 3px 0;
}
header .content li span {
  position: relative;
  display: inline-block;
  background-color: #323232;
  padding: 0 5px 0 5px;
}
header .content li:nth-of-type(1) span {
  left: 20px;
}
header .content li:nth-of-type(2) span {
  left: 60px;
}
.hidden-button {
  display: block;
  position: absolute;
  /*cursor: default;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.qr-button {
  display: block;
  position: absolute;
  width: 250px;
  height: 70px;
  left: 100px;
  top: 68%;
}
.qr-bar {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 205px;
  height: 5px;
  background-color: #00ffcc;
  pointer-events: none;
}
.qr-notch1 {
  display: block;
  position: absolute;
  top: 33px;
  left: 0px;
  width: 2px;
  height: 17px;
  background-color: #fff;
  pointer-events: none;
}
.qr-notch2 {
  display: block;
  position: absolute;
  top: 15px;
  left: 245px;
  width: 2px;
  height: 17px;
  background-color: #fff;
  pointer-events: none;
}
.qr-box,
.qr-box2 {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  pointer-events: none;
}
.qr-textbox {
  display: block;
  position: absolute;
  top: 0px;
  left: 2px;
  width: 238px;
  height: 70px;
  pointer-events: none;
  overflow: hidden;
}
.qr-mini {
  display: block;
  position: absolute;
  top: 4px;
  left: -100px;
  pointer-events: none;
}
.qr-text {
  display: block;
  position: absolute;
  top: 30px;
  left: 0px;
  width: 240px;
  color: #000;
  font-family: UnitedSansHv, sans-serif;
  font-size: 0.9em;
  text-align: center;
  pointer-events: none;
}
.qr-button:hover .qr-text {
  -webkit-animation: pulse 1s .5s infinite ease;
  -moz-animation: pulse 1s .5s infinite ease;
  -ms-animation: pulse 1s .5s infinite ease;
  -o-animation: pulse 1s .5s infinite ease;
  animation: pulse 1s .5s infinite ease;
}
#item {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*
	.background {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		background-color: #000;
		width: 100%;
		height: 100%;
		opacity: 0;
		
		background-image:url(../assets/bg_item.jpg);
		background-position: center top;
		background-size: cover;
		
		display: none;
		}
	*/
.distribute-button {
  display: block;
  position: absolute;
  bottom: 150px;
  right: 150px;
  width: 205px;
  height: 40px;
}
.distribute-bar {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 205px;
  height: 5px;
  background-color: #00ffcc;
  pointer-events: none;
}
.distribute-box,
.distribute-box2 {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  pointer-events: none;
}
.distribute-textbox {
  display: block;
  position: absolute;
  top: 0px;
  left: 4px;
  width: 199px;
  height: 40px;
  pointer-events: none;
  overflow: hidden;
}
.distribute-folder {
  display: block;
  position: absolute;
  top: 12px;
  left: 18px;
  pointer-events: none;
}
.distribute-text {
  display: block;
  position: absolute;
  top: 14px;
  left: 100px;
  color: #000;
  font-family: UnitedSansHv, sans-serif;
  font-size: 0.9em;
  text-align: left;
  pointer-events: none;
}
.distribute-button:hover .distribute-text {
  -webkit-animation: pulse 1s .5s infinite ease;
  -moz-animation: pulse 1s .5s infinite ease;
  -ms-animation: pulse 1s .5s infinite ease;
  -o-animation: pulse 1s .5s infinite ease;
  animation: pulse 1s .5s infinite ease;
}
#qr-code {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*
	.container {
		position: absolute;
		background-color: #fff;
		width: 400px;
		height: 400px;
		top: 50%;
		left: 50%;
		margin: -200px 0 0 -200px;
		
		display: none;
		}
		*/
}
.container {
  position: relative;
  background-color: #fff;
  width: 100%;
  height: 100%;
  max-width: 1600px;
  max-height: 960px;
  top: 25%;
  left: 25%;
  /*
		top: 50%;
		left: 50%;
		margin: -200px 0 0 -200px;
		*/
  display: none;
}
#social {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#social .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: url(../assets/bg_social.jpg) no-repeat center;*/
  background-image: url(../assets/bg_social.jpg);
  background-position: center;
  background-size: cover;
}
#social-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 130px;
  margin: -65px 0px 0px -200px;
}
#social-title {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
#social-title {
  position: absolute;
  top: 0;
  left: 0;
}
#social-subtitle {
  position: absolute;
  top: 0px;
  left: 45px;
  width: 50px;
  height: 25px;
  background: transparent url(../assets/social/title-sub.png) no-repeat top right;
}
#social-icons a {
  position: absolute;
  top: 25px;
  width: 100px;
  height: 100px;
}
.social-logo {
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;
}
.social-rollover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 0px;
  height: 100px;
}
.social-twitter {
  left: 0px;
  background-color: rgba(255, 255, 255, 0.07);
}
.social-twitter .social-logo {
  background: transparent url(../assets/social/twitter.png) no-repeat top right;
}
.social-facebook {
  left: 100px;
  background-color: rgba(255, 255, 255, 0.04);
}
.social-facebook .social-logo {
  background: transparent url(../assets/social/facebook.png) no-repeat top right;
}
.social-tumblr {
  left: 200px;
}
.social-tumblr .social-logo {
  background: transparent url(../assets/social/tumblr.png) no-repeat top right;
}
.social-google {
  left: 300px;
  background-color: rgba(255, 255, 255, 0.08);
}
.social-google .social-logo {
  background: transparent url(../assets/social/google.png) no-repeat top right;
}
#social-icons a:hover {
  /*background-color: #00ffcc;*/
}
#social-icons a:hover .social-logo {
  background-position: top left;
}
#social-icons a:hover .social-rollover {
  width: 105px;
  height: 100px;
  opacity: 1;
}
