/* Condensed Application CSS */

/*
	Alignment.css
*/

.align-center {
	
	text-align: center;
	justify-content: center;
	
}

.align-center-vertical {
	
	align-items: center;
	
}

.fullwidth {
	
	width: 100%;
	
}

.relative {
	
	position: relative;
	top: 0;
	left: 0;
	
}

.sticky {
	
	position: sticky;
	top: 0;
	left: 0;
	
}

/*
	Animations.css
*/

@keyframes bounce {
	
	0%		{ transform: scale(1,1)		translateY(0); }
	10% 	{ transform: scale(1.1, .9)		translateY(0); }
	30% 	{ transform: scale(.9, 1.1)		translateY(100px); }
	50% 	{ transform: scale(1,1)		translateY(0); }
	100%	{ transform: scale(1,1)		translateY(0); }
	
}

@keyframes glow {
	
	from 	{ background-color: rgb(var(--ColorBG)); }
	to		{ background-color: rgb(var(--ColorWarn), 0.5); }
	
}

@keyframes grow {
	
	from 	{ transform: scale(1); }
	to		{ transform: scale(2); }
	
}

@keyframes shrink {
	
	from	{ transform: scale(1); }
	to 		{ transform: scale(0.5); }
	
}

@keyframes float {
	
	from	{ transform: translateY(-10vh); }
	to		{ transform: translateY(10vh); }
	
}

@keyframes spin {
	
	from 	{ transform: rotate(0deg); }
	to		{ transform: rotate(360deg); }
	
}

@keyframes wobble {
	
	from	{ transform: rotate(15deg); }
	to		{ transform: rotate(-15deg); }
	
}

/*
	Base.css
*/

html {
	
	height: 100%;
	width: 100%;
	overflow: hidden;
	
}

body {
	
	width: 100%;
	height: 100%;
	overflow: hidden;
	
}

a, a:hover {
	
	text-decoration: none !important;
	
}

#app {
	
	width: 100%;
	height: 100%;
	overflow-y: auto;
	
}

.standard-container {
	
	width: 100%;
	
	padding: 2vw;
	
}

.modal-container {
	
	background-color: #FFFFFF;
	padding: 2vw;
	
	box-shadow: 0 0 0.2vw rgba(0, 0, 0, 0.5);
	
}

.vertical {
	
	display: flex;
	flex-direction: column;
	
}

.horizontal {
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	
}

.grow {
	
	flex-grow: 2;
	
}

.min-60 {
	
	min-width: 60%;
	
}

.space-evenly {
	
	justify-content: space-evenly;
	
}

.shadow {
	
	box-shadow: 0 0 0.2vw rgba(0, 0, 0, 0.5);
	
}

.shadow-hover-inset:hover {
	
	box-shadow: inset 0 0 10px rgba(0,0,0,0.25);
	
}

.icon-small {
	
	padding: 0.25vw;
	font-size: 16px;
	
}

.icon-medium {
	
	padding: 0.25vw;
	font-size: 24px;
	
}

.icon-medium-large {
	
	padding: 0.25vw;
	font-size: 30px;
	
}

.icon-large {
	
	padding: 0.5vw;
	font-size: 36px;
	
}

.icon-xlarge {
	
	padding: 1vw;
	font-size: 48px;
	
}

.icon-text {
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	
	font-weight: bold;
	text-align: center;
	
	padding: 1vw;
	
}

.theme-container .hover:hover {
	
	color: rgb(var(--ColorAccentBright));
	
}

.white {
	
	color: white;
	
}

.gray {
	
	color: gray;
	
}

.red {
	
	color: red;
	
}

.green {
	
	color: green;
	
}

.yellow {
	
	color: #ffcc00;
	
}

.orange {
	
	color: #F68B1F;
	
}

.blue-trust {
	
	color: #1D7D81;
	
}

