@CHARSET "UTF-8";

@keyframes spinner {to {transform: rotate(360deg);}}
@-webkit-keyframes spinner {to {-webkit-transform: rotate(360deg);}}

@keyframes fadeout {from { opacity:1; } to { opacity: 0; }}
@-webkit-keyframes fadeout {from { opacity:1; } to { opacity: 0; }}

@keyframes fadein {from { opacity:0; } to { opacity: 0.5; }}
@-webkit-keyframes fadein {from { opacity:0; } to { opacity: 0.5; }}

@keyframes typing {from { width: 0; } to { width: 100%; }}
@-webkit-keyframes typing {from { width: 0; } to { width: 100%; }}

@keyframes slideout { from { left: 10%; opacity:0.0; } to { left: -18px; opacity:1.0; }}
@-webkit-keyframes slideout { from { left: -18px; opacity:0.0; } to { left: 10%; opacity:1.0; }}



* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}

body {
	width: 100%;
	height: 100%;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: hidden;
	/* 	cursor: default; */
}

a, input, label, select, button {
	cursor: inherit;
}

h1, h2, h3 {
	line-height: 120%;
	margin-bottom: 24px;
	text-overflow: ellipsis;
}

button {
	outline:none;
}

button:hover, .menu-item:hover, .item.transaction:hover, .sortable:hover, select:hover, select option:hover {
    cursor:pointer !important;
}

u {
   text-decoration: underline;
   color: blue;
}

body, input, select, div, a, li, span, button, .poi-info-window div, .poi-info-window a, textarea, option, table {
    font-family: "proxima-nova", sans-serif;
    font-size: 13px;
}

.bold {
	 font-family: "proxima-nova-bold", sans-serif;
}

.width-1 {
	width: 1%;
}

.width-4 {
	width: 4%;
}

.width-5 {
	width: 5%;
}

.width-10 {
	width: 10%;
}

.width-12 {
	width: 12%;
}

.width-15 {
	width: 15% !important;
}

.width-18 {
	width: 16%;
}

.width-20 {
	width: 20%;
}

.width-25 {
	width: 25%;
}

.width-28 {
	width: 28%;
}

.width-25px {
	width: 25px;
}


.width-30 {
	width: 30%;
}

.width-33 {
	width: 33.333333%;
}

.width-35 {
	width: 35%;
}

.width-36px {
	width: 36px;
}

.width-40 {
	width: 40%;
}

.width-45 {
	width: 45%;
}

.width-48 {
	width: 48%;
}

.width-50 {
	width: 50%;
}

.width-55 {
	width: 55%;
}

.width-60 {
	width: 60%;
}

.width-65 {
	width: 65%;
}

.width-70 {
	width: 70%;
}

.width-75 {
	width: 75%;
}

.width-80 {
	width: 80%;
}

.width-85 {
	width: 85%;
}

.width-90 {
	width: 90%;
}


.width-95 {
	width: 95%;
}

.width-100 {
	width: 100%;
}


.float-left {
	float: left;
	height: auto;
}

.float-right {
	float: right;
	height: auto;
}

.font-xl {
	font-size: 1.78em;
}


.font-xxl {
	font-size: 2.4em;
}

.text-left {
	text-align: left !important;
	height: auto;
}

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

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

.text-bold {
	font-family: "proxima-nova-bold", sans-serif;
}

.text-small {
	font-size: small;
}

.vertical-middle {
	vertical-align: middle;
}

.vertical-top {
	vertical-align: top !important;
}

.vertical-bottom {
	vertical-align: bottom !important;
}

.table {
	display: table;
}

.table .row .cell, .table .cell {
	display: table-cell;
	vertical-align: middle;
}

.table .row {
	display: table-row;
	vertical-align: middle;
}

.fade-in, .fade-in-typing {
	-webkit-animation: fadein 0.3s;
	-moz-animation: fadein 0.3s;
	-ms-animation: fadein 0.3s;
	-o-animation: fadein 0.3s;
	animation: fadein 0.3s;
	opacity: 1;
}

.fade-in-typing {
	overflow: hidden;
	word-wrap: break-word;
	white-space: nowrap;
	animation: typing 1s steps(48) forwards;
	display: inline-block;
}

