/*================================================================================
	Archivo: CUSTOM CSS APP CONSULTORIO
	Version: 1.0
	Autores: JORGE VERDUGO / VICTOR SANCHEZ / DIEGO VERDUGO
================================================================================

/* CSS: Estilos para Content wrapper */
.animate__animated.animate__fadeIn {
	--animate-duration: 2.0s;
}
/* CSS: Estilos para pagina de inicio */
.lead.shadow-text {
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
/* CSS: Estilos para navbar */
.nav-item.border-left {
	border-left: 2px solid #2b2b2b !important;
}
.nav-link a:hover {
	text-decoration: none;
	color: #2b2b2b;
}
/* CSS: estilos para el breadcrumb */
.breadcrumb-item a {
	text-decoration: none;
	color: inherit;
}
.breadcrumb-item a:hover {
	text-decoration: none;
	color: inherit;
}
/* CSS: estilos para el botón de regresar arriba */
#myBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	border: none;
	outline: none;
	background-color: black;
	color: white;
	cursor: pointer;
	padding: 15px;
	border-radius: 50%;
	font-size: 18px;
	width: 50px;
	height: 50px;
	line-height: 20px;
	opacity: 0; 
	transition: opacity 1s; 
}

#myBtn:hover {
	background-color: #555; 
}

#myBtn.show {
	display: block;
	opacity: 1; 
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
	color: black !important;
	border-color: black !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: black !important;
    color: white !important;
}

