:root {
  --red: red;
  --orange: orange;
  --yellow-domo: #fff300;
  --yellow: #e0c657;
  --green: green;
  --gris: #848484;
  --gris-claro: #efefef;
  --link: #0303de;
  --green-blue-light: #479d8b;
  --pink: #e1818f;
  --blue: #4848b3;
  --black: #000000;
  --gray-light: #efefef;
  --blue: #0303de;
}

a {
  color: var(--link);
}

* {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue",
    Helvetica, Arial, "Lucida Grande", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.text-red {
  color: var(--red);
}

.text-orange {
  color: var(--orange);
}

.text-yellow {
  color: var(--yellow);
}

.text-green {
  color: var(--green);
}

.text-green-blue-light {
  color: var(--green-blue-light);
}

.text-blue {
  color: var(--blue) !important;
}

.porcentage-green {
  color: var(--green-blue-light);
}

.porcentage-red {
  color: var(--pink);
}

.porcentage-yellow {
  color: var(--yellow);
}

.porcentage-blue {
  color: var(--blue);
}

.percentage-green {
  color: var(--green-blue-light);
}

.percentage-red {
  color: var(--pink);
}

.percentage-yellow {
  color: var(--yellow);
}

.percentage-blue {
  color: var(--blue);
}

.date-red {
  color: var(--pink);
}

.date-yellow {
  color: var(--yellow);
}

.date-green {
  color: var(--green-blue-light);
}

.state-progreso {
  color: var(--green-blue-light);
}

.state-pausado {
  color: var(--pink);
}

.state-finalizado {
  color: var(--blue);
}

.state-eliminado {
  color: var(--red);
}

.state-oc-recibida {
  color: var(--green-blue-light);
}

.state-oc-pendiente {
  color: var(--pink);
}

.font-bold {
  font-weight: bold;
}

.bg-gray-light {
  background-color: var(--gray-light);
}

.bg-gray-blue-light {
  background-color: var(--green-blue-light);
}

.bg-blue {
  background-color: var(--blue);
}

.bg-blue-light {
  background-color: var(--blue-light);
  opacity: 0.7;
}

footer {
  background-color: black;
  padding-top: 20px;
  padding-left: 40px;
  color: white;
  font-weight: bold;
  /* height: 100px; */
  position: relative;
}

/*--------------------------------------------------*/
/*MENU----------------------------------------------*/
/*--------------------------------------------------*/

nav .options * {
  color: black;
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  padding-left: 10px;
  text-decoration: none;
}

nav#menu-ppal div.sub-menu {
  display: inline-block;
  position: relative;
}

nav#menu-ppal div.sub-menu ul {
  display: none;
  position: absolute;
  width: 100%;
  border-radius: 0px 0px 10px 10px;
  padding: 0;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.15);
  padding-top: 3px;
}

nav#menu-ppal div.sub-menu:hover ul {
  display: block;
}

nav#menu-ppal div.sub-menu li {
  list-style-type: none;
  border-bottom: 0.3px solid var(--gris-claro);
  padding: 3px 0px;
}

nav#menu-ppal div.sub-menu li:last-child {
  border: none;
}

nav#menu-ppal div.sub-menu li a {
  padding-left: 10px;
}

/*--------------------------------------------------*/
/*BOTONES-------------------------------------------*/
/*--------------------------------------------------*/

.btn {
  width: 200px;
  min-width: 200px;
  text-align: center;
  height: 40px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-yellow {
  background-color: var(--yellow-domo);
  color: var(--black);
}

.btn-yellow:hover {
  background-color: white;
  color: var(--black);
  border-color: 1px solid var(--yellow-domo);
}

.btn-negro {
  background-color: black;
  color: white;
}

.btn-negro:hover {
  background-color: white;
  color: var(--black);
  border-color: 1px solid var(--black);
}

/*--------------------------------------------------*/
/*LOGIN---------------------------------------------*/
/*NO TIENE EL MISMO FOOTER Y NAV QUE EL RESTO DE LAS*/
/*PAGES---------------------------------------------*/

.login {
  font-size: 34px;
  color: #ff4500;
}

#page-login {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#page-login nav {
  border-bottom: 1px solid var(--gris);
}

#page-login div.form {
  background-color: var(--gris-claro);
  flex: 1;
  display: flex;
  align-items: center;
}

.barrita-colores {
  position: absolute;
  right: 0;
  width: 175px;
}

nav .barrita-colores {
  top: 0;
}

footer .barrita-colores {
  bottom: 0;
}

#page-login .card-header {
  background-color: white;
  border-bottom: 0;
}
/*--------------------------------------------------*/
/*ESTILOS DE TABLAS---------------------------------*/
/*--------------------------------------------------*/

table {
  width: 100%;
}

td,
th {
  padding: 10px 20px;
}

thead tr {
  background-color: white;
  color: var(--gris);
}

