/*========= Importando hojas de estilo =========*/
@import url('./bootstrap.css');
/* Material desing for Bootstrap */
@import url('./bootstrap-material-design.min.css');
/* @import url('./ripples.min.css'); */
/* Sweet Alert 2 */
@import url('./sweetalert2.min.css');
/* Malihu jQuery custom content scroller 3.1.5 */
@import url('./jquery.mCustomScrollbar.css');
/* Material Design Iconic Font 2.2.0 */
@import url('./material-design-iconic-font.min.css');
/*============ Fonts */
@import url('https://fonts.googleapis.com/css?family=Rubik&display=swap');
/*============ Estilos generales*/
body, html{
	background-color: #fff;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	/* position: relative; */
	font-size: 16px;
	font-family: 'Rubik', sans-serif;
	overflow: hidden;
}
.full-box{
	margin: 0;
	padding: 0;
	width: 100%;
	box-sizing: border-box;
}
.cover{
	background: 50% 50% no-repeat;
	background-size: cover;
}
.text-titles{
	font-family: 'Rubik', sans-serif;
}
/*============ LogIn*/
.logInForm{
	position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 300px;
    padding: 15px;
    border-radius: 5px;
    -webkit-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19) !important;
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19) !important;
    background-color: rgba(0, 0, 0, .7);
}
.logInForm p,
.logInForm label{
	color: #FFF;
}
.logInForm .form-control {
    color: #ffffff;
}
.form-control {
    display: inline-flex;
}
/*============ Partes del dashboard*/
.dashboard-sideBar,
.dashboard-contentPage{
	position: absolute;
	top: 0;
	height: 100%;
	transition: all .3s ease-in-out;
	overflow-y: scroll;
}
/*sideBar*/
.dashboard-sideBar,
.dashboard-sideBar-ct{
	width: 270px;
}
.dashboard-sideBar{
	left: 0;
	z-index: 2;
	background: linear-gradient(to right,rgba(25, 90, 154, 0.7490196078431373), rgba(52, 156, 117, 0.71)),url('../assets/img/iconos.png');
	   background-position: center center;
	border-right: 1px solid rgba(255, 255, 255, .4);
	overflow: hidden;
	background-size: contain;
    background-repeat: repeat-y;


    background-color: rgba(144, 152, 176,0.8);
    color: #fff;
    transition: all 0.3s;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.dashboard-sideBar-ct{
	position: relative;
	height: 100%;
	/*background-color: rgba(0, 0, 0, .77);*/
	padding: 0 10px;
	padding-bottom: 30px;	
}
.dashboard-sideBar-title,
.dashboard-sideBar-title > i{
	height: 50px;
	line-height: 50px;
	color: #fff;
	font-size: 20px;
}
.dashboard-sideBar-title{
	position: relative;
}
.dashboard-sideBar-title > i{
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	width: 40px;
}
.dashboard-sideBar-UserInfo{
	border-top: 1px solid rgba(255, 255, 255, .3);
	border-bottom: 1px solid rgba(255, 255, 255, .3);
	color: #fff;
	font-size: 14px;
	padding: 20px 0;
}
.dashboard-sideBar-UserInfo figure img{
	width: 112px;
    height: 109px;
	border-radius: 100%;
	display: block;
	margin: 0 auto;
}
.dashboard-sideBar-UserInfo ul{
	margin-top: 15px;
}
.dashboard-sideBar-UserInfo ul > li,
.dashboard-sideBar-UserInfo ul > li > a{
	display: inline-block;
	color: #fff;
}




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

}

.dashboard-sideBar-UserInfo ul > li > a{
	outline: none;
	font-size: 20px;
	padding: 7px;
	transition: all .3s ease-in-out;
}
.dashboard-sideBar-UserInfo ul > li > a:hover{
	color: #FF5722;
}
.dashboard-sideBar-Menu{
	padding-top: 15px;
}
.dashboard-sideBar-Menu > li,
.dashboard-sideBar-Menu > li > a,
.dashboard-sideBar-Menu > li > ul > li,
.dashboard-sideBar-Menu > li > ul > li > a{
	line-height: 50px;
	font-family: 'Rubik', sans-serif;
	display: block;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	transition: all .3s ease-in-out;
	position: relative;

    background-size: 200% auto;
}
.dashboard-sideBar-Menu > li > a > i.zmdi-caret-down{
	line-height: 50px;
	transition: all .3s ease-in-out; 
}
.dashboard-sideBar-Menu > li > a{
    padding:0 10px;
    font-size: 1em;
    display: block;
    background-size: 200% auto;
    /* border-radius:5px; */
    color: #ffffff;
}

