/* Customize LTEAdmin */
/*body {background-image: url(/dist/img/background.png);background-repeat: repeat;}*/

body {
	background-image: url(/dist/img/hintergrund.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center top;
	background-size: cover;
}

.nowrap {
	white-space: nowrap;
}

.layout-navbar-fixed.text-sm .wrapper .content-wrapper{
	margin-top: 63px;
}

@media screen and (min-width: 576px){
	.layout-top-nav .wrapper, .layout-top-nav .wrapper::before, .layout-top-nav .wrapper .main-header, body.sidebar-collapse:not(.sidebar-mini-xs):not(.sidebar-mini-md):not(.sidebar-mini) .main-header, .layout-top-nav .wrapper .main-footer {
		max-width: 540px;
		margin: 0 auto;
	}
}

@media screen and (min-width: 768px){
	.layout-top-nav .wrapper, .layout-top-nav .wrapper::before, .layout-top-nav .wrapper .main-header, body.sidebar-collapse:not(.sidebar-mini-xs):not(.sidebar-mini-md):not(.sidebar-mini) .main-header, .layout-top-nav .wrapper .main-footer {
		max-width: 768px;
		margin: 0 auto;
	}
	
	.layout-navbar-fixed.text-sm .wrapper .content-wrapper{
		margin-top: 96px;
	}
}

@media screen and (min-width: 992px){
	.layout-top-nav .wrapper, .layout-top-nav .wrapper::before, .layout-top-nav .wrapper .main-header, body.sidebar-collapse:not(.sidebar-mini-xs):not(.sidebar-mini-md):not(.sidebar-mini) .main-header, .layout-top-nav .wrapper .main-footer {
		max-width: 992px;
		margin: 0 auto;
	}
	
	.layout-navbar-fixed.text-sm .wrapper .content-wrapper{
		margin-top: 96px;
	}
}

@media screen and (min-width: 1200px){
	.layout-top-nav .wrapper, .layout-top-nav .wrapper::before, .layout-top-nav .wrapper .main-header, body.sidebar-collapse:not(.sidebar-mini-xs):not(.sidebar-mini-md):not(.sidebar-mini) .main-header, .layout-top-nav .wrapper .main-footer {
		max-width: 1200px;
		margin: 0 auto;
	}
	
	.layout-navbar-fixed.text-sm .wrapper .content-wrapper{
		margin-top: 96px;
	}
}

.layout-top-nav .wrapper .main-header {
  -webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.49);
  box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.49);
}

.layout-top-nav .wrapper .main-header .header-title {
  font-size: 1.9em;
  font-weight: bold;
}

.layout-top-nav .wrapper {
	-webkit-box-shadow: 0px 0px 10px 5px #000000;
	box-shadow: 0px 0px 10px 5px #000000;
    border-radius: 4px 4px 0px 0px;
}

.content-header {
	margin-bottom: 16px;
}

.content-wrapper {
	padding-bottom: 1px;
}

.bg-gray-dark>a {
    color: #fd7e14!important
}

/* Customize LTEAdmin */

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 1300;
}

.imgfiles {
	width:100%;
	height:700px;
	position:inherit;
}

.hidden {
	visibility: hidden;
}

/* Loader with Status */

.circle-loader {
	margin: 0;
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-left-color: #5cb85c;
	animation-name: loader-spin;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	position: relative;
	display: inline-block;
	vertical-align: top;
	box-sizing: content-box;
}

.circle-loader,
.circle-loader:after {
	border-radius: 50%;
	width: 40px;
	height: 40px;
}

.load-complete {
	-webkit-animation: none;
	animation: none;
	border-color: #5cb85c;
	transition: border 500ms ease-out;
}
.load-error {
	-webkit-animation: none;
	animation: none;
	border-color: #FF0000;
	transition: border 500ms ease-out;
}

.checkmark {
	display: none;
	box-sizing: content-box;
}

.checkmark-draw:after {
    opacity: 1;
    height: 20px;
    width: 10px;
    transform-origin: left top;
    border-right: 2px solid #5cb85c;
    border-top: 2px solid #5cb85c;
    content: '';
    left: 10px;
    top: 20px;
    position: absolute;
    animation-duration: 1.2s;
    animation-timing-function: ease;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg);
}
  
.checkmark-error {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
}

.checkmark-error:before, .checkmark-error:after {
	position: absolute;
	content: ' ';
	left: 9px;
	height: 20px;
	width: 2px;
	background-color: #f00;
}

.checkmark-error:before {
	transform: rotate(45deg);
}

.checkmark-error:after {
	transform: rotate(-45deg);
}

@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 10px;
    opacity: 1;
  }
  40% {
    height: 20px;
    width: 10px;
    opacity: 1;
  }
  100% {
    height: 20px;
    width: 10px;
    opacity: 1;
  }
}

/* End: Loader with Status */


#regDetail-Overlay {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

/******** Timeline *******/
.main-timeline:after{
    content: '';
    display: block;
    clear: both;
}
.main-timeline .timeline{
    width: 60%;
    padding: 20px 0 0;
    margin: 0 0 20px 5px;
    float: right;
}
.main-timeline .timeline::before {
	width:0px;
}
.main-timeline .timeline-content{
    color: #fff;
    background: #fff;
    padding: 0 30px 30px 45px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
    position: relative;
    z-index: 1;
}
.main-timeline .timeline-content:hover{ text-decoration: none; }
.main-timeline .timeline-content:before,
.main-timeline .timeline-content:after{
    content: '';
    background: linear-gradient(#93E6C1, #3d9970);
    height: 100%;
    border-radius: 0 10px 10px 10px;
    position: absolute;
    left: 35px;
    right: 20px;
    top: -20px;
    z-index: -1;
}
.main-timeline .timeline-content:before{
    background: linear-gradient(to right bottom, transparent 50%, #3d9970 52%);
    height: 20px;
    width: 15px;
    border-radius: 0;
    left: 20px;
    top: -20px;
    right: auto;
}
.main-timeline img{
    border-radius: 10px;
}
.main-timeline .timeline-year{
    color: #3d9970;
    font-size: 35px;
    font-weight: 700;
    transform: translateY(-50%) rotate(90deg);
    position: absolute;
    left: -19px;
    top: 48%;
}
.main-timeline .timeline:nth-child(even){
    margin: 0 5px 25px 0;
    float: left;
}
.main-timeline .timeline:nth-child(even) .timeline-content{ padding: 0 45px 30px 30px; }
.main-timeline .timeline:nth-child(even) .timeline-content:before{
    transform: rotateY(180deg);
    left: auto;
    right: 20px;
}
.main-timeline .timeline:nth-child(even) .timeline-content:after{
    border-radius: 10px 0 10px 10px;
    left: 20px;
    right: 35px;
}
.main-timeline .timeline:nth-child(even) .timeline-year{
    left: auto;
    right: -19px;
}
@media screen and (max-width:767px){
    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even){
        width: 100%;
        margin: 0 0 35px 0;
    }
}

@media screen and (min-width:767px){
    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even){
        width: 80%;
    }
}

@media screen and (min-width:992px){
    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even){
        width: 70%;
    }
}

@media screen and (min-width:1200px){
    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even){
        width: 60%;
    }
}
/******** Timeline *******/