.fade-out {
	-webkit-animation: fadeout 0.3s;
	-moz-animation: fadeout 0.3s;
	-ms-animation: fadeout 0.3s;
	-o-animation: fadeout 0.3s;
	animation: fadeout 0.3s;
	opacity: 0.2;
}

.spinner {
	min-width: 24px;
	min-height: 24px;
	z-index: 10000;
}

.spinner:before {
	content: 'Loading…';
	position: absolute;
	top: 48%;
	left: 44%;
	width: 96px;
	height: 96px;
	margin-top: -10px;
	margin-left: -10px;
	z-index: 10000;
}

.spinner:not(:required ):before {
	content: '';
	border-radius: 50%;
	border: 4px solid #C3C3C3;
	border-top-color: #2E2D2C;
	animation: spinner .6s linear infinite;
	-webkit-animation: spinner .6s linear infinite;
}


.margin-0 {
	margin: 0 auto;
}

.margin-12 {
	margin:12px;
}

.margin-6 {
	margin:6px;
}

.margin-vertical-6 {
	margin-top: 6px !important; 	
	margin-bottom: 6px !important; 	
}

.margin-vertical-12 {
	margin-top: 12px !important; 	
	margin-bottom: 12px !important; 	
}

.margin-vertical-12 {
	margin-top: 12px !important; 	
	margin-bottom: 12px !important; 	
}

.margin-left-12 {
	margin-left: 12px !important;
}

.margin-left-6 {
	margin-left: 6px !important;
}

.margin-right-6 {
	margin-right: 6px !important;
}

.margin-center {
	margin:0px auto
}

.padding-0 {
	padding:0px !important;
}

.padding-6 {
	padding:6px !important;
}

.padding-12 {
	padding: 12px !important;
}

.padding-24 {
    padding: 24px !important;
}

.padding-48 {
	padding:48px !important;
}

