:root {
	--title-blue: #005180;
	--dark-blue: #416784;
	--bright-blue: #5eacde;
	--tan: #d6d4cc;
	--copy-text: #424242;
	--subtitle: #818285;
}

::-moz-selection { /* Code for Firefox */
    color: #333;
    background: var(--bright-blue);
}

::selection {
    color: #333;
    background: var(--bright-blue);
}

.custom-header .header-logo img {
	max-width: 100px;
}

body {
	color: #333;
}

/* --------------------------------------- */
/* Custom Toggle/Accordion */
/* --------------------------------------- */
#custom-toggle .elementor-toggle .elementor-toggle-title > span {
	font-weight: 600;
	color: var(--bright-blue);
}

#custom-toggle .elementor-toggle .elementor-toggle-item {
	margin-bottom: 0;
}

#custom-toggle .elementor-toggle .elementor-toggle-item .elementor-toggle-icon {
	margin-top: 5px;
}

#custom-toggle .elementor-toggle .elementor-toggle-item .elementor-tab-content {
	margin-bottom: 20px;
	margin-top: -10px;
}

/* --------------------------------------- */
/* Device Banner */
/* --------------------------------------- */
.tenovi-device-banner {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}

.tenovi-device-banner > div.col {
	flex-shrink: 1;
	position: relative;
}

.tenovi-device-banner > div.col img {
	width: 100%;
	height: auto;
	transition: all 250ms ease-in;
}

.tenovi-device-banner > div.col:hover {
	cursor: pointer;
}

.tenovi-device-banner > div.col:hover img {
	transform: scale(1.1);
}

.tenovi-device-banner .marker {
	position: absolute;
	bottom: 20%;
	left: 35%;
	font-size: 21px;
	font-family: 'Gilmer';
	font-weight: bold;
	border-radius: 50%;
	border: 1px solid var(--dark-blue);
	padding: 8px 15px 9px;
	transition: all 250ms ease-out;
	z-index: 20;
	background: var(--dark-blue);
	color: #fff;
}

.tenovi-device-banner > div.col:hover .marker {
	color: var(--title-blue);
	background: #fff;
	box-shadow: 0 0 10px #ccc;
}

.tenovi-device-banner .description {
	position: absolute;
	bottom: -10%;
	left: 5%;
	width: 350px;
	margin: 10px auto 0;
	padding: 10px 20px;
	z-index: 20;
	opacity: 0;
	font-family: 'Gilmer';
	transition: all 250ms ease-out;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	box-shadow: 0 0 10px #ccc;
}

.tenovi-device-banner > div.col:hover .description {
	opacity: 1;
	height: auto;
}

.tenovi-device-banner .description h5 {
	color: var(--bright-blue);
	font-weight: bold;
	font-size: 24px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #ccc;
}

.tenovi-device-banner .description p {
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 0;
	color: var(--copy-text);
}

/* --------------------------------------- */
/* Carousels */
/* --------------------------------------- */
.device-carousel-v2 {
	padding: 40px 0 100px;
	background: #f3f2f3;
}

.device-carousel-v2 .splide__pagination {
	bottom: -40px;
}

@media screen and (max-width: 500px) {
	.device-carousel-v2 .splide__pagination {
		bottom: -60px;
	}
}

.device-carousel-v2 .splide__pagination .splide__pagination__page {
	width: 16px;
	height: 16px;
	margin-right: 8px;
	background: #fff;
}

.device-carousel-v2 .splide__pagination .splide__pagination__page.is-active {
	background: var(--bright-blue);
	transform: none;
}

.device-carousel-v2 .splide__slide {
	text-align: center;
	background: #fff;
	padding: 8px 0 0;
	border-radius: 16px;
	transition: all 350ms ease-out;
	position: relative;
	transform: scale(0.925);
	border: 1px solid #eee;
}

.device-carousel-v2 .splide__slide img {
	max-height: 400px;
	width: auto;
	display: block;
	transition: all 350ms ease-out;
	margin: -10px auto;
	padding: 10px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	transform: scale(0.9);
}

.device-carousel-v2 .splide__slide a {
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	align-content: start;
	justify-content: center;
}

.device-carousel-v2 .splide__slide a > div {
	padding: 10px 15px 5px;
}

.device-carousel-v2 .splide__slide a > *:not(span, img) {
	width: 100%;
}

.device-carousel-v2 .splide__slide a:active,
.device-carousel-v2 .splide__slide a:focus {
	outline: none;
}

.device-carousel-v2 .splide__slide h4 {
	font-size: 26px;
	line-height: 1;
	font-weight: 800;
	font-family: 'Gilmer';
	padding-top: 10px;
	/*margin-top: 10px;*/
	margin-bottom: 10px;
	position: relative;
	color: var(--title-blue);
	text-wrap: balance;
}

.device-carousel-v2 .splide__slide p {
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	color: var(--copy-text);
	padding-left: 20px;
	padding-right: 20px;
	text-wrap: balance;
}

.device-carousel-v2 .splide__slide:hover {
/*	transform: scale(1.00005);*/
	box-shadow: 0 0 10px #ccc;
	z-index: 3000;
	overflow: hidden;
	border: 1px solid #ccc;
}

.device-carousel-v2 .splide__slide:hover h4 {
	z-index: 3000;
	color: var(--title-blue);
}

.device-carousel-v2 .splide__slide:hover span.badge {
	background: var(--title-blue);
}

@media screen and (min-width: 1025px) and (max-width: 1139px) {
	.device-carousel-v2 .splide__slide a > div {
		top: 16rem;
	}
}

@media screen and (min-width: 1600px) {
	.device-carousel-v2 .splide__slide img {
		max-height: 380px;
	}

	.device-carousel-v2 .splide__slide a > div {
		top: 20rem;
	}
}

@media screen and (min-width: 1700px) {
	.device-carousel-v2 .splide__slide img {
		max-height: 380px;
	}

	.device-carousel-v2 .splide__slide a > div {
		top: 24rem;
	}
}

@media screen and (min-width: 2000px) {
	.device-carousel-v2 .splide__slide a > div {
		top: 20rem;
	}
}

@media screen and (min-width: 2200px) {
	.device-carousel-v2 .splide__slide a > div {
		top: 17rem;
	}
}

@media screen and (min-width: 2600px) {
	.device-carousel-v2 .splide__slide a > div {
		top: 20rem;
	}
}


.device-carousel-v2 .learn-more {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 37px;
	height: 40px;
	text-align: right;
	font-family: 'Gilmer';
	font-weight: 500;
	color: var(--bright-blue);
	border-radius: 8px;
	padding: 10px;
	transition: all 250ms ease-out;
	text-align: center;
	z-index: 10;
}

.device-carousel-v2 .coming-soon.badge + .learn-more {
	display: none;
}

