/*body {*/
	/*padding: 0px;*/
	/*margin: 0px;*/
	/*overflow: hidden;*/
	/*min-width: 1100px;*/
/*}*/

.container_v {
        height: 100vh;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
}

.container_h {
        display: flex;
        flex-flow: row;
}

.page_header {
        min-height: 10px;
}

.page_body {
        flex: 2;
        /*overflow: auto;*/
}

.page_footer {
        min-height: 18px;
        color: white;
        font-size: 14px;
        line-height: 18px;
        text-align:  center;
	z-index: 1000;
}

.left_panel {
        min-width: 700px;
	width: 700px;
        display: flex;
        flex-flow: column;
}

.right_panel {
	min-width: 400px;
        flex: 2;
        /*overflow: auto;*/
        background-color: lightblue;
}

.window_header {
        display: flex;
        flex-flow: row;
}
.window_header_tab {
        flex: 1;
}

#vista_rapida {
	height: 100vh;
        display: flex;
        flex-flow: column;
	padding: 10px; 
	background-color: white;
}
#vista_rapida_header {
        border-bottom: solid 1px darkorange;
        background-color: #fefefe;
        padding: 5px;
}
#vista_rapida_content {
        overflow-y: scroll ;
	padding-top: 20px;
	padding-bottom: 200px;
}

#sim_container {
	height: 100vh;
	display: flex;
	flex-flow: column;
	padding: 10px;
	background-color: white;
}
#product_menu {
	position: relative;
	border-bottom: solid 1px darkorange;
	padding: 5px;
}
#product_content {
	overflow-y: scroll;
	padding-bottom: 200px;
}

#legend {
	position: absolute;
	top: 80px;
	right:30px;
	background-color: white;
	width: 170px;
	height: 260px;
	z-index: 99999;
	background-repeat: no-repeat;
	border-radius: 5px;
	padding: 5px;
	border: solid 1px dodgerblue;
}
#hide_map {
	position: absolute;
	right: 0px;
	top: 0px;
	width: 75px;
	height: 75px;
	z-index: 999999;
	margin: 5px;
	background-repeat: no-repeat;
}
#hide_map:hover {
	border: solid 1px cyan;
}
.map_visible {
	background-image: url('images/show_hide_map_150px.png');
	background-position: 0px 0px;
}
.map_hidden {
	background-image: url('images/show_hide_map_150px.png');
	background-position: -75px 0px;
}
