@charset "utf-8";
/* CSS Document */

@media screen and (max-height: 26.375em){

	.cbp-spmenu-horizontal {
		font-size: 75%;
		height: 180px;
	}

	.cbp-spmenu-top {
		top: -110px;
	}

	.cbp-spmenu-bottom {
		bottom: -180px;
	}
}

@media screen and (max-width: 768px) {
	
  .modal__inner {
    width: 90%;
    height: 90%;
    box-sizing: border-box;
  }
}


body {
  padding: 2%;

  text-align: center;
 
}
.btnbox{
	width:60px;
	height:60px;
	float:left;
	  margin-top:5px;
  margin-left:20px;
  border-radius:29px;
}

.btn {
  cursor: pointer;
  background: #fff;
  display: inline-block;
  color: #001c36;

}

.btn:hover,
.btn:focus {
  background: #fff;
}

.btn:active {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0, .2) inset;
}

.btn--blue {
  background: #2980b9;
}

.btn--blue:hover,
.btn--blue:focus {
  background: #fff;
}

.btn--blue:active {
  background: #fff;
}

p img {
  max-width: 200px;
  height: auto;
  float: left;
  margin: 0 1em 1em 0;
}






/* Reset */
*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

body {
    
    color: #001c36;

}

a {
	color: #001c36;
	text-decoration: none;
}

a:hover {
	color: #000;
}

.container {
	position: absolute;
	z-index: 999;
	/*width: 100%;
	height: 100%;*/
}
/*.main {
	width: 100%;
	height: 100%;
}*/

.main,
.container > header {
	width: 90%;
	max-width: 69em;
	margin: 0 auto;
	padding: 0 1.875em 3.125em 1.875em;
}

.container > header {
	padding: 2.875em 1.875em 1.875em;
}



.container > header span {
	display: block;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5em;
	padding: 0 0 0.6em 0.1em;
}

.container > header nav {
	float: right;
}

.container > header nav a {
	display: block;
	float: left;
	position: relative;
	width: 2.5em;
	height: 2.5em;
	background: #fff;
	border-radius: 50%;
	color: transparent;
	margin: 0 0.1em;
	border: 4px solid #47a3da;
	text-indent: -8000px;
}

.container > header nav a:after {
	content: attr(data-info);
	color: #47a3da;
	position: absolute;
	width: 600%;
	top: 120%;
	text-align: right;
	right: 0;
	opacity: 0;
	pointer-events: none;
}

.container > header nav a:hover:after {
	opacity: 1;
}

.container > header nav a:hover {
	background: #47a3da;
}

.main > section {
	max-width: 260px;
	width: 90%;
	margin: 0 auto;
}

.main > section h2 {
	font-weight: 300;
	color: #ccc;
}

#showBottom {
	position: absolute;
	z-index: 10506;
	border: none;
	background: #47a3da;
	color: #fff;
	display: block;
	width: 50px;
	height: 50px;
	cursor: pointer;
	vertical-align: middle;
	margin: 10px 0;
	font-size: 0.8em;
	margin-top: 120px;
	margin-left: 10px;
}
.modal-backdrop, .modal-backdrop.fade.in {
    opacity: 0;
}

#showRight {
   background: none repeat scroll 0 0 #FFFFFF;
    border: thin  #CCC ;
    color: #000000;
    cursor: pointer;
    height: 50px;
    font-size: 1.0em;
    /*font-size: 1.2em;*/
    width: 100px;
    /*width: 150px;*/
    margin: 45px 0 10px 10px;
    margin-left: -49%;
    /*margin-left: -47%;*/
    position: absolute;
    vertical-align: middle;    
    z-index: 999;

}

#search {
	position: absolute;
	top: 50px;
	left: 130px;
	/*left: 250px;*/
	cursor: pointer;
	z-index: 999;
	padding: 0.4%;
	background: #fff;

	/*Added new */
	/*width: 180px;*/
 }

 #search_input{
	 width: 150px;
	 margin-top: auto;
	 margin-bottom: auto;
	 border: #258ecd solid 2px;
 }

#showRight:hover {
	background: #000;
	border-bottom:thick #999;
	color:#fff;
	
}


#showRight2 {
   background: none repeat scroll 0 0 #FFFFFF;
    border: thin  #CCC ;
    color: #000000;
    cursor: pointer;
    height: 50px;
    font-size: 1.2em;
    width: 150px;
    margin: 45px 0 10px 10px;
    margin-left: -69%;
    position: absolute;
    vertical-align: middle;    
    z-index: 999;
	border-radius:5px;
}

