/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/
/* Table of Content
==================================================
  #Reset & Basics
  #Basic Styles
  #Site Styles
  #Typography
  #Links
  #Lists
  #Images
  #Buttons
  #Forms
  #Misc 
  #Custom */
/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  min-height: 100%;
  overflow-y: scroll;
  overflow-x: auto;
  background-color: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  overflow: hidden;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
div:focus {
  outline: 0;
}
/* #Basic Styles
================================================== */
body {
  --mainColor:    rgba(255, 0, 110, 1);
  --mainColor50:  rgba(255, 0, 110, 0.5);
  --mainColor10:  rgba(255, 0, 110, 0.1);

  font-family: 'News Cycle', sans-serif;
  font-size:1.1em;
  color: #464646;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */

  -webkit-text-size-adjust: 100%;
  margin: 0px;
  background: #ffffff url("../assets/grid.jpg") scroll repeat;
  font-weight: normal;
  border: 10px solid white;
  min-height: 98vh;
}

/* #Typography
================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--mainColor);
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%;
  text-align: center;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
}

h1 {
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: bold;
}
h2 {
  font-size: 1.1em;
  text-transform: uppercase;
}
h3 {
  color: #464646;
  font-weight: bold;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.low {
  text-transform: lowercase;
}
p {
  margin: 10px 0px 0px 0px;
  line-height: 140%;
}
p img {
  margin: 0;
}

em {
  font-style: italic;
}
strong {
  font-weight: bold;
}
small {
  font-size: 79%;
}

blockquote {
  padding:10px;
  border-bottom: 2px solid white;
}

blockquote:first-of-type {
  margin:0;
}

blockquote p {
  font-style: italic;
}

blockquote cite {
  font-size: 90%;
}

/* #Links
================================================== */
ul, ol {
  list-style-position: outside;
  margin:10px 10px 20px 30px;
}

li {
  margin-bottom: 10px
}


/* #Links
================================================== */
a,
a:visited {
  color: var(--mainColor);
  background-color: none;
  text-decoration: none;
  outline: none;
  transition: 0.5s;
}

a:hover {
  background-color: var(--mainColor);
  color: #fff;
  transition: 0s;
}

p a,
p a:visited,
li a,
blockquote a {
  border-bottom: 1px dashed var(--mainColor);
  display: inline-block;
}
a:hover img {
  outline: 2px solid var(--mainColor);
  background: none;
}

/* #Images
================================================== */
img {
  vertical-align: top;
}
img.scale-with-grid {
  max-width: 100%;
  height: auto;
}
img.portrait {
  float: left;
  max-height: 150px;
  margin: 0px 10px 0px 0px;
}
img.narrow {
  max-width:32%;
}

/* #Buttons
================================================== */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  font-family: inherit;
  font-size: 1.5em;
  font-weight: bold;
  text-transform: uppercase;
  background: var(--mainColor10);
  color: var(--mainColor);
  display: inline-block;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  z-index: 0;
  padding: 5px;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
  background: var(--mainColor);
  color: #ffffff;
}
.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
  border: 0;
  box-shadow: 0;
  outline: 0;
}
.button.full-width,
button.full-width,
input[type="submit"].full-width,
input[type="reset"].full-width,
input[type="button"].full-width {
  width: 100%;
  padding-top: 5px;
  padding-bottom: 6px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center;
}
/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* #Forms
================================================== */
form {
  margin-top: 10px;
}
fieldset {
  margin-bottom: 65px;
}
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
  border: 2px solid var(--mainColor);
  font-family: inherit;
  font-size: 1.5em;
  font-weight: bold;
  color: var(--mainColor);
  padding: 5px;
  width: 100%;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */

  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */

  box-sizing: border-box;
  /* Opera/IE 8+ */

  background: var(--mainColor10);
}
select {
  padding: 0;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
  background: var(--mainColor50);
  color: #ffffff;
  outline: 0;
  outline: none;
  border: none;
}

#mc_embed_signup input.mce_inline_error {
  border-color: var(--mainColor);
} 

