@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,300,600);
body{
	margin: 0px;
	padding: 0px;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	overflow: hidden;
}
.gmap-category #gmap-menu{
	list-style-type: none;
	padding: 0px;
	margin: 0px;
	position: relative;
    width: 100%;
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    text-align: center;
	background-color: #FFF;
    box-shadow: 0 1px 1px rgba(0,0,0,.5);
}
.gmap-category #gmap-menu .owl-item li{
	margin: 0px;
    padding: 0px;
    list-style: none;
    width: 100%;
    font-size: 18px;
    white-space: nowrap;
    text-align: center;
    padding: 10px;
    cursor: pointer;
}
.gmap-category #gmap-menu .owl-item{
	border-right: 1px solid #DDD;
    transition: all 0.3s;
}
.gmap-category #gmap-menu .owl-item:hover,
.gmap-category #gmap-menu .owl-item:focus{
	background-color: #fd9027;
}
.gmap-category #gmap-menu li img{
	height: 50px;
	width: 50px;
	display: block;
	margin: 0px auto;
}
.gmap-category #gmap-menu li span{
	font-size: 14px;
    color: rgb(55, 55, 55 );
    font-weight: bold;
}
.gmap-category #gmap-menu li:hover img,
.gmap-category #gmap-menu li:focus img{
	-webkit-filter:brightness(55);
	-moz-filter:brightness(55);
	-o-filter:brightness(55);
	-ms-filter:brightness(55);
	filter:brightness(55);
}
.gmap-category #gmap-menu li:hover span,
.gmap-category #gmap-menu li:focus span{
	color:#FFF;
}
.gmap-content{
	height: calc(100% - 90px);
	position: relative;
	overflow: hidden;
}
.gmap{
	width: 100%;
	height: 100%;
	transition: width 0.3s ease-in-out ;
}
.gmap-places{
	position: absolute;
    right: -291px;
    height: 100%;
    background-color: #FFF;
    color: rgb( 90, 90, 90 );
    z-index: 2;
    -webkit-box-shadow: -1px 0px 0px 0px rgba(162,162,162,.5);
	-moz-box-shadow: -1px 0px 0px 0px rgba(162,162,162,.5);
	box-shadow: -1px 0px 0px 0px rgba(162,162,162,.5);
	top: 0;
	transition: right 0.3s ease-in-out ;
	width:  250px;
}
.gmap-content.selected .gmap{
	width: calc(100% - 250px);
}
.gmap-content.selected .gmap-places{
    right:0px;
}
.places-desc{
	padding: 5px;
	overflow-y: auto;
	height: 90%;
}
.places-title{
	width: 100%;
	text-align: center;
	background-color: #099ee2;
	padding: 10px;
	font-weight:bold;
	color: #FFF;
}
.places-image img{
	height: 160px;
	width: 100%;
	object-fit: cover;
	object-position: center;
}
.places-name{
	color: rgb( 90, 90, 90 );
	font-weight: bold;
	display: block;
	font-size: 16px;
	text-transform: capitalize;
	margin-top: 15px;
}
.places-name:after{
	content: " ";
	background-color: rgba(0,0,0,0.2);
	height: 1px;
	width: 100%;
	display: block;
}
.places-content{
	font-size: 14px;
    line-height: 1.5;
	color: rgb( 90, 90, 90 );
}
.close-gmap-places{
	content: url('../img/icon/cross.svg');
    height: 26px;
    position: absolute;
    left: -41px;
    top: 0px;
    padding: 7px;
    z-index: 10;
    cursor: pointer;
    background-color: #099ee2;
}
.close-gmap-places:hover{
	opacity: 0.8;
	background-color: #fd9027;
}