/* Clone from old custom.css */

html .layout.horizontal {
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	flex-direction: row;
}

html .layout.horizontal.reverse {
	-ms-flex-direction: row-reverse;
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

html .layout.vertical {
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	flex-direction: column;
}

html .layout.horizontal,
html .layout.vertical {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
}

html .layout.horizontal.inline,
html .layout.vertical.inline {
	display: -ms-inline-flexbox;
	display: -webkit-inline-flex;
	display: -moz-inline-flex;
	display: inline-flex;
}

html .layout.vertical.reverse {
	-ms-flex-direction: column-reverse;
	-webkit-flex-direction: column-reverse;
	-moz-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

html .layout.wrap {
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	flex-wrap: wrap;
}

html .layout.wrap-reverse {
	-ms-flex-wrap: wrap-reverse;
	-moz-flex-wrap: wrap-reverse;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
}

html .flex {
	-ms-flex: 1 1 0;
	-webkit-flex: 1;
	flex: 1;
	-webkit-flex-basis: 0;
	-moz-flex-basis: 0;
	flex-basis: 0;
}

html .vertical.layout>.flex.auto-vertical,
html .vertical.layout .flex.auto-vertical {
	-ms-flex: 1 1 auto;
	-webkit-flex-basis: auto;
	-moz-flex-basis: auto;
	flex-basis: auto;
}

html .flex.auto {
	-ms-flex: 1 1 auto;
	-webkit-flex-basis: auto;
	-moz-flex-basis: auto;
	flex-basis: auto;
}

html .flex.none {
	-ms-flex: none;
	-webkit-flex: none;
	-moz-flex: none;
	flex: none;
}

html .flex.one {
	-ms-flex: 1;
	-webkit-flex: 1;
	-moz-flex: 1;
	flex: 1;
}

html .flex.two {
	-ms-flex: 2;
	-webkit-flex: 2;
	-moz-flex: 2;
	flex: 2;
}

html .flex.three {
	-ms-flex: 3;
	-webkit-flex: 3;
	-moz-flex: 3;
	flex: 3;
}

html .flex.four {
	-ms-flex: 4;
	-webkit-flex: 4;
	-moz-flex: 4;
	flex: 4;
}

html .flex.five {
	-ms-flex: 5;
	-webkit-flex: 5;
	-moz-flex: 5;
	flex: 5;
}

html .flex.six {
	-ms-flex: 6;
	-webkit-flex: 6;
	-moz-flex: 6;
	flex: 6;
}

html .flex.seven {
	-ms-flex: 7;
	-webkit-flex: 7;
	-moz-flex: 7;
	flex: 7;
}

html .flex.eight {
	-ms-flex: 8;
	-webkit-flex: 8;
	-moz-flex: 8;
	flex: 8;
}

html .flex.nine {
	-ms-flex: 9;
	-webkit-flex: 10;
	-moz-flex: 9;
	flex: 9;
}

html .flex.ten {
	-ms-flex: 10;
	-webkit-flex: 10;
	-moz-flex: 10;
	flex: 10;
}

html .flex.eleven {
	-ms-flex: 11;
	-webkit-flex: 11;
	-moz-flex: 11;
	flex: 11;
}

html .flex.twelve {
	-ms-flex: 12;
	-webkit-flex: 12;
	-moz-flex: 12;
	flex: 12;
}

html .layout.start {
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	align-items: flex-start;
}

html .layout.center,
html .layout.center-center {
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
}

html .layout.end {
	-ms-flex-align: end;
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	align-items: flex-end;
}

html .layout.start-justified {
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	justify-content: flex-start;
}

html .layout.center-justified,
html .layout.center-center {
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
}

html .layout.end-justified {
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	-moz-justify-content: end;
	justify-content: flex-end;
}

html .layout.around-justified {
	-ms-flex-pack: distribute;
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	justify-content: space-around;
}

html .layout.justified {
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
}

html .self-start {
	-ms-align-self: flex-start;
	-webkit-align-self: flex-start;
	-moz-align-self: flex-start;
	align-self: flex-start;
}

html .self-center {
	-ms-align-self: center;
	-webkit-align-self: center;
	-moz-align-self: center;
	align-self: center;
}

html .self-end {
	-ms-align-self: flex-end;
	-webkit-align-self: flex-end;
	-moz-align-self: flex-end;
	align-self: flex-end;
}

html .self-stretch {
	-ms-align-self: stretch;
	-webkit-align-self: stretch;
	-moz-align-self: stretch;
	align-self: stretch;
}

html .block {
	display: block;
}

html .hidden {
	display: none !important;
}

html .relative {
	position: relative;
}

html .fit {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

@media only screen and (max-width: 767.98px) {
	html {
		font-size: 0.9375rem;
	}
}

body {
	color: #333;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}

body strong,
body b {
	font-weight: 700;
}

h1,
h2,
h3,
h4 h2,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	line-height: 1.3;
	font-weight: 600;
	letter-spacing: 0;
}

h1,
.h1 {
	font-size: 2.4rem;
}

h2,
.h2 {
	font-size: 1.8rem;
}

h3,
.h3 {
	font-size: 1.5rem;
}

h1 strong,
h1 b,
h2 strong,
h2 b,
h3 strong,
h3 b,
h4 strong,
.woocommerce h2 strong,
h4 b,
.woocommerce h2 b,
h5 strong,
h5 b,
h6 strong,
h6 b,
.h1 strong,
.h1 b,
.h2 strong,
.h2 b,
.h3 strong,
.h3 b,
.h4 strong,
.h4 b,
.h5 strong,
.h5 b,
.h6 strong,
.h6 b {
	font-weight: 600;
}

@media only screen and (max-width: 1199.98px) {
	.nav-navbar {
		padding-left: 0;
	}

	.navbar-left .navbar-brand {
		position: static;
		margin: 0;
	}

	.navbar-mobile .navbar-brand {
		display: inline-block;
		padding-bottom: 0;
	}

	.navbar-mobile .navbar-brand img {
		margin-left: 0;
	}

	#pricing .nav-tabs-outline .nav-link {
		padding-bottom: 6px;
	}

	#pricing .nav-tabs-outline .nav-item {
		padding: 0;
	}

	#pricing .nav-tabs-outline .nav-item:first-child .nav-link {
		border-radius: 10rem 0 0 10rem;
	}

	#pricing .nav-tabs-outline .nav-item:last-child .nav-link {
		border-radius: 0 10rem 10rem 0;
	}

	.navbar-brand img {
		max-height: 44px;
		width: 160px;
		height: auto;
		margin-left: -8px;
	}

	.navbar-expand-lg {
		padding-bottom: 20px;
		padding-top: 20px;
	}

	.nav-navbar .nav-item {
		margin: 0 0 5px;
	}

	.navbar-expand-lg .nav-navbar {
		padding: 20px 0 0;
	}

	footer .nav.flex-column .nav-link {
		margin: 2px 0;
	}

	/* targeting logo inside footer */
	.footer img {
		max-width: 100%;
		width: 130px;
		height: auto;
	}

	.navbar-expand-xl .navbar-mobile {
		padding-bottom: 60px;
	}
}

