#locations_list{
	position: absolute;
	width: 350px;
	left: 0;
	background-color: rgba(0,0,0,0.5); 
	z-index: 2;
}

#locations_list #locations_list_close{ /*esto lo modifico mariano*/
	position: absolute;
	display: block;
	right: -30px;
	width: 30px;
	height: 60px;
	color: #fff;
	cursor: pointer;
	border-right: 1px solid #fff;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
   padding: 7px; 
   background-color: rgba(0,0,0,0.5);
   border-radius: 0 10px 10px 0;   
}

#locations_list #locations_list_close:hover{ /*esto lo modifico mariano*/
	background-color: #3a66af;
}

#locations_list #locations_list_open{
	position: absolute;
	display: none;
	right: -30px;
	width: 30px;
	height: 60px;
	color: #fff;
	cursor: pointer;
	border-right: 1px solid #fff;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
   padding: 7px; 
   background-color: rgba(0,0,0,0.5); 
   border-radius: 0 10px 10px 0;   
}

#locations_list #locations_list_open:hover{ /*esto lo modifico mariano*/
	background-color: #3a66af;
}

#locations_list #locations_list_title{   /*esto lo agrego mariano*/
	display: block;
	text-align: center;
	width: 100%;
	height: 30px;
	color: #fff;
	font-size: 1em;
	cursor: pointer;
	border: 1px solid #fff;
   padding-top: 3px; 
    
}

#locations_list #locations_list_title:hover{   /*esto lo agrego mariano*/
	background-color: #3a66af;
}


#locations_list #show_locations{
	width: 100%;
	border-right: 1px solid #fff;
	overflow-y: auto;
}


::-webkit-scrollbar {
    width: 15px;
}
	 
::-webkit-scrollbar-track {
	-webkit-box-shadow: #000000;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

::-webkit-scrollbar-track-piece {
	background-color: #ccc;
}
	 
::-webkit-scrollbar-thumb {
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background: #ccc; /*color barra*/
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

::-webkit-scrollbar-thumb:hover {		
	background: #3a66af;
}

::-webkit-scrollbar-thumb:active {
	background: #3a66af;
}


#locations_list #show_locations .wrapper_location_btn{
	display: table;
	width: 100%;
	border-bottom:1px solid #ccc;
}

#locations_list #show_locations .wrapper_location_btn .location_btn{
	display: table;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 30px;
	background-color: #bbb;
	font-size: 16px;
	text-align: left;
	cursor: pointer;
}

#locations_list #show_locations .wrapper_location_btn .location_btn:hover{
	background-color: #3a66af;
}

#locations_list #show_locations .wrapper_location_btn .location_btn .location_type_icon{
	display: table-cell;
	width: 10%;
	height: 30px;
	text-align: center;
	color: #fff;
	overflow: hidden;
	background-color: #bbb;
}

#locations_list #show_locations .wrapper_location_btn .location_btn .location_type_icon img{
	width: 20px;
	margin: 5px auto 0 auto;
}

#locations_list #show_locations .wrapper_location_btn .location_btn .location_name{
	display: table-cell;
	vertical-align: middle;
	width: 89%;
	padding-left:1%;
	height: 30px;
	text-align: left;
	color: #fff;
}

#locations_list #show_locations .wrapper_location_btn .location_arrow{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 30px;
	height: 30px;
	/*color: #3a66af;*/
	color: #fff;
	background-color: #bbb;
	font-weight: normal;
	font-family: 'FontAwesome';
	cursor: pointer;
}

#locations_list #show_locations .wrapper_location_btn .location_arrow:hover{
	background-color: #3a66af;
}

#locations_list #show_locations .utr_btn{
	padding: 0;
	margin: 0;
	width: 100%;
	height: 30px;
	display: none;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	cursor: pointer;
}

#locations_list #show_locations .utr_btn:hover{
	background-color:#ddd; 
}

#locations_list #show_locations .utr_btn .utr_icon{
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	width: 10%;
	height: 30px;
	background-color: #fff;
}

#locations_list #show_locations .utr_btn .utr_icon img{
	width: 20px;
	margin: 5px auto 0 auto;
}

#locations_list #show_locations .utr_btn .utr_data{
	display: table-cell;
	width: 89%;
	padding-left: 1%;
	vertical-align: middle;
	color: #888;
	text-align: left;
	height: 30px;
}

@media only screen and (max-width: 1023px){
	#locations_list{
		width: 100%;
		left: -100%;	
	}
	
	#locations_list #locations_list_title{
		position: relative;
		display: inline-block;
		float: left;
		width: 90%;
	}
	
	#locations_list #locations_list_close{
		position: relative;
		right: 0;
		float: right;
		width: 10%;
		height: 30px;
		display: inline-block;
		border-radius: 0;
		border-right: 1px solid #fff;
		border-top: 1px solid #fff;
		border-bottom: 1px solid #fff;
	}
	
	#locations_list #locations_list_open{
		display: block;
	}
}