#showRight2:hover {
	background: #000;
	border-bottom:thick #999;
	color:#fff;
	
}



/* [Object] Modal
 * =============================== */
.modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  margin-left: 0px;
  text-align: right;
  background: rgba(0,0,0, 0);
  transition: opacity .25s ease;
}

.modal__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
}

.modal-state {
  display: none;
}

.modal-state:checked + .modal {
  opacity: 1;
  visibility: visible;
}

.modal-state:checked + .modal .modal__inner {
  top: 0;
}

.modal__inner {
  transition: top .25s ease;
  position: absolute;
  top: -20%;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  margin: auto;
  overflow: auto;
  background: #fff;
  border-radius: 0px;
  padding: 1em 2em;
  height: 50%;
}

.modal__close {
  position: absolute;
  left: 1em;
  top: 1em;
  width: 1.1em;
  height: 1.1em;
  cursor: pointer;
}

.modal__close:after,
.modal__close:before {
  content: '';
  position: absolute;
  width: 2px;
  height: 1.5em;
  background: #ccc;
  display: block;
  transform: rotate(45deg);
  left: 50%;
  margin: -3px 0 0 -1px;
  top: 0;
}

.modal__close:hover:after,
.modal__close:hover:before {
  background: #aaa;
}

.modal__close:before {
  transform: rotate(-45deg);
}


.main > section button:hover {
	background: #258ecd;
}

.main > section button.active {
	background: #0d77b6;
}

.main > section button.disabled {
	background: #aaa;
	pointer-events: none;
}

.icon-drop:before, 
.icon-arrow-left:before {
	font-family: 'fontawesome';
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 2;
	text-align: center;
	color: #47a3da;
	-webkit-font-smoothing: antialiased;
	text-indent: 8000px;
	padding-left: 8px;
}

.container > header nav a:hover:before {
	color: #fff;
}

.icon-drop:before {
	content: "\e000";
}

.icon-arrow-left:before {
	content: "\f060";
}


/* General styles for all menus */


 i {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}




 .x{
   float:right;
   padding-right: 2%;
   font-weight: bold;
   font-size: 13px !important;
 }
 