.padding-horizontal-0 {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.padding-horizontal-6 {
	padding-left: 6px !important;
	padding-right: 6px !important;
}

.padding-horizontal-12 {
	padding-left: 12px !important;
	padding-right: 12px !important;
}

.padding-horizontal-24 {
	padding-left: 24px !important;
	padding-right: 24px !important;
}

.padding-horizontal-48 {
	padding-left: 48px !important;
	padding-right: 48px !important;
}

.padding-left-0 {
	padding-left: 0px !important;
}

.padding-left-6 {
	padding-left: 6px !important;
}

.padding-left-12 {
	padding-left: 12px !important;
}

.padding-left-24 {
	padding-left: 24px !important;
}

.padding-left-48 {
	padding-left: 48px !important;
}

.padding-right-0 {
	padding-right: 0px !important;
}

.padding-right-6 {
	padding-right: 6px !important;
}

.padding-right-12 {
	padding-right: 12px !important;
}

.padding-right-24 {
	padding-right: 24px !important;
}

.padding-right-48 {
	padding-right: 48px !important;
}

.padding-vertical-0 {
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}

.padding-vertical-6 {
	padding-top: 6px !important;
	padding-bottom: 6px !important;
}

.padding-vertical-12 {
	padding-top: 12px !important;
	padding-bottom: 12px !important;
}

.padding-vertical-24 {
	padding-top: 24px !important;
	padding-bottom: 24px !important;
}

.padding-vertical-48 {
	padding-top: 48px !important;
	padding-bottom: 48px !important;
}

.padding-top-0 {
	padding-top: 0px !important;
}
	
.padding-top-6 {
	padding-top: 6px !important;
}
	
.padding-top-12 {
	padding-top: 12px !important;
}

.padding-top-24 {
	padding-top: 24px !important;
}

.padding-top-48 {
	padding-top: 48px !important;
}

.padding-bottom-0 {
	padding-bottom: 0px !important;
}

.padding-bottom-6 {
	padding-bottom: 6px !important;
}

.padding-bottom-12 {
	padding-bottom: 12px !important;
}

.padding-bottom-24 {
	padding-bottom: 24px !important;
}

.padding-bottom-48 {
	padding-bottom: 48px !important;
}

.bottom-24 {
	bottom:24px;
}

.cursor {
	cursor:pointer;
}

.circle {
    border-radius: 50%;
}

.height-5 {
	height:5%;
}

.height-6 {
	height:6%;
}

.height-7 {
	height:7%;
}

.height-8 {
	height:8%;
}

.height-10 {
	height:10%;
}

.height-15 {
	height:15%;
}

.height-40 {
	height:40%;
}

.height-60 {
	height:60%;
}

.height-70 {
	height:70%;
}

.height-75 {
	height:75%;
}

.height-80 {
	height:80%;
}

.height-90 {
	height: 90%;
}

.height-100 {
	height: 100%;
}

.height-42px {
	height:42px;
}


.opacity-75 {
	opacity: 0.75;
}

.opacity-50 {
	opacity: 0.5;
}

.nav-bullet {
    width: 10px;
    height: 10px;
    background: #CCC;
    border: 2px solid var(--eos-base-bg-color);
    margin: 6px;
    padding: 6px;
}

.raw {
	visibility: visible;
	height:1.1em;
}

.raw-success {
	color: rgba(27,99,27,1);
}

.raw-progress {
	color: #656565;
	margin-bottom: 6px;
}

.raw-failed {
	color: rgba(220,0,0,1);
	margin-bottom: 0px;
}

.nav-bullet.active {
    background: #2e2d2c;
}

.text-overflow {
	white-space: nowrap;
	width: 248px;                   
	overflow: hidden;
	text-overflow: "…";	
	margin:0 auto;	
}

.hidden {
	display: none !important;
}

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

.invisible {
	visibility: hidden !important;
}

.visible {
	visibility: visible !important;
}

.spacer-12 {
    width: 12px;
}

.spacer-24 {
    width: 24px;
}

.spacer-48 {
    width: 48px;
}

.border-gray {
	border: 1px solid var(--color-light-gray);
}

/* .button-248 { */
/*     width: 235px; */
/*     height: 235px; */
/*     border-radius: 48px; */
/*     -webkit-transition: all 0.3s; */
/*     -moz-transition: all 0.3s; */
/*     -o-transition: all 0.3s; */
/*     transition: all 0.3s; */
/* } */

.button:disabled {
	opacity: 0.2;
}

/* .button { */
/*     background-color: var(--eos-base-bg-color); */
/*     border: none; */
/*     -webkit-transition: opacity 1s; */
/*     -moz-transition: opacity 1s; */
/*     -o-transition: opacity 1s; */
/*     transition: opacity 1s; */
/*     color: #FFF; */
/*     outline: none; */
/*     position: relative; */
/*     z-index: 122; */
/* } */

.button.inactive {
    opacity: 0.2;
}

/* .button-48 { */
/*     width: 48px; */
/*     height: 48px; */
/*     border-radius: 12px; */
/* } */

/* .button-96 { */
/*     width: 96px; */
/*     height: 96px; */
/*     border-radius: 24px; */
/* } */

.icon-button-small {
	width: 96px;
}

.icon-button {
	background-size: 80%;
    background-repeat: no-repeat;
    background-position: center center;
}

.missed-localization {
	color: var(--color-red-50);
}

.shadow {
	box-shadow: var(--eos-base-shadow);
}

.horizontal-center-div {
	margin:0 auto;
}

.x-centered {
	left: 50% !important;
	transform: translateX(-50%);
}

.y-centered {
	top: 50% !important;
	transform: translateY(-50%);
}

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

.underline {
	text-decoration: underline;
}

.hide-positionally {
	position: fixed;
	top: -1000px;
}

#overlay {
	display: none;
	z-index: 5000;
	background: var(--color-black-75);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	text-align: center;
	opacity: 0.9;
	z-index: 200;
}

#popup {
	visibility: hidden;
	position: absolute;
	background-color: #fff;
	height: 50%;
	width: 50%;
	z-index: 1001;
	/* 	display: none; */
	color: #2E2D2C;
	background-color: rgba(255,255,255,0.9);
	box-shadow: 0px 0px 24px #999;
	min-width: 96px;
	position: absolute;
	/*     right: 12px; */
	/*     top: 46px; */
}

