/**======================================================================
 *
 * Index
 *
 * xx - Fonts
 * 00 - HTML Elements
 * 01 - Navigation Elements
 * 02 - Dashboard Elements
 * 03 - Unified Elements
 * 04 - Red elements
 * 05 - Green elements
 * 06 - Lenovo Updates Elements
 * 07 - Training Elements
 * 08 - Quiz Elements
 * 09 - hiw Elements
 * 10 - Lenovo Pages Elements
 * 11 - Spin to win Element
 * 12 - Company Dashboard
 * 13 - Social Gallery
 * xx - Login and Registration Form
 * xx - Footer Element
 * xx - Loader
 * xx - @media Elements
 *
======================================================================**/

/**======================================================================
 * xx - Fonts
======================================================================**/

@font-face {
	font-family: gothamBook;
	src: url(../fonts/Gotham-Book.otf);
}

@font-face {
	font-family: gothamBold;
	src: url(../fonts/Gotham-Bold.otf);
}

@font-face {
	font-family: gothamBlack;
	src: url(../fonts/Gotham-Black-Regular.ttf);
}

@font-face {
	font-family: gothamMedium;
	src: url(../fonts/Gotham-Medium.otf);
}

@font-face {
	font-family: gothamThin;
	src: url(../fonts/Gotham-Thin.otf);
}

/**======================================================================
 * 00 - HTML Elements
======================================================================**/

section {
	padding: 0 0;
}

#mainContent {
	margin-top: 54px;
	min-height: calc(100vh - 12vh - 54px);
}

#mainContent.is-admin {
	margin-top: 48px;
}

.login-page #mainContent:not(.is-admin) {
	margin-top: 0;
	min-height: calc(100vh - 12vh);
}

.container {
	max-width: 1280px;
}

.gothamFont {
	font-family: gothamBook !important;
}

p {
	font-family: gothamBook !important;
	font-size: 1.8em;
	color: #fff;
}

a {
	font-family: gothamBook !important;
}

.iframe-loader {
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #294E95;
	border-right: 16px solid #78216C;
	border-bottom: 16px solid #ED6B53;
	border-left: 16px solid #ffffff;
	width: 8px;
	height: 8px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	margin-top: 10px;
	display: flex !important;
	top: 50vh;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.ts-loader {
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #294E95;
	border-right: 16px solid #78216C;
	border-bottom: 16px solid #ED6B53;
	border-left: 16px solid #ffffff;
	width: 8px;
	height: 8px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	margin-top: 10px;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.notice-error,
.notice-info,
.notice-success {
	display: inline-block;
	background: #fff;
	border: 1px solid #CCC;
	font-size: 150%;
	padding: 10px;
}

div[class^="notice-"] a {
	color: #ED6B53;
}

div[class^="notice-"] a:hover {
	color: #ED6B53;
}

.notice-error {
	border-left: 3px solid red;
}

.notice-info {
	border-left: 3px solid blue;
}

.notice-success {
	border-left: 3px solid green;
}

.innerContent hr:last-of-type {
	display: none !important;
}

.floatingImage {
	top: calc(50%);
	right: -50px;
	position: fixed;
	z-index: 9;
	transform: rotate(270deg);
	max-width: 150px;
}

/**======================================================================
 * 00 - Navigation Elements
======================================================================**/

nav#navOuter {
	background: #000;
	padding: 1em 3em;
}

nav#navOuter.is-admin {
	margin-top: 32px;
}

.logo {
	max-width: 200px;
	margin: 0 auto;
	display: block;
}

div#navigation {
	margin: 0 auto;
	/*display: block;*/
	width: fit-content;
}

#navigation ul {
	margin: 0;
}

#leftNav div#navigation {
	margin: 0 0 0 auto;
}

#leftNav div#navigation ul.navbar-nav {
	margin: 0 0 0 auto !important;
}

#rightNav div#navigation {
	margin: 0 auto 0 0;
}

#rightNav div#navigation li {
	margin: 0.5rem 2rem 0 0;
}

#navigation .nav-link {
	color: #fff;
	font-size: 1.8em;
	transition: all 0.5s ease;
	font-family: gothamBook;
}

#navigation .nav-link:active {
	color: #ED6B53;
}

#navigation .nav-link:hover {
	color: #294E95;
}

#navigation .nav-link.green {
	color: #fff;
	background: #294E95;
	padding: 5px;
	border-radius: 8px;
}

#navigation .nav-link.green:hover {
	filter: brightness(85%);
}

.mobileNavBar {
	display: block;
	width: 30px;
	height: 3px;
	border-radius: 2px;
	background: #78216C;
	margin-bottom: 5px;
	box-shadow: 0 0 1px 1px #fff;
}

button.navbar-toggler {
	position: absolute;
	right: 0;
	top: 12px;
}

button:focus {
	outline: 0;
}

button:focus .mobileNavBar {
	background: #fff;
}

/**======================================================================
 * 02 - Dashboard Elements
======================================================================**/