.dashboard-sideBar-Menu ul li.active>a, a[aria-expanded="true"] {
    color: #fff;
    /* background-color: rgba(55, 71, 79,0.5); */
    background-image: linear-gradient(to right, rgba(93,191,155,0.7) 20%, rgba(121,172,210,0.7) 60%, rgba(82,129,165,0.7) 80%);
}



.dashboard-sideBar-Menu > li > a:hover{
	/*background-color: rgba(255, 255, 255, .1);*/
	    color: #fff;
   background-image: linear-gradient(to right, rgba(93,191,155,0.7) 20%, rgba(121,172,210,0.7) 60%, rgba(82,129,165,0.7) 80%);
    background-position: right center; 
  transition: 0.4s;
    box-shadow: 0 2px 5px 0.015px rgba(55, 71, 64, 0.16), 0 2px 10px 0.015px rgba(55, 71, 64, .25) !important; 
   -webkit-box-shadow: 0 2px 5px 0.015px rgba(55, 71, 64, 0.16), 0 2px 10px 0.015px rgba(55, 71, 64, .25) !important; 
}
.dashboard-sideBar-Menu > li > ul{
	position: relative;
	/*padding-top: 7px;*/
	height: 0;
	overflow: hidden;
}
.show-sideBar-SubMenu{
	height: auto !important;
	overflow: auto !important;
}
.dashboard-sideBar-Menu > li > ul > li,
.dashboard-sideBar-Menu > li > ul > li > a{
	height: 40px;
	line-height: 40px;
	border-radius: 0;
}
.dashboard-sideBar-Menu > li > ul > li{
	padding-left: 27px;
}
.dashboard-sideBar-Menu > li > ul > li > a{
	border-left: 3px solid transparent;
	outline: none;
}
.dashboard-sideBar-Menu > li > ul > li > a:hover{
	border-left: 3px solid #FF5722;
	color: #FF5722;
}
/*contentPage*/
.dashboard-contentPage{
	right: 0;
	z-index: 1;
	padding-left: 270px;
}
.dashboard-Navbar,
.dashboard-Navbar > ul,
.dashboard-Navbar > ul >li,
.dashboard-Navbar > ul > li > a{
	height: 50px;
	line-height: 50px;
}
.dashboard-Navbar > ul > li > a{
	outline: none;
}
.dashboard-Navbar{
	/*background-color: #000;*/
	background: -webkit-linear-gradient(left, rgba(25, 90, 154, 0.7490196078431373), rgba(52, 156, 117, 0.71));
	background: -o-linear-gradient(left, rgba(25, 90, 154, 0.7490196078431373), rgba(52, 156, 117, 0.71));
	background: linear-gradient(to right, rgba(25, 90, 154, 0.7490196078431373), rgba(52, 156, 117, 0.71));
	overflow: hidden;
}
.dashboard-Navbar > ul >li,
.dashboard-Navbar > ul > li > a{
	display: inline-block;
	width: 50px;
	text-align: center;
	color: #fff;
	margin: 0;
	padding: 0;
	font-size: 20px;
	transition: all .3s ease-in-out;
	position: relative;
}
.dashboard-Navbar > ul > li > a:hover{
	background-color: rgba(255, 255, 255, .1);
	color: #FF5722;
}
.dashboard-Navbar > ul > li > a > span.badge{
	position: absolute;
	top: 7px;
	right: 6px;
	background-color: #FF5722;
	transition: all .3s ease-in-out;
}
.dashboard-Navbar > ul > li > a:hover span.badge{
	background-color: #FFF;
	color: #333;
}