.device-carousel-v2 .learn-more svg {
	max-width: 12px;
	float: right;
	transition: all 250ms ease-out;
	fill: #333;
}

.device-carousel-v2 .splide__slide:hover .learn-more svg {
	fill: #fff;
}

.device-carousel-v2 .splide__slide:hover .learn-more {
	background: var(--bright-blue);
}

.device-carousel-v2 .splide__slide .badge {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 10;
	display: inline-block;
	background: var(--bright-blue);
	color: #fff;
	font-family: 'Gilmer';
	font-weight: 800;
	font-size: 13px;
	padding: 8px 15px;
	border-radius: 26px;
	transition: all 300ms ease-out;
}

@media screen and (max-width: 767px) {
	.device-carousel-v2 .splide__slide h4 {
		font-size: 21px;
		padding-left: 10px;
		padding-right: 10px;
	}

	.device-carousel-v2 .splide__slide p {
		font-size: 16px;
		padding-left: 10px;
		padding-right: 10px;
	}

	.device-carousel-v2 .learn-more {
		display: none;
	}

	.device-carousel-v2 .splide__slide:hover {
		transform: none !important;
	}
}

.device-carousel-v2 .filters {
	text-align: center;
	margin: 10px 0;
	display: block;
	padding: 0 15px;
	text-wrap: balance;
}

.device-carousel-v2 .filters .filter-button {
	font-family: 'Gilmer', sans-serif;
	font-size: 18px;
	color: var(--title-blue);
	background: transparent;
	border: 1px solid var(--title-blue);
	padding: 10px 25px;
	display: inline-block;
	border-radius: 32px;
	transition: all 250ms ease-out;
	margin: 0 10px 20px;
}

.device-carousel-v2 .filters .filter-button.active,
.device-carousel-v2 .filters .filter-button:hover {
	background: #ffffff;
}

@media screen and (max-width: 1280px) {
	.device-carousel-v2 .filters .filter-button {
		font-size: 17px;
		margin: 0 8px 18px;
	}
}

@media screen and (max-width: 768px) {
	.device-carousel-v2 .filters .filter-button {
		font-size: 16px;
		margin: 0 6px 14px;
	}
}

@media screen and (max-width: 480px) {
	.device-carousel-v2 .filters {
		max-width: 280px;
		margin: 10px auto;
	}
	
	.device-carousel-v2 .filters .filter-button {
		font-size: 14px;
		padding: 10px 20px;
		margin: 0 0 14px;
		width: 100%;
		line-height: 1.3;
	}
}

/*.device-carousel-v2 .filters .all-devices {
	font-family: 'Gilmer', sans-serif;
	font-size: 16px;
	color: #fff;
	background: var(--bright-blue);
	border: 1px solid var(--bright-blue);
	padding: 10px 25px;
	display: inline-block;
	margin-left: 15px;
	border-radius: 32px;
	transition: all 250ms ease-out;
}

@media screen and (max-width: 768px) {
	.device-carousel-v2 .filters .all-devices {
		margin-top: 15px;
	}
}

.device-carousel-v2 .filters .all-devices:after {
	display: none;
}

.device-carousel-v2 .filters .all-devices:hover {
	transform: scale(1.05);
	color: var(--bright-blue);
	border-color: var(--bright-blue);
	background: #fff;
}*/

#tenovi-devices-carousel-recommended {
	background: #f3f2f3;
}

/*.device-carousel-v2 .filters a:not(.all-devices) {
	display: inline-block;
	font-family: 'Gilmer', sans-serif;
	font-size: 16px;
	color: #333;
	margin: 0 15px;
	position: relative;
}

@media screen and (max-width: 768px) {
	.device-carousel-v2 .filters a:not(.all-devices) {
		margin-bottom: 25px;
	}
}

.device-carousel-v2 .filters a:after {
	content: '';
	display: inline-block;
	height: 1px;
	width: 0;
	position: absolute;
	background: #333;
	bottom: -3px;
	transition: all 350ms ease-out;
	left: 0;
	right: 0;
}

.device-carousel-v2 .filters a.active,
.device-carousel-v2 .filters a:hover {
	color: var(--title-blue);
}

.device-carousel-v2 .filters a.active:after,
.device-carousel-v2 .filters a:hover:after {
	background: var(--title-blue);
	width: 100%;
}*/

.device-carousel .slick-track {
	display: flex;
}

.device-carousel .slide {
	margin-left: 0;
	margin-right: 0;
	text-align: center;
	background: #fff;
	padding: 8px 0 0;
	border-radius: 16px;
	transition: all 350ms ease-out;
	position: relative;
	transform: scale(0.925);
	height: inherit;
	border: 1px solid #eee;
}

.device-carousel .slide img {
	max-height: 400px;
	width: auto;
	display: block;
	transition: all 350ms ease-out;
	margin: -10px auto;
	padding: 10px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	transform: scale(0.9);
}

.device-carousel .slide a {
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	align-content: start;
}

.device-carousel .slide a > div {
	padding-bottom: 20px;
	min-height: 11rem;
}

.device-carousel .slide a > *:not(span, img) {
	width: 100%;
}

.device-carousel .slide a:active,
.device-carousel .slide a:focus {
	outline: none;
}

.device-carousel .slide h4 {
	font-size: 24px;
	font-weight: 800;
	font-family: 'Gilmer';
	padding-top: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	position: relative;
}

.device-carousel .slide p {
	font-weight: 400;
	font-size: 16px;
	line-height: 16px;
	color: var(--copy-text);
	padding-left: 20px;
	padding-right: 20px;
}

.device-carousel .slide:hover {
/*	transform: scale(1.00005);*/
	box-shadow: 0 0 10px #ccc;
	z-index: 3000;
	overflow: hidden;
	border: 1px solid #ccc;
}

.device-carousel .slide:hover h4 {
	z-index: 3000;
	color: var(--title-blue);
}

.device-carousel .slide:hover span.badge {
	background: var(--title-blue);
}

@media screen and (min-width: 1600px) {
	.device-carousel .slide img {
		max-height: 280px;
	}
}

.device-carousel .slick-dots {
	list-style: none;
	margin: 35px auto 10px;
	display: block;
	text-align: center;
}

.device-carousel .slick-dots li {
	display: inline-block;
}

.device-carousel .slick-dots li button {
	content: '';
	width: 16px;
	height: 16px;
	border-radius: 50%;
	margin-right: 6px;
	text-indent: -100px;
	overflow: hidden;
	padding: 0;
	background: #fff;
}

.device-carousel .slick-dots li.slick-active button {
	background: var(--bright-blue);
}

.device-carousel .learn-more {
	position: absolute;
	bottom: 20px;
	right: 10px;
	width: 37px;
	height: 40px;
	text-align: right;
	font-family: 'Gilmer';
	font-weight: 500;
	color: var(--bright-blue);
	border-radius: 8px;
	padding: 10px;
	transition: all 250ms ease-out;
	text-align: center;
}