# intro {
	height: 75vh;
	/* max-height: 300px; */
	width: 100%;
	background: url('../images/Tier-1-Image-02.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center !important;
}

.ts-overlay {
	width: 100%;
	height: 100%;
	max-height: 75vh;
	position: absolute;
	margin: 0;
	padding: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 0;
}

div#introInner {
	height: 100%;
	display: flex;
	align-items: center;
	width: 100%;
}

div#introInner * {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	color: #fff;
	z-index: 2;
}

.introLogo img {
	max-width: 500px;
}

div#introInner h2 {
	/*padding: 2.6em;*/
	font-weight: bold;
	font-size: 2.4em;
	font-family: gothamBold;
	text-shadow: 0px 3px 5px #000;
}

.homeBg h2 strong {
	color: #ED6B53;
}

.welcomeScoresandProgress {
	padding: 1.6em;
}

.ScoresandProgressInner {
	border: 3px solid #ED6B53;
	border-radius: 16px;
	padding: 1em;
}

div#introInner h3 {
	text-shadow: 0px 3px 5px #000;
	font-size: 2.6em;
}

.sectionChangeBG {
	min-height: 30vh;
	box-shadow: 0 5px 3px -4px #fff inset;
}

.sectionChangeBG:nth-child(even) {
	background: rgb(75, 91, 103);
	background: linear-gradient(120deg, rgba(75, 91, 103, 1) 0%, rgba(42, 51, 58, 1) 100%);
}

.sectionChangeBG:nth-child(odd) {
	background: #78216C;
	background: linear-gradient(120deg, #78216C 0%, #294E95 100%);
}

/**======================================================================
 * 03 - Unified Elements
======================================================================**/

.grayGradientBG {
	background: rgb(75, 91, 103);
	background: linear-gradient(120deg, rgba(75, 91, 103, 1) 0%, rgba(42, 51, 58, 1) 100%);
	/*min-height: calc(100vh - 20vh - 54px);*/
	min-height: calc(100vh - 12vh - 54px);
}

.login-page #mainContent:not(.is-admin) .grayGradientBG {
	min-height: calc(100vh - 12vh);
}

.blueGradientBG {
	background: #294E95;
	background: -moz-linear-gradient(37deg, rgba(37, 144, 205, 1) 0%, rgba(38, 119, 185, 1) 55%, rgba(30, 68, 93, 1) 100%);
	background: -webkit-linear-gradient(37deg, rgba(37, 144, 205, 1) 0%, rgba(38, 119, 185, 1) 55%, rgba(30, 68, 93, 1) 100%);
	background: linear-gradient(37deg, rgba(37, 144, 205, 1) 0%, rgba(38, 119, 185, 1) 55%, rgba(30, 68, 93, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2590cd", endColorstr="#1e445d", GradientType=1);
	/*min-height: calc(100vh - 20vh - 54px);*/
	min-height: calc(100vh - 12vh - 54px);
}

.login-page #mainContent:not(.is-admin) .blueGradientBG {
	min-height: calc(100vh - 12vh);
}

.CounterSectionGradientgreen {
	border-image-source: linear-gradient(to right, #FF6A00, #DE271D);
}

.homeCountBg {
	background: rgba(225, 255, 255, 0.4);
	background: linear-gradient(60deg, rgba(225, 255, 255, 0.4) 0%, rgba(210, 210, 210, 0.4) 100%);
	border-radius: 16px;
}

.innerContent {
	padding: 3vh 0;
}

.title h1,
.title h2 {
	color: #fff;
	font-weight: bold;
	font-size: 3.2em;
	font-family: gothamBlack;
	margin: 0;
}

.latestTitle {
	margin-top: 50px;
}

.latestTitle h2 {
	font-weight: bold;
	font-size: 3.2em;
	color: #fff;
	font-family: gothamBlack;
}

.firstUpdate {
	margin-top: 25px;
}

.firstUpdate .title h2 {
	font-size: 2.5em;
	color: #fff;
}

.firstUpdate hr {
	background: #fff;
}

.firstUpdate .excerpt p {
	font-size: 1.5em;
	color: #fff;
}

.otherUpdates {
	padding: 30px 0;
}

#updatesContent .otherUpdates {
	padding: 30px 0;
}

.otherUpdates .row {
	align-items: center;
}

/*.featuredImage img {
    border-radius: 9px;
    box-shadow: 0px 0px 0px 2px #fff, 0px 0px 0px 3px #fff inset;
    margin: 0 0px 0 6px;
}*/

.featuredImage img {
	border-radius: 0;
	box-shadow: none;
	margin: 0;
}

.featuredImage.green-on-green img {
	background: #fff;
	padding: 0;
	border-radius: 32px;
	box-shadow: 0px 0px 0px 2px #fff, 0px 0px 0px 3px #fff inset;
}

.featuredImage img.quizComplete {
	box-shadow: 0 0 0 0 transparent;
	margin: 0;
}

.otherUpdatesInnerContent .title h2 {
	color: #fff;
	font-size: 3.2em;
	font-family: gothamBlack;
}

.otherUpdatesInnerContent hr {
	background: #fff;
}

.otherUpdatesInnerContent .excerpt p {
	font-size: 1.8em;
	color: #fff;
}

.excerpt p {
	font-size: 1.5em;
	color: #fff;
}

#mainContent iframe {
	height: 82vh;
	/*margin: 50px 0;*/
	border-radius: 25px;
}