th {
  font-weight: lighter;
}

tbody tr:nth-child(even) {
  background: #f4f5f5;
}
tbody tr:nth-child(odd) {
  background: white;
}

table a {
  text-decoration: none;
}

/*--------------------------------------------------*/
/*ESTILOS DE FORMS GRA------------------------------*/
/*--------------------------------------------------*/

form label {
  /* color: violet; */
  display: block;
}

form input:not([type="submit"]),
form select {
  color: var(--gris);
  display: block;
  width: 100%;
  border: 1px solid var(--gris);
  border-radius: 10px;
  height: 41px;
  padding: 10px 15px;
}

input:read-only:not([type="submit"]) {
  background-color: gray;
  color: white;
  border: 1px solid gray;
}

/*--------------------------------------------------*/
/*ESTILOS SELECTOR PROYECTOS-BUDGET-----------------*/
/*--------------------------------------------------*/

#proyectos_asignados .proy {
  background-color: black;
  color: white;
  display: inline-block;
  border-radius: 10px;
  padding: 5px 10px;
  margin: 3px 2px;
}

#new_proyect {
  width: 300px;
  display: inline;
}

.row.horas-equipos a,
.row.horas-equipos a * {
  color: black;
  text-decoration: none;
}

.row.horas-equipos .box {
  /* height: ; */
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  padding: 10px 10px;
  cursor: pointer;
}

.row.horas-equipos .box:hover {
  background-color: black;
}

.row.horas-equipos .box:hover * {
  color: white;
}

.row.horas-equipos .box:hover input {
  background-color: black;
}

.row.horas-equipos .box:hover input[type="number"]::-webkit-inner-spin-button,
.row.horas-equipos .box:hover input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  background-color: black;
  color: white;
}

.row.horas-equipos .box:hover input[type="number"] {
  -moz-appearance: textfield; /* For Firefox to hide default arrows */
}

.row.horas-equipos .box.active,
.row.horas-equipos .box.active * {
  background-color: black;
  color: white;
}

.row.horas-equipos input,
.row.horas-equipos p {
  /* height: ; */
  border: none;
  color: black;
  font-size: 4.5rem;
  text-align: center;
  height: auto;
  padding: 0;
}

#template-presupuesto .row.horas-equipos input:focus-visible {
  outline: none;
}
.row.horas-equipos .advance-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  column-gap: 15px;
}

.row.horas-equipos .advance-container .advance {
  /* height: ; */
  border: 1px solid var(--green-blue-light);
  border-radius: 10px;
  padding: 5px 10px;
  width: 100%;
}

.row.horas-equipos .advance-container .advance input,
.row.horas-equipos .advance-container .advance p {
  font-size: 16px;
}

.row.horas-equipos .advance-container .advance p {
  margin-bottom: 0px;
}

.row.horas-equipos .advance-container h3 {
  font-size: 15px;
  text-align: center;
}

.totalHoursDomoNoBillable .box {
  border: 1px solid var(--gris);
  border-radius: 10px;
  padding: 10px 10px;
}

.totalHoursDomoNoBillable .box p {
  /* height: ; */
  border: none;
  color: black;
  font-size: 4rem;
  text-align: center;
  height: auto;
  padding: 0;
}

.totalHoursDomoNoBillable .boxContainer {
  display: block;
}

@media (min-width: 768px) {
  .totalHoursDomoNoBillable .boxContainer {
    display: grid;
    column-gap: 10px;
    grid-template-columns: repeat(6, 1fr);
  }
}

/*--------------------------------------------------*/
/*SECCION EMPLEADOS---------------------------------*/
/*--------------------------------------------------*/

.empleado .team_id {
  width: 200px;
  display: inline-block;
}

.empleado p {
  width: 300px;
}

.empleado form,
.empleado p,
.empleado button {
  display: inline-block;
}

/*--------------------------------------------------*/
/*PROYECTOS-----------------------------------------*/
/*--------------------------------------------------*/

.form-busqueda-proys div {
  width: 250px;
  padding-right: 15px;
}

table#tabla-proyectos td:nth-child(n + 3),
table#tabla-proyectos th:nth-child(n + 3) {
  text-align: center;
}

table#tabla-proyectos .table-projects-list .table-projects-list-btn {
  position: relative;
}

table#tabla-proyectos
  .table-projects-list
  .table-projects-list-btn
  .table-projects-list-projects {
  display: none;
  position: absolute;
  z-index: 300;
}

table#tabla-proyectos
  .table-projects-list
  .table-projects-list-btn:hover
  .table-projects-list-projects {
  display: flex;
  flex-direction: column;
  row-gap: 3px;
}

table#tabla-proyectos
  .table-projects-list
  .table-projects-list-btn
  .table-projects-list-projects
  p {
  background-color: black;
  color: white;
  display: inline-block;
  border-radius: 10px;
  padding: 3px 5px;
  min-width: 130px;
  text-align: center;
  font-size: 11px;
  margin-bottom: 0;
}