.button-blue {
	
	color: #FFFFFF;
	background-color: #1D7D81;
	
	margin: 0px;
	margin-left: 0.25vw;
	margin-right: 0.25vw;
	padding: 0.2vw;
	
	border: none;
	box-shadow: 0 0 0.2vw rgba(0, 0, 0, 0.5);
	
}

.button-blue:hover {

	color: #000000;

}

.button-orange {
	
	color: #FFFFFF;
	background-color: #F68B1F;
	
	border: none;
	box-shadow: 0 0 0.2vw rgba(0, 0, 0, 0.5);
	
}

.button-orange:hover {
	
	color: #000000;
	
}

.hover-white:hover {
	
	color: white;
	
}

.hover-orange {
	
	color: rgba(0, 0, 0, 0.5);
	
}

.hover-orange:hover {
	
	color: #F68B1F;
	
}

.hover-orange-neutral:hover {
	
	color: #F68B1F;
	
}

.hover-opacity:hover {
	
	opacity: 0.8;
	
}

.padding {
	
	padding: 2vw;
	
}

.padding-left {
	
	padding-left: 1vw;
	
}

.table {
	
	display: inline-table;
	margin: 0px;
	
}

.table-header {
	
	display: table-cell;
	position: sticky;
	background-color: #d1e9e5;
	font-weight: bold;
	
}

.table-row {
	
	display: table-row;
	
}

.table-row:nth-child(even) {
	
	color: rgb(var(--ColorText));
	background-color: rgb(var(--ColorAccentBright));
	
}


.table-row:hover {
	
	box-shadow: inset 0 0 10px rgba(0,0,0,0.25);
	
}

.table-cell {
	
	display: table-cell;
	padding: 0.5vw;
	
}

