﻿/*General layout*/
body {
	color: #404040;
}

h1, h2, h3 {
	font-weight: 700;
}

h1 {
	color: #009ADE;
	font-size: 2.25rem;
	margin-bottom: 0px;
}

h2 {
	color: #274F63;
	font-size: 1.75rem;
	margin-bottom: -5px;
	margin-top: 10px;
	padding: 0;
}

.icon {
	width: 70px;
	height: auto;
	box-sizing: border-box; /* keeps total size at 300x300 */
	flex-shrink: 0;
	margin-top: 10px;
}

	.icon img {
		width: 100%;
		height: auto; /* keep aspect ratio */
		object-fit: cover; /* scale to fill width, may crop */
		object-position: top; /* pin to the top */
		display: block; /* removes extra whitespace below img */
	}

a.btn {
	font-weight: bold;
}

.nav-tabs {
	margin-top: 8px;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	justify-content: center;
	border: unset;
}

.nav-item,
.playbook-card {
	margin: 8px 8px 8px 8px;
}

	.nav-item .nav-link,
	.playbook-card .playbook-card-link {
		background: #ffffff;
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
		border: 2px solid #dfdfdf;
		border-radius: 10px;
		border-color: #e6e6e6 #e6e6e6 #bfbfbf;
		border-color: rgba(0, 0, 0, 0.1);
		-webkit-box-shadow: 2px 2px 4px #ddd;
		-moz-box-shadow: 2px 2px 4px #ddd;
		box-shadow: 2px 2px 4px #ddd;
		text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
		cursor: pointer;
		align-items: center;
		color: #404040;
		justify-content: center;
	}

	.playbook-card .playbook-card-link {
		display: block;
		padding: 20px 30px;
	}

		.playbook-card .playbook-card-link h2 {
			margin: 0 0 10px;
		}

		.playbook-card .playbook-card-link p {
			margin: 0;
		}

	.nav-item .nav-link {
		position: relative;
		display: flex;
		width: 234px;
		max-width: 234px;
		height: 108px;
		font-weight: 600;
		font-size: 18px;
	}

		.nav-item .nav-link:hover,
		.playbook-card .playbook-card-link:hover {
			background-color: #e6e6e6;
			background-position: 0 -15px;
			border-color: #0098E3;
			text-decoration: none;
			-webkit-transition: background-position 0.1s linear;
			-moz-transition: background-position 0.1s linear;
			-ms-transition: background-position 0.1s linear;
			-o-transition: background-position 0.1s linear;
			transition: background-position 0.1s linear;
			color: inherit;
		}

		.nav-item .nav-link:active,
		.nav-item .nav-link:focus + label,
		.playbook-card .playbook-card-link:active {
			background-color: #d9d9d9;
			background-image: none;
			-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
			-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
			box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
			outline: 0;
		}

		.nav-item .nav-link.active {
			color: #000;
			background-color: #f5f5f5;
			border-color: #0098E3;
		}

		.nav-item .nav-link img {
			margin-right: 5px;
			width: 75px;
			height: 75px;
		}

a[href].nav-link:hover {
	text-decoration: none;
}

.tab-content {
	margin: 10px 0;
}

.conversational-text {
	margin: 0 0 30px;
	text-align: center;
}

.ie-header-text {
	text-align: center
}

.ie-header-wantIcon {
	text-align: center;
	position: relative;
}

	.ie-header-wantIcon img {
		max-height: 108px;
		padding: 5px;
	}

/*Spacing content against layout elements*/
#mainPaddingCheater {
	margin: 0 5% -15px;
}

.content {
	max-width: 1200px;
}


/*Sizing of screen*/
@media screen and (min-width: 0) and (max-width: 760px) {
	html {
		overflow: auto;
	}
}

body {
	min-width: 760px;
}

@media (max-width: 767px) {
	body {
		min-width: unset;
	}
}

.group-summary {
	text-align: center;
	font-size: 1.25rem;
}
