/*--- Basic Shit ---*/
* {
    padding: 0;
    margin: 0;
}
body {
    color: rgb(223, 223, 223);
    text-shadow: 1px 1px 1px #333, 1px -1px 1px #333, -1px 1px 1px #333, -1px -1px 1px #333;
    background-color: black;
}


/*--- Content ---*/
.centermid {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.verticalLine {
    border-left: 2px solid #A4A4A4;
}
.background-transparent {
  padding-top: 20px;
  padding-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.45);
}
.card{
  background-color: rgba(0, 0, 0, 0.45);
}
.content-settings{
    margin-top: 50px;
    z-index: 6;
}
.table-settings{
    background-color: rgba(0, 0, 0, 0.45);

}
.hr-light{
    border-color: rgba(202, 202, 202, 0.35);
    margin-bottom: 20px;
    margin-top: 30px;
}


/*--- Navigation ---*/
.navbar-transparent{
     background-color: rgba(0, 0, 0, 0.45);
 }
.login-transparent{
    background-color: rgba(0, 0, 0, 0.72);
}
.nav-link {
    font-weight: 600;
    font-size: 1.2em
}
.navbar .dropdown-menu .form-control {
    width: 200px;
}
.btn-login{
    color: rgba(255,255,255,.5);
}


/*--- Imprint ---*/
.jumboprint{
    margin-top: 50px;

}


/*--- Background-Image-Slider ---*/
.crossfade > figure {
    animation: imageAnimation 60s linear infinite 0s;
    backface-visibility: hidden;
    background-size: cover;
    color: transparent;
    min-height: 100%;
    left: 0px;
    opacity: 0;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: -10;
}
.crossfade > figure:nth-child(1) {
    background-image: url('../img/slider1.jpg');
    z-index: -10;

}
.crossfade > figure:nth-child(2) {
    animation-delay: 12s;
    background-image: url('../img/slider2.jpg');
    z-index: -10;
}
.crossfade > figure:nth-child(3) {
    animation-delay: 24s;
    background-image: url('../img/slider3.jpg');
    z-index: -10;
}
.crossfade > figure:nth-child(4) {
    animation-delay: 36s;
    background-image: url('../img/slider4.jpg');
    z-index: -10;
}
.crossfade > figure:nth-child(5) {
    animation-delay: 48s;
    background-image: url('../img/slider5.jpg');
    z-index: -10;
}
@keyframes imageAnimation {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
    }
    8% {
        animation-timing-function: ease-out;
        opacity: 1;
    }
    17% {
        opacity: 1
    }
    25% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}
.img-mid {
	padding-right: 20px;
	position: absolute;
	top: 25%;
	text-align: center;
}