#mainContent iframe[src*="youtube"] {
	height: auto;
	min-height: 720px;
	border-radius: 26px;
	border: 4px solid #6ABF4B;
}

.VMBOuter a.VMB {
	background: transparent;
	border: 1px solid #fff;
	border-radius: 8px;
	width: fit-content;
	width: -moz-fit-content;
	display: block;
	padding: 8px 15px;
	margin: 0 auto;
	color: #fff;
	font-size: 2em;
	font-weight: bold;
	margin-top: 15px;
}

.whiteTextBlock {
	display: block;
	width: 100%;
	height: 17.4em;
	background: #fff;
	border-radius: 15px;
}

.hurrytimer-cdt .hurrytimer-headline {
	font-family: gothamBold;
	letter-spacing: 1.25px;
	text-shadow: 0px 3px 5px #000;
	font-size: 2.5em;
	margin-bottom: -25px;
}

.hurrytimer-cdt .hurrytimer-timer-digit {
	font-family: gothamBold;
	letter-spacing: 1.25px;
	text-shadow: 0px 3px 5px #000;
	font-size: 3.2em;
}

.hurrytimer-cdt .hurrytimer-timer-label {
	font-family: gothamBook;
	font-size: 1.5em;
	display: block;
	margin-top: 75px;
	text-indent: -50px;
}

.homeCountBg .hurrytimer-cdt {
	min-height: 12vh;
	position: relative;
}

.homeCountBg .hurrytimer-cdt .hurrytimer-timer-label {
	position: absolute;
	display: block;
	bottom: -20px;
}

.cta * {
	font-family: gothamBook;
}

.scoreboardsInner {
	padding: 30px 0;
	align-items: flex-start !important;
}

button.owl-next * {
	position: absolute;
	right: -1em;
	font-size: 6.5em;
	top: 25%;
	color: #fff;
}

button.owl-prev * {
	position: absolute;
	left: -1em;
	font-size: 6.5em;
	top: 25%;
	color: #fff;
}

