.image.background-cover {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.image.background-contain {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.image.background-center {
	background-position: center center;
	background-repeat: no-repeat;
}

.image.background-top-left {
	background-position: top left;
	background-repeat: no-repeat;
}

.full-size {
	width: 100%;
	height: 100%;
}

.full-width {
	width: 100%;
}

.full-height {
	height: 100%;
}

.centered-block {
	margin: auto;
}

.absolute-container {
	position: relative;
}

.position-relative {
	position: relative;
}

.position-absolute {
	position: absolute;
}

.absolute-overlay {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.absolute-for-transform {
	position: absolute;
	left: 0;
	top: 0;
}

.absolute-for-transform.center {
	left: 50%;
	right: 50%;
}

.absolute-right {
	position: absolute;
	top: 0;
	right: 0;
}

.no-pointer-events {
	pointer-events: none;
}

.all-pointer-events {
	pointer-events: all;
}

.cursor-pointer {
	cursor: pointer;
}

.display-block {
	display: block;
}

.display-inline {
	display: inline;
}

.display-inline-block {
	display: inline-block;
}

.no-overflow {
	overflow: hidden;
}

.float-right {
	float: right;
}

.clear-both {
	clear: both;
}

.clear-left {
	clear: left;
}

.clear-right {
	clear: right;
}

.hidden-space {
	width: 0;
	display: inline-block;
}

.layer-order-high {
	z-index: 3;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-auto {
	overflow: auto;
}

.border-box-sizing {
	box-sizing: border-box;
}

a.custom-styled-link {
	text-decoration: none;
	color: inherit;
}

.no-margins {
	margin: 0;
}

.vertical-center-transform {
	transform: translateY(-50%);
}.flex {
	display: flex;
}

.flex-row {
	display: flex;
	flex-direction: row;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

.flex-row.justify-between,
.flex-column.justify-between {
	justify-content: space-between;
}

.flex-row.justify-center,
.flex-column.justify-center {
	justify-content: center;
}

.flex-row.justify-end,
.flex-column.justify-end {
	justify-content: flex-end;
}

.flex-row.vertically-center-items {
	align-items: center;
}

.flex-row .flex-row-item {
	
}

.flex-row .flex-row-item:first-of-type {
	margin-left: 0rem;
}

.flex-row .flex-row-item:last-of-type {
	margin-right: 0rem;
}

.flex-row.singles > .flex-row-item {
	width: 100%;
}

.flex-row.halfs > .flex-row-item {
	width: 50%;
}

.flex-row > .flex-row-item.half {
	width: 50%;
}

.flex-row.thirds > .flex-row-item {
	width: 33.33%;
}

.flex-row.quarters > .flex-row-item {
	width: 25%;
}

.flex-row > .flex-row-item.quarter {
	width: 25%;
}

.flex-column.halfs > .flex-column-item {
	height: 50%;
}

.flex-row .flex-row-item .reset-flex-row-item-size .flex-row-item {
	width: initial;
}

.flex-column.all-grow .flex-column-item {
	height: 0%;
}

.flex-column .flex-column-item:first-of-type {
	margin-top: 0rem;
}

.flex-column .flex-column-item:last-of-type {
	margin-bottom: 0rem;
}

.flex-vertical-line {
	width: 0.1rem;
	flex-grow: 0;
	flex-shrink: 0;
}

.flex-horizontal-line {
	height: 0.1rem;
	flex-grow: 0;
	flex-shrink: 0;
}

.flex-no-wrap {
	flex-wrap: nowrap;
}

.flex-no-resize {
	flex-grow: 0;
	flex-shrink: 0;
}

.flex-resize {
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-60 {
	width: 60%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-40 {
	width: 40%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-50 {
	width: 50%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row.align-end .flex-row-item {
	align-self: flex-end;
}

.flex-row.uniform-item > .flex-row-item {
	width: 1%;
	flex-grow: 1;
	flex-shrink: 1;
}

.centered-cell-holder {
	display: flex;
	justify-content: center;
	align-items: center;
}.inline-list {
	
}

.inline-list .inline-list-item {
	display: inline-block;
}

.inline-list .inline-list-item:first-of-type {
	margin-left: 0rem;
}

.inline-list .inline-list-item:last-of-type {
	margin-right: 0rem;
}

.row-list {
	
}

.row-list .row-list-item {
	
}

.row-list .row-list-item:first-of-type {
	margin-top: 0rem;
}

.row-list .row-list-item:last-of-type {
	margin-bottom: 0rem;
}

.inline-list .row-list-item {
	display: inline-block;
}

.row-list .row-list-item:first-of-type {
	margin-top: 0rem;
}

.row-list .row-list-item:last-of-type {
	margin-bottom: 0rem;
}.text-align-center {
	text-align: center;
}

.text-align-left {
	text-align: left;
}

.text-align-right {
	text-align: right;
}

.vertical-text-top {
	vertical-align: text-top;
}

.font-italic {
	font-style: italic;
}.border-box {
	border-width: 0.1rem;
	border-style: solid;
	border-color: #333333;
}/*@import url("./reset.css");*/.spacing {
	width: 100%;
}

.spacing.double {
	height: 4rem;
}

.spacing.standard {
	height: 2rem;
}

.spacing.default {
	height: 2rem;
}

.spacing.small {
	height: 1rem;
}

.spacing.micro {
	height: 0.5rem;
}

.spacing.for-bottom-clock {
	height: 3rem;
}

.right-margin-micro {
	margin-right: 0.5rem;
}

.left-margin-micro {
	margin-left: 0.5rem;
}.flex-row.big-item-spacing .flex-row-item {
	margin-left: 2rem;
	margin-right: 2rem;
}

.flex-row.big-item-spacing .flex-row-item:first-of-type {
	margin-left: 0rem;
}

.flex-row.big-item-spacing .flex-row-item:last-of-type {
	margin-right: 0rem;
}

.flex-row.small-item-spacing .flex-row-item {
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}

.flex-row.small-item-spacing .flex-row-item:first-of-type {
	margin-left: 0rem;
}

.flex-row.small-item-spacing .flex-row-item:last-of-type {
	margin-right: 0rem;
}

.flex-row.micro-item-spacing .flex-row-item {
	margin-left: 0.1rem;
	margin-right: 0.1rem;
}

.flex-row.micro-item-spacing .flex-row-item:first-of-type {
	margin-left: 0rem;
}

.flex-row.micro-item-spacing .flex-row-item:last-of-type {
	margin-right: 0rem;
}

.batch-edit-events-table th {
	padding: 0;
}

.batch-edit-events-table td {
	padding: 0.5rem;
}

.batch-edit-events-table th {
	font-size: 0.9rem;
	color: #999999;
}

.batch-edit-events-table {
	overflow: visible;
	font-size: 1.2rem;
}

.field-type-select label {
	font-size: 1.4rem;
	color: #999999;
	font-weight: 700;
}

.field-type-field {
	width: 20rem;
}

.field-type-field.field-key-logo {
	width: 30rem;
}hr.line {
	height: 0.1rem;
	border: none;
	margin: 0;
	padding: 0;
}

hr.line.partner-logo-line {
	background-color: #D8D8D8;
}

.partner-logo-spacing-line {
	width: 0.1rem;
	background-color: #D8D8D8;
}.spacing {
	width: 100%;
}

.spacing.double {
	height: 4rem;
}

.spacing.standard {
	height: 2rem;
}

.spacing.default {
	height: 2rem;
}

.spacing.small {
	height: 1rem;
}

.spacing.micro {
	height: 0.5rem;
}

.spacing.for-bottom-clock {
	height: 3rem;
}

.right-margin-micro {
	margin-right: 0.5rem;
}

.left-margin-micro {
	margin-left: 0.5rem;
}.centered-block {
	margin: auto;
	width: 90%;
	max-width: 144rem;
}

.centered-block-padding {
	padding-left: 2rem;
	padding-right: 2rem;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.page-background-color {
	background-color: #F8F8F8;
}

.content-on-white {
	background-color: #FFFFFF;
}

.partner-logo-padding {
	padding: 2rem 0rem;
}

.partner-logo {
	width: 15rem;
	height: 7rem;
}

.mobile-solution-logo {
	width: 8rem;
	min-height: 6.4rem;
	height: 100%;
}

.solution-item .solution-logo {
	height: 18.4rem;
}

.overlapping-button {
	transform: translateY(-50%);
}

.overlapping-no-height {
	position: relative;
	height: 0;
	overflow: visible;
	z-index: 3;
}

.section-image {
	height: 33rem;
}

.digital-hero-box {
	background-color: rgba(35, 31, 32, 0.9);
	width: 50%;
}

.digital-hero-box-padding {
	padding: 3rem;
}

.digital-mobile-excerpt-box {
	background-color: rgba(79, 76, 77, 1);
}

.digital-mobile-excerpt-box-padding {
	padding: 2rem;
}

.section-box-padding {
	padding: 3.5rem 3.5rem 3.5rem 3.5rem;
}

.section-box-video-link {
	cursor: pointer;
}

.section-box-video-link-position {
	top: 2rem;
	left: 2rem;
}

.front-hero .section-inner.small.over-video-box {
	max-width: 60.2rem;
}

.over-video-box {
	background-color: rgba(35, 31, 32, 0.9);
	padding: 0.5rem 2rem 0.5rem 2rem;
}

.standard-field {
	box-sizing: border-box;
	border-radius: 4px;
	box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.18);
	border: solid 1px #bac4d0;
	background-color: #ffffff;
	min-height: 3rem;
}

.standard-field.invalid {
	border-color: #e6234b;
}

.standard-field-padding {
	padding: 0.6rem 0.7rem;
}

.standard-button {
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #4A90E2;
	border: none;
	border-radius: .5rem .5rem .5rem .5rem;
	color: rgba( 255, 255, 255, 1 );
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: -0.03rem;
	line-height: 1;
	text-decoration: none;
	text-shadow: .1rem .1rem 0 rgba( 0, 0, 0, 0.05 );
}

.standard-button:hover {
	background-color: #313131;
}

.standard-button-padding {
	padding: 1.4rem 2rem 1.4rem 2rem;
}

.edit-button {
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #4A90E2;
	border: none;
	border-radius: .5rem .5rem .5rem .5rem;
	color: rgba( 255, 255, 255, 1 );
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: -0.03rem;
	line-height: 1;
	text-decoration: none;
	text-shadow: .1rem .1rem 0 rgba( 0, 0, 0, 0.05 );
}

.edit-button:hover {
	background-color: #313131;
}

.edit-button-padding {
	padding: 0.4rem;
}

.image.standard-icon {
	width: 2.4rem;
	height: 2.4rem;
}

.wall-type-selection .dropdown-selection-popup {
	z-index: 5;
	min-width: 20rem;
	
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.right-side-dropdown-menu .dropdown-selection-popup {
	width: 20rem;
	right: 0;
}

.drop-down-menu-border {
	border-radius: .5rem .5rem .5rem .5rem;
	border: 0.1rem solid #bac4d0;
	background-color: #FFFFFF;
}

.standard-box-padding {
	padding: 1rem;
}

.event-logo {
	max-width: 60rem;
	height: auto;
}

.custom-selection-menu {
	border-radius: .5rem .5rem .5rem .5rem;
	border: 0.1rem solid #bac4d0;
	background-color: #FFFFFF;
	
}

.dropdown-selection-popup {
	z-index: 5;
}

.custom-selection-menu-padding {
	padding: 1rem;
}

.image.source-arrow-down-1 {
	width: 1.4rem;
	height: 1.4rem;
}.partner-logo-title {
	font-size: 1.2rem;
	text-transform: uppercase;
	font-weight: bold;
}

.digital-signage-excerpt {
	color: rgba( 145, 143, 143, 1 );
}

.solutions-text {
	font-size: 1.6rem;
	color: rgb(145, 143, 143);
}

.digital-hero-title {
	color: rgba(255, 255, 255, 1);
	font-size: 4.8rem;
	font-weight: normal;
}

.digital-hero-excerpt {
	color: rgba(255, 255, 255, 1);
	font-size: 1.6rem;
}

.digital-hero-excerpt > p {
	margin-bottom: 0;
	margin-top: 1rem;
}

.white-text {
	color: rgba(255, 255, 255, 1);
}

.digital-hero-excerpt > p:first-of-type {
	margin-top: 0;
}

.digital-signage-excerpt-link {
	color: #F1A93F;
	cursor: pointer;
}

.standard-field-label {
	font-size: 0.9rem;
	font-weight: 700;
	color: #999999;
}.hero-overflow-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0rem;
}

.hero-background-video {
	background-color: rgba( 35, 31, 32, 1 );
	object-fit: cover;
}

.overlapping-hero-hexagons {
	transform: scale(0.7) translateY(-8rem);
	z-index: 4;
}

.overlapping-hero-hexagons.left {
	transform-origin: top left;
}

.overlapping-hero-hexagons.right {
	transform-origin: top right;
}