@charset "utf-8";

@font-face {
    font-family: Coda;
    src: url("/css/fonts/Coda-Regular.ttf") format("truetype");
}

@font-face {
    font-family: PassionOne-Regular;
    src: url("/css/fonts/PassionOne-Regular.ttf") format("truetype");
}

@font-face {
    font-family: Inconsolata-VariableFont;
    src: url("/css/fonts/Inconsolata-VariableFont.ttf") format("truetype");
}

@font-face {
    font-family: BurbankBigCondensed;
    src: url("/css/fonts/BurbankBigCondensed.otf") format("opentype");
}

/* SPECIAL BOOTSTRAP */
.btn-twitch { 
	color: #FFFFFF; 
	background-color: #6441A5; 
	border-color: #2F1F4E; 
  } 
   
  .btn-twitch:hover, 
  .btn-twitch:focus, 
  .btn-twitch:active, 
  .btn-twitch.active, 
  .open .dropdown-toggle.btn-twitch { 
	color: #FFFFFF; 
	background-color: #472e75; 
	border-color: #2F1F4E; 
  } 
   
  .btn-twitch:active, 
  .btn-twitch.active, 
  .open .dropdown-toggle.btn-twitch { 
	background-image: none; 
  } 
   
  .btn-twitch.disabled, 
  .btn-twitch[disabled], 
  fieldset[disabled] .btn-twitch, 
  .btn-twitch.disabled:hover, 
  .btn-twitch[disabled]:hover, 
  fieldset[disabled] .btn-twitch:hover, 
  .btn-twitch.disabled:focus, 
  .btn-twitch[disabled]:focus, 
  fieldset[disabled] .btn-twitch:focus, 
  .btn-twitch.disabled:active, 
  .btn-twitch[disabled]:active, 
  fieldset[disabled] .btn-twitch:active, 
  .btn-twitch.disabled.active, 
  .btn-twitch[disabled].active, 
  fieldset[disabled] .btn-twitch.active { 
	background-color: #6441A5; 
	border-color: #2F1F4E; 
  } 
   
  .btn-twitch .badge { 
	color: #6441A5; 
	background-color: #FFFFFF; 
  }

/* OTHER */

body {
	font-family: 'Coda';
	padding: 0px;
	margin: 0px;
	background: #ebeeef;
}

.page-headline {
    max-width: 350px;
    width: 100%;
}

.introduction_image {
	border: 5px solid #fff;
	border-radius: 20px;
	max-width: 100%;
	margin: 20px 0;
}

.mini-logo {
	height: 52px;
}

.a-default {
	color: #333;
	text-decoration: none;
}

.a-default:hover {
    text-decoration: underline;
    cursor: pointer;
}

.a-fb {
	text-decoration: none;
	border-radius: 5px;
	text-align: center;
	cursor: pointer;
}

.a-tw {
	text-decoration: none;
}

.a-twitch {
	text-decoration: none;
}

.twitch-button-container {
	padding: 10px;
	color: #fff;
	border-radius: 5px;
	background: #9147ff;
}

.twitch-button-container:hover {
	background: #772ce8;
}

.fb-button-container {
	padding: 10px;
	color: #fff;
	border-radius: 5px;
	background: #3d6ad6;
}

.fb-button-container:hover {
	background: #1D3C78;
}

.tw-button-container {
	padding: 10px;
	color: #fff;
	border-radius: 5px;
	background: #1da1ff;
}

.tw-button-container:hover {
	background: #1a90da;
}

.loading-overlay {
	display: none;
	background: rgba( 26, 26, 26, 0.7 );
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 5;
	top: 0;
}

.loading-overlay-image-container {
	display: none;
	position: fixed;
	z-index: 7;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50% );
}

.loading-overlay-img {
	width: 50px;
	height: 50px;
	border-radius: 5px;
}

#bottom-bar {
    bottom: -16px;
    position: relative;
    left: 0;
    right: 0;
}

#bottom-bar ul {
	display: inline-flex;
	list-style: none;
	padding: 0;
}

#bottom-bar li {
	line-height: 0;

}

#bottom-bar ul li a {
	padding-top: 0px;
	display: inline-block;

}

#bottom-bar ul li:not(:first-child):before {
	content: "|";
	padding: 0 5px;
  }

#open_fullscreen, #close_fullscreen {
	cursor: pointer;
    position: absolute;
    color: rgb(255, 255, 255);
    z-index: 20;
    display: block;
    background-color: #333;
    height: 80px;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-family: arial;
    width: 1000px;
    border-radius: 0 0 20px 20px;
}

#open_fullscreen div, #close_fullscreen div {
	margin-bottom: 20px;
}

#open_fullscreen div, #close_fullscreen div {
	font-size: 40px;
    border-radius: 0 0 20px 20px;
    background-color: #333;
    width: 100px;
    height: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -10px;
    position: relative;
}

span.d0 {display:none;}

@media screen and ( min-width: 800px ) { /* desktop */
	.pc-only {
		display: block;
	}

	.mobile-only {
		display: none;
	}
}

@media screen and ( max-width: 800px ) { /* mobile */
	.pc-only {
		display: none;
	}

	.mobile-only {
		display: block;
	}
}