﻿.t5-flex-center {
	display: flex;
	flex-direction: column;
	margin: 0 10rem;
}

.margin-top {
	margin-top: 1.5rem;
}

.align-center {
	text-align: center;
}

.center-vertical {
	/*min-height: 100%;*/ /* Fallback for browsers do NOT support vh unit */
	/*min-height: 100vh;*/ /* These two lines are counted as one :-)       */
	/*min-width: 100%;
    min-width: 100vh;*/
	display: flex;
	align-items: center;
	justify-content: space-around;
	text-align: center;
}

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

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

	100% {
		opacity: 1;
	}
}

@-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;
	}
}

#turn5-splash-img {
	max-width: 100%;
	height: auto;
}

#btn-enter {
	display: flex;
	align-content: center;
	justify-content: center;
	font-size: 40px;
}

#scroll-to-request-form {
	cursor: pointer;
	font-size: 1.25rem;
	margin-top: 1rem;
	color: #787878;
	font-style: italic;
}

#in_notes {
	height: 10rem;
}

#splash-subheader {
	font-size: 1rem;
}

@media screen and (max-width: 766px) {
	.t5-flex-center {
		margin: 0;
	}
}

#main-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 98vh;
}

.custom-page-body {
	height: 100%;
}

.custom-minimized-window-container {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	margin-right: 0.75rem;
	position: fixed;
	z-index: 1000;
	bottom: 0;
	right: 0;
}

.custom-minimized-window {
	font-size: 1.25rem;
	background-color: rgba(234,100,26);
	color: white;
	padding: 5px;
	font-weight: bold;
	box-shadow: 2px 3px 9px 1px lightgray;
}

.custom-icon-size {
	font-size: 1.5rem;
	cursor: pointer;
}