.orangeBG {
	background: linear-gradient(to right, #ED6B53, #78216C);
	padding: 4em;
	min-height: 60vh;
}

.greenBG {
	background: linear-gradient(to right, #294E95, #78216C);
	padding: 4em;
	min-height: 60vh;
}

.reports-button:hover {
	filter: brightness(85%);
}

/**======================================================================
 * 04 - Red elements
======================================================================**/

.cta a.red {
	background: #ED6B53;
	color: #fff;
	border-radius: 5px;
	padding: 8px 16px;
	font-size: 2em;
	transition: all 0.5s ease;
}

.cta a.redBorder {
	background: transparent;
	border: 1px solid #ED6B53;
	color: #ED6B53;
	border-radius: 5px;
	padding: 8px 16px;
	font-size: 2em;
	display: block;
	margin-bottom: 20px;
	transition: all 0.5s ease;
	text-align: center;
}

.cta a.redBorder:hover {
	text-decoration: none;
}

.cta a.red:hover {
	filter: brightness(75%);
	text-decoration: none;
}

.countDownRed {
	align-items: center;
}

.countDownRed .hurrytimer-cdt {
	border: 3px solid #ED6B53;
	padding: 10px 25px;
	border-radius: 15px;
	align-items: center;
	margin: 0 auto;
	border-image-slice: 1;
}

.countDownRedGradient .hurrytimer-cdt {
	border-image-source: linear-gradient(to right, #ED6B53, #294E95);
}


.countDownRed .hurrytimer-cdt * {
	color: #fff;
}

.countDownRed .hurrytimer-cdt .hurrytimer-headline {
	margin-right: 35px;
}

/* .countDownRed .hurrytimer-timer-label {
    position: absolute;
    top: -5px;
} */

.countDownRed .hurrytimer-timer-digit {
	margin-top: 8px;
}

.CounterSectionRed {
	min-height: 20vh;
	background: rgb(75, 91, 103);
	background: linear-gradient(60deg, rgba(42, 51, 58, 1) 0%, rgba(75, 91, 103, 1) 100%);
	border-bottom: 10px solid;
	border-image-slice: 1;
	border-width: 10px;
}

.CounterSectionGradientRed {
	border-image-source: linear-gradient(to right, #ED6B53, #294E95);
	display: flex;
	position: relative;
	align-items: center;
}

.title h3.red {
	font-weight: bold;
	font-size: 3.5em;
	color: #ED6B53;
	width: fit-content;
	margin: 0 0;
	font-family: gothamBlack;
}

/**======================================================================
 * 05 - Green Elements
======================================================================**/

.wo.cta a.green {
	background: #294E95;
	/* border: 1px solid #ED6B53; */
	color: #fff;
	border-radius: 5px;
	padding: 8px 16px;
	font-size: 2em;
	display: initial;
	margin-bottom: 20px;
	text-align: center;
	transition: all 0.5s ease;
}

.cta a.green {
	background: linear-gradient(to right, #294E95, #78216C);
	/* border: 1px solid #ED6B53; */
	color: #fff;
	border-radius: 5px;
	padding: 8px 16px;
	font-size: 2em;
	display: block;
	margin-bottom: 20px;
	text-align: center;
	transition: all 0.5s ease;
}

.cta a.green.quiz {
	background: #ED6B53;
}

.cta a.green:hover {
	filter: brightness(75%);
	text-decoration: none;
}

#main-content:not(.hiw) #updatesContent:not(.profile-dashboard) .cta a.green {
	background: #294E95;
}



#archiveIndexBtn {
	max-width: 50%;
	width: 100%;
	display: block;
	margin: 0 auto;
}

.cta a.greenBorder {
	background: transparent;
	border: 1px solid #ED6B53;
	color: #ED6B53;
	border-radius: 5px;
	padding: 8px 16px;
	font-size: 2em;
	display: block;
	margin-bottom: 20px;
	transition: all 0.5s ease;
	text-align: center;
}

.cta a.green:last-child {
	margin-bottom: 0;
}

.cta a.green:hover {
	background: linear-gradient(to right, #78216C, #294E95);
	text-decoration: none;
	filter: brightness(85%);
}

#main-content:not(.hiw) #updatesContent:not(.profile-dashboard) .cta a.green:hover {
	background: #294E95;
	filter: brightness(75%);
}

a.green.button {
	background: linear-gradient(to right, #294E95, #78216C);
	/* border: 1px solid #294E95; */
	color: #fff;
	border-radius: 5px;
	padding: 8px 16px;
	font-size: 1em;
	display: inline-block;
	margin-bottom: 20px;
	text-align: center;
	transition: all 0.5s ease;
	text-decoration: none;
}

a.green.button:hover {
	background: transparent;
	text-decoration: none;
}

#wp-submit.greenSubmission,
input[type="submit"].greenSubmission {
	background: linear-gradient(to right, #294E95, #78216C);
	color: #fff;
	border-radius: 5px;
	padding: 8px 16px;
	font-size: 18px;
	display: block;
	margin-bottom: 20px;
	text-align: center;
	transition: all 0.5s ease;
	border: 1px solid #78216C;
	font-family: gothamBook;
}

#wp-submit.greenSubmission:hover {
	background: linear-gradient(to right, #78216C, #294E95);
	text-decoration: none;
}

input[type="submit"].greenSubmission:hover {
	text-decoration: none;
	color: #294E95;
	background: transparent;
	border: 1px solid #294E95;
}

.countDownGreen {
	align-items: center;
}

.countDownGreen .hurrytimer-cdt {
	border: 3px solid #ED6B53;
	padding: 10px 25px;
	border-radius: 15px;
	align-items: center;
	margin: 0 auto;
	width: 98%;
	border-image-slice: 1;
}

.introTimer .countDownGreen {
	display: block;
}

.introTimer .countDownGreen .hurrytimer-cdt {
	padding: 25px 35px;
}

.countDownWhite {
	align-items: center;
}

.countDownWhite .hurrytimer-cdt {
	border: 3px solid #f1f1f1;
	padding: 10px 25px;
	border-radius: 16px;
	align-items: center;
	margin: 50px auto;
	width: 98%;
	/* margin-top: 30px;
    margin-bottom: 25px;*/
	/*border-image-slice: 1;*/
}

.introTimer .countDownWhite {
	display: block;
}

.introTimer .countDownWhite .hurrytimer-cdt {
	padding: 25px 35px;
}

/* .introTimer .hurrytimer-timer-label.hurrytimer-cdt__label {
    position: absolute;
    top: -28px;
    left: 0;
} */

div#introInner section#countdownTimer {
	margin-top: 10vh;
}

.countDownGreenGradient .hurrytimer-cdt {
	/*border-image-source: linear-gradient(to right, #77B863, #6ABF4B);*/
	border-radius: 16px;
}

.countDownGreenGradient:not(.homeCountBg) .hurrytimer-cdt {
	background: rgba(225, 255, 255, 0.4);
	background: linear-gradient(60deg, rgba(225, 255, 255, 0.4) 0%, rgba(210, 210, 210, 0.4) 100%);
}

.countDownGreen .hurrytimer-cdt * {
	color: #fff !important;
	display: inline-block !important;
	vertical-align: middle !important;
	margin-left: 2px !important;
	margin-right: 2px !important;
	width: auto !important;
}

.countDownGreen .hurrytimer-cdt .hurrytimer-headline {
	margin-right: 35px !important;
	display: block !important;
}

/* .countDownGreen .hurrytimer-timer-label {
    position: absolute !important;

    top: -9999px !important;
    display: inline-block;
} */

.countDownGreen .hurrytimer-timer-digit {
	margin-top: 8px !important;
}

.countDownWhiteGradient .hurrytimer-cdt {
	/*border-image-source: linear-gradient(to right, #fff, #f1f1f1);*/

	border-radius: 16px;
}

.countDownWhiteGradient:not(.homeCountBg) .hurrytimer-cdt {
	background: rgba(225, 255, 255, 0.4);
	background: linear-gradient(60deg, rgba(225, 255, 255, 0.4) 0%, rgba(210, 210, 210, 0.4) 100%);
}

.countDownWhite .hurrytimer-cdt * {
	color: #fff !important;
	display: inline-block !important;
	vertical-align: middle !important;
	margin-left: 2px !important;
	margin-right: 2px !important;
	width: auto !important;
}

.countDownWhite .hurrytimer-cdt .hurrytimer-headline {
	margin-right: 35px !important;
	display: block !important;
}

/* .countDownWhite .hurrytimer-timer-label {
    position: absolute !important;
    top: -9999px !important;
} */

.countDownWhite .hurrytimer-timer-digit {
	margin-top: 8px !important;
}

.CounterSectionGreen {
	min-height: 20vh;
	background: rgb(75, 91, 103);
	background: linear-gradient(60deg, rgba(42, 51, 58, 1) 0%, rgba(75, 91, 103, 1) 100%);
	border-bottom: 10px solid;
	border-image-slice: 1;
	border-width: 10px;
}

.CounterSectionGradientGreen {
	border-image-source: linear-gradient(to right, #294E95, #78216C);
	display: flex;
	position: relative;
	align-items: center;
}

.CounterSectionBlue {
	min-height: 20vh;
	background: #294E95;
	background: -moz-linear-gradient(37deg, #294E95 0%, #78216C 55%, #294E95 100%);
	background: -webkit-linear-gradient(37deg, #294E95 0%, #78216C 55%, #294E95 100%);
	background: linear-gradient(37deg, #294E95 0%, #78216C 55%, #294E95 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#78216C", endColorstr="#294E95", GradientType=1);
	background-repeat: no-repeat;
	background-attachment: fixed;
	/*border-image-slice: 1;*/
}

.CounterSectionGradientBlue {
	/*border-image-source: linear-gradient(to right, #78216C, #294E95);*/
	display: flex;
	position: relative;
	align-items: center;
	border-bottom: 10px solid #78216C;
}

.title h3.green {
	font-weight: bold;
	font-size: 3.5em;
	color: #ED6B53;
	margin: 0 0;
	font-family: gothamBlack;
}

.title h3.white {
	font-weight: bold;
	font-size: 3.5em;
	color: #fff;
	width: fit-content;
	margin: 0 0;
	font-family: gothamBlack;
}

.latestTitle p strong,
.title p strong {
	color: #ED6B53;
}

a.green {
	color: #ED6B53;
}

table {
	margin: 1rem 0;
}

table * {
	color: #fff;
}

thead th {
	border: 0;
}

thead th:first-child {
	text-align: center;
}

thead {
	border-radius: 7px;
	border: 1px solid #fff;
	border-collapse: separate;
}

tbody td:first-child {
	background: #fff;
	color: #000;
	text-align: center;
}

/**======================================================================
 * 06 - Lenovo Updates Elements
======================================================================**/

.wppopups-whole {
	height: auto !important;
}

.smarter_stories {
	background-position: center center !important;
}

/**======================================================================
 * 07 - Training Elements
======================================================================**/

.cta a.white {
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
	border-radius: 5px;
	padding: 8px 16px;
	font-size: 2em;
	display: block;
	margin-bottom: 20px;
	transition: all 0.5s ease;
	text-align: center;
}

.cta a.white:last-child {
	margin-bottom: 0;
}

.cta a.white:hover {
	background: #fff;
	color: #ED6B53;
	text-decoration: none;
}

.cta a.whiteAlways {
	background: #fff;
	color: #ED6B53;
}

.cta a.whiteAlways:hover {
	filter: brightness(85%);
}

.progress {
	height: 2rem;
}

.progress-bar {
	background-color: linear-gradient(37deg, #294E95 0%, #78216C 55%, #294E95 100%);
	font-family: gothamBook;
	font-size: 18px;
}

object {
	border: 3px solid #ED6B53;
	border-radius: 15px;
}

.object-fallback {
	border: 3px solid #ED6B53;
	border-radius: 15px;
	padding: 5px;
}

/**======================================================================
 * 08 - Quiz Elements
======================================================================**/

.qsm-page .quiz_begin {
	display: none;
}

.quiz_section * {
	color: #fff;
	font-size: 1.5em;
}

span.mlw_horizontal_choice label {
	font-size: 18px !important;
	font-family: gothamBook;
}

span.mlw_horizontal_choice {
	width: 50%;
	display: inline-block;
	padding: 25px;
	background: transparent;
	box-shadow: 0 0 0 1px #294E95 inset;
}

span.mlw_horizontal_choice:hover {
	background: #ED6B5388;
}

/* span.mlw_horizontal_choice:nth-child(3n) {
    background: #ED6B5388;
    box-shadow: 0 0 0 1px #294E95 inset;
}

span.mlw_horizontal_choice:nth-child(2) {
    background: #ED6B5388;
    box-shadow: 0 0 0 1px #294E95 inset;
} */

.quiz_section .mlw_qmn_new_question {
	font-weight: bold;
	display: inline;
	width: auto;
	margin-bottom: 10px;
	color: #ED6B53;
}

div#mlw_qmn_timer {
	font-size: 2.4em;
	border: 1px solid #ED6B53;
	color: #ED6B53;
}

.qsm-progress-bar svg {
	height: 5px !important;
}

#mainContent .qsm-pagination.qmn_pagination.border.margin-bottom {
	border-width: 0 !important;
}

#mainContent form input.qsm-btn.qsm-submit-btn.qmn_btn {
	border-radius: 15px;
	background: transparent !important;
	border: 1px solid #ED6B53;
	font-size: 2.4em !important;
	transition: all 0.5s ease;
}

#mainContent form input.qsm-btn.qsm-submit-btn.qmn_btn:hover {
	border-radius: 15px;
	background: #ED6B53 !important;
	border: 1px solid #ED6B53;
	font-size: 2.4em !important;
}

.quiz_section {
	width: 100%;
}

.qmn_btn,
.qmn_quiz_container .btn {
	display: none;
}

.qsm-results-page {
	color: #fff;
	font-size: 16px;
}

.qsm_questions_answers_section {
	color: #fff;
	font-size: 16px;
	font-family: gothamBook;
}

span.qsm-text-simple-option {
	color: #aaa !important;
}

span.qsm-text-correct-option {
	color: lightgreen !important;
}

span.qsm-text-wrong-option {
	color: red !important;
}

/**======================================================================
 * 09 - hiw Elements
======================================================================**/

.hiw .greenTitle h2 {
	color: #ED6B53;
}

.hiw p strong {
	color: #ED6B53;
	font-family: gothamBlack;
	font-weight: bold;
}

.hiw hr {
	background: linear-gradient(to right, #294E95, #78216C);
}

/**======================================================================
 * 10 - Lenovo Pages Elements
======================================================================**/

.title h1#lenovo-pages {
	font-family: gothamBook;
	font-weight: 100;
	font-style: italic;
}

.intl-tel-input.allow-dropdown {
	width: 100%;
}

.form-group.white label {
	color: #fff !important;
}

.form-group.white input {
	background: #fff !important;
}

.forminator-input,
.forminator-textarea {
	background: transparent !important;
	border: 1px solid #ED6B53 !important;
	outline: 0 !important;
	color: #fff !important;
	font-family: gothamBook !important;
	width: 100% !important;
	height: 34px !important;
	padding: 6px 12px !important;
	border-radius: 2px !important;
	-webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%) !important;
	box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%) !important;
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s !important;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s !important;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s !important;
}

.forminator-select {
	background: transparent !important;
	border: 1px solid #ED6B53 !important;
}

.select2-container .forminator-dropdown--default.select2-dropdown--below {
	margin-top: 0 !important;
}

.forminator-ui#forminator-module-4805.forminator-design--default .forminator-select2+.forminator-select .selection .select2-selection--single[role="combobox"] {
	background: transparent !important;
}

.forminator-field--phone {
	padding-left: 51px !important;
}

.forminator-g-recaptcha iframe {
	border-radius: 0 !important;
}

.forminator-button {
	font-family: gothamBook !important;
	border-radius: 16px !important;
	font-size: 18px !important;
}

.forminator-button-submit {
	background: linear-gradient(to right, #294E95, #78216C) !important;
	/* border: 1px solid #ED6B53 !important; */
	color: #fff !important;
	border-radius: 5px !important;
	box-shadow: none !important;
}

.forminator-button-submit:hover {
	background: linear-gradient(to right, #78216C, #294E95) !important;
	/* border: 1px solid #ED6B53 !important; */
	color: #fff !important;
	box-shadow: none !important;
}

.forminator-select2+.forminator-select .selection .select2-selection--single[role="combobox"] {
	border: 1px solid #ED6B53 !important;
}

.forminator-select2+.forminator-select .selection .select2-selection--single[role="combobox"]:focus {
	border: 1px solid #ED6B53 !important;
}

.forminator-select2+.forminator-select .selection .select2-selection--single[role="combobox"]:hover {
	border: 1px solid #ED6B53 !important;
}

/**======================================================================
 * 11 - Spin to win Element
======================================================================**/

div#formModal {
	background: rgba(0, 0, 0, 0.9);
	z-index: 22;
	left: 0;
	right: 0;
	margin: 0 auto;
	border-radius: 15px;
	display: none;
	align-items: center;
}

form#brandForm {
	margin: 0 auto;
	display: none;
}

#brandForm label,
#brandForm input {
	display: block;
	color: #ED6B53;
}

input#submitBtn {
	background: linear-gradient(to right, #294E95, #78216C);
	color: #fff;
	border-radius: 5px;
	padding: 8px 16px;
	font-size: 16px;
	font-family: gothamBook;
	display: block;
	margin-bottom: 20px;
	text-align: center;
	transition: all 0.5s ease;
	margin: 25px auto 0;
}

input#submitBtn:hover {
	background: linear-gradient(to right, #78216C, #294E95);
}

select#brandQuestion {
	width: 100%;
	max-width: 400px;
	font-size: 18px;
	font-family: gothamBook;
	border: 1px solid #ED6B53;
	background: transparent;
	color: #fff;
	margin: 0 auto;
	display: block;
}

