.pointer_blue:hover {
	color: blue;
	cursor: pointer;
}

.pointer {
	cursor: pointer;
}

.estructura {
	display: grid;
	grid-template-columns: 100%;
	align-items: center;
}

.w-95 {
	width:95%;
}

/* ---------------------------------------------------
    LOGIN STYLE
----------------------------------------------------- */

.login-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 15px;
   /* background-color: #f1f1f1;*/
    min-height: 100vh;
    background: linear-gradient(rgba(255,255,255,.95), rgba(255,255,255,.95)), url(img/fons_notes.jpg) no-repeat center;
    background-size: contain;
}

.login-container {
    width: 390px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 55px 45px 55px 45px;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.login-container img {
    width: 100%;
    margin-bottom: 50px;
}

.login-container form input {
    display: block;
    width: 100%;
    margin: auto;
    border: 1px solid #d0cfcf;
    border-radius: 5px;
    padding: 6px;
    margin-bottom: 25px;
}

.login-container form label {
    font-size: 16px;
    margin-bottom: 5px;
    text-align: center;
    display: block;
    font-weight: 600;
}

.login-container form button {
    width: 100%;
    border: none;
    border-radius: 5px;
    padding: 8px;
    background: #2b90d9;
    color: #fff;
    font-weight: 600;
    margin-top: 15px;
}

.login-container form button:hover {
    background: #175582;
}


.w3-table td, .w3-table th {
	padding: 5px !important;
}

.subtaula-notes {
	border-collapse: initial !important;
}

#nav_sp a {
	width: 25%;
	height: 56px;
}
#nav_pc a {
	width: 25%;
	height: 45px;
}

/**
MEDIA QUERIES
**/

@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
}

@media (max-width: 700px) {
	#nav_pc {
		display: none;
	}
	#nav_sp {
		display: block;
	}
	#cuerpo {
		margin-top: 56px;
	}
}
@media (min-width: 700px) {
	#nav_pc {
		display: block;
	}
	#nav_sp {
		display: none;
	}
	#cuerpo {
		margin-top: 45px;
	}
}