#mc_embed_signup div.mce_inline_error {
  padding: 5px 10px; 
  background-color: var(--mainColor); 
  font-weight: bold; 
  z-index: 1; 
  color:#fff;
}
#mce-responses { background-color: var(--mainColor); }

/* #Custom
================================================== */

.block {
  position: relative;
  margin: 10px 0px 0px 0px;
  background-color: #FFFFFF;
}

.block p:first-child,
.block img:first-child,
.block div:first-child {
  margin: 0px !important;
}

.padded {
  padding:10px;
}

.no-padding {
  padding: 0px !important;
}

.no-margin {
  margin:0px !important;
}

.inverted {
  background-color: var(--mainColor) !important;
  color: white !important;
}

h1 a,
h2 a {
  display: block;
  padding:10px;
  position: relative;
  cursor:pointer;
}

#about .content h1 {
  text-align: left;
  margin:5%;
}

#imprint h2, #privacypolicy h2, #privacypolicy h3 {
  text-align: left;
  margin:5% 0% 0% 0%;
}

.intro h1 {
  margin-top:10px;
  font-weight: normal;
  text-align: left;
  line-height: 1.3em;
  letter-spacing: unset;
  color: #464646;
}

.intro h1:first-of-type {
  margin:0;
}

.intro h1 a {
  display: inline;
  padding:0px;
} 

.intro a {
  font-weight: bold;
}

.intro a:hover {
  color: #fff;
  background-color: var(--mainColor);
}

.logo a {
  display: block;
  width:80%;
  padding:5% 12% 5% 8%;
  color: #464646;
}

.logo svg {
  fill: var(--mainColor);
}
.logo a:hover svg {
  fill: white;
}

/*Connect Menu*/
.connect {
  margin:0;
}
.connect li {
  list-style: none;
  display: block;
  margin:0px;
  margin-bottom: 5px;
  padding: 0px;
  font-size: 1.3em;
  text-transform: uppercase;
}

.connect li:last-of-type {
  margin:0;
}
.connect li a {
  display: block;
  background-color: var(--mainColor10);
  padding:5px;
  border: none;
}

.connect a:hover {
  background-color: var(--mainColor);
  color: #fff;
}

.connect a:hover,
.connect a:hover .icon {
  background-color: var(--mainColor);
}

.connect .icon {
  padding-left: 38px;
  margin-right:5%;
  background-color: #464646;
  background-repeat: no-repeat;
  background-size: contain;
}

.connect .twitter {
  background-image: url('../assets/twitter.svg');
}
.connect .facebook {
  background-image: url('../assets/facebook.svg');
}
.connect .youtube {
  background-image: url('../assets/youtube.svg');
}
.connect .mail {
  background-image: url('../assets/mail.svg');
}
.connect .presskit {
  background-image: url('../assets/presskit.svg');
}

.games a {
  display: block;
  position: relative;
  background-color: var(--mainColor);
  margin-top:10px;
}

.games a:first-of-type {
  margin:0px;
}
.games a img {
  display: block;
  transition: 1s;  
}

.games a:hover img { 
  opacity: 0.2;
  transition: 0.5s;  

}

.games a div {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.games a h1 {
  color: #ffffff;
  margin-top: 10%;
  line-height: 0px;
  transition: 1s;
  opacity: 0;
}

.games a h2 {
  color: #ffffff;
  font-size: 0.9em;
  line-height: 3em;
  transition: 1s;
  opacity: 0;
}

.games a:hover h1,
.games a:hover h2 {
  opacity: 1;
  transition: 0.5s;  
}

/* TOGGLE BOXES s*/
.content,
.subcontent {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.active > .content,
.active > .subcontent {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.subcontent {
  background-color: var(--mainColor10);
}


.active > h1 a.contentHeader {  
  color: #fff;
  background-color: var(--mainColor);
}

.content a.contentHeader:hover {
  color: #fff;
  background-color: var(--mainColor50);
}

.active .content .active a.contentHeader {
  color: #fff;
  background-color: var(--mainColor50);  
}