*, html, body {
	margin: 0;
	padding: 0;
  -webkit-text-size-adjust: 100%;
  background-color: #FCFAFA;
}

#smallnav {
  display: none;
}

#sn-left, #sn-right {
  display: inline-block;
  width: 35%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 20px;
}

#sn-left {
  text-align: left;
  float: left;
}

#sn-right {
  float: right;
  text-align: right;
}

#sn-left li, #sn-right li {
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
}

#menuToggle
{
  display: block;
  position: relative;
  top: 50px;
  left: 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: tomato;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #cdcdcd;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}

.logo {
	animation: fadein 1.5s;
}
@keyframes slidein{
  from {
    margin-left: 100%;
    width: 300%; 
  }

  to {
    margin-left: 50px;
    width: 100%;
  }
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.dropdown {
  position: relative;
  display: inline-block;
      line-height: 6px;
}


.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  z-index: 1;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
    font-family: "Nunito";
   /* font-style: italic; */
   font-weight: 600;
    font-size: 16px;
    line-height: 0px;
}

.dropdown:hover .dropdown-content {
  display: block;
  text-align: left;
   line-height: 30px;
  
}

.banner ul {
	animation: fadein 1s;
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.banner {
  display: block;
  width: 720px; 
  margin: 0 auto;
 line-height: 50px;
 }

 .whity {
  display: block;
  background-color: #FCFAFA;
  width: 30px;
  height: 4px;
 }

.logo-wide { 
  display: block;
  position: absolute;
  top: 34px;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  padding-left: 1%;
  width: 90%;
  max-width: 425px;
}

ul, li {
  display: inline-block;
  list-style-type: none;
}

ul {
    margin: 240px auto 0 auto;
    display: block;
    max-width: 680px;
    text-align: center;
}

h2 {
  margin-bottom: 10px;
}

li {
    font-family: "Nunito";
 /*   font-style: italic; */
 font-weight: 600;
    margin-left: 2.5%;
    margin-right: 2.5%;
    font-size: 11px;
  }

#deco {
  width: 92.5%;
  display: block;
  margin: 0 auto;
}

.contact {
  margin-left: 8px;
}

a {
  text-transform: uppercase;
  text-decoration: none;
  color: black;
  cursor: default;
}

a:hover {
  /*text-decoration: underline; */
  color: #CCAAAA;
}

#stream {
  position: absolute;
  top: 42px;
  margin-left: 2%;
  font-family: "Nunito";
  font-size: 20px;
  font-style: italic;
  text-transform: uppercase;
  background-color: #FCFAFA;
  z-index: 500;
  height: 140px;
  text-decoration: underline;
  animation: fadein .5s;
  }

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

 .stream-logo {
  position: absolute;
  top: 6px;
  height: 124px;
  padding-top: 0;
  left: 4px;
 }

 .stream-text {
  float: left;
  margin: 8px 8px 8px 8px;
  text-decoration: underline;
 }

 #stream a {
  display: inline-block;
  margin: 2px 0 6px 4px;
 }

.stream-icons {
  position: absolute;
  z-index: 5000;
  top: 10px;
  width: 40px;
  margin-left: 50px;
  padding-top: 4px;
  margin-bottom: 0;
  margin-right: 0px;
/*  float: left;*/
}

#news {
  width: 720px;
  margin: 0px auto 0px auto;
  padding-top: 0px;
}

#preorder {
  font-size: 16px;
  font-weight: 600;
  font-family: "Nunito";
 /* font-style: italic; */
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
 }

 .preorder-link {
  display: block;
  text-decoration: none;
  margin-top: 0px;
 }

 #preorder-link:hover {
  text-decoration: underline;
 }

 #preorder hr {
  display: block;
  margin: 8px auto;
  max-width: 90%;
 }


 #preorder-cover {
   max-width: 75%;
 }

 #preorder-cover2 {
   max-width: 75%;
 }

 #preorder-div {
  display: block;
  width: 100%;
  height: 80px;
 }

 #preorder-cover:hover, #preorder-cover2:hover {
    filter: opacity(70%);
    transition: .2s ease-in-out;  
      -webkit-filter: opacity(70%);
      -webkit-transition: .2s ease-in-out;
    -moz-filter: opacity(70%);
    -moz-transition: .2s ease-in-out;
    -o-filter: opacity(70%);
    -o-transition: .2s ease-in-out;  
    -ms-filter: opacity(70%);
    -ms-transition: .2s ease-in-out;  

}




 .preorder-span {
  padding-left: 6px;
  padding-right: 6px;
 }

#tour {
  width: 720px;
  margin: 140px auto 0 auto;
  text-align: left;
  font-size: 14px;
  font-family: "Nunito";
  font-weight: 600;
  line-height: 2em;
}

#tour a {
  font-size: 16;
}

#easyXDM_2313769_199_provider {
  margin-top: 20px;
  margin-bottom: 20px;
}