.device-carousel .learn-more svg {
	max-width: 12px;
	float: right;
	transition: all 250ms ease-out;
	fill: #333;
}

.device-carousel .slide:hover .learn-more svg {
	fill: #fff;
}

.device-carousel .slide:hover .learn-more {
	background: var(--bright-blue);
}

#tenovi-partners-devices-carousel .slick-dots li.slick-active button {
	background: #303030;
}

#devices-archive .device .badge,
.device-carousel .slide .badge {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 10;
	display: inline-block;
	background: var(--bright-blue);
	color: #fff;
	font-family: 'Gilmer';
	font-weight: 800;
	font-size: 13px;
	padding: 8px 15px;
	border-radius: 32px;
	transition: all 300ms ease-out;
}

@media screen and (max-width: 767px) {
	.device-carousel .slide h4 {
		font-size: 21px;
		padding-left: 10px;
		padding-right: 10px;
	}

	.device-carousel .slide p {
		font-size: 14px;
		font-weight: 300;
		padding-left: 10px;
		padding-right: 10px;
	}

	.device-carousel .learn-more {
		display: none;
	}

	.device-carousel .slide a > div {
		padding-bottom: 0;
	}

	.device-carousel .slide:hover {
		transform: none !important;
	}
}

@media screen and (min-width: 1161px) {
	#single-device-carousel .splide__pagination {
		bottom: -15px;
	}
}



/* --------------------------------------- */
/* Web App Demo */
/* --------------------------------------- */
#web-app-demo {
	display: flex;
	flex-wrap: wrap;
}

#web-app-demo .screenshots {
	width: 70%;
}

#web-app-demo .screenshots * {
	display: none;
}

#web-app-demo .screenshots *[data-screenshot="0"] {
	display: block;
}

#web-app-demo .features {
	width: 30%;
}

#web-app-demo .features .feature > p {
	font-size: 14px;
	margin-bottom: 0;
}

#web-app-demo .features .feature-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid #ccc;
	padding-bottom: 8px;
	margin-bottom: 8px;
}

#web-app-demo .features .feature-header svg {
	display: block;
	width: 28px;
	height: 28px;
	fill: #fff;
	padding: 5px;
	background: rgb(92,201,250);
	border-radius: 50%;
	margin-right: 20px;
}

#web-app-demo .features .feature-header h5 {
	margin-bottom: 0;
}

#web-app-demo .feature {
	padding: 15px 30px;
	margin-left: 30px;
	transition: all 350ms ease-out;
}

#web-app-demo .feature.active {
	background: rgb(226,238,239);
}

#web-app-demo .feature:hover {
	cursor: pointer;
}


/* --------------------------------------- */
/* Animations & Videos */
/* --------------------------------------- */
#sequence-wrapper {
	text-align: center;
}

#good-company-video {
	max-width: 600px;
	margin: 0px auto 0;
}


/* --------------------------------------- */
/* Type Overrides */
/* --------------------------------------- */
.tenovi-title.elementor-element.elementor-widget-heading h3.elementor-heading-title,
.tenovi-title.elementor-element.elementor-widget-heading h2.elementor-heading-title {
	color: var(--title-blue);
	font-family: 'Gilmer';
	font-weight: 800;
	text-transform: capitalize;
}

.tenovi-title.elementor-element.elementor-widget-heading h3.elementor-heading-title span,
.tenovi-title.elementor-element.elementor-widget-heading h2.elementor-heading-title span {
	color: var(--bright-blue);
}

.tenovi-title.elementor-element.elementor-widget-heading h3.elementor-heading-title {
	font-size: 42px;
	line-height: 46px;
	margin-bottom: 0;
}

.tenovi-title.elementor-element.elementor-widget-heading h3.elementor-heading-title.leading-exception {
	line-height: 42px;
}

.tenovi-title.elementor-element.elementor-widget-heading span:not(.bright-blue) {
	/*font-weight: 500;*/
}

.tenovi-title.elementor-element.elementor-widget-heading span.bright-blue {
/*	color: var(--bright-blue);*/
/*	color: #46BBE9;*/
	color: #5eacde;
}

.tenovi-subtitle.elementor-widget-heading.elementor-element p.elementor-heading-title {
	font-weight: 300;
	color: #5f5f5f;
	font-size: 26px;
	line-height: 30px;
}

.tenovi-subtitle.elementor-widget-heading.elementor-element p.elementor-heading-title span {
/*	color: var(--bright-blue);*/
	color: #5eacde;
}

#hero-title h2 {
	color: #fff !important;
}

@media screen and (max-width: 768px) {
	.tenovi-title.elementor-element.elementor-widget-heading h3.elementor-heading-title,
	.tenovi-title.elementor-element.elementor-widget-heading h2.elementor-heading-title {
		font-size: 32px;
		line-height: 36px;
		margin-bottom: 20px;
	}
	
	.tenovi-title.elementor-element.elementor-widget-heading.tenovi-title-fudge h3.elementor-heading-title {
		font-size: 28px;
		line-height: 34px;
	}

	.tenovi-subtitle.elementor-widget-heading.elementor-element p.elementor-heading-title {
		font-size: 21px;
	}

	#hero-title.tenovi-title h2 {
		font-size: 54px;
		line-height: 56px;
	}
}

@media screen and (max-width: 1024px) {
	#hero-title.tenovi-title h2 {
		font-size: 54px;
		line-height: 56px;
	}
}

.tenovi-quote .bright-blue {
	color: var(--bright-blue);
}

.tenovi-quote .byline {
	font-size: 23px;
	line-height: 28px;
	color: var(--title-blue);
	font-weight: 500;
}

.tenovi-quote .byline span {
	font-size: 19px;
	font-weight: 300;
	display: block;
	margin: -5px 0 0 1.3em;
}

.feature-bubble span {
	color: #00afe8;
	font-weight: bold;
}

.integration-description.elementor-widget-heading.elementor-element p {
	font-family: 'Gilmer';
	font-weight: 500;
	font-size: 21px;
	line-height: 21px;
	color: var(--title-blue);
}

.integration-description.elementor-widget-heading.elementor-element p span {
	color: var(--bright-blue);
}

/* --------------------------------------- */
/* Type Overrides - Device Single */
/* --------------------------------------- */

/* Heading Colour/Size/Weight/Span */
.single-device .tenovi-title.elementor-element-cb5860e.elementor-widget-heading h2.elementor-heading-title {
	color: var(--title-blue);
    font-family: "Gilmer", Sans-serif;
    font-weight: 800;
	font-size: 47px;
	line-height: 53px;
}

.single-device .tenovi-title.elementor-element-cb5860e h2.elementor-heading-title span {
	color: var(--bright-blue);
	font-weight: 800;
}