select#brandQuestion option {
	font-size: 18px;
	font-family: gothamBook;
	color: #000;
}

div#response {
	text-align: center;
	width: 100%;
	font-size: 18px;
	font-family: gothamBook;
	color: #ED6B53;
}

/**======================================================================
 * 12 - Company Dashboard
======================================================================**/

.scComAvgTitle {
	display: flex;
	width: 100%;
	border: 1px solid #fff;
	border-radius: 5px;
}

.scComAvgTitle * {
	color: #fff;
	font-family: gothamBook;
	font-size: 18px;
	text-align: center;
}

.scComBody * {
	color: #fff;
	font-family: gothamBook;
	font-size: 18px;
	text-align: center;
}

.scComBody.row {
	margin: 5px 0;
}

.scComBody .scComBodyPos {
	background-color: #fff;
	border-radius: 5px;
}

.scComBody .scComBodyPos p {
	color: #000;
	background-color: #fff;
}

.scComBodyCM {
	border: 1px solid #fff;
	border-top: 0;
	border-radius: 8px;
	/* width: calc(100% - 25px); */
}

.scComBodyP {
	border: 1px solid #fff;
	border-top: 0;
	border-radius: 8px;
}

/* .owl-item:nth-child(2n) .otherUpdates.training .featuredImage img {
	filter: brightness(0) invert(1);
} */