@media only screen and (max-width: 480px) {
	#pricing .nav-tabs-outline .nav-item {
		min-width: 0;
	}

	#pricing .nav-tabs-outline .nav-item .nav-link {
		padding-left: 15px;
		padding-right: 15px;
		min-width: 0;
	}
}

@media only screen and (max-width: 340px) {
	#pricing .nav-tabs-outline .nav-item .nav-link {
		letter-spacing: 0;
	}
}

.bg-color-primary {
	background-color: #4f9af2 !important;
}

.bg-color-primary:hover {
	background-color: #3c96ff !important;
}

.login-section input {
	color: #333;
}

h2,
h3,
h4 {
	margin-bottom: 1.5rem;
}

h2.blue-underline {
	display: inline-block;
	background: linear-gradient(to right, rgb(197 231 255) 0%, rgb(202 255 198) 100%);
	background-position: 0 50%;
	background-repeat: no-repeat;
	background-size: 100% 15px;
	background-position: 0 100%;
	padding: 0 8px 0 2px;
}

h2.blue-underline.has-text-align-center {
	transform: translateX(-50%);
	left: 50%;
	position: relative;
}

p {
	margin-bottom: 1.5rem;
}

ul,
ol {
	margin: 0 0 1.5rem;
}

.post-content.has-medium-font-size {
	line-height: 1.3;
}

.post-content li {
	margin: 0 0 6px;
}

.post-content ul ul,
.post-content ul ol,
.post-content ol ol,
.post-content ol ul {
	margin-top: 6px;
}

.post-content .more-spacing li,
.main-content .more-spacing li {
	margin: 0 0 1.5rem;
}

header .wp-block-image img {
	max-width: 900px;
	max-height: 560px;
	width: auto;
}

@media (max-width: 1199.98px) {
	header .wp-block-image img {
		border-radius: 0;
		max-width: 100%;
		max-height: 480px;
		width: auto;
	}
}

.post-content .wp-block-image img {
	border-radius: 4px;
	max-width: 100%;
}

.post-content .is-style-circle-mask img,
.post-content .is-style-rounded img {
	border-radius: 50%;
}

.author-box {
	margin: auto;
}

.author-box-full {
	padding-top: 1rem;
}

.author-box-full .display-name {
	margin-top: 1rem;
}

@media (max-width: 991.98px) {
	.author-box {
		max-width: 420px;
		text-align: center;
	}

	.author-box-full {
		max-width: unset;
	}
}

@media (min-width: 992px) {
	.author-box {
		max-width: 200px;
	}

	.author-box-full {
		max-width: 768px;
	}
}

.author-box .avatar {
	width: 100px;
	height: 100px;
}

.author-box-full .avatar {
	width: 100%;
	height: auto;
}


.author-box .small {
	opacity: 0.9;
}

@media (max-width: 680px) {
	.container-xs .wp-block-image {
		max-width: none;
		text-align: center;
	}

	.post-content .wp-block-image img {
		border-radius: 0;
		max-width: 100%;
	}
}

