/* Google Font Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Poppins" , sans-serif;
}

:root{
  --blanco: #ffffff;
  --azul_primario: #11101D ;
  --azul_secundario: #1d1b31;
  --morado_3: #fafafd; 
  --morado_claro: #ebeefd; 
  --morado: #8d7897; 
  --turquesa: #26a69a;
  --rojo_claro: #EC5F5F;
  --rojo_oscuro: #b45050;
}

body {
  background-color: var(--morado_claro);
}

.container {
  border-radius: 6px;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 78px;
  background: #11101D;
  padding: 6px 14px;
  /* z-index: 99; */
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 5;
}

.sidebar.open {
  width: 250px;
}

.sidebar .logo-details {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.sidebar .logo-details .icon {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sidebar .logo-details .logo_name {
  color: #fff;
  font-size: 1.17rem;
  font-weight: 600;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name {
  opacity: 1;
}

.sidebar .logo-details #btn {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 22px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sidebar.open .logo-details #btn {
  text-align: right;
}

.sidebar i {
  color: #fff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}

.sidebar .nav-list {
  margin-top: 20px;
  height: 100%;
  padding-left: 0;
}

.sidebar li {
  position: relative;
  margin: 8px 0;
  list-style: none;
}

.sidebar li .tooltip {
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  -webkit-transition: 0s;
  transition: 0s;
}

.sidebar li:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sidebar.open li .tooltip {
  display: none;
}

.sidebar input {
  font-size: 15px;
  color: #FFF;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 100%;
  width: 50px;
  border: none;
  border-radius: 12px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #1d1b31;
}

.sidebar.open input {
  padding: 0 20px 0 50px;
  width: 100%;
}

.sidebar .bx-search {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 22px;
  background: #1d1b31;
  color: #FFF;
}

.sidebar.open .bx-search:hover {
  background: #1d1b31;
  color: #FFF;
}

.sidebar .bx-search:hover {
  background: #FFF;
  color: #11101d;
}

.sidebar .bx-log-out {
  font-size: 14px;
  color: #11101d;
}

.sidebar li .sidebarButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #11101D;
}

.sidebar.open li .sidebarButton:hover {
  background: #FFF;
}

.sidebar.open li .sidebarButton i:hover {
  background: transparent;
}

.sidebar li i:hover {
  background: #FFF;
}

.sidebar li a .links_name {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.sidebar.open li a .links_name {
  opacity: 1;
  pointer-events: auto;
}

.sidebar li a:hover .links_name,
.sidebar li a:hover i {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #11101D;
}

.sidebar li i {
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  border-radius: 12px;
  margin: 0.7rem 0;
}

.sidebar li.profile {
  position: fixed;
  height: 60px;
  width: 78px;
  left: 0;
  bottom: -8px;
  padding: 10px 14px;
  background: #1d1b31;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
  align-items: center;
}

.sidebar.open li.profile {
  width: 250px;
}

.sidebar li .profile-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.sidebar li img {
  height: 45px;
  width: 45px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
}

.sidebar li.profile .name,
.sidebar li.profile .job {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}

.sidebar li.profile .job {
  font-size: 12px;
}

.sidebar .profile #log_out {
  position: absolute;
  top: 30%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #1d1b31;
  align-self: center;
  width: 100%;
  height: 50px;
  line-height: 60px;
  border-radius: 0px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #fff;
  font-size: 20px;
}

.sidebar.open .profile #log_out {
  /* position: absolute;
  right: 0;
  background: #1d1b31;
  align-items: flex-end;
  width: 100%;
  line-height: 60px;
  border-radius: 0px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease; */
  /* text-align: end; */
  height: 60px;
  top: 35%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15%;
  margin-right: .3rem;
}

.sidebar .profile #log_out:hover,
.sidebar.open .profile #log_out:hover {
  background: #fff;
  border-radius: 15%;
  color: var(--azul_secundario);
}

.home-section {
  position: relative;
  background: #E4E9F7;
  min-height: 100vh;
  top: 0;
  left: 78px;
  width: calc(100% - 78px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 2;
}

.sidebar.open ~ .home-section {
  left: 250px;
  width: calc(100% - 250px);
}

.home-section .text {
  display: inline-block;
  color: #11101d;
  font-size: 25px;
  font-weight: 500;
  margin: 18px;
}

@media (max-width: 420px) {
  .sidebar li .tooltip {
    display: none;
  }
}
/*# sourceMappingURL=main.css.map */

.format-btn {
  background-color: var(--turquesa) !important;
  color: var(--blanco) !important;
}

.format-btn:hover {
  background-color: #348880 !important;
}

.format-table .format-btn {
  font-size: large;
  padding: 0.1rem 0.3rem;
  background-color: transparent !important;
}

.btn-icon {
  font-size: x-large !important;
  padding: 0.1rem 0.3rem;
  background-color: transparent !important;
  border: none;
}

.btn-icon-white {
  font-size: large !important;
  padding: 0.1rem 0.3rem;
  background-color: transparent !important;
  border: none;
  color: var(--blanco);
}

.format-table,
.dataTable {
  color: var(--blanco) !important;
  background-color: var(--azul_secundario) !important;
}

.format-table thead th,
.format-table .dataTable thead th {
  background-color: var(--azul_primario) !important;
  text-align: center !important;
  padding: 0.2rem 0.6rem !important;
  font-weight: bold !important;
} 

.format-table td, 
.format-table th,
.format-table .dataTable td,
.format-table .dataTable th {
  text-align: center !important;
  padding: 0.2rem 0.6rem !important;
  height: 50px !important;
  /* padding: 0.5rem 3.2rem !important; */
  vertical-align: middle !important;
  text-align: center !important;
} 

#reportTable thead{
  border-top: 45px;  
}

#reportTable td, 
#reportTable th{
  height: 30px !important;
} 

.format-dropdown {
  background-color: var(--blanco);
  border: var(--azul_primario);
  border-width: 1rem;
  box-shadow: 0 0 15px var(--azul_primario);
  width: 16rem;
}

.other-clic {
  background-color: red;
}

.modal-header {
  background-color: var(--azul_secundario);
}

.modal-header h5 {
  color: var(--blanco) !important;
}

.modal-header button {
  color: var(--blanco) !important;
  font-size: x-large;
  padding: 0 !important;
}

#requests-table th,
#requests-table td {
  padding: 0.5rem 3.2rem;  
}

.timePickerWhite::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.field-table {
  background-color: transparent; 
  color: var(--blanco); 
  border: none;
}

.format-btn :hover {
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 0.5rem rgba(255, 255, 255, 0.3);
  border-radius: 0.1rem;
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-morado_3 {
  background-color: var(--morado_3);
}

.bg-rojo_claro {
  background-color: var(--rojo_claro);
}

.bg-rojo_claro:hover {
  background-color: var(--rojo_oscuro);
}

.bg-dark_blue {
  background-color: var(--azul_secundario);
}

.header-azul_secundario {
  background-color: var(--azul_secundario);
  color: #fff;
  padding-top: 14px;
}

.dropdown-item:hover {
  background-color: transparent;
}

.input-table {
  background-color: transparent; 
  color: var(--blanco); 
  border: none;
}