.otherUpdates .featuredImage {
	vertical-align: top;
	align-content: start;
	align-self: start;
}

.ScoresandProgressInner.row {
	background: rgba(255, 255, 255, 0.4);
	background: linear-gradient(60deg, rgba(255, 255, 255, 0.4) 0%, rgba(210, 210, 210, 0.4) 100%);
}

/**======================================================================
 * xx - Social Gallery Pages/ Elements
=======================================================================**/

.social-gallery-uploads input:not([type="submit"]) {
	color: #ffffff;
}

.social-gallery {
	display: grid;
	background: rgba(255, 255, 255, 0.2);
	grid-gap: 0;
	/** 4 columns, 3 columns **/
	align-items: center;
	grid-auto-rows: minmax(300px, auto);
}

.social-gallery>div {
	position: relative;
	margin: 5px;
}

.social-gallery>div img {
	width: 100%;
}

.social-gallery>div:nth-of-type(7n+1) {
	grid-column-start: 1;
	grid-column-end: 4;
}

.social-gallery>div:nth-of-type(7n+2) {
	grid-column-start: 4;
	grid-column-end: 7;
}

.social-gallery>div:nth-of-type(7n+3) {
	grid-column-start: 7;
	grid-column-end: 10;
}

.social-gallery>div:nth-of-type(7n+4) {
	grid-column-start: 10;
	grid-column-end: 13;
}

