:root {
  /* Color styles */
  --neutral--100: #E5E5E7;
  --neutral--200: #D7D8DB;
  --neutral--300: #CACCCF;
  --neutral--400: #BDBFC2;
  --neutral--500: #B0B2B6;
  --neutral--600: #95989E;
  --neutral--700: #6E7178;
  --neutral--800: #494C50;
  --neutral--900: #252628;
  --primary--100: #B3C1DD;
  --primary--200: #8DA3CC;
  --primary--300: #6884BA;
  --primary--400: #4967A2;
  --primary--500: #273756;
  --primary--600: #1D2941;
  --primary--700: #141B2B;
  --primary--800: #141B2B;
  --success--100: #DAEFE0;
  --success--200: #B4DEC0;
  --success--300: #8FCEA1;
  --success--400: #69BD81;
  --success--500: #49A764;
  --success--600: #39824E;
  --success--700: #2B623B;
  --success--800: #1C4127;
  --warning--100: #F3EDCE;
  --warning--200: #EDE4B5;
  --warning--300: #E7DB9C;
  --warning--400: #E2D383;
  --warning--500: #DCCA6B;
  --warning--600: #D0B839;
  --warning--700: #A18D26;
  --warning--800: #6B5E19;
  --error--100: #FEE5E1;
  --error--200: #FECAC2;
  --error--300: #FDB0A4;
  --error--400: #FC9586;
  --error--500: #FC7A67;
  --error--600: #FB6049;
  --error--700: #EE2305;
  --error--800: #9F1803;
  --Gradient-Macy: linear-gradient(117deg, var(--primary--500) 17.67%, var(--primary--400) 82.33%);
}

html {
  font-family: "barlow";
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: 100%;
}

body {
  margin: 0;
  height: 100%;
  margin-bottom: 16px;
}

/*//////////////////////TIPOGRAFÍA///////////////////////*/
.display01 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 400;
}

.display02 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 400;
}

h1 {
  font-size: 33px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
}

h2 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 !important;
}

h3 {
  font-size: 23px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
}

h4 {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
}

p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
}

caption {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
}

footer {
  font-size: 11px;
  line-height: 1.6;
  font-weight: 400;
}

;

/*//////////////////////modificadores///////////////////////*/
.is-bold {
  font-weight: 700 !important;
}

.is-extrabold {
  font-family: Barlow;
  font-size: 28px;
  font-style: normal;
  line-height: 120%;
  font-weight: 800 !important;
}

.is-italic {
  font-style: italic !important;
}

/*//////////////////////CONTENEDOR GENERAL///////////////////////*/
.containerlaravel {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(16px, 2vw, 32px);
  margin-bottom: 40px;
}
/*//////////////////////CONTENEDOR BBDD///////////////////////*/
.containerlaravel--bbdd {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(16px, 2vw, 32px);
  margin-bottom: 100px;
}

/*//////////////////////BOTONES///////////////////////*/
.button {
  border-radius: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-decoration: none;
  align-items: center;
  justify-content: center;

}

.btn-primary {
  background: var(--primary--500);
  color: #FFFFFF;
  display: inline-flex;
  height: 52px;
  padding: 8px 16px;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;

}

.btn-primary:hover {
  background: var(--primary--100);
}

.btn-primary:active {
  background: var(--primary--300);
}

.btn-primary:disabled {
  background: var(--neutral--500);
  cursor: not-allowed;
}

.btn-primary svg {
  display: flex;
  width: 24px;
  height: 24px;
  padding: 2.75px 4.197px 2.885px 4.25px;
  justify-content: center;
  align-items: center;
}

.btn-tertiary {
  background: transparent;
  border: 1px solid var(--primary--300);
  border-radius: 20px;
  color: var(--primary--300);
  display: inline-flex;
  padding: 13px 16px;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 20px 0;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
      font-weight: 700;

}

.btn-tertiary:hover {
  color: #B3C1DD;
  border-color: #B3C1DD;
}

.btn-tertiary:hover span {
  color: #B3C1DD;
}

.btn-tertiary:hover svg path {
  stroke: #B3C1DD;
}

.btn-tertiary:active {
  color: #273756;
  border-color: #273756;
}

.btn-tertiary:active span {
  color: #273756;
}

.btn-tertiary:active svg path {
  stroke: #273756;
}