@media screen and (max-width: 787px) {
	.single-device .tenovi-title.elementor-element-cb5860e.elementor-widget-heading h2.elementor-heading-title {
		font-size: 32px;
        line-height: 36px;
	}
}

/* Heading Alignment */
.single-device .tenovi-title.elementor-element-cb5860e.elementor-widget-heading h2.elementor-heading-title {
	text-align: left;
}

/* --------------------------------------- */
/* Testimonials Slider */
/* --------------------------------------- */
.homepage-testimonial-slider {
	margin-top: 25px;
}

.homepage-testimonial-slider .slick-track {
	display: flex;
	align-items: center;
}

.homepage-testimonial-slider .inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-left: 75px;
	padding-right: 75px;
}

.homepage-testimonial-slider .inner .img-wrap {
	width: 40%;
}

.homepage-testimonial-slider .inner .copy {
	width: 60%;
}

@media screen and (max-width: 768px) {
	.homepage-testimonial-slider .inner {
		padding-left: 0;
		padding-right: 0;
	}

	.homepage-testimonial-slider .slick-arrow {
		display: none;
	}

	.homepage-testimonial-slider .inner .img-wrap,
	.homepage-testimonial-slider .inner .copy {
		width: 100%;
	}

	.homepage-testimonial-slider .inner .copy {
		padding-left: 25px;
		padding-right: 25px;
		margin-top: 25px;
	}

	.homepage-testimonial-slider .inner .copy > * {
		text-align: center;
	}
}

.homepage-testimonial-slider .inner .img-wrap img {
	margin: 0 25px;
	width: 80%;
}

.homepage-testimonial-slider .inner p {
	font-family: 'Gilmer';
	font-size: 24px;
	font-weight: 300;
	text-align: left;
	line-height: 28px;
	color: #5f5f5f;
}

@media screen and (max-width: 768px) {
	.homepage-testimonial-slider .inner p {
		font-size: 18px;
		line-height: 21px;
	}
}

.homepage-testimonial-slider .inner p.quote-author {
	color: var(--title-blue);
	font-weight: 500;
}

.homepage-testimonial-slider .inner p.quote-author span {
	color: #7a7a7a;
}

.homepage-testimonial-slider .inner p.quote-author span.bright-blue {
	color: var(--bright-blue);
}


.homepage-testimonial-slider .slick-dots {
	list-style: none;
	margin: 35px auto 10px;
	display: block;
	text-align: center;
}

.homepage-testimonial-slider .slick-dots li {
	display: inline-block;
}

.homepage-testimonial-slider .slick-dots li button {
	content: '';
	width: 16px;
	height: 16px;
	border-radius: 50%;
	margin-right: 6px;
	text-indent: -100px;
	overflow: hidden;
	padding: 0;
	background: #eee;
}

.homepage-testimonial-slider .slick-dots li.slick-active button {
	background: var(--bright-blue);
}

.homepage-testimonial-slider .slick-arrow {
	position: absolute;
	top: 40%;
	z-index: 10;
	background: transparent;
}

.homepage-testimonial-slider .slick-arrow:before {
	font-size: 64px;
	font-family: 'Gilmer';
	font-weight: 600;
	color: var(--bright-blue);
	transition: all 250ms ease-out;
}

.homepage-testimonial-slider .slick-arrow:hover:before {
	color: var(--title-blue);
}

.homepage-testimonial-slider .slick-prev {
	left: 0;
}

.homepage-testimonial-slider .slick-next {
	right: 0;
}

.homepage-testimonial-slider .slick-prev:before {
	content:"\2039";
}

.homepage-testimonial-slider .slick-next:before {
	content:"\203A";
}



/* --------------------------------------- */
/* Devices Archive */
/* --------------------------------------- */
#devices-archive {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	margin-top: 40px;
}

#devices-archive #devices-filters {
	width: 25%;
}

#devices-archive .devices-wrapper {
	width: 73%;
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
}

#devices-archive .devices-wrapper .device {
	width: 32%;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 16px;
	padding: 25px 20px;
	transition: all 350ms ease-out;
	margin-bottom: 25px;
	max-height: 450px;
	position: relative;
}

#devices-archive .devices-wrapper .device:hover {
/*	transform: scale( 1.05 );*/
	border-color: #999;
	box-shadow: 0 0 10px #eee;
}

#devices-archive .devices-wrapper .device:hover .badge {
	background: var(--title-blue);
}

#devices-archive .devices-wrapper .device h4 {
	font-size: 24px;
	font-family: 'Gilmer';
	font-weight: 600;
	color: #333;
	transition: all 350ms ease-out;
}

#devices-archive .devices-wrapper .device p {
	font-family: 'Gilmer';
	color: #333;
	font-size: 16px;
}

#devices-archive .devices-wrapper .device:hover h4 {
	color: var(--bright-blue);
}

#devices-filters .filter {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

#devices-filters .clear-filters {
	padding: 8px 20px;
	font-family: 'Gilmer';
	margin-bottom: 15px;
	background: var(--bright-blue);
	border: 1px solid var(--bright-blue);
	border-radius: 16px;
	color: #fff;
	display: inline-block;
	display: none;
	font-size: 14px;
}

#devices-filters .clear-filters:hover {
	color: var(--bright-blue);
	background: #fff;
}

#devices-filters .filter:last-child {
	border-bottom: 0;
}

#devices-filters .filter h5,
#devices-filters .filter ul li a {
	font-family: 'Gilmer';
}

#devices-filters .filter h5 {
	margin-bottom: 10px;
	font-weight: 700;
}

#devices-filters .filter ul {
	list-style: none;
	margin-bottom: 0;
	margin-left: 2px;
}

#devices-filters .filter ul li {
	padding-left: 0;
	margin-left: 0;
}

#devices-filters .filter ul li a {
	display: block;
	margin-bottom: 5px;
	color: #333;
}

#devices-filters .filter ul li a:before {
	content: '';
	width: 14px;
	height: 14px;
	background: var(--tan);
	display: inline-block;
	margin: 0px 10px 0 -3px;
	position: relative;
	top: 2px;
	border-radius: 50%;
}

#devices-filters .filter ul li a.active:hover:before,
#devices-filters .filter ul li a.active:before {
	background: var(--bright-blue);
}

#devices-filters .filter ul li a:hover:before {
	background: var(--bright-blue);
}

#devices-filters .filter ul li a:focus,
#devices-filters .filter ul li a:active {
	outline: 0;
}

@media screen and (max-width: 768px) {
	#devices-archive #devices-filters {
		display: none;
	}

	#devices-archive .devices-wrapper {
		width: 100%;
		gap: 0;
	}

	#devices-archive .devices-wrapper .device {
		width: 100%;
		max-height: none;
	}
}