@media (max-width: 540px) {
	.post-content .wp-block-image img {
		max-width: 100%;
	}

	.post-content .wp-block-image .alignright,
	.post-content .wp-block-image .alignleft {
		float: none;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 767px) {
	.get-started-now-top-section {
		text-align: center;
	}
}

.post-tags {
	opacity: 0.7;
}

.how-it-works .step {
	display: block;
	font-size: 3.6rem;
	color: #eee;
	line-height: 1;
	margin-top: -10px;
}

.partner img {
	max-height: 40px;
	max-width: 160px;
}

@media (max-width: 1199px) {
	.partner img {
		max-height: 30px;
		max-width: 120px;
	}
}

.section-header small {
	font-size: 15px;
}

.wp-block-table {
	font-size: 16px;
	margin: 0 0 1.5rem;
}

.wp-block-table td,
.wp-block-table th {
	word-break: normal;
}

.wp-block-table thead {
	border-bottom: 2px solid #d2d2d2;
}

.wp-block-table tfoot {
	border-top: 2px solid #d2d2d2;
}

@media (max-width: 991.98px) {
	.wp-block-table {
		font-size: 14px;
		line-height: 1.4;
	}
}

@media (max-width: 400px) {
	.wp-block-table {
		font-size: 12px;
	}
}

.pricing-1 {
	padding: 0 0 16px;
	position: relative;
	border: 1px solid #e6e8ea;
}

.pricing-1 .plan-name {
	background: #f6faff;
	font-size: 17px;
	margin: 0 0 16px;
	padding: 16px 16px 14px;
}

.pricing-1.popular .plan-name {
	/*	background: #fff8f8;*/
}

.pricing-1 .popular-tag {
	background-color: #ff4854;
	border-bottom-left-radius: 5rem;
	border-top-left-radius: 5rem;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 400;
	right: 40px;
	letter-spacing: 1.5px;
	line-height: 22px;
	padding-right: 1.5rem;
	padding: 1px 0.75rem;
	position: absolute;
	text-transform: uppercase;
	top: -2px;
	transform-origin: top right;
	transform: rotate(-90deg);
}

.pricing-1 .old-price {
	bottom: -10px;
	display: inline-block;
	font-size: 22px;
	font-weight: bold;
	margin: auto;
	padding: 0 6px 0 2px;
	position: relative;
}

.pricing-1 .old-price .price-unit {
	font-size: 12px;
	margin: 2px 2px 0 0;
}

.pricing-1 .old-price:before {
	position: absolute;
	content: '';
	left: 0;
	top: 17px;
	right: 0;
	border-top: 2px solid #ff4854;
	transform: rotate(-7deg);
}

.pricing-1 .old-price.no-strikethrough:before {
	display: none;
}

.pricing-1 .price {
	letter-spacing: -2px;
	margin: 0;
}

.price-unit {
	font-size: 20px;
}

.pricing-details {
	font-size: 14px;
}

.pricing-details h3 {
	font-size: 17px;
	margin: 0 0 10px;
}

.pricing-details p {
	margin: 0 0 10px;
}

/* Promo popup */

.promopopup {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	text-align: center;
	z-index: 9999;
	top: 0;
	left: 0;
}

.promopopup-inner {
	background: #d42d53;
	border-radius: 8px;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -135px 0 0 -170px;
	width: 360px;
	box-shadow: 12px 12px 20px rgba(0, 0, 0, .2);
}

@media (min-width: 768px) {
	.promopopup {
		height: auto;
		top: auto;
		bottom: 0;
		width: auto;
	}

	.promopopup-inner {
		bottom: 20px;
		left: 20px;
		margin: 0;
		top: auto;
	}
}

.promopopup-inner .promopopup-img {
	height: 221px;
}

.promopopup-inner .promopopup-img img {
	border-radius: 8px 8px 0 0;
}

.promopopup-inner p {
	color: #fff;
	padding: 8px 4px 9px;
	margin: 0;
	font-size: 15px;
	font-weight: normal;
	line-height: 1.4;
}

.promopopup-inner p a {
	display: block;
	padding: 0 12px 0 0;
	color: #fff;
	text-align: right;
}

.promopopup-inner .promopopup-close {
	position: absolute;
	top: -15px;
	right: -15px;
	color: #fff;
	font-size: 16px;
	background: #d42d53;
	border-radius: 20px;
	width: 28px;
	height: 28px;
	line-height: 28px;
}

@media only screen and (max-width: 440px) {
	.promopopup-inner {
		width: 280px;
		margin-left: -145px;
	}

	.promopopup-inner .promopopup-img {
		height: 172px;
	}

	.promopopup-inner p {
		font-size: 14px;
	}
}

#goog-gt-tt {
	display: none !important;
}

.goog-te-banner-frame {
	display: none !important;
}

.goog-te-menu-value:hover {
	text-decoration: none !important;
}

.goog-text-highlight {
	background-color: transparent !important;
	box-shadow: none !important;
}

body {
	top: 0 !important;
	overflow-x: hidden;
}

#google_translate_element2 {
	display: none !important;
}

.ahaslides-presentation-embed {
	margin-left: -15px;
	margin-right: -15px;
	text-align: center;
}

.ahaslides-presentation-embed iframe {
	border: 1px solid #ddd;
	height: 445px;
	width: 100%;
}

@media (max-width: 1379.98px) {
	.ahaslides-presentation-embed iframe {
		height: 405px;
	}
}

@media (max-width: 1199.98px) {
	.ahaslides-presentation-embed iframe {
		height: 355px;
	}
}

@media (max-width: 991.98px) {
	.ahaslides-presentation-embed iframe {
		height: 383px;
		width: 500px;
	}

	#aha-table-of-contents {
		display: none;
	}
}

@media (max-width: 500px) {
	.ahaslides-presentation-embed iframe {
		height: 305px;
		width: 398px;
	}
}

@media (max-width: 400px) {
	.ahaslides-presentation-embed iframe {
		height: 280px;
		width: 318px;
	}
}

