/* map tools */

#maptools {
	position:absolute;
	top:10px;
	background:#ffffff;
	width: 300px;
	margin:0px 0px 0px 0px;
	padding:10px;
	text-align:center;
	color:#000000;
	border-radius: 0px 0px 5px 0px;
}

#navHeader {
	float:left;
	width:100%;
	margin-bottom:10px;
	text-align: center;
	padding:0px 5px 0px 0px;
}

#navTog{
	position:relative;
	width:25px;
	font-size: 14pt;
	text-align:center;
	font-weight: bold;
	background:#efefef;
	color:#00853f;
	padding:0px 5px 0px 5px;
	border:1px solid #ccc;
	border-radius:5px;
}
.navTogCollapsed{
	background:#00853f !important;
	color:#efefef !important;
}

#btnRegionRefresh {
	display:none;
	cursor:pointer;
}
.right {
	float:right;
}
.left {
	float:left;
}

#navText {
	float:right;
}

.locations-select {
	background:#ffffff;
	color:#000000;
	border:0px;
	height:unset;
	padding:unset;
	font-size:18px;
	border:1px #ccc solid;
	border-radius:5px;
	/*margin:0px 5px 0px 0px;*/
}

.locations-select option {
	background:#ffffff;
	color:#000000;
	line-height: 40px;
}

#location-list-container {
	clear:both;
	height:400px;
	overflow:auto;
	background:#fff;
	text-align:left;
	color:#ccc;
	border-radius:5px;
}

.location-list-item {
	background:#fff;
	padding:5px;
	margin:2px 0px 2px 0px;
	color:#000000;
}
.spanListItemArrow {
	float:right;
	font-weight:bold;;
}
.location-active {
	background:#efefef !important;
}
.location-list-item:hover {
	background:#efefef;
}

.location-list-item-active {
	cursor:pointer;
	background:#fff;
	padding:5px;
	margin:5px 0px 5px 0px;
	background:#efefef;
	color:#00853f;
}
.c-ptr {
	cursor:pointer;
}
.t-undr {
	text-decoration: underline;
}
.box-shad {
	box-shadow: 0px 0px 20px 2px #000;
}

#mapDetail {
	position:absolute;
	top:10px;
	background:#ffffff;
	border:0px solid #ccc;
	border-radius: 0px 0px 0px 5px;
	max-width: 500px;
	margin:0px 0px 0px 10px;
	padding:10px;
	text-align:center;
	color:#000000;
	right:15px;
	/*height:-webkit-fill-available;*/
	display:none;
}
#detailHeader {
	float:left;
	width:100%;
	margin-bottom:10px;
	text-align: center;
}
#spanDetailLoading img {
	width:25px;
	margin-left:10px;
}
#detailTog{
	position:relative;
	width:25px;
	font-size: 14pt;
	text-align:center;
	font-weight: bold;
	background:#efefef;
	color:#00853f;
	padding:0px 5px 0px 5px;
	border:1px solid #ccc;
	border-radius:5px;
}
.detailTogCollapsed{
	background:#00853f !important;
	color:#efefef !important;
}
#detailTitle {
	position:relative;
	float:left;
	text-align:left;
	font-weight:bold;
	font-size: 16pt;
}
#detailClose {
	position:relative;
	width:25px;
	font-size: 14pt;
	text-align:center;
	font-weight: bold;
	color:#fff;
	border-radius:5px;
}
#detailBody {
	height:100%;
	background:#ffffff;
}
#imgPanel {
	border-radius:5px;
	margin-bottom:10px;
}
#location-detail-container {
	clear:both;
	height:auto;
	overflow:auto;
	text-align:left;
	color:#ccc;
}
.map-spa-address-phone-container {
	float:left;
	width:100%;
	padding:5px;
	background: #fff;
	border-radius:5px 5px 0px 0px;
}
.map-spa-buttons-container {
	float:left;
	width:100%;
	padding:5px 5px 0px 5px;
	background: #ffffff;
	text-align: center;
	margin: auto 0;
}
.map-spa-address-item {
	float:left;
	font-size:12pt;
	color:#000;
	margin-right:10px;
}
.map-spa-address-icon {
	width:50px;
	float:right;
	margin:15px 10px 0px 0px;
	cursor:pointer;
}
.map-spa-phone-item {
	float:right;
	font-size:12pt;
	color:#000;
}
.map-spa-phone-item a {
	border-radius: 5px;
}
.map-spa-button-left{
	float:right;
	width:50%;
	font-size:12pt;
	color:#000;
}
.map-spa-button-right {
	float:left;
	width:50%;
	font-size:12pt;
	color:#000;
}

