.navbar {
   /* padding: 15px 10px;
    background: #142458;*/
    border: none;
    border-radius: 0;
    /*margin-bottom: 40px;*/
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
    /*width: 250px;*/
	width: 80%;
    position: fixed;
    top: 0;
    /*left: -250px;*/
	left: -80%;

	
    height: 100vh;
    z-index: 999;
	
	/*background-color: rgba(39, 166, 245, 0.8);  /*<========= CAMBIAR  */ 
	background-color:#007665;

    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
    left: 0;
}

/**********************FLECHA CERRAR***********************/
#dismiss {
   
    text-align: center;
	font-size:36px;
    background:none; /*<========= CAMBIAR  */
	color: #7FBA27; /*<========= CAMBIAR  */
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#dismiss:hover {
    background: #fff; /*<========= CAMBIAR  */
    color: #007665; /*<========= CAMBIAR  */
}

/**********************FIN FlECHA CERRAR***********************/




.overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    display: none;
}

/********************************TITULO DEL MENU*****/
#sidebar .sidebar-header {
    padding: 20px;
	background-color:#fff;
	/*background-image:url(https://www.congresosochifit2024.cl/img/fondo_menu_lateral.jpg); <========= CAMBIAR  */
    
}

/********************************FIN TITULO DEL MENU*****/



#sidebar ul li a {
	
	
    padding:5px;
	color:#fff; /*<========= CAMBIAR  */
    /*font-size: 0.9em;
	font-size: 14px;*/
    display: block;
	text-decoration:none;
}
#sidebar ul li a:hover {
    color:#FFF; /*<========= CAMBIAR  */
    background: #7FBA27; /*<========= CAMBIAR  */
	text-decoration:none;
}

/************TITULO CATEGORIA PRINCIPAL*********/
#sidebar ul li.active > a, a[aria-expanded="true"] {
   /* color: #000028; <========= CAMBIAR  */
    background:#7FBA27; /*<========= CAMBIAR     ESTE ES CUANDA LA CATEGORIA ESTA ACTIVA OSEA CLIC SOBRE LA CATEGORIA  */
	
	text-decoration:none;
	
	
	border-width: 1px;
  border-style: solid;
  border-color: #007665;
}



a[data-toggle="collapse"] {
    position: relative;
}

a[aria-expanded="false"]::before, a[aria-expanded="true"]::before {
    content: '\e259';
    display: block;
    position: absolute;
    right: 10px;
	/*font-size:16px;*/
	
	font-family: 'Glyphicons Halflings';

	
    font-size: 0.9em;
	
	
}
a[aria-expanded="true"]::before {
    content: '\e260';
	
	
	
}

/*********************************SUB MENU********/
ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    /*background: #FFF; <========= CAMBIAR  */
}