@media only screen and (max-width: 991.98px) {
	.lity-iframe-container {
		height: 100vh;
	}
}

.wp-block-columns {
	margin-bottom: 0;
}

.container-xs .wp-block-columns .wp-block-column .wp-block-image img {
	max-width: 480px;
}

@media (min-width: 992px) {
	.container .container-xs {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 1199px) {
	.container-xs .wp-block-columns.has-background {
		padding: 1.25em 1.75em;
	}

	.container-xs .wp-block-columns .wp-block-column .wp-block-image img {
		max-width: 100%;
	}
}

.wp-block-button__link {
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 1.2px;
	padding: 9px 22px 7px;
	text-transform: uppercase;
	transition-duration: .1s;
}

.wp-block-button__link.has-primary-background-color,
.wp-block-button__link.has-background {
	animation: button-glow 1s ease-in-out infinite alternate;
}

.wp-block-button__link.has-primary-background-color:hover,
.wp-block-button__link.has-background:hover {
	background-color: #3c96ff !important;
	letter-spacing: 1.6px;
}

@keyframes button-glow {
	from {
		box-shadow: 0 1px 2px rgba(80, 161, 255, 0.4);
	}

	to {
		box-shadow: 0 2px 20px rgba(80, 161, 255, 0.4);
	}
}

blockquote.wp-block-quote {
	border: none;
	font-size: 22px;
	line-height: 1.4;
	margin: 20px 50px 28px 50px;
	padding: 0;
	position: relative;
}

blockquote.wp-block-quote:before,
blockquote.wp-block-quote:after {
	color: #f1efe6;
	font-size: 130px;
	position: absolute;
	z-index: -1;
	height: 50px;
}

blockquote.wp-block-quote:before {
	content: '“';
	left: -50px;
	top: -50px;
}

blockquote.wp-block-quote:after {
	content: '”';
	right: -20px;
	bottom: 20px;
}

blockquote.wp-block-quote p {
	margin: 0 0 16px;
}

blockquote.wp-block-quote cite {
	text-align: center;
	display: block;
	font-size: 14px;
	color: inherit;
}

blockquote.wp-block-quote.small-quote {
	display: inline-block;
	text-align: center;
	position: relative;
	margin-left: 50%;
	transform: translateX(-50%);
}

blockquote.wp-block-quote.small-quote:before {
	left: -60px;
}

blockquote.wp-block-quote.small-quote:after {
	right: -60px;
}

/* magnifier icon for zoomable photos */

.wp-block-image a[data-lbwps-handler] {
	position: relative;
	display: inline-block;
}

.wp-block-image a[data-lbwps-handler]::after {
	font-family: FontAwesome;
	display: block;
	content: '\f00e';
	color: #fff;
	font-size: 25px;
	position: absolute;
	right: 10px;
	bottom: 8px;
	background: rgba(0, 0, 0, .35);
	width: 42px;
	height: 42px;
	text-align: center;
	border-radius: 6px;
	line-height: 41px;
}

.wp-block-image a[data-lbwps-handler]:hover::after {
	font-size: 28px;
}

.aligncenter {
	text-align: center;
}

/* Small buttons on the Features page */

.small-grey-buttons .is-style-outline>.wp-block-button__link {
	font-size: 11px;
	border: 1px solid #ddd;
	font-weight: normal;
}

.small-grey-buttons .is-style-outline>.wp-block-button__link:hover {
	border-color: #4f9af2;
	color: #4f9af2;
}

/* Contextual Related Posts plugin */

.crp_related h3 {
	font-size: 18px;
	margin: 0 0 1rem;
	font-weight: normal;
}

.crp_related a {
	color: #323d47;
}

.crp_related a:hover {
	color: #50a1ff;
}

.crp_related .crp_thumb {
	border-bottom: 1px solid #e4e4e4;
	width: 100%;
}

@media (min-width: 768px) {
	.crp_related .crp_thumb {
		display: block;
		margin: auto;
		max-height: 220px;
		max-width: 100%;
		text-align: center;
		width: auto;
	}
}

.crp_related .crp_title {
	display: block;
	padding: 14px 16px 16px;
	line-height: 1.5;
}

/* Graceful no-js display for Typed.js elements */

.no-js .thesaasx-typing-text-format {
	display: none;
}

.no-js .no-js-inline {
	display: inline;
}

.no-js-inline {
	display: none;
}

/*
|--------------------------------------------------------------------------
| Floating TOC - https://ahaslides.atlassian.net/browse/AHA-2219
|--------------------------------------------------------------------------
*/

.sidebar.left-sidebar {
	/* for sticky to work properly */
	height: 100%;
	padding-right: 20px;
}

#aha-table-of-contents {
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
	line-height: 1.25;
	padding: 0 0 2rem;
}

@media (min-width: 1200px) {
	#aha-table-of-contents.sub-header-show {
		top: 130px;
	}
}

#aha-table-of-contents .toc-heading {
	font-size: 1rem;
	font-weight: bold;
	padding: 10px;
	margin: 0;
}

#aha-table-of-contents a {
	display: inline-block;
	padding: 4px 10px;
}

#aha-table-of-contents a.active-toc-item {
	background-color: #e5f1ff;
	color: #333;
}

#aha-table-of-contents ul,
#aha-table-of-contents ol {
	list-style-type: none;
	padding: 0;
}

#aha-table-of-contents ul ul,
#aha-table-of-contents ul ol,
#aha-table-of-contents ol ul,
#aha-table-of-contents ol ol {
	margin: 0.6rem 0 0;
}