.map-spa-button {
	background:#ccc;
	border-radius: 5px;
	text-align: center;
	margin:20px;
	width:30%;
	padding:5px;
	background:#00853f;
	color:#fff;
}
.map-spa-button:hover {
	background:rgb(17, 97, 17);
}

.map-spa-hof-wrapper {
	clear:both;
	float:left;
	width:100%;
	text-align: center;
	color:#000;
	background: #ffffff;
}
.map-spa-hof-container {
	width:100%;
	padding:5px 5px 0px 5px;
	text-align: center;
	max-width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.map-spa-hof-item {
	float:left;
	font-size:10pt;
	color:#000;
	margin-right:10px;
}
.map-spa-hof-item img{
	max-width: 50px;
}

.leaflet-control-zoom {
	display:none !important;
}
.leaflet-right {
	z-index:auto;
}
.moveoutLeft {
	animation-name: moveoutLeft;
	animation-duration: .5s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
  }
  
@keyframes moveoutLeft {
	100% {
		transform: translateX(-100%);
		opacity: 1;
	}
}

.moveinLeft {
animation-name: moveinLeft;
animation-duration: .5s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}

@keyframes moveinLeft {
	0% {
		transform: translateX(-95%);
		opacity: 1;
	}
}
.moveoutRight {
	animation-name: moveoutRight;
	animation-duration: .5s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
  }
  
@keyframes moveoutRight {
	100% {
		transform: translateX(100%);
		opacity: 1;
	}
}

.moveinRight {
animation-name: moveinRight;
animation-duration: .5s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}

@keyframes moveinRight {
	0% {
		transform: translateX(95%);
		opacity: 1;
	}
}
.icon-pulse {
	-moz-animation: pulse 3s infinite;
	-webkit-animation: pulse 3s infinite;
	animation: pulse 3s infinite;
	border-radius:0rem;
	width:60px;
	height:50px;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(36, 122, 47);
    }
    70% {
        box-shadow: 0 0 0 30px rgba(88, 120, 243, 0);
    }
    100% {
        box-shadow: 0 0 0 50px rgba(88, 120, 243, 0);
    }
}

/*main modal: start*/

#mainModal {
	display:none;
}
#mainModalMask {
	position:fixed;
	float:left;
	width:100%;
	height:100%;
	background:#000;
	opacity:.5;
	top:0px;
}
#mainModalWrapper {
	position:fixed;
	width:100%;
	top:10%;
	text-align:center;
	z-index:10000;
}
#mainModalContent {
	position:relative;
	margin:auto;
	width:60%;
	background:#fff;
	border-radius: 10px;
}
#mainModalHeader {
	/*position:absolute;*/
	width:100%;
	background:#00853f;
	padding:20px;
	margin:0px 0px 20px 0px;
	color:#fff;
	border-radius: 10px 10px 0px 0px;
	line-height: 2pt;;
}
#mainModalTitle {
	position:relative;
	float:left;
	width:80%;
	text-align:left;
	font-size:14pt;
}
#mainModalClose {
	position:relative;
	float:right;
	width:10%;
	text-align:right;
	margin: 0px 0px 0px 0px;
	font-size:16pt;
}
#mainModalClose a {
	color:#fff;
}
#mainModalBody {
	padding:20px;
	text-align:left;
	/*display:inline-block;*/
}

#mainModalBody .content-l {
	float:left;
	text-align:left;
	width:50%;
}
#mainModalBody .content-r {
	float:right;
	text-align:center;
	width:50%;
}

.content-r img {
	max-height:250px;
}
#mainModalBody .content {
	margin:30px 0px 0px 0px;
}

/*main modal: stop*/

/*media queries: start*/
@media screen and (max-width: 992px) {
	#maptools {
	  width:100vw;
	  top:0px;
	}
	#mapDetail {
	  width:100vw;
	  top:0px;
	}
	#mainModalWrapper{
	  width:100vw;
	  top:90px;
	  position:absolute;
	  height:auto;
	  z-index:999;
	}
	#mainModalHeader {
		border-radius:0px;
	}
	#mainModalContent{
	  width:100vw;
	  top:0px;
	  display:grid;
	}
	#mainModalBody{
		width:98vw;
		top:0px;
		height:auto;
	  }
	#mainModalBody .title {
		text-align:center;
		width:100%;
	}
	.content-l, .content-r {
		width:unset !important;
		float:unset !important;
		height:unset !important;
	}
	.content-r img {
		width:100%;
	}
	.box-shad {
		box-shadow: none;
	}
	.location-list-item {
		background:#efefef;
		color:#000000;
		border-radius: 5px;
		margin:10px 0px 10px 0px;
	}
  }

/*media queries: stop*/