@charset "utf-8";

#canvas-overlay {
	display: block;
	width: 0%; 
	height: 100%; 
	position: fixed; 
	overflow: hidden; 
	z-index: 10000;
	background: rgba(0, 0, 0);
	opacity: 0;
	transition: opacity .5s;
}

#canvas-overlay.mostrar {
	opacity: 0.8;
	width: 100%;
	transition: opacity .5s;
}

.drawer-container {
	height: 100%;
	width: 0; /*vamos setar isso pelo javascript*/
	position: fixed;/*para ter sempre a mesma posição*/
	z-index: 20000;/*para ficar na frente dos outros elementos*/
	top: 0;
	left: 0;
	background-color: #FFF;
	overflow-x: hidden; /* para não escrolar horizontalmente*/
	padding: 20px 0 0 0; /*espaçamento interno no top*/
	transition: 0.5s; /* para o sidnav ter a animação de deslizar*/
	-webkit-box-shadow: 5px 3px 26px -5px rgba(0,0,0,0.56);
	-moz-box-shadow: 5px 3px 26px -5px rgba(0,0,0,0.56);
	box-shadow: 5px 3px 26px -5px rgba(0,0,0,0.56);
}

.image-box{
	border-bottom: 1px solid #DFDFDF;
	display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.image-box img {
	margin-bottom: 25px;
}

.all-views {
	border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}

.all-views p{
	white-space: nowrap;/*para que o texto não mude tamanho enquanto a sidnav abre*/
}

.list-without-marker {
	list-style: none;
	padding: 0;
}

.select-other-vision {
	position: sticky;
	left: 0;
}


.close-drawer-icon {
	position: absolute;
	top: 62px;
	right: 20px;
	font-size: 32px;
	font-weight: bold;
	color: #909090;
}

.close-drawer-icon:hover {
	color: #c16349;
	cursor: pointer;
}

.current-view {
	white-space: nowrap;
	padding: 0 0 20px 25px;
	border-bottom: 1px solid rgba(204, 204, 204, 0.5);
	transition: 0.5s;
}

#btn-change-vision{
	float: right;
	margin-right: 10px;
}

.menu-box{
	display: block;
}

.menu-box:hover{
	border-bottom: 1px solid #40BEFF;
	/*border-bottom: 1px solid red;*/
}

.submenu-box{
	display: none;
}

.submenu-box a {
	display: block;
}
  
.menu-box:hover .submenu-box {
	display: block;
}

.screen-name {
	padding: 10px 10px 10px 20px;
	white-space: nowrap;
	color: #3E3E3E;
	font-family: Roboto;
}

.screen-name:hover{
	background: #ECF9FF;
}