/* administracion de usuarios*/
.card-header {
    color: #6b6b6b;
    border-bottom: 1px solid rgba(111, 111, 111, .13);
	padding: 0.5rem 1rem;
	margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
}
.modal-header {
	padding: 10px!important;
    border-radius: 0;
	background: -webkit-linear-gradient(left, rgb(0, 128, 174), rgb(9, 64, 104));
    background: -o-linear-gradient(left, rgb(0, 128, 174), rgb(9, 64, 104));
    background: linear-gradient(to right, rgb(0, 128, 174), rgb(9, 64, 104));
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}
.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 1px 0 #fff;
	opacity: .5;
	color: #fff;
}
.close:focus, .close:hover {
    color: #ffffff;
}
.form-group {
    padding-bottom: 1rem;
    margin: 0;
}
.modal-footer {
	padding: 10px!important;
    border-radius: 0;
    background-color: #f3f3f3;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: .3rem;
    border-bottom-left-radius: .3rem;
}

/*pestaña de registros*/
	.badge-danger {
		color: #fff;
		background-color: #dc3545;
	}
	
	.badge-danger[href]:hover, .badge-danger[href]:focus {
		color: #fff;
		text-decoration: none;
		background-color: #bd2130;
	}

	.badge-success {
		color: #fff;
		background-color: #28a745;
	}
	
	.badge-success[href]:hover, .badge-success[href]:focus {
		color: #fff;
		text-decoration: none;
		background-color: #1e7e34;
	}

	/*============ Area de notificaciones*/
	.Notifications-area{
		height: 100%;
		position: fixed;
		z-index: 99;
		transition: all .3s ease-in-out;
		overflow: hidden;
		opacity: 0;
		pointer-events: none;
	}
	.Notifications-bg,
	.Notifications-body{
		height: 100%;
		position: absolute;
		top: 0;
		right: 0;
	}
	.Notifications-bg{
		z-index: 1;
		background-color: rgba(0, 0, 0, .7);
	}
	.Notifications-body{
		z-index: 2;
		background-color: #FFF;
		width: 100%;
		max-width: 300px;
		transform: translateX(300px);
		transition: all .3s ease-in-out;
	}
	.Notifications-body-title,
	.Notifications-body-title > i{
		height: 50px;
		line-height: 50px;
		font-size: 20px;
	}
	.Notifications-body-title{
		background-color: #FF5722;
		color: #fff;
		position: relative;
	}
	.Notifications-body-title > i{
		position: absolute;
		top: 0;
		left: 0;
		cursor: pointer;
		width: 50px;
	}
	.show-Notification-area{
		opacity: 1 !important;
		pointer-events: auto !important;
	}
	.show-Notification-area > .Notifications-body{
		transform: translateX(0) !important;
	}