.social-gallery>div:nth-of-type(7n+5) {
	grid-column-start: 1;
	grid-column-end: 5;
}

.social-gallery>div:nth-of-type(7n+6) {
	grid-column-start: 5;
	grid-column-end: 9;
}

.social-gallery>div:nth-of-type(7n+7) {
	grid-column-start: 9;
	grid-column-end: 13;
}

.social-gallery-item>.vote-item {
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: inline-block;
	font-size: 200%;
	color: #fff;
	background: linear-gradient(to right, #78216C, #294E95);
	opacity: 0.5;
	font-family: gothamBlack;
	padding: 10px;
	border-radius: 10px;
	width: 50px;
	text-align: center;
	cursor: pointer;
}

.social-gallery-item>.vote-item:after {
	content: '^';
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 0;
	color: #fff;
}

.social-gallery-item>.vote-item:hover {
	border: 1px solid #fff;
}

.social-gallery-item>.vote-item.inactive {
	background: #000;
	pointer-events: none;
}

/**======================================================================
 * xx - Login and Registration Form
======================================================================**/

#innerContent .post-inner {
	padding: 4vh 0;
}

#landregform .elementor-tab-title.elementor-active a {
	color: #ED6B53;
}

#innerContent .elementor-tab-title a {
	color: #fff;
}

select#regionSelection,
select#companySelection {
	width: 100%;
	padding: 15px 18px;
}

.space {
	margin-bottom: 15px;
}

select#registerCompanySelection {
	width: 100%;
	padding: 15px 15px;
}

.elementor-tab-title a,
#portal-registration-form input,
#portal-registration-form textarea,
#portal-registration-form select {
	font-family: gothamBook !important;
}

.elementor-widget-tabs .elementor-tab-title,
.elementor-widget-tabs .elementor-tab-title a {
	font-family: gothamBook;
	color: #fff;
}