table#tabla-proyectos
  .table-projects-list
  .table-projects-list-btn
  .table-projects-list-projects
  p.no-project {
  background-color: red;
}

.balanceTeam .balanceTeam-row {
  position: relative;
  height: auto;
}

@media (min-width: 768px) {
  .balanceTeam .balanceTeam-row {
    height: 400px;
  }
}

@media (min-width: 768px) {
  .balanceTeam .balanceTeam-row > .row {
    position: absolute;
    left: 48%;
    transform: translateX(-50%);
    width: 100%;
  }
}

.balanceTeam .balanceTeam-row .balanceTeam-card {
  border-radius: 100%;
  width: 280px;
  height: 280px;
  background-color: transparent;
  border-color: #0303de;
  border-style: dotted;
  border-width: 2px;
}

.balanceTeam .balanceTeam-row .balanceTeam-card.orange {
  border-color: #ff4500;
}

.balanceTeam .balanceTeam-row .balanceTeam-card.black {
  border-color: black;
}

@media (min-width: 768px) {
  .balanceTeam .balanceTeam-row .balanceTeam-card {
    width: 320px;
    height: 320px;
  }
}

.balanceTeam .balanceTeam-row .balanceTeam-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.balanceTeam .balanceTeam-row .balanceTeam-card .card-body h4 {
  color: #0303de;
  font-size: 22px;
}

.balanceTeam .balanceTeam-row .balanceTeam-card.orange .card-body h4 {
  color: #ff4500;
}

.balanceTeam .balanceTeam-row .balanceTeam-card.black .card-body h4 {
  color: black;
}

.balanceTeam .balanceTeam-row .balanceTeam-card .card-body h1 {
  color: #0303de;
  font-size: 65px;
  font-weight: 900;
}

.balanceTeam .balanceTeam-row .balanceTeam-card.black .card-body h1 {
  color: black;
}

.balanceTeam .balanceTeam-row .balanceTeam-card.orange .card-body h1 {
  color: #ff4500;
}

.balanceTeam .balanceTeam-row .balanceTeam-card .card-body p {
  color: #0303de;
}

.balanceTeam .balanceTeam-row .balanceTeam-card.orange .card-body p {
  color: #ff4500;
}

.balanceTeam .balanceTeam-row .balanceTeam-card.black .card-body p {
  color: black;
}

.consumoPorcentaje {
  color: red;
  float: right;
}

/*--------------------------------------------------*/
/*SECCION DASHBOARD---------------------------------*/
/*--------------------------------------------------*/
.count-dashboard .box {
  /* height: ; */
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  padding: 20px 40px;
}

.count-dashboard input,
.count-dashboard p {
  /* height: ; */
  border: none;
  color: black;
  font-size: 6rem;
  text-align: left;
  height: auto;
  padding: 0;
}

.dashboard .status-card {
  border: 1px solid #d3d3d3;
  padding: 20px 30px;
  margin-bottom: 30px;
  border-radius: 28px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.dashboard .circle-container {
  position: relative;
  height: 200px;
  width: 200px;
}

.dashboard .status-circle {
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  height: 200px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.dashboard .status-circle-consumed {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    var(--color) calc(var(--percentage) * 1%),
    #e0e0e0 0%
  );
  background-color: var(--color);
  -webkit-mask: radial-gradient(circle, transparent 55%, black 46%);
  mask: radial-gradient(circle, transparent 55%, black 46%);
}

.dashboard .status-card .status-title {
  padding: 0px;
  margin: 0;
}

.dashboard .status-card .status-count {
  font-size: 30px;
  color: var(--color);
  font-weight: bold;
}

.dashboard .status-card .status-footer {
  width: 100%;
}

.dashboard .status-card .status-footer p {
  font-size: 22px;
  color: var(--color);
  font-weight: bold;
}

.dashboard .status-card .status-circle .hours {
  font-size: 36px;
}

/*--------------------------------------------------*/
/*BITACORA BUDGETS ---------------------------------*/
/*--------------------------------------------------*/

#bitacora {
  /* background-color: red; */
}

#bitacora #comments {
  display: flex;
  flex-direction: column;
  align-items: end;
  row-gap: 10px;
}

#bitacora .comment {
  background: black;
  color: white;
  /* width: max-content; */
  padding: 10px 20px;
  margin: 0;
  border-radius: 15px;
}

#bitacora .comment .content {
  margin: 0;
}

#bitacora .comment .details {
  margin: 0;
  font-size: 75%;
  text-align: end;
}

#bitacora #submit-coment-form {
  /* background-color: red; */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 20px;
}

#bitacora #submit-coment-form textarea {
  width: 100%;
  border-radius: 15px;
  padding: 10px 20px;
  height: 150px;
  margin-bottom: 10px;
}