/* --------------------------------------- */
/* Code Highlighting		*/
/* --------------------------------------- */
.prismjs-default .token.attr-name, .prismjs-default .token.builtin, .prismjs-default .token.char, .prismjs-default .token.inserted, .prismjs-default .token.selector, .prismjs-default .token.string {
	color: #666 !important;
}

.prismjs-default .token.boolean, .prismjs-default .token.constant, .prismjs-default .token.deleted, .prismjs-default .token.number, .prismjs-default .token.property, .prismjs-default .token.symbol, .prismjs-default .token.tag {
	color: #444 !important;
}


.e--pointer-double-line .elementor-item:after, .e--pointer-underline .elementor-item:after {
	bottom: -3px !important;
}

/* --------------------------------------- */
/* Blog Features		*/
/* --------------------------------------- */
.homepage-blog-posts.elementor-element[data-widget_type="uael-posts.news"] .uael-post-wrapper-featured .uael-post__content-wrap {
	background: #f6f6f685;
}

.homepage-blog-posts.elementor-element[data-widget_type="uael-posts.news"] .uael-post-wrapper-featured .uael-post__content-wrap h5.uael-post__title {
	color: var(--ast-global-color-2);
}

.homepage-blog-posts.elementor-element[data-widget_type="uael-posts.news"] .uael-post__bg-wrap {
	border-radius: 16px;
	border: 1px solid #ddd;
	overflow: hidden;
	transition: all 350ms ease-out;
}

.homepage-blog-posts.elementor-element[data-widget_type="uael-posts.news"] .uael-post__bg-wrap:hover {
	border-color: #666;
}

@media screen and (max-width: 767px) {
	.homepage-blog-posts.elementor-element[data-widget_type="uael-posts.news"] .uael-post-wrapper.uael-post-wrapper-featured .uael-post__inner-wrap .uael-post__thumbnail {
		position: relative;
		height: unset;
		width: 50%;
	}

	.homepage-blog-posts.elementor-element[data-widget_type="uael-posts.news"] .uael-post-wrapper.uael-post-wrapper-featured .uael-post__inner-wrap .uael-post__title {
	    font-size: 19px;
	    font-weight: 700;
	    margin-bottom: 10px;
	}
}

/* ---------------------------------------- */
/* Navigation Overrides & Buttons	*/
/* ---------------------------------------- */
#main-menu-tenovi li.menu-item a.elementor-item-active.menu-link {
	font-weight: 600;
}

.tenovi-button a {
	transition: all 350ms ease-out;
	font-size: 23px;
}

.tenovi-button a:hover {
	transform: scale(1.025);
	box-shadow: 0 0 10px #999;
}

/* --------------------------------------- */
/* Form Overrides		*/
/* --------------------------------------- */
.custom_hubspot_form .elementor-button {
	margin-top: 25px;
}

/* --------------------------------------- */
/* Vision / Who We Are */
/* --------------------------------------- */
@media screen and (min-width: 800px) {
	.tenovi-bio-wrapper .tenovi-bio {
		opacity: 0;
		transition: all 350ms ease-out;
	}

	.tenovi-bio-wrapper:hover .tenovi-bio {
		opacity: 1;
	}
}


/* --------------------------------------- */
/* Videos */
/* --------------------------------------- */
.video-aspect-fix .elementor-widget-container {
    margin: 20px 5% 0 !important;
}

@media screen and (max-width: 768px) {
	.video-aspect-fix .elementor-widget-container .elementor-video {
		margin-top: 50px;
		transform: scale(1.2);
	}
	
	.video-aspect-fix.gateway-video .elementor-widget-container .elementor-video {
		transform: scale(1.1);
	}

	.video-aspect-fix.gateway-video > .elementor-widget-container {
		margin-top: 25px;
		transform: scale(1.3);
	}

	.video-aspect-fix.gateway-video {
		overflow: hidden;
		padding-bottom: 50px;
	}
}


.elementor-widget-video .elementor-wrapper video {
	background: #fff !important;
}

/* --------------------------------------- */
/* Responsive Line Breaks */
/* --------------------------------------- */
.hard-return-for-mobile {
    display: none;
}

@media screen and (max-width: 767px) {
    .hard-return-for-mobile {
        display: inline-block;
    }
}


/* --------------------------------------- */
/* Device Single View */
/* --------------------------------------- */
body.single-device .entry-header {
	display: none;
}

#straight-on-device-img img {
	max-height: 450px;
}

#single-device-carousel img {
/*	max-width: 500px;*/
	margin: 0 auto;
	display: block;
}

#single-device-carousel li.splide__slide {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 1px;
}

#single-device-carousel .splide__pagination .splide__pagination__page {
	width: 16px;
	height: 16px;
	transform: none;
}

#single-device-carousel .splide__pagination .splide__pagination__page.is-active {
	background: var(--bright-blue);
}