#contact {
  display: block;
  width: 720px;
  margin: 0 auto;
  text-align: left;
  font-size: 14px;
  font-family: "Nunito";
  font-weight: 400;
  line-height: 1.5em;
}

#social {
  display: block;
  width: 720px;
  margin: 0 auto 0 auto;
  text-align: center;
}

#photos {
  display: block;
  width: 720px;
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}


#photos div {
  width: 50%;
  display: inline-block;
  float: left;
}

#photos img {
display: inline-block;
 width: 100%;
}

.col-1, .col-2 {
  display: inline-block;
  width: 47%;
  margin-left: 1%;
}

.col-1 {
  margin-top: 20px;
}


.col-2 {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
}

.line {
  width: 620px;
  color: black;
  margin: 32px auto;
}

.line-big {
  width: 720px;
  color: black;
  margin: 20 auto;
}

#shop {
  display: none;
  width: 720px;
  margin: 0 auto;
  padding-top: 30px;
  text-align: center;

}

.merch-thumb {
  margin: 10px 10px;
  background-color: black;
}

.merch-thumb:hover {
    -webkit-filter: invert(80%);
    -webkit-transition: .1s ease-in-out;
  -moz-filter: invert(80%);
  -moz-transition: .1s ease-in-out;
  -o-filter: invert(80%);
  -o-transition: .1s ease-in-out;
  -ms-filter: invert(80%);
  -ms-transition: .1s ease-in-out;
  filter: invert(80%);
  transition: .1s ease-in-out;

}

.item {
  display: inline-block;
  margin-bottom: 30px;
}

.desc {
  font-family: "Nunito";
  font-size: 12px;
  text-align: center;
}

.strong {
  font-weight: 600;
}

h3 {
  font-size: 16px;
  font-weight: 600; 
  margin-bottom: 10px;
}

.icon {
  display: inline-block;
  margin: 10px 16px;
}

.icon:hover, .stream-icons a:hover, .back:hover {
    -webkit-filter: opacity(60%);
/*     -webkit-transition: .2s ease-in-out;
*/  -moz-filter: opacity(60%);
/*  -moz-transition: .1s ease-in-out;
*/  -o-filter: opacity(60%);
/*  -o-transition: .1s ease-in-out;
*/  -ms-filter: opacity(60%);
    filter: opacity(60%);

}

.photo:hover {
    filter: opacity(70%);
    transition: .2s ease-in-out;  
      -webkit-filter: opacity(70%);
      -webkit-transition: .2s ease-in-out;
    -moz-filter: opacity(70%);
    -moz-transition: .2s ease-in-out;
    -o-filter: opacity(70%);
    -o-transition: .2s ease-in-out;  
    -ms-filter: opacity(70%);
    -ms-transition: .2s ease-in-out;  

}

.abandon {
  display: none;
  margin: 20px auto 40px auto;
}

h4 {
  font-family: "Nunito";
  text-transform: uppercase;
  text-align: right;
  font-size: 10px;
  color: #BDBBBB;
  display: inline-block;
/*  float: right;*/
  margin-top: 20px;
/*  margin-bottom: 20px;*/
}

.back {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 1;
}

.white-block-2 {
  display: inline-block;
  width: 120px;
  height: 1000px;
  background-color: #FCFAFA;
  position: absolute;
  top: 0; 
  right: 0;
  z-index: 300;
}

.clear {
  opacity: 0.1;
}


.stream-icons img {
  margin-bottom: 8px; 
}

.stream-icons {
  top: 2;
  padding-top: 0;

}

#social-hr {
  display:none;
  border-top: 1px dashed #8c8b8b;

}

 #streaming-container {
    display: inline;
  }

  .divider {
   font-size: 32px; 
   margin: 0 2%;
   color: #F5F1F1;
  }



@media screen and (max-width: 980px) {
/*
#bignav {
  display: none;
}*/


/*
#smallnav {
  display: block;
  max-width: 440px;
  padding-top: 100px;
  margin-bottom: 100px;
}*/

#smallnav li {
  margin: 0;
  padding: 0;
  line-height: 300%;
}

#preorder-cover, #preorder-cover2 {
  width: 90%
}

/*
.big-links {
  display: none;
}*/
/*
.small-links {
  display: block;
}*/
  .logo-wide {
    max-width: 440px;
  }

  li {
  /*  font-size: 12px; */
    margin-right: 3%;
    margin-left: 3%;
  }

  #deco {
    width: 90%;
  }

  .banner {
    max-width: 100%;
    width: 73%;
  }

  #stream {
    top: 36px; 
  }

  .stream-icons img {
    margin-bottom: 8px; 
  }

  .stream-icons {
    top: 2;
    margin-left: 42px;
    padding-top: 0;

  }

  .stream-logo {
    height: 124px;
    padding-top: 0;
    left: 0;
  }

  #news, #tour, #shop, #contact, .line, #social {
  max-width: 73%;
  min-width: 592px;  
  }

  #news {
    padding-top: 40px;
  }

  #shop {
    padding-top: 10px;
  }

  .line-big {
    max-width: 90%;
  }


  #photos {
    max-width: 64%;
  }

  .icon {
    margin: 4px 16px;
  }

