
/* Preset Tags *******************/

h1 {
	font-family: Roboto, Arial, Sans-Serif;
	text-transform: uppercase;
	font-size: 30px;
	line-height: 36px;
	margin-bottom: 0;
	padding-bottom: 10px;
}

h1:before {
	display: none;
}

h2 {
	font-size: 20px;
	font-weight: bold;
	line-height: 24px;
	text-transform: uppercase;
}

h3 {
	font-family: Roboto, Arial, Sans-Serif;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	margin-bottom: 0;
	padding-bottom: 10px;
}

h3:before {
	display: none !important;
}

h5 {
	font-family: Roboto, Arial, Sans-Serif;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 16px;
}

p {
	font-size: 16px;
}

.intro-p {
	font-size: 22px;
	line-height: 32px;
}

.three-col-container > [class*="col-"]:not(.col-12) {
	width: calc(33.33% - 30px)
}

.three-col-container > [class*="col-"]:not(.col-12):not(:nth-child(3n)) {
	padding-right: 0;
	margin-right: 30px;
}

.three-col-container > [class*="col-"]:not(.col-12):nth-child(2n),
.three-col-container > [class*="col-"]:not(.col-12):nth-child(3n) {
	padding-left: 0;
	margin-left: 30px;
}

@media (max-width: 768px) {
	
	.three-col-container > [class*="col-"]:not(.col-12) {
		width: 100%;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}

/* Call To Action *******************/

.cta-contextual {
	font-size: 20px;
	padding-left: 20px;
	padding-right: 20px;
}

.cta-contextual.simplified {
	font-size: 16px;
}

.cta-contextual.multiline {
	font-size: 14px;
	line-height: 18px;
}

.cta-contextual.multiline.primary {
	border-radius: 32px;
}

.cta-contextual.multiline span span {
	font-size: 14px;
	line-height: 18px;
}

/* Label / Input Text *******************/

input[type="text"], 
input[type="password"], 
input[type="number"], 
textarea {
	border-radius: 6px;
	padding-left: 10px;
	padding-right: 10px;
	border-bottom: none !important;
	box-sizing: border-box;
}

label input[type="text"], 
label input[type="password"], 
label input[type="number"],
label textarea {
	margin-top: 5px;
}

textarea {
	padding-top: 5px;
	padding-bottom: 5px;
}

/* Gauges *******************/

.cta-contextual.overlay:not(.primary) {
	border-radius: 32px;
}

.gauge-horizontal.simple-gauge {
	height: 20px;
	margin-top: 20px;
	border-radius: 10px;
}

.gauge-horizontal.simple-gauge .gauge-value {
	bottom: 24px;
}

.gauge-horizontal.simple-gauge .gauge-value span {
	font-weight: bold;
}

.gauge-horizontal.simple-gauge .gauge-display {
	height: 20px;
	border-radius: 10px;
}

.gauge-circle.filled .gauge-value {
	z-index: 2;
}

.gauge-circle.filled .progression-circle:before {
	content: '';
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	padding: 0;
	border-width: 2px;
	border-style: solid;
	box-sizing: border-box;
	position: absolute;
	left: 0px;
	top: 0px;
}

.gauge-circle.filled .progression-circle {
	z-index: 1;
}

/**************************************************/
/* Navigation */ 
/**************************************************/

.main-container > section.inner,
.main-container .colored-row-container > section {
	max-width: 1084px;
}

/* Header *******************/

header {
	min-height: inherit;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding: 20px;
	box-sizing: border-box;
	position: relative;
}

header .header-content {
	width: 100%;
	flex-wrap: nowrap;
	align-items: center;
}

header .manager-logo-container {
	display: flex;
	flex-direction: row;
	padding: 10px 40px 10px 20px;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

header .header-row,
header .header-row .page-title,
header .header-row .help {
	display: none;
}

header .main-nav {
	width: 100%;
}

header .main-nav > ul > li {
	display: block;
}

header .main-nav > ul > li + li {
	margin-left: 10px;
}

header .main-nav > ul > li > a {
	display: inline-block;
	font-size: 16px;
	position: relative;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 25px;
	line-height: 32px;
	text-decoration: none;
	text-transform: capitalize;
}

header .main-nav > ul > li > a .fa {
	display: none;
}

header .main-nav > ul > li > a.selected:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 5px;
}

header .header-search-container {
	display: none;
}

header .logged-in-profile-container {
	height: 84px;
	width: auto;
	min-width: 250px;
	padding: 0;
	flex-direction: row;
}

header .logged-in-profile-container .profile-pic {
	padding-bottom: 0;
	padding-right: 10px;
	display: flex;
	align-items: center;
}

header .logged-in-profile-container .badge-container img {
	width: 48px;
	min-width: 48px;
	max-width: 48px;
	height: 48px;
	min-height: 48px;
}

header .logged-in-profile > span {
	text-align: left;
}

header .logged-in-profile > .name {
	font-size: 15px;
	font-weight: 400;
	white-space: normal;
	margin-top: 14px;
	padding-bottom: 16px;
}

header .logged-in-profile > .score {
	display: none;
}

header .profile-reminders,
header .logged-in-profile-container .profile-pic .badge {
	display: none;
}

*::-ms-backdrop, header .logged-in-profile { /* IE11 */
	width: auto;
}

*::-ms-backdrop, header .logged-in-profile-container .profile-pic { /* IE11 */
	margin-right: 10px;
}

header .profile-reminders .badge-container i,
header .profile-reminders .badge-container:not(:first-child) {
	display: none;
}

header .logged-in-profile-container .nav-submenu {
	margin-top: 0;
	padding-top: 10px;
	font-size: 14px;
}

header .logged-in-profile-container .flag-select {
	line-height: 36px;
	min-height: 40px;
}

header .logged-in-profile-container .flag-select .select-list {
	font-size: 14px;
	min-height: 40px;
	padding-left: 0;
}

header .logged-in-profile-container .flag-select .select-list ul {
	font-size: 14px;
	padding-left: 0;
}

header .logged-in-profile-container .flag-select i {
	top: 4px;
}

header .logged-in-profile-container .flag-select .placeholder {
	display: flex;
	align-items: center;
	height: 36px;
	line-height: normal;
	margin-top: 0;
	font-size: 14px;
}

header .logged-in-profile-container .flag-select .placeholder img {
	padding-top: 0;
}

@media (max-width: 1280px) {
	
	header .main-nav > ul > li > a {
		font-size: 14px;
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media (max-width: 1200px) {
	
	header .main-nav > ul > li > a {
		font-size: 14px;
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 1024px) {
	
	header .manager-logo-container {
		display: none;
	}
	
	header .header-content {
		align-content: center;
		align-items: center;
	}
	
	header .header-content .side-nav-btn {
		text-decoration: none;
	}
	
	header .header-row {
		display: flex;
	}
	
	header .header-row .page-title {
		padding-right: 40px;
	}
	
	header .header-row .page-title {
		display: flex;
		font-size: 26px;
		padding-bottom: 0;
		align-items: center;
	}
	
	header .header-row .page-title i {
		display: none;
	}
	
	header .logged-in-profile-container {
		width: 280px;
		min-width: 280px;
		padding-left: 20px;
		box-sizing: border-box;
	}
	
	header .logged-in-profile {
		margin-right: 20px;
	}
}

@media (max-width: 768px) {
	
	header {
		height: 80px;
	}
	
	header h1 {
		display: none !important;
	}
	
	header .header-row {
		width: auto;
		margin-right: 20px;
	}
	
	header .header-content .side-nav-btn {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	header .logged-in-profile-container {
		width: auto;
		min-width: inherit;
		padding-left: 10px;
		padding-right: 10px;
	}
}

/**************************************************/
/* Pages */ 
/**************************************************/

/* Dashboard *******************/

.dashboard-presentation-container {
	background-size: cover;
	background-repeat: no-repeat;
	margin-top: -40px;
	margin-bottom: -40px;
}

.dashboard-presentation-container .cta-container .cta-contextual {
	margin: 10px;
}

.dashboard-presentation-container.logged-in:after {
	z-index: -2;
}

.dashboard-presentation-container:not(.logged-in) > .image-container > img {
	display: none;
}

.dashboard-presentation-content {
	width: calc(100% - 340px);
	padding: 40px;
}

.dashboard-presentation-container.logged-in .dashboard-presentation-content {
	padding: 20px 20px 10px 20px;
}

*::-ms-backdrop, .dashboard-presentation-container.logged-in .dashboard-presentation-content { /* IE11 */
	padding: 20px 20px 10px 40px;
}

.dashboard-presentation-objectives {
	width: calc(100% - 180px);
}

.dashboard-presentation-ranking {
	margin-right: -20px;
	margin-bottom: -10px;
}

.dashboard-presentation-ranking:after {
	z-index: -1;
}

.dashboard-presentation-content h1 {
	margin-bottom: 0;
	line-height: 36px;
}

.dashboard-leaderboard-col.active > span {
	margin-bottom: 10px;
}

.dashboard-leaderboard-col.active .image-container {
	overflow: hidden;
	border-radius: 5px;
	position: absolute;
	transform: rotate(-45deg);
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dashboard-leaderboard-col.active .image-container img {
	border-radius: 0;
	transform: rotate(45deg);
	min-width: 90px;
	min-height: 90px;
}

@media (max-width: 1024px) {
	
	.dashboard-presentation-container {
		background-image: none !important;
	}

	.dashboard-presentation-container .image-container {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	*::-ms-backdrop, .dashboard-presentation-container .image-container { /* IE11 */
		display: block;
	}
	
	.dashboard-presentation-container:not(.logged-in) > .image-container > img {
		display: block;
		max-width: inherit;
	}
}

@media (max-width: 768px) {
	
	.dashboard-presentation-container {
		background-image: none !important;
		margin-top: 20px;
	}
	
	.dashboard-presentation-content {
		width: 100%;
		padding-top: 0;
	}
	
	.dashboard-presentation-ranking {
		width: calc(100% + 20px);
	}
}

/* Home *******************/

.cinq-home-main-banner {
	margin-top: -40px;
	margin-bottom: -40px;
	padding: 40px;
}

.cinq-home-team-banner {
	position: relative;
	padding-bottom: 200px;
	background-size: cover;
	background-position: top center;
}

.cinq-home-team-banner .image-container {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
}

.cinq-home-steps {
	margin-top: -40px;
	padding-top: 160px;
	padding-bottom: 40px;
	margin-bottom: -40px;
}

.cinq-home-leadership-banner {
	padding: 40px 20px;
	margin-top: -40px;
}

.cinq-home-icons {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 30px;
}

.cinq-home-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 10px;
	text-align: center;
	position: relative;
}

.cinq-home-icon:before {
	content: '';
	display: block;
	position: absolute;
	width: 0px;
	height: 30px;
	border-left-style: dashed;
	border-left-width: 2px;
	top: -10px;
	left: 50%;
	transform: translate(-50%, -100%);
}

.cinq-home-icon:first-child:before {
	width: 40px;
	height: 60px;
	border-top-style: dashed;
	border-top-width: 2px;
	transform: translate(0, -100%);
}

.cinq-home-icon:last-child:before {
	width: 40px;
	height: 60px;
	border-left: none;
	border-top-style: dashed;
	border-top-width: 2px;
	border-right-style: dashed;
	border-right-width: 2px;
	transform: translate(-100%, -100%);
}

.cinq-home-icon img {
	max-width: 64px;
	margin-bottom: 10px;
}

.cinq-home-start {
	margin-top: -80px;
	padding-top: 80px;
	padding: 80px 40px 40px;
}

.cinq-home-options .price {
	font-size: 48px;
	line-height: 48px;
}

.cinq-image-background {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

@media (max-width: 1080px) {
	
	.cinq-home-icons {
		display: flex;
		justify-content: center;
	}
	
	.cinq-home-icon {
		width: 100%;
		max-width: calc(20% - 20px);
	}
	
	.cinq-home-icon:before {
		display: none;
	}
}

@media (max-width: 1024px) {
	
	.cinq-home-main-banner,
	.cinq-home-leadership-banner,
	.cinq-home-start,
	.cinq-home-team-banner,
	.cinq-home-steps	{
		margin-left: -30px;
		width: calc(100% + 60px);
	}
	
	.cinq-home-steps {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 768px) {
	
	.header-anchor {
		display: block;
		position: fixed;
		right: 20px;
		bottom: 20px;
		width: 56px;
		height: 56px;
		text-align: center;
		z-index: 2;
		border-radius: 50%;
	}
	
	.header-anchor .fa {
		font-size: 56px;
		padding-right: 0;
	}
	
	.cinq-home-main-banner {
		margin-top: -20px;
	}
	
	.cinq-home-main-banner,
	.cinq-home-start,
	.cinq-home-leadership-banner {
		margin-left: -30px;
		width: calc(100% + 50px);
	}
	
	.cinq-home-main-banner img {
		display: block;
		max-width: 400px;
		margin: 0 auto;
	}
	
	.cinq-home-team-banner {
		padding: 20px 20px 120px;
	}
	
	.cinq-home-start {
		margin-top: -40px;
	}
	
	.cinq-home-steps .col-4:not(:first-child) {
		margin-top: 40px;
	}
	
	.cinq-home-icons {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(33%, 1fr));
	}
	
	.cinq-home-icon {
		width: auto;
		max-width: inherit;
	}
}