		#map_div {
				height: 600px;
				max-height: 100vh;
				width: 100%;
				max-width: 1400px;
				background: #fff;
				margin: auto;
				padding:0;
				overflow: hidden;
				border-radius: 5px;
		}
		#map{
		border-top-left-radius:5px;
		border-bottom-left-radius:5px;
			height: 100%;
			width: 60%;
			float: left;
		}
		#list_div{
			height: 100%;
			margin-right: -18px;
			width: 40%;
			float: right;
		}
		#scroll{
			overflow-y: scroll;
		}
		#logo{
			opacity: 0.8;
			margin: 5px;
			height: 14px;
		}
		.day_div{
			border: none;
			border-bottom: solid 1px #dddd;
			padding: 10px;
			margin: 5px;
			cursor: pointer;
		}
		.active_day{
			background: #8ee0f5;
			border: none;
			border-radius: 5px;
		}
		.day_div:hover{
			background: #8ee0f5;
			border: none;
			border-radius: 5px;
		}
		.day_div:hover>h4{
			color: #FFF;
		}
		.map_header{
			margin: 5px 10px;
			padding-right: 5px;
			font-weight: 400;
			color: #0083d7;
		}
		.map_day_title{
			color: #0083d7!important;
			font-weight: 400;
			font-size: 14px;
			margin: 5px 0;
			cursor: pointer;
		}
		.map_p{
			font-size: 12px;
			margin: 5px 0;
			cursor: pointer;
		}
		#full_screen_butt{
			padding: 0;
			width: 40px;
			margin: 8px;
			opacity: 0.6;
			box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
			border-radius: 2px;
			cursor: pointer;
			background-color: rgb(255, 255, 255);
		}
		#full_screen_exit_butt{
			display: none;
			padding: 0;
			width: 40px;
			margin: 8px;
			opacity: 0.6;
			box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
			border-radius: 2px;
			cursor: pointer;
			background-color: rgb(255, 255, 255);
		}
		.full_screen{
			position: fixed;
			display: flex;
			align-items: center;
			top: 0;
			bottom: 0;
			left: 0;
			right: 0;
			padding: 10vh 20vw;
			background: rgba(81, 71, 71, 0.8);
			z-index: 9999;
			}
		.full_screen #map_div{
			height: 80vh;
		}	
		.full_screen #full_screen_butt{
			display: none;
		}
		.full_screen #full_screen_exit_butt{
			display: block;
			right: 0!important;
		}
		@media only screen and (max-width: 767px) {

			#map{
				width: 100%!important;
				border-radius: 5px;
			}
			#list_div{
			display: none!important;
			}
		}