/* ====== BOTON GENERAL ====== */

.btn_panel{
	text-align: center;
	z-index: 125;
	background: #000;
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	padding: 11px 0 0 0;
	margin: 10px 16px 0px 0;
	cursor: pointer;
	display: inline-block;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.btn_panel i{
	font-size: 16px;
	line-height: 1;
}

.btn_panel:hover, .btn_panel:focus{
	background: #3f3f3f;
	text-decoration: none !important;
}

@media (max-width: 767px) {
	.btn_panel{
		background: #1b1b1b;
	}
}

@media (max-width: 991px) {
	.btn_panel:hover, .btn_panel:focus{
		background: #000 !important;
	}	
}

/* ====== PANEL GENERAL ====== */

.panel_adminfront {
    height: 100%; /* 100% Full-height */
    width: 320px; /* 0 width - change this with JavaScript */
    padding: 30px;
    position: fixed; /* Stay in place */
    z-index: 130; /* Stay on top */
    top: 0;
    right: -350px;
    background-color: #fff; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
	-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:    0 3px 9px rgba(0, 0, 0, 0.5);
	box-shadow: 		0 3px 9px rgba(0, 0, 0, 0.5);
}

/* Position and style the close button (top right corner) */
.panel_adminfront .closebtn {
    position: absolute;
    top: 35px;
    right: 15px;
    font-size: 28px;
    margin-left: 50px;
}

.panel_adminfront h3{
	margin-bottom: 30px;
}

.panel_adminfront .mod{
	padding-bottom: 10px;
	margin-bottom: 15px;
	border-bottom: 1px solid #dfdfdf;
}

.panel_adminfront .mod h5{
	margin: 0 0 7px 0;
	font-weight: 600;
	font-size: 14px;
}

.panel_adminfront .mod h5 span{
	font-weight: 400;
}

.panel_adminfront a{
	color:#a0a0a0;
	display: inline-block;
	padding: 0px 0px 0px 0px;
	margin: 0px 5px 5px 0;
	font-size: 14px;
	line-height:18px;
	text-decoration: none !important;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;	
	transition: all 0.3s ease-in-out;
}

.panel_adminfront a:hover, .panel_adminfront a:focus{
	color: #000;
	text-decoration: none !important;
}

.panel_adminfront .mod .logout, .panel_adminfront .mod .gotoadmin{
	color: #000;
}

.panel_adminfront .mod .gotoadmin:hover, .panel_adminfront .mod .gotoadmin:focus{
	color: #a0a0a0;
	text-decoration: none !important;
}

.panel_adminfront .mod .gotoadmin i, .panel_adminfront .mod .gotoadmin:hover i, .panel_adminfront .mod .gotoadmin:focus i{
	color: #000;
	text-decoration: none !important;
}

.panel_adminfront .mod .logout i{
	color: #d80000;
}

.panel_adminfront .mod .logout:hover{
	color: #d80000;
}

@media (max-width: 991px) {
	.panel_adminfront a:hover, .panel_adminfront a:focus{
		color: #a0a0a0 !important;
		text-decoration: none !important;
	}
	.panel_adminfront .mod .gotoadmin:hover, .panel_adminfront .mod .gotoadmin:focus{
		color: #000 !important;
	}
	.panel_adminfront .mod .logout:hover{
		color: #000 !important;
	}
}


/* ====== BOTONES DE EDICION RAPIDA ====== */
.admin_quick_edit{
	position:absolute;
	right:0px;
	top:0px;
	z-index: 127;
}

.admin_quick_edit_menu{
	top:-20px;
	right:250px;
}

@media (max-width: 991px) {
	.admin_quick_edit_menu{
		top:0px;
		right:30px;
	}	
}

.left{
	left: 0px;
	right: auto;
}

.admin_quick_edit .toggle_btn{
	position:absolute;
	right:15px;
	top:15px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background:#fff;
	padding:7px 0 0 0;
	font-size:16px;
	line-height: 16px;
	color: #000;
	text-align: center;
	cursor: pointer;
	z-index: 129;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.7);
	-moz-box-shadow:    0px 0px 3px 0px rgba(0, 0, 0, 0.7);
	box-shadow:         0px 0px 3px 0px rgba(0, 0, 0, 0.7);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.left .toggle_btn{
	right:auto;
	top:0px;
}

.admin_quick_edit .toggle_btn:hover, .admin_quick_edit .toggle_btn:focus{
	background: #000000;
	color: #fff;
	text-decoration: none !important;
}

.quick_edit_panel{
	display: none;
	background:#fff;
	font-size:16px;
	line-height: 21px;
	color:#333 !important;
	z-index: 128;
	margin: 28px 30px 0 0;
	white-space: nowrap;
	-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:    0 3px 9px rgba(0, 0, 0, 0.5);
	box-shadow: 		0 3px 9px rgba(0, 0, 0, 0.5);
}

.quick_edit_panel a{
	text-align: left;
	font-size:13px;
	line-height: 13px;
	font-weight: 400;
	color: #333333 !important;
	display: block;
	padding: 10px 20px 10px 10px;
	text-decoration: none;
	border-bottom: 1px solid #dddddd;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;	
	transition: all 0.3s ease-in-out;
}

.quick_edit_panel a:last-child{
	border-bottom: 0px;
}

.quick_edit_panel a:hover, .quick_edit_panel a:focus{
	color: #fff !important;
	background: #000000;
	text-decoration: none !important;
}

.cerrar_sesion{
	text-align:left;
	color:#f00;
	font-size:10px;
	margin-bottom:-5px;
	margin-top:5px;
}
.cerrar_sesion a{
	color:#f00;
	background: #fff;
}
.cerrar_sesion a:hover, .cerrar_sesion a:focus{
	color:#f00;
	background: #fcdbe3;
	text-decoration: none !important;
}

.admin_titulos{
	padding:5px 0 0 0;
	margin:5px 0 0 0;
	border-top:1px solid #ccc;
	color:#333;
}

@media (max-width: 991px) {
	.admin_quick_edit .toggle_btn:hover, .admin_quick_edit .toggle_btn:focus{
		background: #fff;
		color: #000;
	}
	.quick_edit_panel a:hover, .quick_edit_panel a:focus{
		color: #333333;
		background: #ffffff;
	}
	.cerrar_sesion a:hover, .cerrar_sesion a:focus{
		color:#f00;
		background: #ffffff;
	}
}

/*-----fondo oscuro------*/

#bck_black{
	position: fixed;
	background-color: rgba(0, 0, 0, 0.6) !important;
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
	z-index: 120;
	display: none;
}

#bck_black span{
	display: block;
	position: absolute;
	top: 10px;
	right:15px;
	font:bold 25px Verdana, Geneva, sans-serif;
	color: #f00;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
	cursor: pointer;
}

#bck_black span:hover{
	color: #ffbac2;
}
