.image {
  opacity: 1;
  display: block;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.container_img:hover .image {
  opacity: 0.1;
}

.container_img:hover .middle {
  opacity: 1;
}

.sideHeader{
  font-weight: bold;
  color: rgba(238,127,0);
}
.table_login{
    margin: inherit;
    min-width: 40%;
    max-width: 40%;
}


.wichtig{
    border:1px solid rgba(238,127,0) !important;
}

.greyline{
    margin-bottom: 0.6em;
    border-bottom: 1px solid #aaa;
    padding: 0.5em 0 0.17em 0;
    color: #000;
    font: normal 150%/1.5 sans-serif;
}

.loader {

  border: 10px solid #0070B8;

  border-radius: 50%;

  border-top: 10px solid white;

  width: 70px;

  height: 70px;

  -webkit-animation: spin .7s linear infinite; /* Safari */

  animation: spin .7s linear infinite;

}



/* Safari */

@-webkit-keyframes spin {

  0% { -webkit-transform: rotate(0deg); }

  100% { -webkit-transform: rotate(360deg); }

}



@keyframes spin {

  0% { transform: rotate(0deg); }

  100% { transform: rotate(360deg); }

}

#snackbar {

  visibility: hidden; /* Hidden by default. Visible on click */

  /*min-width: 250px;*/ /* Set a default minimum width */

  background-color: #fff; /* Black background color */

  color: #0070B8; /* White text color */

  text-align: center; /* Centered text */

  border-radius: 2px; /* Rounded borders */

  padding: 16px; /* Padding */



  position: fixed; /* Sit on top of the screen */

  z-index: 1; /* Add a z-index if needed */

  bottom: 30px; /* 30px from the bottom */

}



/* Show the snackbar when clicking on a button (class added with JavaScript) */

#snackbar.show {

  visibility: visible; /* Show the snackbar */

  left: 35%;

  right: 35%;

  top: 50%;

  bottom: 40%;

  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.

  However, delay the fade out process for 2.5 seconds */

  -webkit-animation: fadein 0.5s;

  -webkit-animation-fill-mode: forwards;

  animation: fadein 0.5s;

  animation-fill-mode: forwards;

}


/* * {
  transition: all .2s ease;
} */

.extra-info {
  display: none;
  line-height: 30px;
  font-size: 12px;
	position: absolute;
  top: 0;
  left: 50px;
}

.info:hover .extra-info {
  display: block;
}

.info {
  font-size: 20px;
  padding-left: 5px;
  width: 20px;
  border-radius: 15px;
  color: rgb(238, 127, 0);
}

.info:hover {
  background-color: white;
  padding: 0 0 0 5px;
  width: 315px;
  text-align: left !important;
} 
body {
  text-align: center;
  background: #fcfcfa;
  color: #818078;
  font-family: Futura, sans-serif;
}

.container {
  max-width: 50%;  
  margin: 40px auto;
}

.hr-text {
  line-height: 0;
  position: relative;
  outline: 0;
  border: 0;
  color: black;
  text-align: center;
  height: 1.5em;
  opacity: .5;
}
  .hr-text:before {
    content: '';
    /*background: linear-gradient(to right, transparent, #818078, transparent);*/
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
  }
  .hr-text:after {
    content: attr(data-content);
    position: relative;
    display: inline-block;
    color: black;

    padding: 0 .5em;
    line-height: 1.5em;
    color: black;
    background-color: #fcfcfa;
  }