.provider-logo {
	
	display: flex;
	justify-content: center;
	align-items: center;
	
	height: 25vh;
	width: 100%;
	
	background-image: url(../media/LAUNCH.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
	
}

.scroll {
	
	overflow-y: auto;
	overflow-x: hidden;
	
}

/*
	Button.css
*/

.app-core-button-panel {
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	
	justify-content: center;
	align-items: center;
	
	width: 100%;
	
	background-color: rgb(var(--ColorMid));
	
}

.app-core-button-panel-item {
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	flex-grow: 1;
	
	justify-content: center;
	align-items: center;
	
}

.app-core-button-panel-item:hover {
	
	background-color: rgb(var(--ColorHighlight));
	
}

.app-core-button-panel-item-current {
	
	color: rgb(var(--ColorTextInvert));
	background-color: rgb(var(--ColorAccentDark));
	
}

.app-core-button-panel-item i {
	
	padding: 1vw;
	
}

.app-core-button-panel-item span {
	
	font-weight: bold;
	
}

/*
	Containers.css
*/

.theme-container {
	
	color: rgb(var(--ColorText));
	background-color: rgba(var(--ColorBG), 0.9);
	
	margin-bottom: 2vw;
	
	box-shadow: 0 0 10px 2px rgb(var(--ColorShadow), 1);
	
}

.theme-container img:not(.photos-circle) {
	
	object-fit: contain;
	
	max-height: 100%;
	max-width: 100%;
	
}

/*
	Effects.css
*/

.hidden {
	
	display: none;
	
}

/*
	Form.css
*/

.theme-container .form, form {
	
	display: flex;
	flex-direction: column;
	text-align: center;
	
}

.theme-container input, select, textarea {
	
	margin: 0.25vw !important;
	padding: 0.5vw;
	
	color: rgb(var(--ColorTextInvert));
	background-color: rgb(var(--ColorAccentBright));
	
	outline: none;
	border: none;
	
	box-shadow: 0px 0px 10px 0.1vh rgb(var(--ColorShadow));
	
}

.theme-container input::placeholder, textarea::placeholder {
	
	color: rgb(var(--ColorTextInvert));
	opacity: 0.8;
	
}

.theme-container input:hover, input:focus, input:active {
	
	color: rgb(var(--ColorText));
	background-color: rgb(var(--ColorHighlight));
	
}

.theme-container input:focus {
	
	outline: 0.2vw solid rgb(var(--ColorAccentBright));
	
}

.theme-container .form-input {
	
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	
}

.theme-container .form-input label {
	
	min-width: 10vw;
	margin: 0.5vw;
	
}

.theme-container .form-input input, select, textarea {
	
	margin-left: auto;
	flex-grow: 1;
	
}

.theme-container .form-controls {
	
	padding: 1vw;
	
}

.theme-container .form-controls:hover {
	
	color: rgb(var(--ColorHighlight));
	
}

.theme-container .form-submit {
	
	padding-left: 5vw;
	padding-right: 5vw;
	
	margin-left: auto;
	margin-right: auto;
	
}

.theme-container .form-label {
	
	padding: 1vw;
	padding-bottom: 0.25vw;
	
	font-family: var(--FontHeading);
	font-weight: bold;
	
}

.theme-container .form-label:before {
	
	color: 			rgb(var(--ColorHighlight));
	
	content:		"\f35a";
	font-family:	"Font Awesome 5 Free";
	font-weight:	900;
	
}

.fancy-form {
	
	display: table;
	table-layout: fixed;
	width: 100%;
	
	background-color: rgba(255, 255, 255, 0.8);
	
}

.fancy-form > * {
	
	display: table-row;
	
	width: 100%;
	
}

.fancy-form > *:nth-child(even) {
	
	background-color: rgba(125, 125, 125, 0.5);
	
}

.fancy-form > * > * {
	
	display: table-cell;
	
}

.fancy-form > * > input {
	
	width: 100%;
	
}

/*
	Icon.css
*/

.theme-container .icon-ok {
	
	color: rgb(var(--ColorOK)) !important;
	
}

.theme-container .icon-warn {
	
	color: rgb(var(--ColorWarn)) !important;
	
}

.theme-container .icon-error {
	
	color: rgb(var(--ColorError)) !important;
	
}

.theme-container .icon-info {
	
	color: rgb(var(--ColorInfo)) !important;
	
}

.theme-container .icon-link {
	
	color: rgb(var(--ColorAccentDark));
	
}

.theme-container .icon-link:hover {
	
	color: rgb(var(--ColorAccentBright));
	
}

.theme-container .icon-text {
	
	font-family: var(--FontHeading);
	
}

.theme-container *:not(.icon-link) > i {
	
	color: rgb(var(--ColorAccentBright));
	
}

/*
	Margin.css
*/

.margin {
	
	margin: 1vw;
	
}

.margin-top {
	
	margin-top: 1vw;
	
}

.margin-top-double {
	
	margin-top: 2vw;
	
}

.margin-bottom: {
	
	margin-bottom: 1vw;
	
}

/*
	Modules.css
*/

.module-responsive {
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	
	align-items: center;
	
	margin: auto;
	
	min-width: 80%;
	max-width: 100%;
	
	min-height: 25vh;

	border-radius: 2vw;
	box-shadow: 0 0 10px 2px rgb(var(--ColorShadow), 1);
	
	background-color: rgb(var(--ColorBG), 0.9);
	
}

.module-responsive * {
	
	max-width: 100%;
	
}

.module-responsive i {
	
	flex: 1;
	
	padding: 2vw;
	
	margin-top: auto;
	margin-bottom: auto;
	
	font-size: 36pt;
	text-align: center;

	color: rgb(var(--ColorAccentBright));
	
}

.module-responsive > *:not(i) {
	
	flex: 400px;
	align-self: flex-start;

	min-width: 50%;
	
	padding: 2vw;
	
}

/*
	Padding.css
*/

.padding-none {
	
	padding: 0px;
	
}

.padding-small {
	
	padding: 1vw;
	
}

/*
	Pagination.css
*/

.app-core-pagination-pagelist {
	
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
	
	width: 100%;
	
}

.app-core-pagination-pagelist-label {
	
	padding: 1vw;
	padding-right: 2vw;
	
}

.app-core-pagination-pagelist-number {
	
	padding: 2vw;
	
}

.app-core-pagination-pagelist-number:hover {
	
	font-weight: bold;
	color: Orange;
	
}

.app-core-pagination-pagelist-number-current {
	
	padding: 2vw;
	
	font-weight: bold;
	pointer-events: none;
	
}

/* New Pagination */
.app-paginate {
	
	display: flex;
	flex-basis: 100% !important;
	flex-direction: row;
	flex-wrap: wrap;
	
	width: 100%;
	
	padding: 0.5vw;
	
}

.app-paginate-number {
	
	padding-top: 0.5vw;
	padding-bottom: 0.5vw;
	padding-left: 1.5vw;
	padding-right: 1.5vw;
	
	background-color: rgba(var(--ColorAccentBright), 0.3);
	
}

.app-paginate-number:hover,active {
	
	font-weight: bold;
	
	color: rgb(var(--ColorTextInvert));
	background-color: rgba(var(--ColorAccentBright), 0.5);
	
}

.app-paginate-number-current:before {
	
	content: "\f0da \0000a0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
	
}

/*
	Photos.css
*/

.photos-circle {
	
	max-width: 50% !important;
	border-radius: 50%;
	
}

.photos-ellipse {
	
	max-width: 50%;
	border-radius: 25%;
	
}

/*
	Sortable.css
*/

.app-sortable {
	
	display: flex;
	justify-content: space-between;
	align-items: center;
	
	padding: 1vw;
	
	font-weight: bold;
	
	background-color: rgba(var(--ColorHighlight), 0.2);
	backdrop-filter: blur(1vw);
	
}

.app-sortable:hover,active {
	
	background-color: rgba(var(--ColorAccentBright), 0.5);
	
}

.app-sortable-column {
	
	flex-direction: column;
	
}

.app-sortable-options {
	
	display: flex;
	flex-direction: row;
	
	justify-content: center;
	align-items: center;
	
}

.app-sortable-options div {
	
	padding: 1vw;
	
}

/*
	Table.css
*/

.theme-container .table {
	
	display: inline-table;
	margin: 0px;
	
}

.theme-container .table-header {
	
	display: table-cell;
	position: sticky;
	
	color: rgb(var(--ColorTextInvert));
	background-color: rgb(var(--ColorAccentDark));
	font-weight: bold;
	
}

.theme-container .table-row {
	
	display: table-row;
	
}

.theme-container .table-row:hover {
	
	box-shadow: inset 0 0 10px rgb(var(--ColorHighlight));
	
}

.theme-container .table-cell {
	
	padding: 1vw;
	
	display: table-cell;
	
	overflow-wrap: anywhere;
	word-wrap: anywhere;
	
}

.theme-container .table-row:nth-child(odd) {
	
	color: rgb(var(--ColorTextInvert));
	background-color: rgb(var(--ColorAccentBright));
	
}

.theme-container .table-row:nth-child(even) {
	
	color: rgb(var(--ColorText));
	background-color: rgb(var(--ColorBG));
	
}

.theme-container .table i {
	
	color: rgb(var(--ColorText));
	
}

.theme-container .table-cell i {
	
	color: rgb(var(--ColorText)) !important;
	
}

/*
	Text.css
*/

.text-xsmall {
	
	font-size: var(--SizeXSmall);
	
}

.text-small {
	
	font-size: var(--SizeSmall);
	
}

.text-medium {
	
	font-size: var(--SizeStandard);
	
}

.text-large {
	
	font-size: var(--SizeLarge);
	
}

.text-heading {
	
	padding: 0.5vw;
	
	font-family: var(--FontHeading);
	font-size: var(--SizeHeading);
	font-weight: bold;
	
}

.theme-container div *:not(i) {

	font-family: var(--FontStandard);

}

/*
	TinyMCE.css
*/

.mce-edit-area {
	
	min-height: 10vh;
	
}