#single-device-carousel .splide__arrow {
	background: #fff;
}

	/* --------------------------------------- */
	/* Device Single View - Accordion */
	/* --------------------------------------- */
	.features-image-sidebar {
		border-radius: 25px;
		overflow: hidden;
	}

	#device-single-accordion {
		border-radius: 25px;
		overflow: hidden;
	}

	#device-single-accordion-left {
		padding: 20px 25px;
	}

	#device-single-accordion-left #device-features ul {
		list-style: none;
		margin-left: 0;
		margin-bottom: 15px;
	}

	#device-single-accordion-left #device-features ul li {
		margin: 0;
		padding: 0;
		background: #fff;
		border-bottom: 1px #ccc solid;
	}

	#device-single-accordion-left #device-features ul li:last-child {
		border-bottom: 0;
	}

	#device-single-accordion-left #device-features ul li h4 {
		margin-bottom: 0;
		padding: 0 35px;
	}

	#device-single-accordion-left #device-features ul li h4 .fa {
	    position: relative;
	    top: 0;
	    float: right;
	    background: #fff;
	    padding: 9px 8px 7px;
	    border-radius: 50%;
	    font-size: 18px;
	    transition: all 350ms ease-out;
	    color: var(--bright-blue);
	}

	#device-single-accordion-left #device-features ul li .content {
		display: none;
		margin-top: -20px;
		padding: 10px 75px 10px 35px;
	}

	#device-single-accordion-left #device-features ul li .content p {
		color: #4C4C4D;
	}

	#device-single-accordion-left #device-features ul li > a:focus {
		outline: 0;
	}

	#device-single-accordion-left #device-features ul li > a {
		padding: 10px 20px;
	}

	#device-single-accordion-left #device-features ul li > a.active .fa {
		transform: rotate(180deg);
	}

	#device-single-accordion-left #device-features ul li > a:hover .fa {
		transform: scale(1.15);
		box-shadow: 0 0 10px #ccc;
	}

	#device-single-accordion-left #device-features ul li > a.active:hover .fa {
		transform: scale(1.15) rotate(180deg);
	}

	@media screen and (max-width: 787px) {
		#device-single-accordion-left #device-features ul li > a {
			padding: 10px 10px;
		}

		#device-single-accordion-left #device-features ul li h4 {
			margin-bottom: 0;
			padding: 0 15px;
		}
	}

	/* --------------------------------------- */
	/* Device Single View - Image Row */
	/* --------------------------------------- */

	#device-single-image-row {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		flex-direction: row-reverse;
	}

	#device-single-image-row > div {
		width: 100%;
	}

	#device-single-image-row > div.img {
		max-width: 600px;
	    margin: 0 auto;
	    display: block;
	}

	#device-single-image-row > div.img img {
	   border-radius: 25px;
	}

	#device-single-image-row h3 {
		color: var(--title-blue);
		font-family: 'Gilmer';
		font-weight: 700 !important;
		font-size: 28px;
		line-height: 32px;
		margin-bottom: 0;
		margin-top: 10px;
	}

	#device-single-image-row p {
		font-size: 21px;
		/*line-height: 28px;*/
		line-height: 1.25;
		color: #6e6e6e;
		font-weight: 300;
	}

	#device-single-image-row .tenovi-title .bright-blue {
		color: var(--bright-blue);
	}

	@media screen and (min-width: 1040px) {
		#device-single-image-row {
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			flex-direction: row;
		}

		#device-single-image-row > div {
			width: 45%;
		}

		#device-single-image-row.image-right {
			flex-direction: row-reverse;
		}

		#device-single-image-row.image-right > div.copy,
		#device-single-image-row.image-left > div.img {
			margin-right: 5%;
		}

		#device-single-image-row.image-left > div.copy,
		#device-single-image-row.image-right > div.img {
			margin-left: 5%;
		}

		#device-single-image-row > div.img {
			max-width: 600px;
		    margin: 0 auto;
		    display: block;
		}

		#device-features h3,
		#device-single-image-row h3 {
			font-size: 36px;
			line-height: 46px;
			margin-bottom: 10px;
		}
		
		#device-features h3 {
			padding-left: 35px;
			color: var(--title-blue);
			font-weight: 700;
		}

		#device-single-image-row p {
			font-size: 24px;
			/*line-height: 36px;*/
			line-height: 1.25;
		}
	}


	/* --------------------------------------- */
	/* Device Single View  - Feature Icons */
	/* --------------------------------------- */
	#feature-icons-list ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	#feature-icons-list ul li {
		padding: 0;
		margin: 0 0 10px;
		display: flex;
		align-items: center;
	}

	#feature-icons-list ul li img,
	#feature-icons-list ul li span {
		display: block;
	}

	#feature-icons-list ul li img {
		width: 56px;
		margin-right: 25px;
	}

	#feature-icons-list ul li span {
		font-size: 26px;
		color: #737373;
	}

	#device-single-features-icon-media {
		text-align: center;
	}

	#device-single-features-icon-media.image img {
		max-height: 450px;
		width: auto;
	}

	/* --------------------------------------- */
	/* Device Single View  - FAQs */
	/* --------------------------------------- */
	#device-single-faqs .inner {
		width: 100%;
	}

	#device-single-faqs {
		margin-top: 5vh;
		margin-bottom: 10vh;
	}

	#device-single-faqs .inner .title h4 {
		color: var(--title-blue);
	    font-family: "Gilmer", Sans-serif;
	    font-weight: 800;
		font-size: 47px;
		line-height: 53px;
		margin-bottom: 60px;
	}
	
	#device-single-faqs .inner .title h4 span {
		color: var(--bright-blue) !important;
	}

	#device-single-faqs .inner .faqs ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	#device-single-faqs .inner .faqs ul li {
		padding: 0;
		margin: 0 0 20px;
		border-bottom: 1px solid #ccc;
	}

	#device-single-faqs .inner .faqs ul li:last-child {
		border-bottom: 0;
	}

	#device-single-faqs .inner .faqs ul li > a {
		display: block;
		padding: 20px 30px 40px;
		color: var(--ast-global-color-2);
		font-size: 1.6rem;
		line-height: 1.2em;
		font-weight: 400;
	}

	#device-single-faqs .inner .faqs ul li > a .fa {
		display: inline-block;
		margin-right: 10px;
		font-size: 18px;
		transform: rotate(0);
		transition: all 300ms ease-out;
		float: right;
		position: relative;
		top: 5px;
		color: var(--bright-blue);
	}

	#device-single-faqs .inner .faqs ul li > a.active .fa {
		transform: rotate(180deg);
	}

	#device-single-faqs .inner .faqs ul li > a:focus {
		outline: 0;
	}

	#device-single-faqs .inner .faqs ul li .answer {
		padding: 15px 30px;
		margin-top: -40px;
		display: none;
	}

	#device-single-faqs .inner .faqs ul li .answer p,
	#device-single-faqs .inner .faqs ul li .answer li {
		color: #4C4C4D;
	}

	@media screen and (max-width: 787px) {
		#device-single-faqs {
			min-height: none;
		}

		#device-single-faqs .inner .title,
		#device-single-faqs .inner .faqs {
			width: 100%;
		}

		#device-single-faqs .inner .faqs ul li > a {
			padding: 10px 10px 20px;
		}

		#device-single-faqs .inner .faqs ul li > a.active {
			padding-bottom: 40px;
		}

		#device-single-faqs .inner .faqs ul li .answer {
			/*padding: 10px;*/
			margin-top: -40px;
			display: none;
		}

		#device-single-faqs .inner .title h4 {
			font-size: 32px;
	        line-height: 36px;
	        margin-bottom: 30px;
		}
	}

	/* --------------------------------------- */
	/* Device Single - Specs */
	/* --------------------------------------- */
	#device-single-specs h4 {
		font-size: 28px;
		font-weight: 600;
		color: var(--dark-blue);
	}

	#device-single-specs .spec {
		display: flex;
		flex-wrap: wrap;
		padding: 30px 0;
		border-top: 1px solid #eee;
	}

	#device-single-specs .spec:first-child {
		padding-top: 0;
		border-top: 0;
	}

	#device-single-specs .spec > div.title {
		width: 30%;
	}

	#device-single-specs .spec > div.description {
		width: 70%;
		padding-top: 6px;
	}

	#device-single-specs .spec > div.description ul {
		margin-bottom: 0;
		margin-left: 1.1em;
	}

	#device-single-specs .spec > div.description p,
	#device-single-specs .spec > div.description li {
		color: #4C4C4D;
		font-size: 19px;
	}

	#device-single-specs .spec > div.description p:last-child {
		margin-bottom: 0;
	}

	#device-single-specs .spec .image-row .images {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 30px;
	}

	#device-single-specs .spec .image-row .images img {
		max-width: calc(20% - 20px);
	}

	#device-single-specs .spec .image-row .images img {
		border-radius: 16px;
		margin-right: 40px;
	}

	@media screen and (max-width: 787px) {
		#device-single-specs .spec > div.title,
		#device-single-specs .spec > div.description {
			width: 100%;
		}

		#device-single-specs .spec > div.description ul {
			margin-left: 20px;
		}

		#device-single-specs h4 {
			font-size: 24px;
		}
	}