/*  .icon img {
    width: 32px;
  }*/
  
  .abandon {
    width: 54%;
    min-width: 290px;
  }

  #tour {
    font-size: 13px;
  }

  .col-1, .col-2 {
    width: 70%;
    margin-left: 20%;
  }

  .column-br {
    display: none;
  }

  .col-1 {
    margin-bottom: 8px;
  }

  .back {
    width: 84px;
    right: 16px;
  }

  .white-block-2 {
    width: 100px;
  }

}

@media screen and (max-width: 790px) {
  .back {
    display: none;
  }

  .whity {
    display: none;
  }
  .white-block-2 {
    display: none;
  }
  
  .banner {
    width: 86%;
    min-width: 592px;
  }

  #preorder {
    /*font-size: 14px; */
    font-style: normal;
    margin-top: 100px;
  }

#news, #tour, #shop, #contact, hr, .line, #social {
  max-width: 86%;  
  }

  #news {
    padding-top: 24px;
   margin-bottom: 40px;
  }

  #photos {
    max-width: 80%;
  }

/*  .icon img {
    width: 28px;
  }*/

  #stream {
    display: none;
  }

  #streaming-container {
    display: inline;
  }
  
  .icon {
  margin: 0px 22px;
  } 

  .divider {
   font-size: 40px; 
   margin: 0 2%;
  }

  a:hover {
  text-decoration: none;
  }
}

@media screen and (max-width:640px) {
.line-big {
  display: none;
}

  #news, #tour, #shop, #contact, hr, .line, #photos, #social 
  {
  max-width: 90%;  
  min-width: 280px;
  }

  .banner {
    width: 90%; 
    min-width: 280px;
  }

  .logo-wide {
    max-width: 400px;
  }

  li {
    font-size: 10px;
  }


  #preorder-cover, #preorder-cover2 {
    max-width: 100%;
  }

 .banner {
    height: auto;
  }

  #photos {
     padding: 20px 0;
  }

  .col-2 {
    margin-bottom: 10px;
  }

  .col-1, .col-2 {
    margin-left: 16%;
    min-width: 280px;
  }

  .col-1 {
    margin-top: 10px;
  }

  .col-2 {
    margin-bottom: 10px;
  }

   #news {
    padding-top: 10px;
  }
}

@media screen and (max-width:556px) {
  
  .col-1, .col-2 {
    margin-left: 12%;
  }

  .fullname {
    display: none;
  }

  #deco {
    width: 95%;
  }

  #photos {
  max-width: 100%;
  }

  #photos {
  pointer-events: none;
  }

  #photos div {
    width: 100%;
    display: block;
    float: none;
    margin: 0 auto;
  }


  .abandon {
    width: 40%;
    min-width: 200px;
  }  

  #social {
    max-width: 100%;
    min-width: 0;
  }

  .divider {
    display: none;
  }

  #social-hr {
    display: block;
    width: 50%;
    min-width: 100px;
    margin: 15px auto;
  }

  #preorder {
    font-size: 14px;
    font-weight: 700;
  }

  #tour {
    font-size: 14px;
  }

  #news {
    padding-top: 0px;
  }

}

@media screen and (max-width: 460px) {

  .col-1, .col-2 {
    width: 100%;
    margin-left: 2%;
  }

  #sn-left, #sn-right {
  width: 45%;
}

#bignav {
 display: none;
}


#smallnav {
  display: block;
  max-width: 440px;
  padding-top: 100px;
  margin-bottom: 100px;
}


  ul {
    margin-top: 120px;
    font-size: 100px;
  }

/*  li {
    margin-right: 7%;
    margin-left: 7%;
  } */
  
  #deco {
    display: none;
  }

  #preorder-cover, #preorder-cover2{
    margin-top: 20px;
    max-width: 100%;
  }

  .item {
    margin-bottom:  20px;
  }

  .item img {
    width: 70%;
  }

  .divider {
   margin: 0 1%;
  }

  .line-big {
    max-width: 95%;
  }
}

@media screen and (max-width:400px) {
  
  #contact {
    font-size: 14px;
  }

  ul {
    margin-top: 110px;
  }

  li {
    font-size: 11px;
    margin-right: 6%;
    margin-left: 6%;
  }

  .logo-wide {
  width: 92%;
}

}

@media screen and (max-width:350px) {
  li {
    font-size: 10.5px;
    margin-right: 5%;
    margin-right: 5%;
  }

  ul {
    margin-top: 100px;
  }

}