.custom_popup .leaflet-popup-content-wrapper {
			background: #2c3e50;
			color: #fff;
			font-size: 16px;
			line-height: 24px;
			opacity: 0.84;
		}

		.custom_popup .leaflet-popup-content-wrapper a {
			color: rgba(255, 255, 255, 0.5);

		}

		.custom_popup .leaflet-popup-tip-container {
			width: 30px;
			height: 15px;
		}

		.custom_popup.leaflet-popup-tip {
			border-left: 15px solid transparent;
			border-right: 15px solid transparent;
			border-top: 15px solid #2c3e50;
		}

		.leaflet-container a.leaflet-popup-close-button {
			z-index: 9;
			color: #FFFFFF;
		}

		.leaflet-clickable {
			fill-opacity: 0;
		}

		.modal-backdrop {
			z-index: 1420;
		}


		body {
			margin: 0;
			padding: 0;
		}

		#map {
			position: absolute;
			top: 0;
			bottom: 0;
			right: 0;
			left: 0;
		}

		.ui-collapsible {
			margin: 0;
		}

		.ui-overlay-a,
		.ui-page-theme-a,
		.ui-page-theme-a .ui-panel-wrapper {
			text-shadow: none;
		}



		/* .ui-page-theme-a .ui-btn:visited, html .ui-btn:visited
{ color: #FFF000; }*/

		/*.ui-page-theme-a .ui-btn, a.ui-btn  { background: #FFF; color: #cccccc;}*/

		.btn {
			display: block;
			font-size: 14.5px;
			background-color: #cc7e56;
		}

		.btn-info,
		.btn-info:hover {
			background-color: #dde0e4;
			background-image: none;
			text-shadow: none;
			text-align:right;
			padding: 15px;
		}

		#listone {
			color: #333 !important;
		}

		#passone li a {
			background: #fff !important;
			color: #333;
			display: block;
			text-shadow: none;
			border: none;
			text-decoration: none;
		}

		#passone li {
			background: #fff !important;
			color: #333;
			text-shadow: none;
			display: block;
			padding: 10px;
			border-top-style: none;
			border: 1px solid #CCC;
			border-right-width: 0px;
			border-left-width: 0;
			border-top-width: 0;
		}

		#passone {
			list-style-type: none;
			margin: 0;
		}

		#listtwo {
			color: #333 !important;
		}

		#passtwo li a {
			background: #fff !important;
			color: #333;
			display: block;
			text-shadow: none;
			border: none;
			text-decoration: none;
		}

		#passtwo li {
			background: #fff !important;
			color: #333;
			text-shadow: none;
			display: block;
			padding: 10px;
			border-top-style: none;
			border: 1px solid #CCC;
			border-right-width: 0px;
			border-left-width: 0;
			border-top-width: 0;
		}

		#passtwo {
			list-style-type: none;
			margin: 0;
		}


		#listthree {
			color: #333 !important;
		}

		#passthree li a {
			background: #fff !important;
			color: #333;
			display: block;
			text-shadow: none;
			border: none;
			text-decoration: none;
		}

		#passthree li {
			background: #fff !important;
			color: #333;
			text-shadow: none;
			display: block;
			padding: 10px;
			border-top-style: none;
			border: 1px solid #CCC;
			border-right-width: 0px;
			border-left-width: 0;
			border-top-width: 0;
		}

		#passthree {
			list-style-type: none;
			margin: 0;
		}

		#listfour {
			color: #333 !important;
		}

		#passfour li a {
			background: #fff !important;
			color: #333;
			display: block;
			text-shadow: none;
			border: none;
			text-decoration: none;
		}

		#passfour li {
			background: #fff !important;
			color: #333;
			text-shadow: none;
			display: block;
			padding: 10px;
			border-top-style: none;
			border: 1px solid #CCC;
			border-right-width: 0px;
			border-left-width: 0;
			border-top-width: 0;
		}

		#passfour {
			list-style-type: none;
			margin: 0;
		}


		#listfive {
			color: #333 !important;
		}

		#listfive h3 a:visited {
			bottom: 0;
		}

		#passfive li a {
			background: #fff !important;
			color: #333;
			display: block;
			text-shadow: none;
			border: none;
			text-decoration: none;
		}

		#passfive li {
			background: #fff !important;
			color: #333;
			text-shadow: none;
			display: block;
			padding: 10px;
			border-top-style: none;
			border: 1px solid #CCC;
			border-right-width: 0px;
			border-left-width: 0;
			border-top-width: 0;
		}

		#passfive {
			list-style-type: none;
			margin: 0;
		}




		.leaflet-popup-tip {
			display: none !important;
		}

		.bindLabel {
			background: #ffff;
			color: #000000;
			border: none;
			opacity: 1;
		}


.cbp-spmenu {
	background: #FFF;
	position: fixed;
	background-color:#FFF;
	text-align:right;
}

.cbp-spmenu h3 {
	color: #0a719e;
	font-size: 1.9em;
	/*padding: 5px;*/
	margin: 0;
	font-weight: 300;
	text-align: center;
}



.cbp-spmenu a:hover {
	background: #1d1c1c;
}

.cbp-spmenu a:active {
	background: #afdefa;
	color: #1d1c1c;
}

/* Orientation-dependent styles for the content of the menu */

.cbp-spmenu-vertical {
	width: 240px;
	height: 100%;
	top: 0;
	z-index: 10506;
    overflow-y: scroll;
}

.cbp-spmenu-vertical a {
	border-bottom: 1px solid #1d1c1c;
	
}

.cbp-spmenu-horizontal {
	width: 100%;
	height: 270px;
	left: 0;
	z-index: 1000;
	overflow: hidden;
}

.cbp-spmenu-horizontal h3 {
	height: 100%;
	width: 20%;
	float: left;
}



/* Vertical menu that slides from the left or right */

.cbp-spmenu-left {
	left: -240px;
	
}

.cbp-spmenu-right {
	right: -240px;
}

.cbp-spmenu-left.cbp-spmenu-open {
	left: 0px;
}

.cbp-spmenu-right.cbp-spmenu-open {
	right: 0px;
}

/* Horizontal menu that slides from the top or bottom */

.cbp-spmenu-top {
	top: -150px;
}

.cbp-spmenu-bottom {
	bottom: -270px;
}

.cbp-spmenu-top.cbp-spmenu-open {
	top: 0px;
}

.cbp-spmenu-bottom.cbp-spmenu-open {
	bottom: 0px;
}

/* Push classes applied to the body */

.cbp-spmenu-push {
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.cbp-spmenu-push-toright {
	left: 240px;
}

.cbp-spmenu-push-toleft {
	left: -240px;
}

/* Transitions */

.cbp-spmenu,
.cbp-spmenu-push {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}