#aha-table-of-contents li {
	font-size: 0.93rem;
	margin: 0 0 0.6rem;
}

#aha-table-of-contents li li {
	margin: 0 0 0.4rem 0;
	position: relative;
	padding: 0 0 0 0.8rem;
}

#aha-table-of-contents li li:before {
	content: '•';
	position: absolute;
	left: 16px;
	top: 6px;
	font-size: 11px;
	opacity: 0.8;
}

.newsletter-cta {
	position: sticky;
	top: 80px;
}

#aha-table-of-contents li li a {
	padding-left: 0.9rem;
}

.post-content .aha-inline-toc.left-column-only {
	display: none;
}

.right-sidebar .aha-sticky-block {
	position: -webkit-sticky;
	position: sticky;
	top: 150px;
}

.post-content .spinner-wheel-embed {
	margin: 0 -15px;
}

.spinner-wheel-embed iframe {
	border: none;
	width: 100%;
	height: 900px;
}

@media (max-width: 1184px) {
	.spinner-wheel-embed iframe {
		height: 740px;
	}
}

@media (max-width: 991.98px) {
	.spinner-wheel-embed iframe {
		height: 890px;
	}
}

@media (max-width: 480px) {
	.spinner-wheel-embed iframe {
		height: 730px;
	}
}

.right-sidebar-banner {
	display: block;
	position: sticky;
	top: 100px;
	z-index: 100;
	max-width: 240px;
	margin: 0 auto;
}

@media (max-width: 991.98px) {
	.right-sidebar-banner {
		position: initial;
	}
}


/*
|--------------------------------------------------------------------------
| Utility classes
|--------------------------------------------------------------------------
*/
.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.centered {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.vh-40 {
	height: 40vh;
}

.vh-50 {
	height: 50vh;
}

.aha-category-title {
	color: #323d47;
	transition: .2s linear;
}

.aha-category-title:hover {
	color: #50a1ff;
}

.aha-mb-40 {
	margin-bottom: 40px;
}

.maxw-768 {
	max-width: 768px;
	margin: 0 auto;
}

.wp-block-button__link.aha-btn-community {
	border: 1px solid #4f9af2;
	background-color: #fff;
	color: #4f9af2;
}

.wp-block-button__link.aha-btn-community:hover {
	background-color: #4f9af2;
	color: #fff;
}

@media (max-width: 768px) {
	body.post-template-default .header-wrapper .header.vh-50.d-none.d-sm-block {
		display: none !important;
	}

	body.post-template-default .header-wrapper .wp-block-image {
		display: none !important;
	}
}

.backdrop {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100vh;
	cursor: pointer;
}

.backdrop-navbar {
	background-color: rgba(255, 255, 255, 0.95);
	z-index: 1001;
	display: none;
}

.navbar-open .backdrop-navbar {
	display: block;
}

.navbar-open .navbar-mobile {
	left: 0 !important;
	-webkit-box-shadow: 2px 0 9px rgba(0, 0, 0, 0.05);
	box-shadow: 2px 0 9px rgba(0, 0, 0, 0.05);
}

.comments-area {
	width: auto;
}

.wpd-comment .wpd-follow-link {
	display: none !important;
}

.wpd-user-info {
	flex-direction: column !important;
}

.wpd-avatar img {
	border: none !important;
	width: 40px !important;
	height: 40px !important;
}

.wpd-thread-head {
	border-bottom: 1px solid #cccccc !important;
}

.wpd-comment-link {
	display: none !important;

}

#wpdcom {
	padding: 0px 16px !important;
}

.wpd-thread-head .wpd-thread-info {
	border: 2px solid transparent !important;
}

.ql-editor.ql-blank::before {
	font-style: initial !important;
	letter-spacing: initial !important;
}

.wpd-comment-author {
	letter-spacing: initial !important;
}

.wpd-rating-title {
	display: none !important;
}

.comments-area .wpd-form-head {
	display: none !important;
}


.wpdiscuz-user-settings {
	display: none !important;
}

.wpd-thread-list {
	padding: 30px 0px 0px 0px !important;
}

.wpd-avatar {
	padding-right: 8px;
}

.wpd-thread-filter {
	display: none !important;
}

.wpdiscuz-textarea-wrap {
	padding: 10px 0px !important;
}

label.wpd_label {
	display: none !important;
}

.ql-snow .ql-toolbar button,
.ql-snow.ql-toolbar button {
	padding: 3px 10px !important;
}

button.ql-code-block {
	display: none !important;
}

.ql-link {
	display: none !important;
}

.ahaslides-video-tools {
	padding-top: 64px;
}

.section>.container {
	height: auto !important;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: #236cbe;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4 h2,
h5,
h6 {
	line-height: 1.3;
	font-weight: 600 !important;
	letter-spacing: 0;
}

a {
	color: #236cbe;
}

.label-accesscode {
	font-weight: initial;
	margin-bottom: initial;
}

.box-search-accesscode input {
	padding: 0 2px;
	border: none;
	box-shadow: none;
	font-size: 16px;
	text-transform: uppercase;
	width: 110px;
	box-shadow: initial !important;
	-webkit-appearance: none;
	position: relative;
	top: -1px;
}

.box-search-accesscode input::placeholder {
	color: #ccc;
}



.box-search-accesscode input:focus {}

#form-check-access-code {
	font-size: 16px;
	line-height: 1.7;
	padding: 0 4px;
}

