.nav {
    display: flex;
}

body{
    background: url("Images/background.jpg") no-repeat center center fixed;
    font-family: "Segoe UI";
    font-weight: 100;
}

h1{
    text-align: center;
}

h3 {
    text-align: center;
    font-weight: 100;
    font-size: 20px;
}

h4 {
    font-weight: 100;
    font-size: 16pt;
    margin: 0;
}

.navpoint {
    width: 50%;
    border: solid 1px black;
    cursor: pointer;
}

.navpoint.current {
    border-bottom: none;
}

.navpoint p {
    text-align: center;
}

.page {
    height: 100%;
}

table.table tr {
    height: 35px;
}

table.table th {
    cursor: pointer;
}

input[type="text"] {
    width: 95%;
}

table.table {
    width: 100%;
    text-align: center;
}

input[type="submit"] {
    width: 200px;
    height: 35px;
    position: relative;
    left: 160px;
}

.replayeinsenden {
    display: none;
    position: relative;
    top: 50px;
    width: 550px;
    text-align: left;
    margin: 0 auto;
}

.sendfield input#fileToUpload {
    margin-top: 20px;
}

.current.replayeinsenden{
    display: block;
}

.eingesendetereplays{
    display: none;

    position: relative;
    top: 100px;
}

.current.eingesendetereplays{
    display: block;
}

.howto {
    position: fixed;
    bottom: 10px;
    font-size: 16pt;
}

select {
    font-size: 17pt;
}

fieldset {
    border: none;
}

form {
    background: transparent;
}

.sendfield {
    margin: 10px 0px;
    padding: 10px 25px;
    background: transparent;
}
.sendfield input[type="text"] {
    margin-top: 10px;
}

.innerfilter {
    width: 800px;
    margin: 0 auto;
}

/* INPUT */

/* form starting stylings ------------------------------- */
.group 			  { 
  position:relative; 
  margin-bottom:45px; 
}
.sendfield input[type="text"] 
{
  background: transparent;				
  font-size:18px;
  padding:10px 10px 10px 5px;
  display:block;
  border:none;
  border-bottom:1px solid #757575;
}

/* LABEL ======================================= */
label 				 {
  color:#999; 
  font-size:18px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:10px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}

input[type="text"]:focus { outline:none; }
/* active state */
.sendfield input[type="text"]:focus ~ label, .sendfield input[type="text"]:valid ~ label 		{
  top:-20px;
  font-size:14px;
  color:#5264AE;
}

/* BOTTOM BARS ================================= */
.bar 	{ position:relative; display:block; width:300px; }
.bar:before, .bar:after 	{
  content:'';
  height:2px; 
  width:0;
  bottom:1px; 
  position:absolute;
  background:#5264AE; 
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.bar:before {
  left:50%;
}
.bar:after {
  right:50%; 
}

/* active state */
.sendfield input[type="text"]:focus ~ .bar:before, .sendfield input[type="text"]:focus ~ .bar:after {
  width:50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
  position:absolute;
  height:60%; 
  width:100px; 
  top:25%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
.sendfield input[type="text"]:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

form.replayform {
    background: none;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