#popup .h2 {
    /* font-size: 1.2em; */
}

#popup-header {
	background-color: var(--color-gray-25);
}

#popup-header, #popup-footer  {
	height: 36px;
}

#popup-close-button {
	/* width: 36px; */
	/* height: 36px; */
	height: 100%;
	background: transparent url(images/icons/close.svg) center center no-repeat;
	background-size: 50%;
	padding: 12px !important;
}

#popup-close-button:hover {
	background: transparent url(images/icons/close-hover.svg) center center no-repeat;
	background-size: 50%;
	cursor:pointer;
}

#popup-title {
/* 	padding-left: 12px; */
/* 	padding-top: 12px; */
}

.scrollable {
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	/* padding: 12px; */
}

#div-confirm-actions-popup {
	width: 100%;
}

#popup.confirmation {
	width: 38%;
	height: 20%;
}

#popup #div-confirmation-icon {
	background: #fff url(images/icons/warning.svg) center center no-repeat;
	width: 18%;
} 

/* #popup #div-confirmation-text, #popup #button-confirm, #popup #button-cancel { */
/*     font-size: 1.5em; */
/* } */

#popup #button-confirm, #popup #button-cancel {
    font-family: "proxima-nova-bold", sans-serif;
}

.slicknav_menu {
    display: none !important;
}

.no-height {
	height: 0px;
}

.dropdown-check-list {
	background-color: var(--color-white);
	background-image: url(../../stylesheets/images/icons/arrow-select.svg);
	background-position: 98% 10px;
	background-size: 20px auto;
	background-repeat: no-repeat;
/* 	height: 32px; */
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	-ms-appearance: none;
	appearance: none;
	
  display: inline-block;
  padding: 0px 0px 0px 0px !important;
}
.dropdown-check-list .anchor {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding: 9px 6px 6px 12px;
/*   border: 1px solid #ccc; */
  text-align: left;
  width: 100%;
}
.dropdown-check-list .anchor:after {
  position: absolute;
  content: "";
/*   border-left: 2px solid black; */
/*   border-top: 2px solid black; */
  padding: 5px;
  right: 10px;
  top: 20%;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.dropdown-check-list .anchor:active:after {
  right: 8px;
  top: 21%;
}
.dropdown-check-list ul.items {
  padding: 6px;
  display: none;
  margin: 0;
/*   border: 1px solid #ccc; */
  background-color: #FFF;
  border-top: none;
  text-align: left;
}
.dropdown-check-list ul.items li {
	display: flex;
	margin-bottom: 6px;
	cursor: pointer;
  list-style: none;
}

#popup-content .invalid{
	border: solid;
	border-width: 1px;
	border-color: var(--color-red);
	box-shadow:1px 1px 6px var(--color-red);
}

#popup-content .valid{
	border: solid;
	border-width: 0px;
	border-color: transparent;
	box-shadow:0px 0px #FFFFFF;
}


#popup-content .invalid{
	border: solid;
	border-width: 1px;
	border-color: var(--color-red);
	box-shadow:1px 1px 6px var(--color-red);
}

#popup-content .valid{
	border: solid;
	border-width: 0px;
	border-color: transparent;
	box-shadow:0px 0px #FFFFFF;
}

#popup-content div [required=true]::after{

/* #popup-content [valid="false"]{ */
/* 	border: solid; */
/* 	border-width: 1px; */
/* 	border-color: var(--color-red); */
/* } */

/* #popup-content [valid="true"]{ */
/* 	border: solid; */
/* 	border-width: 0px; */
/* 	border-color: var(--color-red); */
/* } */

#popup-content div[required="true"]::after{
	content: " *";
	color: var(--color-red);
	position: absolute;
	padding-left: 6px;
}

@media only screen and (max-width: 1200px) {
	#popup.confirmation {
	    width: 60%;
	}		
}

@media only screen and (max-width: 900px) {
	#popup.confirmation {
	    width: 75%;
	}	
	
}

@media only screen and (max-width: 600px) {
	#popup.confirmation {
	    width: 95%;
	}		
}
	