#form-check-access-code button {
	border-radius: 24px;
	padding: 4px 14px;
	font-weight: bold;
	font-size: 14px;
	position: relative;
	letter-spacing: 0.5px;
	right: -8px;
	/* color: #757575; */
	text-transform: none;
}

.title-top-header {
	margin-right: 6px;
}

.box-search-accesscode {
	background-color: #fff;
	padding: 0 10px;
	border-radius: 24px;
	text-transform: uppercase;
}

.box-search-accesscode input[readonly] {
	background-color: #fff;
}

@media (max-width: 540px) {
	#form-check-access-code {
		font-size: 14px;
	}

  .label-accesscode {
		font-size: 13px;
	}

	.box-search-accesscode {
		padding: 0 8px;
	}

	.box-search-accesscode input {}

	.box-search-accesscode input:focus {}

	#form-check-access-code button {
		font-size: 13px;
		right: -4px;
	}
}

@media (max-width: 473px) {
  .label-accesscode {
		font-size: 12px;
	}

	.title-top-header {
		font-size: 12px;
	}

	.box-search-accesscode input {}

	.box-search-accesscode input:focus {}

	#form-check-access-code button {
		font-size: 12px;
		top: 0;
	}
}

@media (max-width: 416px) {
	.check-accesscode {
		display: block !important;
		text-align: center;
		margin: 0 8px;
		width: 100%;
		max-width: 312px;
	}

	.title-top-header {
		font-size: 14px;
		padding: 0 0 3px;
	}

	.box-search-accesscode input {
		width: 100%;
	}

	.box-search-accesscode input :focus {}

  .label-accesscode {
		font-size: 13px;
	}

	#form-check-access-code button {
		font-size: 14px;
	}
}


a.muted-link {
	color: #666;
	border-bottom: 1px solid #ddd;
}

a.muted-link:hover {
	color: #4f9af2;
	border-bottom-color: #4f9af2;
}

.container-lg h1 {
	padding-right: 12px;
	padding-left: 12px;
	margin: 3rem auto 1rem;
	max-width: 1100px;
}

@media only screen and (max-width: 480px) {
	.container-lg h1 {
		font-size: 2rem;
	}
}

@media (min-width: 1380px) {
	.container {
		max-width: 1280px;
	}
}

.post-content {
	font-size: 18px;
}

.post-content .wp-block-button {
	margin: 0 0 24px;
}

.lead-2 {
	font-size: 1.1rem !important;
}

.top-header {
	background-color: #f1f1f1;
	padding: 10px 0;
	width: 100%;
	z-index: 99;
}

.title-top-header {}

.navbar-expand-lg {
	padding-bottom: 20px;
	padding-top: 20px;
}

.multiple-language-dropdown {
	display: flex;
	flex-shrink: 0;
	cursor: pointer;
	font-size: 14px;
	position: relative;
	text-align: right;
	margin-right: 10px;
	padding-top: 3px;
}

.list-language {
	background-color: #fff;
	border-radius: 5px;
	border: 1px solid #e3e3e3;
	box-shadow: 4px 20px 20px rgb(0 0 0 / 4%);
	display: block;
	line-height: 2;
	list-style: none;
	padding: 12px 22px;
	position: absolute;
	right: 0;
	text-align: left;
	top: 20px;
	transition: 0.3s;
	width: 140px;
	z-index: 999;
}

.list-language a {
	color: rgba(117, 117, 117, 0.8);
}

.list-language a:hover {
	color: #555;
}

@media only screen and (max-width: 1199.98px) {
	.navbar-mobile .multiple-language-dropdown {
		display: block;
		text-align: left;
		margin: 0;
		padding: 20px 20px 20px 14px;
		width: 100%;
	}

	.list-language {
		left: 0;
		top: 62px;
		width: 100%;
	}

	.list-language li {
		display: inline-block;
		margin: 0 16px 6px 0;
	}
}

.language-selected {
	color: #757575cc;
	font-weight: 600;
	display: flex;
	position: absolute;
	top: -8px;
	left: -30px;
}

.language-selected img {
	margin-right: 4px;
	opacity: .4;
	width: 14px;
	margin-bottom: 1px;
}

.language-selected:hover img {
	opacity: 0.8;
}

.language-selected:hover {
	color: #555;
}

.language-selected .fa {
	position: relative;
}

.navbar-buttons {
	display: flex;
	flex-shrink: 0;
}

nav.navbar.navbar-expand-lg.navbar-dark.navbar-stick-dark {
	border-bottom: 1px solid #eaeff4;
}

.navbar-open .nav-navbar>.nav-item>.nav,
.navbar-open .nav-navbar>.menu-item>.nav {
	height: auto !important;
	/* turn off the toggling effect on sidenav on small screens @dave 11.06.2021 */
}

.nav-navbar>.nav-item>.nav-link {
	height: 56px;
	padding-top: 3px;
}

.navbar-dark .nav-navbar>.nav-item>.nav-link,
.navbar-dark .nav-navbar>.nav-link {
	color: #757575ee;
}

.nav .arrow {
	display: none;
}

.nav-navbar .nav {
	padding-bottom: 12px;
	padding-top: 12px;
	box-shadow: 3px 6px 12px rgb(0 0 0 / 6%);
}

.nav-navbar .nav .nav-link,
.nav-navbar .nav .menu-item a,
.menu-item .nav-navbar .nav a {
	padding-bottom: 6px;
	padding-top: 6px;
}

