#vz-locations-map{
	position: relative;
}
.vz-location-select{
	/* appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none; */
	border: none;
	font-family: inherit;
	font-size: 18px;
	font-weight: bold;
	color: var(--e-global-color-primary);
	border-left: 6px solid var(--e-global-color-primary);
	padding: 10px;
	/* background: transparent; */
	background: #fff;
	width: 370px;
	max-width: 100%;
	margin-bottom: 20px;
}
.vz-location-select option{
	white-space: pre-wrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.location-marker{
	position: absolute;
	top: 0;
	left: 0;
}
.location-marker:hover .marker-content{
	visibility: visible;
	opacity: 1;
	transform: translate(-50%, 0);
	z-index: 10;
}
.location-marker.active:after{
	content: "";
	display: block;
	pointer-events: none;
	width: 26px;
	height: 26px;
	border: 2px solid #00802f;
	background-color: #fcea0f;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform-origin: center;
	transform: translate(-50%, -50%) rotateX(60deg);
}
.location-marker .marker-content{
	position: absolute;
	bottom: 40px;
	left: 50%;
	font-weight: bold;
	font-size: 14px;
	/* font-weight: lighter; */
	border-radius: 2px;
	padding: 10px;
	width: 200px;
	background-color: #fff;
	transform: translate(-50%, 50%);
	opacity: 0;
	visibility: hidden;
	transition: all ease 150ms;
	pointer-events: none;
	box-shadow: 0 0 20px 0 rgba(0,0,0, 0.25);
	text-align: center;
	z-index: 3;
}
.location-marker .marker-spot{
	position: absolute;
	width: 24px;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	cursor: pointer;
	z-index: 2;
}
.location-marker .marker-spot *{
	vertical-align: middle;
	pointer-events: none;
}
/* .location-marker .marker-text{
	
} */
.vz-location-meta{
	margin-bottom: 40px;
}
.vz-location-workers{
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}
.vz-location-workers.group{
	display: none;
}
.vz-location-workers .worker-wrapper{
	width:  100%;
	padding: 0 10px;
	margin-bottom: 20px;
}
@media(min-width: 540px){
	.vz-location-workers .worker-wrapper{
		width: 50%;
	}
}
.vz-worker-search-wrapper{
	margin-bottom: 40px;
}
.vz-worker-search{
	width: 370px;
	max-width: 100%;
	padding: 12px;
	border-radius: 10px;
	border: 1px solid #a4a4a4;
}
.vz-department-name{
	color:  #fff;
	background-color: var(--e-global-color-primary);
	padding-left:  20px;
	margin-bottom: 10px;
	height: 40px;
	line-height: 40px;
}
.vz-department-wrapper{
	position: relative;
	/*background-color: #fff;*/
}
.vz-department-wrapper .toggle-indicator{
	position: absolute;
	top: 12px;
	right: 20px;
	color:  #fff;
	z-index: 1;
}
.vz-department-wrapper .fa-chevron-down{
	display: block;
}
.vz-department-wrapper .fa-chevron-up{
	display: none;
}
.vz-department-toggle{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	z-index: 3;
	opacity: 0;
	cursor: pointer;
}
.vz-department-toggle:checked ~ .vz-location-workers.group{
	display: flex;
}
.vz-department-toggle:checked ~ .fa-chevron-down{
	display: none;
}
.vz-department-toggle:checked ~ .fa-chevron-up{
	display: block;
}
.vz-department-toggle:hover ~ .vz-department-name{
	background-color: #00802f;
}

/* loader */
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--e-global-color-primary);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
