/* -------------------------------- voffset */

.voffset {
	margin-top: 2px;
}

.voffset1 {
	margin-top: 5px;
}

.voffset2 {
	margin-top: 10px;
}

.voffset3 {
	margin-top: 15px;
}

.voffset4 {
	margin-top: 30px;
}

.voffset5 {
	margin-top: 40px;
}

.voffset6 {
	margin-top: 50px;
}

.voffset7 {
	margin-top: 60px;
}

.voffset8 {
	margin-top: 70px;
}

.voffset8 {
	margin-top: 80px;
}

.voffset10 {
	margin-top: 90px;
}

.voffset11 {
	margin-top: 100px;
}

.voffset12 {
	margin-top: 120px;
}

.voffset13 {
	margin-top: 150px;
}


/* --------------------------------- FADE IN */

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-o-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation: fadeIn 0.8s 1;
	-moz-animation: fadeIn 0.8s 1;
	-o-animation: fadeIn 0.8s 1;
	animation: fadeIn 0.8s 1;
}


/* ----------------------------------- Shadows */

.shadow-1 {
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.shadow-2 {
	box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.shadow-3 {
	box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.shadow-4 {
	box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
}

.shadow-5 {
	box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
}


/* ----------------------------------- Vertical center */

.v-center {
	margin-top: 50%;
	transform: translateY(-50%);
}

.v-center-2 {
	vertical-align: middle;
}

.v-center-content {
	display: flex;
	align-items: center;
}


/* -------------------------------------- Horizontal center */

.h-center {
	margin: auto 0;
}


/* -------------------------------------- Buttons */
.btn-without-hover--green:hover {
    cursor: default;
	background-color: #5cb85c;
}

.btn-without-hover--red:hover {
    cursor: default;
	background-color: #d9534f;
}