.navbar-open .navbar-mobile .nav-navbar .nav-item>.nav,
.navbar-open .navbar-mobile .nav-navbar .menu-item>.nav {
	border: none;
}

.nav-navbar .nav-item>.nav,
.nav-navbar .menu-item>.nav {
	border: 1px solid #eaeff3;
	border-radius: 8px;
}

.nav-navbar {
	margin-right: auto;
	padding-left: 18px;
	flex-wrap: nowrap;
	flex-grow: 0;
	flex-shrink: 1;
}

@media only screen and (max-width: 1599.98px) {
	.nav-navbar {
		padding-left: 0;
		flex-wrap: wrap;
	}
}

@media only screen and (max-width: 1199.98px) {
	.nav-navbar {
		margin-right: 0;
		flex-wrap: nowrap;
	}

	.nav-navbar .nav-link,
	.nav-navbar .menu-item a,
	.menu-item .nav-navbar a {
		padding-left: 14px;
		padding-right: 14px;
	}

	.nav-navbar .menu-item-home {
		display: none;
	}

	.navbar-expand-xl section.navbar-mobile {
		height: 100%;
	}

	.navbar-mobile .navbar-buttons {
		border-top: 1px solid #EBEBEB;
		left: 0;
		bottom: 0;
		background-color: #fff;
		display: flex;
		flex-direction: row-reverse;
		justify-content: flex-end;
		width: inherit;
		padding: 14px 20px 14px 34px;
	}

	body.navbar-open .navbar-mobile .navbar-buttons {
		position: fixed;
	}

	.nav-navbar>.nav-item>.nav-link {
		height: auto;
	}
}

/* https://ahaslides.atlassian.net/browse/AHA-7869 */
.nav-link.is-open-in-new-tab::after {
	content: '\f08e';
	font-family: 'FontAwesome';
	display: none;
	position: absolute;
	color: #757575cc;
	opacity: 70%;
	margin-left: 5px;
}

.nav-link.is-open-in-new-tab:hover::after {
	display: inline-block;
}

@media only screen and (max-width: 1199.98px) {
	.nav-link.is-open-in-new-tab::after {
		display: inline-block;
	}
}

[data-navbar="sticky"] {
	background: #fff;
}

/* don't apply "hiding up" effect, except for homepage
** https://ahaslides.atlassian.net/browse/AHA-6721
*/
.body-scrolled:not(.home) [data-navbar="sticky"] {
	transform: none;
	/* negate the "hiding up" transition when page is scrolled @dave 22.05.2021 */
}

@media screen and (max-width: 767px) {
	.body-scrolled.home [data-navbar="sticky"] {
		transform: none;
		/* negate the "hiding up" transition for homepage in smaller screen since new version is not deployed yet */
	}
}

.btn-your-presentation {
	width: 300px;
	height: 46px;
	line-height: 32px;
	font-weight: bold;
	font-size: 13px;
	border-radius: 46px;
}

.label-signup {
	position: absolute;
	margin-top: -140px;
	width: 100%;
	display: block;
}

.label-signup a {
	display: inline-block;
	padding: 15px 0;
	margin: 0 2px;
	text-decoration: underline;
}

.label-signup a:last-child {
	margin-right: 0;
}

.navbar {
	position: sticky;
	top: 0;
	min-height: auto;
	background-color: #fff;
}

.navbar-brand {
	margin-left: 5px;
}

.navbar-brand img {
	max-height: 64px;
	width: 186px;
	height: auto;
	transform: translateZ(0);
}

.navbar-expand-lg,
.navbar-expand-xl {
	padding-bottom: 12px;
	padding-top: 10px;
}

.navbar-mobile .navbar-brand {
	display: none;
}

#pricing .nav-tabs-outline .nav-link {
	border-color: #dee1e4;
	padding: 8px 20px 5px 22px;
	white-space: nowrap;
}

#pricing .nav-tabs-outline .nav-link.active,
.nav-tabs-outline .nav-link:hover {
	background: #4f9af2;
}

#pricing .nav-tabs-outline .nav-link .small {
	font-weight: bold;
	opacity: 0.5;
	letter-spacing: 0;
	margin: 0 -5px 0 2px;
}

#pricing .nav-tabs-outline .nav-link {
	min-width: 180px;
}

/* targeting logo inside footer */

.footer img {
	max-width: 100%;
	width: 150px;
	height: auto;
}

.navbar-expand-lg,
.navbar-expand-xl {
	padding-bottom: 12px !important;
	padding-top: 12px !important;
}

@media (min-width: 576px) {
	.d-sm-block {
		display: block !important;
	}
}

@media (min-width: 1380px) {
	.container {
		max-width: 1280px !important;
	}
}

.header {
	position: relative;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	padding-top: 146px;
	padding-bottom: 90px;

}


.vh-50 {
	height: 50vh;
}

.pt-0 {
	padding-top: 0;
}

.pb-0 {
	padding-bottom: 0;
}

@media (max-width: 575px) {

	.header-wrapper,
	.main-content {
		padding: 0 16px;
	}
}

@media (max-width: 1199px) {
	.navbar {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}
}


body {
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings:
		"wdth" 100,
		"YTLC" 500;
}

body .h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #323d47;
	font-weight: bold;
}