/*	Hide image row on some product pages*/
	body.single-device.postid-16535 .image-row-conditional,
	body.single-device.postid-16554 .image-row-conditional {
		display: none;
	}

/*	Video row on some product pages */
	body.single-device.postid-22818 .elementor-element.elementor-element-80ad677,
	body.single-device.postid-16451 .elementor-element.elementor-element-80ad677,
	body.single-device.postid-16583 .elementor-element.elementor-element-80ad677,
	body.single-device.postid-16585 .elementor-element.elementor-element-80ad677,
	body.single-device.postid-16579 .elementor-element.elementor-element-80ad677 {
		display: none;
	}

	@media screen and (min-width: 1080px) {
		body.single-device.postid-16583 .elementor-21363 .elementor-element.elementor-element-80ad677 + .image-row-conditional,
		body.single-device.postid-16585 .elementor-21363 .elementor-element.elementor-element-80ad677 + .image-row-conditional,
		body.single-device.postid-16579 .elementor-21363 .elementor-element.elementor-element-80ad677 + .image-row-conditional {
			margin-top: -200px;
		}
	}

/* --------------------------------------- */
/* Support Pages */
/* --------------------------------------- */
.jump-to-menu-items {
	background: #f1f1f1;
	margin: 0;
	list-style: none;
	width: 297px;
	padding: 10px 20px;
	position: absolute;
	display: block;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	font-size: 18px;
	line-height: 32px;
	display: none;
}

/* --------------------------------------- */
/* PDF Downloads */
/* --------------------------------------- */
#pdf-downloads-conatiner {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	margin-top: 40px;
}

#pdf-downloads-conatiner #pdf-downloads-filters {
	width: 25%;
}

#pdf-downloads-conatiner .pdf-downloads-wrapper {
	width: 73%;
	display: block;
}

#pdf-downloads-filters .filter {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

#pdf-downloads-filters .pdf-downloads-clear-filters {
	padding: 8px 20px;
	font-family: 'Gilmer';
	margin-bottom: 15px;
	background: var(--bright-blue);
	border: 1px solid var(--bright-blue);
	border-radius: 16px;
	color: #fff;
	display: inline-block;
	display: none;
	font-size: 14px;
}

#pdf-downloads-filters .pdf-downloads-clear-filters:hover {
	color: var(--bright-blue);
	background: #fff;
}

#pdf-downloads-filters .filter:last-child {
	border-bottom: 0;
}

#pdf-downloads-filters .filter h5,
#pdf-downloads-filters .filter ul li a {
	font-family: 'Gilmer';
}

#pdf-downloads-filters .filter h5 {
	margin-bottom: 10px;
	font-weight: 700;
}

#pdf-downloads-filters .filter ul {
	list-style: none;
	margin-bottom: 0;
	margin-left: 2px;
}

#pdf-downloads-filters .filter ul li {
	padding-left: 0;
	margin-left: 0;
}

#pdf-downloads-filters .filter ul li a {
	display: block;
	margin-bottom: 5px;
	color: #333;
}

#pdf-downloads-filters .filter ul li a:before {
	content: '';
	width: 14px;
	height: 14px;
	background: var(--tan);
	display: inline-block;
	margin: 0px 10px 0 -3px;
	position: relative;
	top: 2px;
	border-radius: 50%;
}

#pdf-downloads-filters .filter ul li a.active:hover:before,
#pdf-downloads-filters .filter ul li a.active:before {
	background: var(--bright-blue);
}

#pdf-downloads-filters .filter ul li a:hover:before {
	background: var(--bright-blue);
}

#pdf-downloads-filters .filter ul li a:focus,
#pdf-downloads-filters .filter ul li a:active {
	outline: 0;
}

.pdf-download ul a:focus,
.pdf-download ul a:active {
	outline: 0;
}

.pdf-download-link-copy {
	display: inline-block;
	position: relative;
	top: -2px;
	margin-left: 8px;
}

.pdf-download-link-copy i {
	font-size: 12px;
	transition: all 250ms ease-out;
	cursor: context-menu;
}

.pdf-download-link-copy .fa-link {
	color: #ccc;
}

.pdf-download-link-copy .fa-link:hover {
	color: var(--bright-blue);
}

.pdf-download-link-copy .fa-check-circle {
	color: #5cb85c;
	display: none;
}

.pdf-download-link-copy.active .fa-link {
	display: none;
}

.pdf-download-link-copy.active .fa-check-circle {
	display: inline;
}

.pdf-download-tooltip {
	position: absolute;
	background: #f2f2f2;
	padding: 5px 10px;
	font-size: 10px;
	line-height: 10px;
	white-space: nowrap;
	top: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-25px);
	border-radius: 8px;
	font-weight: 400;
	color: var(--title-blue);
	animation-name: poptooltop;
	animation-duration: 2s;
	animation-fill-mode: forwards;
	display: none;
}

.pdf-download-tooltip-indicator {
	width: 10px;
	height: 10px;
	display: inline-block;
	position: absolute;
	background: #f2f2f2;
	bottom: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%) translateY(5px) rotate(45deg);
}

.pdf-download-link-copy.active .pdf-download-tooltip {
	display: inline-block;
}

@keyframes poptooltop {
	0% {
		transform: translateX(-50%) translateY(-15px);
		opacity: 0;
	}
	10% {
		transform: translateX(-50%) translateY(-25px);
		opacity: 1;
	}
	90% {
		transform: translateX(-50%) translateY(-25px);
		opacity: 1;
	}
	100% {
		transform: translateX(-50%) translateY(-25px);
		opacity: 0;
	}
}

@media screen and (max-width: 768px) {
	#pdf-downloads-conatiner #pdf-downloads-filters {
		display: none;
	}

	#pdf-downloads-conatiner .pdf-downloads-wrapper {
		width: 100%;
		max-height: none;
	}
	
	#pdf-downloads-conatiner .pdf-downloads-wrapper #quick-start-guides {
		padding: 0 15px;
	}
}

/* --------------------------------------- */
/* Support PDF Downloads */
/* --------------------------------------- */

#quick-start-guides .pdf-downloads-brand {
	display: none;
}

#quick-start-guides .pdf-downloads-brand.active {
	margin-bottom: 50px;
	display: block;
}

#quick-start-guides .pdf-downloads-heading {
	font-family: 'Gilmer';
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	display: block;
	margin-bottom: 30px;
	color: var(--bright-blue);
}

#quick-start-guides .pdf-download {
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
	margin-bottom: 20px;
	display: none;
	flex-wrap: wrap;
	align-items: center;
}

