#h_menu {
	display: flex;
	min-width: 360px;
	height: 48px;
	flex-direction: row;
	position: absolute;
	vertical-align:bottom;
	bottom: -100px;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(0, 0, 0, 0.0);
	border-radius: 5px 0 0 5px;
	z-index: 9000;
	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	-o-user-select:none;
	user-select:none;
}

#h_holder {
	height: 48px;
	width: 28px;
	background: rgba(0,0,0,0.75);
	border-radius: 5px 0px 0px 5px;
	cursor: pointer;
	background-position: center; 
    background-repeat: no-repeat;
	background-image: url("../skin/icons/h_menu/down.svg");
    background-size: 100%;	
}
#h_holder_up {
	height: 48px;
	width: 30px;
	border-radius: 5px;
	cursor: pointer;
	position: absolute;
	vertical-align:bottom;
	bottom: -100px;
	left: 50%;
	transform: translate(-10%, -50%);
	background-color: rgba(0, 0, 0, 0.1);	
	background-position: center; 
    background-repeat: no-repeat;
	background-image: url("../skin/icons/h_menu/up.svg");
    background-size: 100%;	
	z-index: 9000;
}

#h_menu_buttons {
	width: auto;
	height: 48px;
	display: flex;
	flex-direction: row;
	position: absolute;
	left: 28px;
	top: 50%;
	transform: translate(0, -50%);
	background-color: rgba(0, 0, 0, 0.75);
	border-radius: 0 5px 5px 0 ;
	transition: right 0.4s ease-out;
	z-index: 9005;
}

.h_menu_btn_logo {
	width: 48px;
	height: 48px;
	background-repeat: no-repeat;
	background-size: 68%;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
	z-index: 9006;
}

.h_menu_btn {
	width: 48px;
	height: 48px;
	background-image: url('../skin/icons/h_menu/infra_white.svg');
	background-repeat: no-repeat;
	background-size: 55%;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
	z-index: 9006;
}


.h_menu_btn:hover {
	background-color: rgba(135, 133, 142, 0.7);
}

.h_submenu_buttons {
	width: 48px;
	height: auto;
	display: flex;
	flex-direction: column-reverse;
	justify-content: flex-start;
	position: absolute;
	right: 0px;
	bottom: 100%;
	background-color: rgba(0, 0, 0, 0.75);
	border-radius: 5px 5px 0px 0px;
	transition: right 0.3s ease-out;
}
.h_submenu_btn {
	width: 48px;
	height: 48px;
	background-image: url('../skin/icons/right_menu/close.svg');
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
}
.h_submenu_btn:hover {
	background-color: rgba(135, 133, 142, 0.7);
}
#h_holder:hover {
	background-color: rgba(135, 133, 142, 0.7);
}
#h_holder_up:hover {
	background-color: rgba(135, 133, 142, 0.7);
}

.h_submenu_btn_selected {
	width: 48px;
	height: 48px;
	background-color: rgba(238, 181, 68, 1);
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
}
.h_submenu_btn_selected_radius {
	width: 48px;
	height: 48px;
	background-color: rgba(238, 181, 68, 1);
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
	border-radius: 5px 5px 0px 0px;
}