.btn-tertiary span {
  color: var(--primary--300, #6884BA);
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 22.4px */
}

.btn-transparente {
  border: 1px solid var(--primary--300);
  border-radius: 20px;
  background: transparent;
  color: var(--primary--300);
  display: inline-flex;
  height: 52px;
  padding: 8px 16px;
  flex-direction: row;
  align-items: center;
  /* 👈 vertical centrado */
  gap: 10px;
  justify-content: center;
}


.btn-transparente:hover {
  border: 1px solid var(--primary--100);
  color: var(--primary--100);
}

.btn-transparente:active {
  border: 1px solid var(--primary--500);
  color: var(--primary--500);
}

.btn-transparente:disabled {
  border: 1px solid var(--neutral--500);
  color: var(--neutral--500);
}

.btn-menu-transparente {
  border: 1px solid var(--primary--300);
  border-radius: 20px;
  background: transparent;
  color: var(--primary--300);
  display: inline-flex;
  height: 52px;
  padding: 8px 16px;
  flex-direction: row;
  align-items: center;
  /* 👈 vertical centrado */
  gap: 10px;
  justify-content: center;
}


.btn-menu-transparente:hover {
  border: 1px solid var(--primary--100);
  color: var(--primary--100);
  text-decoration: none;
}
.btn-menu-transparente:hover svg path {
  stroke: #B3C1DD !important;
  fill: none !important;
}
.btn-menu-transparente.is-active:hover {
  border: 1px solid var(--neutral--500, #B0B2B6);
  color: var(--neutral--500, #B0B2B6);
  text-decoration: none;
}
.btn-menu-transparente.is-active:hover svg path {
  stroke: var(--neutral--500, #B0B2B6) !important;
  fill: none !important;
}

.btn-menu-transparente:active {
  border: 1px solid var(--primary--500);
  color: var(--primary--500);
}

.btn-menu-transparente:disabled {
  border: 1px solid var(--neutral--500);
  color: var(--neutral--500);
}

/* Base común (mantiene tu estilo: pill, alturas, paddings, sin borde) */
.btn-save,
.btn-delete {
  border-radius: 20px;
  border: 0;
  display: inline-flex;
  height: 52px;
  padding: 8px 16px;
  gap: 10px;

  /* ✅ centrado vertical (y horizontal) */
  align-items: center;
  justify-content: center;

  /* calidad UI */
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}

/* GUARDAR */
.btn-save {
  color: var(--success--500, #49A764);

  /* Paragraph/Bold */
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 22.4px */
  background: var(--success--100);
}

.btn-save:hover {
  background: var(--success--200);
}

.btn-save:active {
  background: var(--success--500);
  color: var(--success--100);
}

.btn-save:active svg path {
  stroke: var(--success--100) !important;
}

.btn-save:disabled {
  background: var(--Neutral-500, #B0B2B6);
  color: #FFFFFF;
  cursor: not-allowed;
}

/* BORRAR */
.btn-delete {
  color: var(--error--500, #FC7A67);
  background: var(--error--100, #FEE5E1);
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.btn-delete:hover {
  background: var(--error--200);
}

.btn-delete:active {
  background: var(--error--500);
  color: #FC7A67;
  /* para contraste cuando el fondo es error--500 */
}

.btn-delete:disabled {
  background: var(--neutral--500);
  color: #FFFFFF;
  cursor: not-allowed;
}

/* Accesibilidad: foco visible sin romper tu estilo */
.btn-save:focus-visible,
.btn-delete:focus-visible {
  outline: 2px solid rgba(104, 132, 186, .6);
  outline-offset: 2px;
}

a.btn,
a.btn-primary,
a.btn-transparente {
  text-decoration: none;
  padding: 0;
}

/*//////////////////////ENLACES///////////////////////*/
a {
  background: transparent;
  text-decoration: underline;
  color: var(--primary--300);
}

a:hover {
  color: var(--primary--100);
}

a:active {
  color: var(--primary--500);
}

a:disabled {
  color: var(--neutral--500);
  cursor: not-allowed;
}

.topbar__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    flex: 1 1 auto;
    min-width: 0;
}



.btn-menu-transparente svg {
    display: block;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
   transform: translateY(5px);

}

.btn-menu-transparente span {
    display: block;
    line-height: 1;
}

/*////////////////////////HEADER///////////////////////*/
.page-header {
  background: #fff;
}

.page-header__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.page-header__title h1 {
  margin: 0;
}

.page-header__title h5 {
  margin: 6px 0 0;
  color: var(--neutral--700);
}

.page-header__user {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  white-space: nowrap;
}

.page-header__welcome {
  color: var(--neutral--700);
  font-size: 13px;
}

.page-header__name {
  font-weight: 700;
}

.page-header__logout {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  color: var(--primary--300, #6884BA);
}

.page-header__logout {
  color: #6884BA;
  /* o var(--primary--300) */
}

.page-header__logout svg {
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
}

.page-header__hello span {
  color: var(--primary--600, #1D2941);
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.page-header__hello strong {
  color: var(--Primary-600, #1D2941);
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.status {
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  display: inline-block;
}

.status--pendiente {
  color: var(--warning--700, #A18D26);
  border-radius: 6px;
  background: var(--warning--400, #E2D383);
  display: flex;
  padding: 0 6px;
  justify-content: center;
  align-items: center;
}

.status--aprobado {
  color: var(--success--700, #2B623B);
  border-radius: 6px;
  background: var(--success--400, #69BD81);
  display: flex;
  padding: 0 6px;
  justify-content: center;
  align-items: center;
}

.status--desactivado {
  color: var(--error--700, #EE2305);
  border-radius: 6px;
  background: var(--error--400, #FC9586);
  display: flex;
  padding: 0 6px;
  justify-content: center;
  align-items: center;
}

.nombre_proyecto input {
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 8px 0 20px 0px;
  color: #273756;
  outline: none;
  box-sizing: border-box;
  font-family: Barlow;
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  min-width: 459px;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
}

#nombre_proyecto::placeholder {
  color: var(--neutral--300);
  /* <-- aquí pon el color que AHORA tiene el texto */
  font-family: barlow;
}

/* Al hacer foco / escribir */
.nombre_proyecto input:focus,
.nombre_proyecto input:focus-visible,
.nombre_proyecto input:active {
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
  /* o transparent si quieres 0 borde */
}

/* Si el borde “sale” por el contenedor al enfocarse (focus-within) */
.nombre_proyecto:focus-within {
  outline: none !important;
  box-shadow: none !important;
}

/* GRID 3 columnas */
.form-grid {
  display: grid;
  gap: 26px 20px;
}

.form-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field--full {
  grid-column: 1 / -1;
}

/* Label */
.field label {
  display: block;
  color: var(--primary--300, #6884BA);
  font-family: Barlow;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.field-imagen label {
  color: var(--primary--300, #6884BA);
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

/* Inputs / selects / textareas */
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--primary--300, #6884BA);
  border-radius: 20px;
  font-size: 14px;
  color: #0b1b2b;
  outline: none;
  box-sizing: border-box;
  padding: 13px 16px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa3ad;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #6884BA;
  box-shadow: 0 0 0 3px #B3C1DD;
}

/* Responsive */
@media (max-width: 700px) {
  .form-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .form-grid--3 {
    grid-template-columns: 1fr;
  }
}

/* =========================
   DROPDOWN (GENÉRICO)
   ========================= */
.dropdown {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.dropdown__control {
  position: relative;
  width: 100%;
}

.field.dropdown .dropdown__input {
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  border: 1px solid var(--primary--300, #6884BA);
  border-radius: 20px;
  padding: 13px 42px 13px 16px;
  font-size: 14px;
  color: #0b1b2b;
  outline: none;
  appearance: none;
}

.field.dropdown .dropdown__input::placeholder {
  color: #9aa3ad;
}

.dropdown__btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
  background: transparent;
  border: 0;
  padding: 0;
}

.dropdown__btn:focus,
.dropdown__btn:focus-visible {
  outline: none;
  box-shadow: none;
}

.dropdown__btn:hover {
  background: rgba(104, 132, 186, 0.08);
}

.dropdown__btn svg {
  transition: transform .15s ease;
}

.dropdown__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid var(--primary--300, #6884BA);
  border-top: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  max-height: 240px;
  overflow: auto;
  z-index: 999;
  display: none;
}

.dropdown__menu::-webkit-scrollbar {
  width: 4px;
}

.dropdown__menu::-webkit-scrollbar-track {
  background: transparent;
  margin-bottom: 20px;
}

.dropdown__menu::-webkit-scrollbar-thumb {
  background: #C8D3E8;
  border-radius: 4px;
}

.dropdown__menu::-webkit-scrollbar-thumb:hover {
  background: #6884BA;
}

.dropdown__item {
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  color: #111827;
}

.dropdown__item:hover {
  background: rgba(104, 132, 186, .08);
  border-radius: 12px;
  margin: 0 8px;
  padding: 10px 12px;
}

.dropdown__item.is-active {
  background: rgba(104, 132, 186, .15);
  border-radius: 12px;
  margin: 0 8px;
  padding: 10px 12px;
}

.dropdown.is-open .dropdown__menu {
  display: block;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.dropdown.is-open .dropdown__input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.dropdown.is-open .dropdown__btn svg {
  transform: rotate(180deg);
}

.field.dropdown:focus-within .dropdown__input {
  border-color: #6884BA;
  box-shadow: 0 0 0 3px #B3C1DD;
}

.field.dropdown.is-open:focus-within .dropdown__menu {
  border-color: #6884BA;
  box-shadow: 0 0 0 3px #B3C1DD;
  clip-path: inset(0px -3px -3px -3px);
}
/* Colorea según atributo data-estado */
.dropdown--estado .dropdown__input {
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.dropdown--estado[data-estado="Aprobado"] .dropdown__input { color: var(--success--400); }
.dropdown--estado[data-estado="Pendiente"] .dropdown__input { color: var(--warning--400); }
.dropdown--estado[data-estado="Denegado"]  .dropdown__input { color: var(--error--400); }

#competidoresWrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 20px;
  margin-top: 26px;
}

#competidoresWrap .field {
  width: 100%;
  /* Asegura que cada campo ocupe toda la columna */
}

.campoimagen {
  border-radius: 20px;
  border: 1px solid var(--Primary-300, #6884BA);
  background-color: transparent;
}

/* Contenedor principal con las columnas */
/* Contenedor principal */
.img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--success--100);
  border-radius: 10px;
  padding: 10px;
  position: relative;
  max-width: 300px;
  /* Controlar el ancho máximo */
  width: 100%;
  /* Asegura que se ajuste al contenedor */
  margin-top: 20px;
}

.img-container .image-title {
  color: var(--primary--500, #273756);
  font-family: Barlow;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.img-container .image-status {
  color: var(--success--400, #69BD81);
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.image-preview-container {
  display: grid;
  grid-template-columns: 64px 1fr;
  /* Imagen en la primera columna (64px de ancho), texto en la segunda columna */
  gap: 10px;
  /* Espacio entre las columnas */
  width: 100%;
  align-items: center;
  /* Centra el contenido verticalmente */
}

.image-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-preview {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.image-right {
  text-align: left;
}

.image-title {
  color: var(--primary--500);
  /* Primary / 500 */
  font-weight: bold;
  margin: 0;
}

.image-status {
  color: var(--success-400);
  /* Success / 400 */
  font-size: 12px;
  margin: 0;
}

.delete-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

#imgportada_subidos {
  display: flex;
  padding: 12px;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 0 0;
  max-width: 300px;
}

.estado-actions-row {
  display: flex;
  align-items: flex-end;
  /* alinea por la base del campo */
  justify-content: space-between;
  width: 100%;
}

/* Estado se queda a la izquierda */
.estado-actions-row .dropdown--estado {
  max-width: 320px;
  /* ajusta si quieres */
  width: 100%;
}

/* Acciones pegadas al margen derecho */
.informe-actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
}

.wizardTop {
  margin-bottom: 14px;
}

.wizardTop__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wizardTop__title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.wizardTop__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wizardTop__count {
  font-size: 14px;
  color: #8a8f98;
  font-weight: 600;
}

.wizardTop__info {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid #6884BA;
  background: #fff;
  color: #6884BA;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.wizardTop__bar {
  margin: 15px 0 25px 0;
  height: 4px;
  background: #e9edf3;
  border-radius: 999px;
  overflow: hidden;
}

.wizardTop__fill {
  height: 120%;
  width: 0%;
  background: var(--primary--200);
  border-radius: 999px;
  transition: width .25s ease;
}

.wizardTop__infoRow {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.wizardTop__info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.soportes-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  justify-content: center;
}

.soportes-tabs .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 8px 16px;
  border: 0;
  border-radius: 20px;
  background: var(--primary--500, #273756);
  color: #FFF;
  font-family: Barlow;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  cursor: pointer;
}

.soportes-tabs .tab:hover {
  background-color: #B3C1DD;
}

.soportes-tabs .tab.is-active {
  background-color: var(--primary--300, #6884BA);
}

.soportes-tabs .tab.is-active:hover {
  background-color: var(--primary--300, #6884BA);
}

.soportes-tabs .tab__icon {
  display: none;
}

.soportes-tabs .tab.is-active .tab__icon {
  display: inline-flex;
}

#prod_family_tabs .tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#prod_family_tabs .tab__icon {
  display: none; /* oculto por defecto */
}

#prod_family_tabs .tab.is-active .tab__icon {
  display: inline-flex; /* aparece solo activo */
}

.tab svg {
  visibility: visible;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  /* Espaciado entre el icono y el texto */
}
#periodo_input:disabled{
  opacity: .55;
  cursor: not-allowed;
}
#periodo_btn:disabled{ cursor:not-allowed; }
.soportes-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media(max-width:1100px) {
  .soportes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:720px) {
  .soportes-grid {
    grid-template-columns: 1fr;
  }
}

.soporte-card {
  border-radius: 20px;
  border: 1px solid var(--primary--100, #B3C1DD);
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.soporte-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.soporte-head {
  display: flex;
  gap: 10px;
  align-items: flex-start;
    cursor: pointer;
}

.soporte-box {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid var(--primary--100, #B3C1DD);
  margin-top: 2px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
    cursor: pointer;

}

.soporte-box svg {
  display: block;
  opacity: 0;
  transform: scale(.9);
  transition: .15s ease;
}

/* cuando está marcado, muestra el svg */
.soporte-card>.soporte-check:checked~.soporte-head .soporte-box svg {
  opacity: 1;
  transform: scale(1);
}

/* fondo/borde cuando está marcado */
.soporte-card>.soporte-check:checked~.soporte-head .soporte-box {
  border: 1px solid var(--Primary-300, #B3C1DD);

}

.soporte-title {
  color: var(--Primary-300, #6884BA);
  /* H4/Bold */
  font-family: Barlow;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.soporte-desc {
  color: var(--Primary-500, #273756);
  /* Caption/Regular */
  font-family: Barlow;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.soporte-card.is-checked {
  border-color: #273756;
}

.soporte-card.is-checked .soporte-box {
  background: #273756;
  border-color: #273756;
}

.soporte-upload {
  margin-top: 4px;
}

.btn-upload {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid var(--Primary-300, #6884BA);
  background: #fff;
  padding: 13px 16px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  margin-top: 18px;
}
.btn-upload.is-disabled,
.btn-upload[disabled] {
  cursor: not-allowed;
  border-color: #B0B2B6;
}

.btn-upload.is-disabled span,
.btn-upload[disabled] span {
  color: #B0B2B6;
}

.btn-upload.is-disabled svg path,
.btn-upload[disabled] svg path {
  stroke: #B0B2B6;
}

.btn-upload__icon {
  display: flex;
  /* centra el svg dentro del span */
  align-items: center;
  justify-content: center;
  line-height: 0;
  /* evita “bajar” por línea */
}

.btn-upload__icon svg {
  display: block;
  /* quita baseline/espacio raro */
}

.btn-upload span {
  color: var(--Primary-300, #6884BA);
  /* Paragraph/Bold */
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.btn-upload:not(.is-disabled):not([disabled]):hover {
  border-color: #B3C1DD;
}

.btn-upload:not(.is-disabled):not([disabled]):hover span {
  color: #B3C1DD;
}

.btn-upload:not(.is-disabled):not([disabled]):hover svg path {
  stroke: #B3C1DD;
}

.btn-upload:not(.is-disabled):not([disabled]):active {
  border-color: #273756;
}

.btn-upload:not(.is-disabled):not([disabled]):active span {
  color: #273756;
}

.btn-upload:not(.is-disabled):not([disabled]):active svg path {
  stroke: #273756;
}

.soporte-file {
  display: none !important;
}

.soporte-filebar {
  margin-top: 10px;
  border: 1px solid #e7ebf4;
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: var(--success--100, #DAEFE0);
}

.filebar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.soporte-filebar img[data-thumb] {
  width: 46px;
  height: 46px;
  object-fit: cover;
  background: #f3f5fb;
}

.filebar-name {
  color: var(--gray--900, #111B2B);
  font-family: Barlow;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.filebar-status {
  color: var(--Success--400, #69BD81);
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.filebar-trash {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 6px;
}

.prod-search-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.prod-added-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background-color: var(--success--100, #DAEFE0);
}

.prod-added-bar .filebar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.prod-added-bar #product_added_thumb {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  object-fit: cover;
  border-radius: 10px;
}

.prod-added-bar img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 10px;
}

/* responsive */
@media (max-width: 900px) {
  .prod-search-row {
    grid-template-columns: 1fr;
  }

  .prod-added-bar {
    height: auto;
  }
}

#product_added_thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
}

/* Paso 8: 2 columnas a ancho completo */
.step[data-step="8"] .garantias-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  align-items: start;
}

/* que cada bloque ocupe su columna */
.step[data-step="8"] .garantias-left,
.step[data-step="8"] .garantias-right{
  width: 100%;
}

/* asegura que el dropdown no se quede estrecho */
.step[data-step="8"] .garantias-right .field.dropdown{
  width: 100%;
}


.garantias-label {
  font-size: 14px;
  color: #273756;
  opacity: .85;
  margin: 0;
}

/* Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-ui {
  position: absolute;
  inset: 0;
  background: #E6EBF5;
  border-radius: 999px;
  transition: .2s;
}

.switch-ui:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
  transition: .2s;
}

.switch input:checked+.switch-ui {
  background: #6B86BD;
}

.switch input:checked+.switch-ui:before {
  transform: translateX(20px);
}

/* Select pill */
.select-pill {
  width: 320px;
  max-width: 100%;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #E6EBF5;
  background: #fff;
  color: #273756;
  outline: none;
}

.select-pill:focus {
  border-color: #6B86BD;
  box-shadow: 0 0 0 3px rgba(107, 134, 189, .18);
}

.divisor-form {
  height: 1px;
  background: var(--primary-300, #6884BA);
  margin: 64px 0px 16px 0px;
}

/* =========================
   NAV ACTIONS (Wizard)
   ========================= */

/* Wrapper: botones a la derecha */
.nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Base botón */
.btn-nav {
  border: 0;
  border-radius: 20px;
  width: auto;
  padding: 10px 16px;
  min-height: 44px;

  /* layout interno */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  cursor: pointer;

  /* Texto (igual para ambos) */
  color: #FFF;
  font-family: Barlow, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1 !important;
  text-decoration: none;
  flex-wrap: nowrap;
  white-space: nowrap;
}

/* Etiqueta */
.btn-nav .btn-label {
  display: inline;
  /* no block */
  line-height: 1.4;
}

/* Iconos */
.btn-nav svg {
  display: block;
  /* quita baseline */
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

/* Anterior */
.btn-prev {
  background: var(--neutral--500, #B0B2B6);
}

.btn-prev:hover {
  background: #B3C1DD;
}

/* Siguiente / Terminar */
.btn-next {
  background: var(--primary--500, #273756);
}

.btn-next:hover {
  background: #B3C1DD;
}

/* Si quieres el icono de Siguiente en blanco */
.btn-next svg path {
  stroke: #fff;
}

.centrado-vertical {
  display: flex;
  padding: 0 4px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.form-control.input-popup {
  border-radius: 20px;
  background: #FFF;
  height: 48px;
  padding: 10px 16px;
}

select.form-control.input-popup {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23273756' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group.cancelar-guardar {
  display: flex;
  justify-content: flex-end;  /* Alinea los elementos al final (a la derecha) */
  gap: 20px;  /* Establece el espacio de 20px entre los botones */
}
#resultados .btn.derechita{
  text-align: right;
}
#modal_guardar {
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
}

#modal_guardar .texto {
  position: absolute;
  background: #273756;
  color: #fff;
  text-align: center;
  top: calc(50% - 125px);
  left: calc(50% - 125px);
  width: 250px;
  height: 250px;
  font-size: 15px;
  border-radius: 15px;
}

#modal_guardar.novisible {
  display: none;
}

#modal_guardar.visible {
  position: absolute;
  top: 0;
  left: 0;
}

#dbform {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: #f0f0f060;
  overflow-y: auto;
}

#dbform.visible {
  display: flex;
}

#dbform.novisible {
  display: none;
}

#dbform > #form-reg,
#dbform > #form-edit {
  display: none;
  position: relative;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  margin: 0 !important;
  width: 100%;
  max-width: 880px;
  background: var(--primary--500, #273756);
  color: #fff;
  padding: 30px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  border-radius: 20px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

#dbform > #form-reg.visible,
#dbform > #form-edit.visible {
  display: flex;
}

#dbform > #form-reg.novisible,
#dbform > #form-edit.novisible {
  display: none;
}
#dbform form {
  width: 100%;
}

#dbform .form-group {
  width: 100%;
}

#dbform .input-popup,
#dbform input[type="text"] {
  width: 100%;
}
#dbform .cancelar-guardar {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
#accionesInforme {
  display: none;
}

a#guardarinforme,
a#guardarinforme:hover {
  text-decoration: none;
}

.nav {
  height: 185px;
  margin-top: 65px;
}

/*.nav .menu .btn {
    width: 205px;
    height: 185px;
    box-shadow: 0px 3px 6px #273756;
    border-radius: 40px 0px 0px 0px;
}

.nav .menu {
    padding-left: 80px!important;
    display: inline;
}

.nav .menu a.btn {
    background-color: #273756;
    color: #ffffff;
    margin-right: 20px;
}

.nav .menu a.btn h4 {
    font: italic normal bold 18px Barlow;
    margin: 0!important;
}

.nav .menu a.btn span {
    font: normal normal normal 12px Barlow;
}

.nav .menu a.btn i {
    font-size: 35px;
    margin-top: 46px;
    margin-bottom: 46px;
}

.nav .menu a.btn:hover {
    background-color: #26567C;
    color: #ffffff;
}*/
.tablewrap {
  border: 1px solid var(--Primary-100, #B3C1DD);
  border-radius: 16px;
  overflow: hidden;
  /* para que respete el radio */
  background: #fff;
  margin-top: 10px;
}

.macy-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.macy-table thead th {
  padding: 12px;
  color: var(--Primary-300, #6884BA);
  text-align: left;
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  white-space: nowrap;
  border-bottom: 1px solid var(--Primary-100, #B3C1DD);
}

.macy-table tbody td {
  padding: 12px;
  vertical-align: middle;
  border-bottom: 1px solid var(--Primary-100, #B3C1DD);
}

/* quita la última línea para que no “choque” con el borde del wrapper */
.macy-table tbody tr:last-child td {
  border-bottom: 0;
}

/* BORDE “alrededor” de cada fila sin meter bordes en cada celda */
.macy-table tbody tr {
  outline: none;
  /* pega el borde al borde real */
}

.col-icon {
  width: 1%;
  white-space: nowrap;
  text-align: center;
  padding: 0px !important;
  vertical-align: middle;
}

.iconbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  text-decoration: none;
}

.iconbtn svg {
  display: block;
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 24px;
}

.iconbtn:hover {
  background: var(--neutral--100);
}

.iconbtn:active {
  background: var(--neutral--200);
}


.tablebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}

.tablebar__title {
  color: var(--Primary-300, #6884BA);
  font-family: Barlow;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.tablebar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.tablebar__search {
  margin: 0;
}

.pagination-arrows-row {
  display: inline-flex;
  align-items: center;
}

.pagination-pages {
  margin: 0 25px;
}
.input-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.input-icon__icon {
  position: absolute;
  left: 12px;
  display: inline-flex;
  pointer-events: none;
}

.input--search {
  height: 44px;
  width: 320px;
  max-width: 45vw;
  border: 1px solid var(--primary--500);
  border-radius: 20px;
  padding: 10px 12px 10px 48px;
}

.th-titulo {
  color: var(--Primary-300, #6884BA);
  text-align: center;
  /* Paragraph/Bold */
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.titulazo {
  outline: none;
  padding: 0px 12px !important;
  /* pega el borde al borde real */
}

/*aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
.table-striped>tbody>tr:nth-child(odd)>td {
    background-color: #fff;
}

.table-striped>tbody>tr:nth-child(even)>td {
    background-color: #27375666;
    color: #ffffff;
}

.table-striped>tbody>tr>td {
    border: none!important;
}

table {
    margin-top: 30px;
}

thead tr th:first-child {
    border-radius: 40px 0 0 0;
}

thead tr td div.first {
    border-radius: 40px 0 0 0;
}

thead tr td div .first {
    border-radius: 40px 0 0 0;
}

thead tr td.last {
    padding-right: 0px!important;
  
}

thead tr td .last a {
    padding: 10px;
    border: 1px solid;
    text-decoration: none;
}

thead tr td {
    padding: 0px!important;
    padding-right: 10px!important;
}

thead tr td input {
    background-color: #fff;
    border: none;
    color: #273756;
    text-align: center!important;
    height: 40px!important;
    width: 100%;
    display: block!important;
}

thead tr td div {
    background-color: #fff;
    border-color: #273756;
    border: 1px solid!important;
    color: #273756;
    text-align: center!important;
    height: 75px!important;
    width: 100%;
    margin-bottom: -35px;
    display: block!important;
}

.table>thead>tr>th {
    border: none!important;
}

th {
    background-color: #273756;
    border-color: #ffffff;
    border: none;
    color: #ffffff;
    text-align: center!important;
    height: 55px!important;
    vertical-align: middle!important;
}

td {
    text-align: center;
}
*/

.user-hello {
  color: #273756;
}

.user-hello div {
  width: fit-content;
  float: right;
  padding-right: 70px;
}

.user-hello span {
  font: normal normal normal 13px Barlow;
}

.user-hello h5 {
  font: normal normal medium 15px Barlow;
  margin: 0 !important;
}

.user-hello .salir,
.user-hello .salir:hover,
.user-hello .salir:active,
.user-hello .salir:focus {
  float: right;
  color: #273756;
}

#submit-reg,
#cancel-reg,
#newuser,
#submit-edit,
#cancel-edit {
  display: inline-flex;
height: 52px;
padding: 8px 16px;
align-items: center;

}

#cancel-reg:hover,
#cancel-edit:hover {
  background: var(--Error-200, #FECAC2);
}
#buttonSR {
  width: 100%;
}

#submit-reg,
#cancel-reg,
#submit-edit,
#cancel-edit {
  padding: 8px 16px;
  border-radius: 20px;
}

.registro {
  margin-top: 30px;
}

#form-reg,
#form-edit {
  color: #fff;
  display: flex;
  width: min(680px, calc(100vw - 32px));
  padding: 30px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  border-radius: 20px;
}

#form-reg {
  padding-top: 40px;
}

#form-reg input,
#form-edit input,
#form-reg select,
#form-edit select {
  margin-bottom: 15px;
}

select {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

#registered,
#edited {
  display: none;
}

#notmatch,
#notmatchEdit {
  display: none;
}

#form-reg,
#form-edit,
.presupuestos {
  margin-top: 10px;
}
.acciones {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.informes {
  margin-left: 75px;
  width: calc(100% - 75px);
}

.accionesInforme {
  padding-top: 40px;
}

.accionesInforme .fa-save {
  color: #77D86B;
  font-size: 18px;
  margin-right: 18px;
}

.accionesInforme .fa-times-circle {
  color: #DE3059;
  font-size: 18px;
}

.informes #nombre_proyecto {
  background: #7D8799 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border: 0.5px solid #FFFFFF;
  border-radius: 20px 0px 0px 0px;
  font: normal normal normal 14px/55px Barlow;
  letter-spacing: 0px;
  color: #FFFFFF;
  width: 320px;
  height: 40px;
  padding: 11px 16px;
}

.informes .desplegable .btn {
  width: fit-content;
  border-radius: 20px 0 0 0;
  border: 1px solid #273756;
  padding: 11px 16px;
  text-align: left;
  font: normal normal bold 15px Barlow;
  letter-spacing: 0px;
  color: #273756;
  text-transform: uppercase;
  margin-bottom: 19px;
}

.informes .desplegable .btn i {
  margin-left: 10px;
}

.form-group label {
  text-align: left;
  font: normal normal medium 16px Barlow;
  letter-spacing: 0px;
  color: #273756;
}

.informes .desplegado input,
.informes .desplegado select {
  background: #2737561A 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 0px;
  font: normal normal normal 12px Barlow;
  letter-spacing: 0px;
  color: #273756;
  width: 480px;
}

.informes .btnseleccionado {
  background-color: #26567C;
  color: #ffffff;
}

.informes .desplegado input[type="checkbox"] {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border: 0.5px solid #7D8799;
  margin-right: 10px;
  width: auto;
  -ms-transform: scale(1.2);
  /* IE */
  -moz-transform: scale(1.2);
  /* FF */
  -webkit-transform: scale(1.2);
  /* Safari y Chrome */
  -o-transform: scale(1.2);
  /* Opera */
  transform: scale(1.2);
}

.descripcion-archivo {
  display: grid;
}

.descripcion-archivo .tit {
  font: normal normal bold 12px Barlow;
  letter-spacing: 0px;
  color: #273756;
}

.descripcion-archivo .medidas,
.descripcion-archivo .tamano {
  font: normal normal normal 12px Barlow;
  letter-spacing: 0px;
  color: #273756;
}

#portada,
#presentacion,
#obra,
#soportes,
#patologias,
#preparaciones,
#anexas,
#pintados,
#garantias {
  display: none;
}


/* Estilo datalist de los input */

input[type="text"]::-webkit-calendar-picker-indicator {
  display: block;
  opacity: 100;
  background: #7D8799 0% 0% no-repeat padding-box;
  color: #ffffff;
  padding: 17px;
  margin: 0;
  border: none;
}

.presupuestos input[type="text"]::-webkit-calendar-picker-indicator {
  display: none !important;
  opacity: 0 !important;
}

input[type="date"] {
  position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  color: transparent;
  background: none;
  z-index: 1;
  padding: 10px 14px;
}

input[type="date"]:before {
  background: #7D8799 0% 0% no-repeat padding-box;
  display: block;
  font-family: 'Font Awesome\ 5 Free';
  content: '\f073';
  padding: 10px 14px;
  font-size: 14px;
  position: absolute;
  top: 0px;
  right: 0px;
  color: #FFFFFF;
}

#imgportada,
#imgobra,
#imgsoportenota,
input[id^='imgsoporte'] {
  display: none;
}

input[type="file"] {
  display: none;
}

.btnfileupload {
  border-radius: 20px;
  border: 1px solid var(--Primary-300, #6884BA);
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: var(--primary--300, #6884BA);
  padding: 13px 16px;
  margin-top: 20px;
  gap: 16px;
  font-family: Barlow;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.btnfileupload:hover {
  color: #B3C1DD;
  border-color: #B3C1DD;
}

.btnfileupload:hover svg path {
  stroke: #B3C1DD;
}

.btnfileupload:active {
  color: #273756;
  border-color: #273756;
}

.btnfileupload:active svg path {
  stroke: #273756;
}

.btnfileupload i {
  font-size: 15px;
  margin-right: 5px;
}

#soportes .row,
#patologias .row,
#anexass .row,
#pintados .row {
  display: flex;
  flex-wrap: wrap;
}

#soportes .elemento-soporte,
#patologias .elemento-patologias,
#anexas .elemento-anexas,
#pintados .elemento-pintados {
  margin-bottom: 30px;
}

#soportes label,
#patologias label,
#anexas label {
  overflow: hidden;
  text-transform: uppercase;
  height: 40px;
  width: 100%;
}

#soportes .descripcion-checkbox,
#patologias .descripcion-checkbox,
#anexas .descripcion-checkbox,
#pintados .descripcion-checkbox {
  overflow: hidden;
  height: 65px;
  width: 100%;
}

#soportes .soporte_nota,
#patologias .patologias_nota,
#anexas .anexas_nota,
#pintados .pintados_nota {
  text-transform: uppercase;
  height: fit-content;
  display: block;
}

#soportes #soporte_nota,
#patologias #patologias_nota,
#anexas #anexas_nota,
#pintados #pintados_nota {
  height: 100px;
  width: 100%;
  background: #2737561A 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 0px;
  font: normal normal normal 12px Barlow;
  letter-spacing: 0px;
  color: #273756;
  vertical-align: top;
}

.dashboard-icons {
  display: flex;
  padding: 3px !important;
  width: 85px;
  background-color: #ffffff !important;
}

.usuarios-icons {
    padding: 3px !important;
    width: 80px;
    background-color: #ffffff !important;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
.form-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    width: 100%;
}

.form-two-columns .full-width {
    grid-column: 1 / -1;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    color: #FFF;
    font-family: Barlow;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

@media (max-width: 480px) {
    .form-two-columns {
        grid-template-columns: 1fr;
    }

    .form-two-columns .full-width {
        grid-column: 1;
    }
}
.dashboard-icons .btn,
.usuarios-icons .btn {
  padding: 5px !important;
}


.fa-paper-plane,
.fa-check {
  color: #77D86B !important;
}

.fa-file-pdf {
  color: #273756 !important;
}

.fa-times-circle {
  color: #DE3059 !important;
}

.fa-eraser {
  color: #dc9a44 !important;
}

.bbdd-icons {
  display: flex;
  padding: 3px !important;
  width: 30px;
  background-color: #ffffff !important;
}

.bbdd-icons .btn {
  padding: 5px !important;
}

.radio input[type="radio"] {
  background: none;
  box-shadow: none;
  border-radius: 0px;
  font: normal normal normal 12px Barlow;
  letter-spacing: 0px;
  color: #273756;
  width: 14px;
  height: 14px;
  margin-top: 3px;
}

.modal-body label {
  padding-right: 10px;
}

.modal-body a {
  background: #273756 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 10px 0px 0px 0px;
  display: inline-block;
  cursor: pointer;
  color: #ffffff !important;
  padding: 9px 22px;
  font: italic normal bold 16px Barlow;
  text-transform: none !important;
  border: none;
}

#emailEnviar {
  width: 446px;
  background: #2737561A 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 0px;
  font: normal normal normal 12px Barlow;
  letter-spacing: 0px;
  color: #273756;
  display: inline-block;
}


.daterangepicker .calendar-table th {
  height: 24px !important;
  border-radius: 0px !important;
}

.daterangepicker td.in-range {
  background-color: #85c6e3 !important;
}

#soportes-suelo,
#soportes-fachada,
#soportes-techo {
  display: none;
}

#patologias-suelo,
#patologias-fachada,
#patologias-techo {
  display: none;
}

#pintados-suelo,
#pintados-fachada,
#pintados-techo {
  display: none;
}

#imprimacion,
#acabado,
#productos,
#SATE {
  display: none;
}

.btnfts {
  background: #273756 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 10px 0px 0px 0px;
  display: inline-block;
  cursor: pointer;
  color: #ffffff !important;
  padding: 9px 22px;
  font: italic normal bold 16px Barlow;
  text-transform: none !important;
  border: none;
  margin-right: 30px;
  margin-bottom: 30px;
  min-width: 150px;
  text-align: center;
}

.completo {
  background-color: #273756 !important;
  color: #FFFFFF !important;
}

.seleccionado {
  background-color: #26567C !important;
}

.loader {
  font-size: 10px;
  margin: 20% auto;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: #ffffff;
  background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
}

.loader:before {
  width: 50%;
  height: 50%;
  background: #FFF;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}

.loader:after {
  background: #273756;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

abbr {
  text-decoration: none !important;
  border-bottom: none !important;
}

abbr[title],
acronym[title] {
  border-bottom: none !important;
}
.app-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  display: inline-flex;
  align-items: flex-start;
  gap: 10px;

  width: max-content;
  min-width: 280px;
  max-width: 420px;
  padding: 12px 16px;
  border-radius: 16px;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

  font-family: Barlow, sans-serif;
  white-space: normal;
  pointer-events: none;
}

.app-toast__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.app-toast__icon svg {
  display: block;
}

.app-toast__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-toast__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
}

.app-toast__desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
}

/* SUCCESS */
.app-toast--success {
  background: #DAEFE0;
}
.app-toast--success .app-toast__title {
  color: #49A764;
}
.app-toast--success .app-toast__desc {
  color: #273756;
}

/* ERROR */
.app-toast--error {
  background: #FEE5E1;
}
.app-toast--error .app-toast__title {
  color: #FC7A67;
}
.app-toast--error .app-toast__desc {
  color: #273756;
}

/* INFO */
.app-toast--info {
  background: #B3C1DD;
}
.app-toast--info .app-toast__title {
  color: #4967A2;
}
.app-toast--info .app-toast__desc {
  color: #273756;
}

.app-toast {
  opacity: 0;
  transform: translateY(10px);
  animation: toast-in 0.25s ease forwards;
}

/*WARNING*/
.app-toast--warning {
  background-color: #F3EDCE;
}

.app-toast--warning .app-toast__title {
  color: #D0B839;
}
@keyframes toast-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.app-toast.is-leaving {
  animation: toast-out 0.2s ease forwards;
}

@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

@media (max-width: 768px) {
  .app-toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
    min-width: 0;
    max-width: none;
    width: auto;
  }
}
