/*
Theme Name: API - PipelinePlus
Theme URI: https://www.ackertinc.com
Description: Custom theme for API.pipelineplus.com - one page to re-direct users in case they land on https://api.pipelineplus.com.
Author: Alex Steinman
Author URI: 
Version: 1.0.0
*/

html {
	--ackert-dark-blue: #0a0d28;
	--ackert-blue: #3d96dd;
	--blue-cta: #007aff;
	--blue-highlight: #b3d4fc;
	--black: #1d1d1b;
	--darkest-gray: #444;
	--dark-gray: #808080;
	--gray: #a9a9a9;
	--medium-gray: #eff1f6;
	--light-gray: #ededed;
	--panel-bg: #eff1f6;
	--white: #ffffff;

	--body-font-family: Arial, Helvetica, sans-serif;
	--header-font-family: 'Roboto Condensed', 'Helvetica Neue', var(--body-font-family);
}

html,
body {
	font-family: var(--body-font-family);
	font-size: 100%;
	width: 100%;
	left: 0;
	top: 0;
	color: #ffffff;
	background-color: #0a0d28;
	margin: 0 auto;
	padding: 0;
	min-height: 100vh;
}

*, :after, :before {
    box-sizing: border-box;
}

a {
	color: #3499e3;
	-webkit-transition: color .4s ease-out;
	-o-transition: color .4s ease-out;
	transition: color .4s ease-out;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: 400;
}
h1 {
	font-size: 50px;
	font-weight: 700;
	letter-spacing: -1.5px;
}
h2 {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: -0.5px;
	margin: 0 0 20px;
}
h3 {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0px;
	margin: 0 0 20px;
	line-height: 1.4;
	width: 100%;
}
h4 {
	font-size: 22px;
	letter-spacing: 0.25px;
	margin: 0 0 20px;
	line-height: 1.4;
}
h5 {
	font-size: 18px;
	letter-spacing: 0px;
	margin: 0 0 15px;
	line-height: 1.4;
}
h6 {
	font-size: 16px;
	letter-spacing: 0.15px;
	margin: 0 0 10px;
	line-height: 1.4;
}
img {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}

.plus-brand {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: normal;
	transform: skewX(-5deg) !important;
  
	display: inline-block;
}
.plus-brand b {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: bold;
}

/************ guest styles ***********/

body.guest {
	display: flex;
	place-items: center;
	justify-content: center;
}
.container {
	width: 40%;
	min-width: 400px;
	text-align: center;
	color: white;
	margin: 0 auto;
}

body.guest header {
	text-align: center;
}
	body.guest header img {
		width: 200px;
	}


.apps {
	padding: 20px;
	text-align: center;
	background: white;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0,0,0, 0.5);
	color: #212121;
}
	.apps > ul {
		list-style: none;
		margin: 0;
		padding: 0;
		display: inline-flex;
		flex-flow: row nowrap;
	}
		.apps > ul li {
			padding: 5px;
		}
			.apps img {
				width: 150px;
				height: auto;
			}

.apps dl {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}
	.apps dl dd,
	.apps dl dt {
		margin: 0;
		padding: 1em 0;
		flex: 1 1 50%;
	}
	.apps dd {
		text-align: right;
	}
	.apps dt {
		text-align: left;
	}
	.apps p {
		margin: 0;
		padding: 0.5em;
	}


/************ admin styles ***********/

#admin {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
	#admin > div {
		position: absolute;
		width: 400px;
		left: 50%;
		top: 50%;
		transform: translateX(-50%) translateY(-50%);
	}
