@charset "utf-8"; /* MightyLopers, Bastian Bensch */

/* font imports */

@font-face { /* latin-ext */
	font-family: "Lato";
  src: url("../fonts/Lato-Regular.woff2") format("woff2"); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

html, body {
	display: flex;
	flex-flow column nowrap;

	overflow: hidden;

	position: relative;
	width: 100%;
	height: 100%;

	font-size: 62.5%;
}

body {
	font-family: 'Lato', Helvetica, Arial, Verdana, sans-serif;
  font-size: 1.6rem; font-size: 16px;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: normal;
	white-space: normal;

  color: rgb(150,148,148);

  background-color: rgb(255,255,255);
}

#app {
	display: flex;
	flex-flow: column nowrap;

	overflow-x: auto;
	overflow-y: scroll;

	position: relative;
	width: 100%;
	min-height: 100%;
	z-index: 1000;
}

#app > * {

	display: flex;
	flex-direction: column;
	flex-grow: 1;

	min-width: inherit;
	width: inherit;
	min-height: inherit;
	height: inherit;
}

/* selection */
*::selection { /* Chrome */
	color: rgba(255,255,255,1);
  background-color: rgba(150,150,150,1);
}

*::-moz-selection { /* Firefox */
	color: rgba(255,255,255,1);
  background-color: rgba(150,150,150,1);
}

.noSelect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

*:not(:empty) + .emptyShow {
	display: none;
	overflow: hidden;
	visibility: hidden;
}

.emptyMsg {
	width: 100%;
	display: block;
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

/* stop all transitions by element and all childs */
.stopTransition, .stopTransition * {
	-webkit-transition: none !important;
	   -moz-transition: none !important;
	     -o-transition: none !important;
	        transition: none !important;
}

.noBreak {
	white-space: nowrap;
}

.shadow {
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16),0 0 0 1px rgba(0,0,0,0.08);
}

header {
	display: flex;
	flex-flow: column nowrap;

	position: relative;
	width: 100%;
	height: 0;

	z-index: 3;
}

main {
	display: flex;
	flex-flow: column nowrap;
	flex-grow: 1;

	position: relative;
	width: 100%;
	margin: 64px 0 0 0;

	z-index: 2;
}

footer {
	display: flex;
	flex-flow: column nowrap;

	position: relative;
	width: 100%;
	height: 0;

	z-index: 3;
}

section {
	padding: 16px 16px 0 16px;
}

section > article {
	padding: 0 0 16px 0;
}

/* ### Links ### */
a,
a:link,
a:visited {
	cursor: pointer;
	position: relative;
	color: rgb(32,153,191);
	text-decoration: none;
}

a:hover,
a:focus,
a:active { /**/
	color: rgb(17,105,133);
}

h1, h2, h3, h4, h5, h6 {
	font-size: 2rem;
	font-weight: bold;
}

h1 {
	color: rgb(0,0,0);
	line-height: 2rem;
}

h2 {
	font-size: 1.5rem;
}

h3 {
	font-size: 1.2rem;
}

h4 {
	font-size: 1rem;
}

h5 {
	font-size: .8rem;
}

h6 {
	font-size: .7rem;
}

b {
	font-weight: bold;
	color: rgb(120,120,120);
}

/* ### Loader Spiner ### */
.spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 16px;
  height: 16px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

summary {
  cursor: pointer;
}
/* ### Table ### */
table {
	border-collapse: collapse;
	border: 1px solid rgb(220,220,220);
	min-width: 50%;
}

th {
	padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #4CAF50;
  color: white;
}

tr {
	border-top: 1px solid rgb(220,220,220);
	border-bottom: 1px solid rgb(220,220,220);
}

tr:nth-child(even) {
	background-color: #f2f2f2;
}

tr:hover {
	background-color: #ddd;
}

td {
  border: 1px solid #939393;
  padding: 8px;
}

th {
	padding: 8px;
	border-top: 1px solid #4CAF50;
	border-bottom: 1px solid #387e3b;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}

th:first-of-type {
	border-left: 1px solid #4CAF50;
}

th:last-of-type {
	border-right: 1px solid #4CAF50;
}