.elementor-widget-tabs .elementor-tab-title.elementor-active,
.elementor-widget-tabs .elementor-tab-title.elementor-active a {
	color: #ED6B53;
}

.forgot-link {
	color: #ED6B53;
	font-size: 0.5em;
}

.forgot-link:hover {
	color: #ED6B53;
	text-decoration: none;
	font-style: italic;
}

/**======================================================================
 * xx - Footer Elements
======================================================================**/

#site-footer {
	background: linear-gradient(to right, #78216C, #294E95);
	padding: 1em 0;
	align-items: center;
}

.footer-logo img {
	max-width: 200px;
}

.footer-social a {
	background: transparent;
	margin: 0 10px;
	color: #fff;
	text-align: right;
	border: 1px solid #fff;
	border-radius: 15px;
	font-size: 18px;
	padding: 7px 15px;
	/* line-height: 18px; */
	transition: all 0.5s ease;
	display: block;
	width: 100%;
	text-align: center;
}

.footer-social a:hover {
	background: #fff;
	color: #294E95;
	text-decoration: none;
}

/**======================================================================
 * xx - Loader
======================================================================**/

.loadingMsg {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background-color: rgba(0, 0, 0, 0.5);
}

.loadBar {
	background-color: linear-gradient(to right, #294E95, #78216C);
	width: 0%;
	height: 5px;
	top: 50vh;
	border-radius: 3px;
	align-items: center;
	position: absolute;
	max-width: 80%;
	margin: 0 auto;
	left: 0;
	right: 0;
}

.percent {
	position: absolute;
	display: inline-block;
	top: 3px;
	left: 48%;
}


/**======================================================================
 * xx - @media Elements
======================================================================**/

@media screen and (min-width: 1601px) {
	/* #intro {
	    background-position: bottom -9em center;
	} */
}

@media screen and (min-width: 1200px) {
	nav#navOuter {
		position: fixed;
		width: 100%;
		top: 0;
		z-index: 999;
	}
}

@media screen and (max-width: 1200px) {
	#mainContent {
		margin-top: 0px;
		min-height: calc(100vh - 20vh - 54px);
	}
}

@media screen and (max-width: 1024px) {

	#leftNav div#navigation,
	#rightNav div#navigation {
		margin: 0 auto;
	}

	#leftNav div#navigation ul.navbar-nav {
		margin: 0 auto !important;
	}

	#rightNav div#navigation li {
		margin: 0.5rem 0 0 2rem;
	}

	#mainContent {
		margin-top: 0px;
		min-height: calc(100vh - 20vh - 54px);
	}

	.woFeaturedImage,
	.greenBG,
	.orangeBG {
		min-height: 30vh;
	}

	.hurrytimer-cdt .hurrytimer-headline {
		font-family: gothamBook;
		font-size: 1.8em;
	}

	.hurrytimer-cdt .hurrytimer-timer-digit {
		font-family: gothamBlack;
		font-size: 2.2em;
	}

	.hurrytimer-cdt .hurrytimer-timer-label {
		font-size: 1em;
	}

	/* .social-gallery {

	} */

	.social-gallery>div:nth-of-type(7n+1) {
		grid-column-start: 1;
		grid-column-end: 7;
	}

	.social-gallery>div:nth-of-type(7n+2) {
		grid-column-start: 7;
		grid-column-end: 13;
	}

	.social-gallery>div:nth-of-type(7n+3) {
		grid-column-start: 1;
		grid-column-end: 7;
	}

	.social-gallery>div:nth-of-type(7n+4) {
		grid-column-start: 7;
		grid-column-end: 13;
	}

	.social-gallery>div:nth-of-type(7n+5) {
		grid-column-start: 1;
		grid-column-end: 7;
	}

	.social-gallery>div:nth-of-type(7n+6) {
		grid-column-start: 7;
		grid-column-end: 13;
	}

	.social-gallery>div:nth-of-type(7n+7) {
		grid-column-start: 1;
		grid-column-end: 13;
	}
}

@media screen and (max-width: 767px) {

	/* .social-gallery {

	} */

	.social-gallery>div:nth-of-type(7n+1) {
		grid-column-start: 1;
		grid-column-end: 13;
	}

	.social-gallery>div:nth-of-type(7n+2) {
		grid-column-start: 1;
		grid-column-end: 13;
	}

	.social-gallery>div:nth-of-type(7n+3) {
		grid-column-start: 1;
		grid-column-end: 13;
	}

	.social-gallery>div:nth-of-type(7n+4) {
		grid-column-start: 1;
		grid-column-end: 13;
	}

	.social-gallery>div:nth-of-type(7n+5) {
		grid-column-start: 1;
		grid-column-end: 13;
	}

	.social-gallery>div:nth-of-type(7n+6) {
		grid-column-start: 1;
		grid-column-end: 13;
	}

	.social-gallery>div:nth-of-type(7n+7) {
		grid-column-start: 1;
		grid-column-end: 13;
	}
}