* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /*General Classes*/
  .hidden{
    display: none !important;
  }

  .no-shadow{
    box-shadow: none !important;
  }
  
  /*Buttons*/
  .custom-btn {
    color: white!important;
    box-shadow: 1px 2px 5px -1px rgba(0,0,0,.4);
    transition: all 0.5s ease!important;
    font-weight: 100 !important;
    font-size: 1.1rem !important;
  }

  .custom-btn:hover {
    transition: all 0.5s ease!important;
    color: white!important;
    opacity: .7!important;
  }

  body {
    font-size: 14px !important;
  }
  .container-fluid{
    padding-right: 2em !important;
    padding-left: 2em !important;
    padding-top: 2em !important;
    padding-bottom: 2em !important;
    margin-top: 40px !important;
  }

.navbar.navbar-expand{
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1000;
    padding:.8rem 1rem;
    box-shadow: 1px -2px 7px 1px rgba(0,0,0, .4)
}

.navbar-nav .nav-link{
    padding: 0 .7em !important;
    transition: all 0.5s ease;
    color: #818896;
    /*font-size: 1.15rem;*/
}
/*.navbar-nav .nav-link:hover{    
    transform: scale(1.1);
    transition: all 0.5s ease;
}*/

.title-page, .subtitle {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
}

.table-container{
  overflow-x: auto;
  margin:10px 0;
  border-radius: .25rem;
  box-shadow:1px 2px 5px -1px rgba(0,0,0,.4)

}

/*Box to upload files*/
.file-container {
  width: 100%;
  /*height: 210px;*/
  border: 2px dashed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.5s ease;
}

.file-container:hover {
  opacity: 1;
  transform: scale(.98);
  transition: all 0.5s ease;

}

.file-container h2 {
  font-size: 32px;
  font-weight: 300;
}

.file-container i {
  font-size: 45px;
}

/*INputs*/
.form-control, label{
  font-size: 1rem!important;
}
.form-control::placeholder {
  font-size: 1rem !important;
  /* color: white!important; */
  font-weight: lighter!important;
}

.form-control:focus {
  -webkit-box-shadow: inset 0 -1px 0 #ddd !important;
  box-shadow: inset 0 -1px 0 #ddd !important;
  -webkit-transition: -webkit-box-shadow 0.2s !important;
}

.form-control:focus::placeholder{
  opacity: .4!important;
}

/*Table*/
table tr:first-child th:first-child {
  border-top-left-radius: .25rem;
}
table tr:first-child th:last-child {
  border-top-right-radius: .25rem;
}

table tr:last-child td:first-child {
  border-bottom-left-radius: .25rem;
}

table tr:last-child td:last-child {
  border-bottom-right-radius: .25rem;
}

table thead th {
  border-bottom: none !important;
  border-top: none !important;
  color: white;
  font-weight: bold;
}

.table-header label {
  width: 100%;
}

tbody tr {
  font-weight: normal;
}

table{
  margin: 0 !important;
  font-size: .9rem;
  border-radius: 10px;;
}

table.dataTable.portadatatable{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

#tablaArchivos_filter{
  text-align: left !important;
  font-size: .9rem;
}
#tablaArchivos_filter input:focus{
  box-shadow: inset 0 -1px 0 #79797A !important
}

/*Action table buttons*/
.action-btn:hover i{
  transform: scale(1.1);
  transition: all 0.5s ease;
}
.action-btn{
  box-shadow: none !important;
  cursor: pointer;
  margin: 0 .35em;
}

.action-btn i {
  transition: all 0.5s ease;
}