/*============ Estilos home*/
.tile{
	max-width: 300px;
	height: 180px;
	background-color: #fff;
	color: rgba(43, 174, 168, 1);
	position: relative;
	display: inline-block;
	box-shadow: 0 1px 7px rgba(0, 0, 0, .2);
	overflow: hidden;
	cursor: pointer;
	margin: 10px;
}
.tile:hover > .tile-icon > i,
.tile:hover > .tile-number{
	color: rgba(43, 174, 168, 1);
}
.tile-title,
.tile-icon,
.tile-number{
	position: absolute;
}
.tile-title{
	height: 40px;
	line-height: 40px;
	font-size: 20px;
	background-color: rgb(43, 174, 168);
	color: #fff;
	top: 0;
	left: 0;
}
.tile-icon,
.tile-number{
	bottom: 0;
	height: 140px;
	width: 150px;
}
.tile-icon{
	left: 0;
}
.tile-icon > i{
	line-height: 140px;
	font-size: 117px;
}
.tile-icon > i,
.tile-number{
	color: rgba(43, 174, 168, .4);
	transition: all .3s ease-in-out;
}
.tile-number{
	right: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
.tile-number > p{
	font-size: 40px;
}
.tile-number > small{
	font-size: 17px;
}

.file-path-wrapper .file-path  {
	box-sizing: border-box;
	max-width:100%;
	}
.form-group div.btn_archivo{background-color:#5dbf9b;color: #ffffff}
.form-group div.btn_archivo:hover{background-color:#5dbf9b!important;color: #ffffff}
.boton-file  input {
	cursor: pointer;
	height: 100%;
	right: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	z-index: 4;
}
/*TimeLine*/
.cd-container {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.cd-container::after {
  content: '';
  display: table;
  clear: both;
}
#cd-timeline {
  position: relative;
  padding: 2em 0;
  margin-top: 2em;
  margin-bottom: 2em;
}
#cd-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 4px;
  background: #d7e4ed;
}
.cd-timeline-block {
  position: relative;
  margin: 2em 0;
}
.cd-timeline-block::after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-block:first-child {
  margin-top: 0;
}
.cd-timeline-block:last-child {
  margin-bottom: 0;
}
.cd-timeline-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0,0,0,.09);
}
.cd-timeline-img img {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 50%;
}
.cd-timeline-content {
  position: relative;
  margin-left: 60px;
  border-radius: 0.25em;
  padding: 1em;
  background-color: #01579B;
  color: #fff;
}
.cd-timeline-content::after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-content .cd-date {
  display: inline-block;
}
.cd-timeline-content p {
  margin: 1em 0;
  line-height: 1.6;
}
.cd-timeline-content .cd-date {
  float: left;
  padding: .8em 0;
}
.cd-timeline-content::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid #01579B;
}
@media (min-width: 1200px) {
    #cd-timeline {
        margin-top: 3em;
        margin-bottom: 3em;
    }
    #cd-timeline::before {
        left: 50%;
        margin-left: -2px;
    }
    .cd-timeline-block {
        margin: 4em 0;
    }
    .cd-timeline-block:first-child {
        margin-top: 0;
    }
    .cd-timeline-block:last-child {
        margin-bottom: 0;
    }
    .cd-timeline-img {
        width: 60px;
        height: 60px;
        left: 50%;
        margin-left: -30px;
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;
    }
    .cd-timeline-img img{
        width: 60px;
        height: 60px;
    }
    .cd-timeline-content .cd-date {
        color: #01579B;
    }
    .cd-timeline-content {
        margin-left: 0;
        width: 45%;
    }
  .cd-timeline-content::before {
    top: 24px;
    left: 100%;
    border-color: transparent;
    border-left-color: #01579B;
  }
  .cd-timeline-content .cd-date {
    position: absolute;
    width: 100%;
    left: 122%;
    top: 6px;
    font-size: 16px;
    font-size: 1rem;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: #01579B;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
    left: auto;
    right: 122%;
    text-align: right;
  }
}

/*======= MEDIA QUERIES*/
@media (max-width: 767px){
	.dashboard-sideBar{
		width: 100%;
		z-index: 99;
		background-image: none;
		background-color: transparent;
		border-right: none;
		opacity: 0;
		pointer-events: none;
		overflow: hidden;
	}
	.dashboard-sideBar-ct,
	.dashboard-sideBar-bg{
		position: absolute;
		top: 0;
		left: 0;
	}
	.dashboard-sideBar-ct{
	background: -webkit-linear-gradient(left, rgba(25, 90, 154, 0.7490196078431373), rgba(52, 156, 117, 0.71));
	background: -o-linear-gradient(left, rgba(25, 90, 154, 0.7490196078431373), rgba(52, 156, 117, 0.71));
	background: linear-gradient(to right, rgba(25, 90, 154, 0.7490196078431373), rgba(52, 156, 117, 0.71));
		border-right: 1px solid rgba(255, 255, 255, .3);
		z-index: 3;
		max-width: 270px;
		width: 100%;
		transition: all .3s ease-in-out;
		transform: translateX(-270px);
	}
	.dashboard-sideBar-bg{
		height: 100%;
		background-color: rgba(0, 0, 0, .6);
		z-index: 2;
	}
	.dashboard-contentPage{
		padding-left: 0;
	}
	.show-sidebar{
		pointer-events: auto !important;
		opacity: 1 !important;
	}
	.show-sidebar > .dashboard-sideBar-ct{
		transform: translateX(0) !important;
	}
}
@media (min-width: 768px) and (max-width: 991px){
	.hide-sidebar{
		pointer-events: none;
		opacity: 0;
		border-right: none;
		transform: translateX(-270px);
	}
	.no-paddin-left{
		padding-left: 0;
	}
}
@media (min-width: 992px) and (max-width: 1199px){
	.hide-sidebar{
		pointer-events: none;
		opacity: 0;
		border-right: none;
		transform: translateX(-270px);
	}
	.no-paddin-left{
		padding-left: 0;
	}
}
@media (min-width: 1200px){
	.hide-sidebar{
		pointer-events: none;
		opacity: 0;
		border-right: none;
		transform: translateX(-270px);
	}
	.no-paddin-left{
		padding-left: 0;
	}
}