.entry__field input {
	height: calc(2.5rem - 2px);
	box-shadow: none;
	min-width: 1px;
	padding: 0 12px;
	border: 1px solid #c0ccda;
	border-radius: 5px;
}

#subscribe-button {
	background: #ecf4fe;
	border-radius: 30px;
	color: #236cc0;
	font-weight: 700;
	letter-spacing: 1px;
	transition: background .3s ease;
	width: 100%;
	resize: none;
	appearance: none;
	display: inline-block;
	padding: 8px 18px;
	border: none;
	overflow-wrap: break-word;
	max-width: 100%;
	margin-top: 16px;
}

.entry__title {
	font-weight: 700;
	font-size: 1.3rem;
	margin-bottom: 12px;
}

.entry__field input::placeholder {
	color: #c0ccda;
}

.entry__field input:focus {
	border-color: #757575;
}

.navbar-toggler {
	color: #757575 !important;
	font-size: 1.5rem !important;
	outline: none !important;
}

@media (max-width: 1199px) {
	.language-selected {
		position: unset;
	}
}

.text-light {
	color: #666 !important;
}

.social a {
	opacity: 1 !important;
	margin-right: 12px;
}

@media (max-width: 575px) {
	#disqus_thread {
		width: 100%;
	}
}

.post-tags .badge-secondary {
	background-color: #e9ecf0;
	font-weight: normal;
	color: #757575;
	padding: 4px 8px;
}

.sib-form-message-panel__inner-text {
	color: #33C173;
	border: none;
	background: none;
	padding: 0;
	margin-top: 10px;
	font-size: 0.8rem;
}

.sib-form-message-panel__text {
	text-align: center;
	margin-top: 8px;
	display: none;
}

.sib-form-message-panel__text.show {
	display: block;
}

@media (max-width: 600px) {
	.navbar-brand img {
		width: 135px;
	}
}

.ken-defined-ne {
	color: red;
}

.content-section {
	padding: 10px;
}

.social-media-section {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 0.5rem;
}

.social-media-section>* {
	border-radius: 6px;
	background: rgb(246, 247, 248);
	padding: 0.5rem;
}

@media (min-width: 1200px) {
	.main-header-nav .sub-header-item {
		display: none;
	}
}

@media (max-width: 1199px) {
	.navbar.blog-sub-header {
		display: none;
	}
}

.navbar.blog-sub-header {
	z-index: 1;
	position: sticky;
	top: 72px;
}

/*==================== Begin: Custom Header/Navbar ====================*/

.navbar-buttons {
  gap: 12px;
}

@media (min-width: 1200px) {
  .navbar-buttons {
    margin-left: 12px;
  }
}

/*==================== End: Custom Header/Navbar ====================*/

.search-form {
	display: flex;
	align-items: center;
	position: relative;
}

.search-form-wrapper {
	position: relative;
	display: table;
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
}

.search-form-input {
	position: relative;
	width: 100%;
	min-width: 0;
	background-color: #ffffff;
	background-image: none;
	border-width: 1px;
	border-style: solid;
	border-color: #d9d9d9;
	transition: all 0.2s;
	padding: 7px 11px;
	font-size: 16px;
	border-radius: 8px;
	display: table-cell;
	float: inline-start;
	width: 100%;
	margin-bottom: 0;
	text-align: inherit;
	line-height: 1.4998;
}

.search-form-input::placeholder {
	color: rgba(0, 0, 0, 0.25);
	user-select: none;
}

.search-form-input:placeholder-shown {
	text-overflow: ellipsis;
}

.search-form-input:first-child {
	border-start-end-radius: 0;
  border-end-end-radius: 0;
}

.search-form-input:last-child {
	border-start-start-radius: 0;
  border-end-start-radius: 0;
}

.search-form-input:focus-visible {
	outline: none;
}

.search-form-input:hover,
.search-form-input:focus {
	border-color: #4f9bf3;
	z-index: 1;
  border-inline-end-width: 1px;
}

.search-form-input-addon {
	border-collapse: separate;
  border-spacing: 0;
	position: relative;
	padding: 0 11px;
	color: rgba(0, 0, 0, 0.88);
	font-weight: normal;
	font-size: 14px;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.02);
	border: 1px solid #d9d9d9;
	border-radius: 6px;
	line-height: 1;
	border-radius: 8px;
	display: table-cell;
	width: 1px;
	white-space: nowrap;
	vertical-align: middle;
}

.search-form-input-addon:last-child {
	border-inline-start: 0;
	border-start-start-radius: 0;
	border-end-start-radius: 0;
	inset-inline-start: -1px;
	padding: 0;
	border: 0;
}

.search-form-input-addon:first-child {
	border-inline-start: 0;
	border-start-end-radius: 0;
	border-end-end-radius: 0;
	inset-inline-end: -1px;
	padding: 0;
	border: 0;
}

.search-form-button {
	height: 40px;
}

.search-form-button:hover,
.search-form-button:focus {
	z-index: 1;
}

.search-form-input-addon:last-child .search-form-button {
	padding-top: 0;
	padding-bottom: 0;
	border-start-start-radius: 0;
	border-start-end-radius: 6px;
	border-end-end-radius: 6px;
	border-end-start-radius: 0;
}

.search-form-input-addon:first-child .search-form-button {
	padding-top: 0;
	padding-bottom: 0;
	border-end-start-radius: 6px;
	border-start-end-radius: 0;
	border-end-end-radius: 0;
	border-end-start-radius: 6px;
}
