* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	line-height: 1;
	font-family: Arial;
}
ol, ul {
	list-style: none;
}
#map{
	height: 100%;
    width: 100%;
    position: relative;

	z-index: -1;
}
.map-holder{
	width:100%;
	height: 100vh;
	position: relative;
	z-index: 0;
}
.left-panel{
	position: absolute;
	left:-25%;
	top:0;
	background: rgb(245, 245, 245);
	padding:0;
	z-index: 1;
	width:25%;
	height: 100vh;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	transition: all .5s;
}
.search-panel{
	padding:10px;
	position: relative;
	margin-bottom: 85px;
}
.icons-wrap{
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
}
.icon{
	width:16px;
	fill:#777;
	height: 16px;
}
.direction-icon{
	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px solid #777;
	cursor: pointer;
}
.direction-icon .icon{
	fill:#00758f;
}
.search-panel input[type="text"]{
	border:1px solid #ccc;
	padding:15px 70px 15px 15px;
	background:transparent;
	width:100%;
}
.search-panel ::placeholder{
	color:#555;
	font-size: 14px;
	opacity: 0.75;
}
.close-panel-wrap{
	position: absolute;
	top: 10px;
	right: -32px;
	background: rgb(245, 245, 245);
	padding: 15px 8px;
	/* border-left: 1px solid #ccc; */
	box-shadow: 8px  3px 9px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	z-index: -1;
}
.icon-backward2{
	height: 16px;
}
.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 110px;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 3px;
  position: absolute;
  z-index: 100;
  top: 120%;
  left: 50%; 
  margin-left: -55px;
  font-size:14px;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
}
.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}
.direction-panel{
	background: #00758f;
	padding:20px;
	position: relative;
	top:0;
	width:100%;
	display: none;
}
.direction-panel input[type="text"]{
	width:100%;
	background: transparent;
	border:none;
	border-bottom:1px solid #009ec1;
	padding: 15px 70px 15px 15px;
	color:#eee;
	font-size: 16px;
	outline: none;
}
.direction-panel ::placeholder{
	color:#eee;
	font-size: 14px;
	opacity: 0.75;
}
.search-box-wrap{
	position: relative;
}
.search-box-wrap .search-icon{
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.search-box-wrap .icon-search{
	fill:#ddd;
}
.close-wrap{
	position: absolute;
	top:10px;
	right: 10px;
	cursor: pointer;
}
.close-wrap .icon-cross{
	fill:#fff;
	width:15px;
	height: 15px;
}
.content-box{
	padding: 20px;
   color: #555;
   overflow-y: scroll;
   height: calc(100% - 210px);
	display: none;
}
.show-panel.show-direction .content-box{
	display: block;
}
.content-box h6{
	text-transform: uppercase;
	font-size: 18px;
	margin-bottom: 5px;
}
.content-box p{
	font-size: 15px;
	line-height: 22px;
}
.map-holder .show{
	display: block !important;
}

.left-panel.show-panel{
	left:0;
	transition: .5s;
}

/* Autocomplete  */	
.address-ac-wrapper ul.autocomplete{
	position: relative;
	width: 100%;
	border: 1px solid #efefef;
}
.address-ac-wrapper ul.autocomplete li {
	background: #fff;
	color: #252525;
	padding: 8px;
	font-size: 1rem;
	cursor: pointer;
	border-bottom: 1px solid #ccc;
}
.address-ac-wrapper ul.autocomplete li:hover{
	background: #3b9db3;
	color: #fff;
}
.address-ac-wrapper{
	background: #ffffff;
	z-index : 1000000;
	max-height: 240px;
	-webkit-box-shadow: 1px 13px 44px -15px rgba(0,0,0,0.75);
	-moz-box-shadow: 1px 13px 44px -15px rgba(0,0,0,0.75);
	box-shadow: 1px 13px 44px -15px rgba(0,0,0,0.75);
	overflow: auto;
	overflow-x: hidden;
	display: none;
}
/* Autocomplete  */	

/*Button*/

#direction-panel .obttns{
	display: inline-block;
    width: 100%;
    margin-top: 1rem;
}
#direction-panel .obttns>div {
    position: relative;
    margin: .6em .8em .6em 0;
    border: 2px solid #00758f;
    float: left;
    background: #00758f;
	transition: background .2s, border .2s;
    -moz-transition: background .2s, border .2s;
    -webkit-transition: background .2s, border .2s;
 }
#direction-panel .obttns>div.obttn1{
    background: #fff;
    border-color: #fff;	
}
#direction-panel .obttns>div.obttn1 a{
    display: inline-block;
    font-size: 0.8rem;
    font-weight: bold;
	padding: 0.6em 1.2em;
    color: #00758f;
    text-decoration: none !important;
	transition: color .3s;
    -moz-transition: color .3s;
    -webkit-transition: color .3s;
}
#direction-panel .obttns>div.obttn1 a:hover{
	color: #fff;
}
#direction-panel .obttns>div.obttn1:hover{
	background: rgba(255,255,255,0);
    border-color: #fff;
}

.left-panel.show-direction .direction-panel{
	display: block;
}
.left-panel.show-direction .search-panel{
	display: none;
}
.eloc_direction_summary{
	font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
    font-weight: bold;
}
table{
	border:none;
	font-size:12px;
	color:#494b4d;
	border-collapse: collapse;
}
table tr th{
	background: #cad9de;
	color:#494b4d;
	font-weight: bold;
	padding:10px;
	border:none;
	text-align:left;
}
table tr td{
	padding:10px;
	border:1px solid rgba(147,150,153,0.2);
	line-height: 18px;
}

@media only screen and (max-width: 600px) {
	.left-panel{
		width:75%;
		left:-75%;
	}
}

@media only screen and (min-width: 601px) and (max-width: 1024px) {
	.left-panel{
		left:-50%;
		width:50%;
	}
}
