.breadcrumb-wrapper {
	background: #CFD8DC;
	padding: 15px;
}

.breadcrumb-items {
	padding-left: 0;
}

.breadcrumb-items li {
	display: inline;

}

.breadcrumb-items a {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px transparent;
}

.breadcrumb-items a:hover {
	  -webkit-animation-name: hvr-pop;
    animation-name: hvr-pop;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.breadcrumb-items li::after {
	content: " /";
}

.breadcrumb-items li:last-child::after {
	content: "";
}

.form {
	padding: 40px;
}

.form-group {
	display:  inline-block;
	width: 30%;
	margin-bottom: 20px;
	vertical-align:top;
}



.form-input {
	padding: 10px;
	width: 85%;
	margin-top:7px;
}

.date-input {
	width: 85%;
	height: 35px;
	margin-top: 7px;
}

textarea {
	width:85%;
	margin-top: 9px;
	margin-bottom: 10px;
	padding: 10px;
}

@-webkit-keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}



#submit-btn {
		width: 200px;
    background-color: #263238;
    margin-top: 10px;
    border: 1px solid silver;
    display: inline-block;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    color: white;
		display: inline-block;
}

#submit-btn:hover {
	background-color: #A09F9F;
	color: black;
}

.form-footer {
	width:56.5%; 
	text-align: right;
}

.form-footer p {
	color: silver;
}

.err {
	color: red;
	display: inline;
	margin: 0;
	visibility: hidden;
}

.err p {
	margin: 0;
	margin-top: 7px;

	
}

.success-load, .fail-load {
	display: none;
	min-height: 400px;
	padding: 40px;
}