#quick-start-guides .pdf-download.active {
	display: flex;
}

#quick-start-guides .pdf-download:last-child {
	border-bottom: 0;
}

#quick-start-guides .pdf-download h4 {
	flex-grow: 1;
	margin-bottom: 0;
	flex-grow: 1;
	flex-shrink: 0;
	/*font-size: 22px;*/
}

#quick-start-guides .pdf-download h4 .special-note {
	font-size: 16px;
	line-height: 1.2;
	display: block;
	margin-top: 10px;
}

#quick-start-guides .pdf-download h4 .special-note a {
	color: var(--bright-blue);
}

#quick-start-guides .pdf-download .downloads {
	/*width: 30%;*/
	flex-basis: 200px;
	text-align: right;
	flex-grow: 1;
	flex-shrink: 0;
}

#quick-start-guides .pdf-download ul {
	margin: 0;
	padding-bottom: 0;
	list-style: none;
}

#quick-start-guides .pdf-download ul li {
	display: inline-block;
	width: 100%;
	margin-bottom: 2px;
}

#quick-start-guides .pdf-download ul li:last-child {
	margin-bottom: 0;
}

#quick-start-guides .pdf-download ul a {
	color: var(--title-blue);
	transition: all 250ms ease-out;
	margin: 0;
	font-weight: 600;
	font-size: 18px;
}

#quick-start-guides .pdf-download ul a:hover {
	color: var(--bright-blue);
}

#quick-start-guides .pdf-download ul a.quick-start-guide {
	color: var(--title-blue);
}

#quick-start-guides .pdf-download ul a.user-guide {
	color: var(--bright-blue);
}

#quick-start-guides .pdf-download ul a.client-guide,
#quick-start-guides .pdf-download ul a.support-page {
	color: #86a7ad;
}

@media (max-width: 960px) {	
	#quick-start-guides .pdf-download.active {
		display: block;
	}
	
	#quick-start-guides .pdf-download h4 {
		width: 100%;
	}
	
	#quick-start-guides .pdf-download .downloads {
		width: 100%;
		text-align: left;
		margin: 20px 0 0;
	}
	
	#quick-start-guides .pdf-download .downloads ul {
		margin: 0;
	}
	
	#quick-start-guides .pdf-download .downloads ul li {
		width: auto;
	}
	
	#quick-start-guides .pdf-download ul a {
	    margin-right: 20px;
	}
}

@media (max-width: 520px) {
	#quick-start-guides .pdf-download ul a {
	   font-size: 14px;
	    margin-right: 15px;
	}
}

/* --------------------------------------- */
/* Centered Images */
/* --------------------------------------- */

.centered-image-container {
	display: block;
	position: relative;
    overflow: hidden;
    padding: 0 5px;
}

.centered-image-container .centered-image-mask {
	width: 100%;
}

.centered-image-container .centered-image {
	position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain;
    object-position: 50% 50%;
    -ms-transform: translate(-50%, -50%) !important;
    transform: translateX(-50%) translateY(-50%) !important;
}

.device-carousel-v2 .centered-image-container .centered-image-mask {
	margin: 0!important;
}

.device-carousel-v2 .centered-image-container .centered-image {
	margin: 0!important;
}

/* --------------------------------------- */
/* Main Nav Overrides */
/* --------------------------------------- */

#main-menu-tenovi li.menu-item a.elementor-item-active.menu-link {
    font-weight: 600!important;
}

/* --------------------------------------- */
/* Mobile Nav Overrides */
/* --------------------------------------- */

@media (max-width: 1024px) {
	body .elementor-15332 .elementor-element.elementor-element-9b9deba .elementor-nav-menu .elementor-item {
		font-size: 18px;
		line-height: 1;
		padding: 15px 20px;
	}
	
	body .elementor-15332 .elementor-element.elementor-element-9b9deba .elementor-nav-menu--dropdown {
	    transform: translateY(16px);
	}
	
	body .elementor-15332 .elementor-element.elementor-element-9b9deba .elementor-menu-toggle {
	    margin: 0 0 0 auto;
	}
}

@media (max-width: 767px) {
	body .elementor-15332 .elementor-element.elementor-element-9b9deba .elementor-nav-menu--dropdown {
	    transform: translateY(0);
	}
	
	body .elementor-15332 .elementor-element.elementor-element-9b9deba .elementor-menu-toggle {
	    transform: translateY(-5px);
	}
}

/* --------------------------------------- */
/* Button Overrides */
/* --------------------------------------- */

.elementor-button {
	font-weight: 400!important;
}

/* --------------------------------------- */
/* Heading Overrides */
/* --------------------------------------- */

.tenovi-subtitle.elementor-widget-heading.elementor-element p.elementor-heading-title {
    color: #777777;
}

/* --------------------------------------- */
/* Accordion Overrides */
/* --------------------------------------- */

body .tenovi-custom-accordion .elementor-toggle-title span {
	color: #777777;
}

body .tenovi-custom-accordion .elementor-tab-content p,
body .tenovi-custom-accordion .elementor-tab-content p span {
	font-weight: 300!important;
}

/* --------------------------------------- */
/* Home Hero Overrides */
/* --------------------------------------- */

@media (min-width: 1025px) {
	#hero-title.tenovi-title h2 {
		font-size: 90px;
		line-height: .95;
	}
}

/* --------------------------------------- */
/* Home Device Bubble Grid Overrides */
/* --------------------------------------- */

.elementor .wp-image-22560 {
	max-width: 920px;
	width: 100%;
}

body .elementor-8838 .elementor-element.elementor-element-2a08130 {
	padding-bottom: 15px;
}

/* --------------------------------------- */
/* Home Gateway LED Section Overrides */
/* --------------------------------------- */

body .elementor-8838 .elementor-element.elementor-element-f91c462 .elementor-heading-title,
body .elementor-8838 .elementor-element.elementor-element-6c8bdbb .elementor-heading-title {
	color: #777777;
}

body .elementor-8838 .elementor-element.elementor-element-f91c462 .elementor-heading-title strong {
	color: #eb5454;
}

body .elementor-8838 .elementor-element.elementor-element-6c8bdbb .elementor-heading-title strong {
	color: #64ce7f;
}

/* --------------------------------------- */
/* Carousel Overrides */
/* --------------------------------------- */

body .device-carousel-v2 .splide__pagination .splide__pagination__page {
	width: 15px;
	height: 15px;
	margin-right: 4px;
}

body .homepage-testimonial-slider .slick-dots li button {
	width: 15px;
	height: 15px;
}

/* --------------------------------------- */
/* Reveal Modal - Global */
/* --------------------------------------- */

.reveal-modal {
	display: none;
	position: absolute;
	top: 0;
	visibility: hidden;
	width: 100%;
	z-index: 1005;
	left: 0;
}