.column-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.column-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.title_form {
  display: flex;
  align-items: center;
  margin: 0 !important;
  padding: 0 14px;
  background-color: #f6f8f9;
}

.py-14 {
  padding-top: 14px;
  padding-bottom: 14px;
}

ul {
  padding: 0 !important;
  margin: 0 !important;
}

ul li {
  list-style: none;
}

.column-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.label_input {
  position: relative;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  margin: 0;
}

.title_input {
  display: flex;
  align-items: center;
  padding: 28px 14px 14px 14px;
  margin: 0 !important;
  background-color: #e7eaf2;
}

.label_input .input_new,
.select_new {
  border: none;
  box-sizing: border-box !important;
  background-color: #f6f8f9;
  outline: none;
  /* height: initial !important; */
}

input,
select {
  box-sizing: border-box !important;
  padding: 0 !important;
  /* background-color: #00000027; */
}

select {
  background-image: url(../img/icons/arrow-down-select_new.png) !important;
  background-position: calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px), 100% 0 !important;
  background-size: 10px 8px, 5px 5px, 2.5em 2.5em !important;
  background-repeat: no-repeat !important;
}

/* Chrome, Edge, Safari */
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}

/* Firefox */
input[type="date"]::-moz-focus-inner {
  border: 0;
}

input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="date"] {
  background-image: url(../img/icons/date_blue.png) !important;
  background-position: calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px), 100% 0 !important;
  background-size: 17px 17px, 5px 5px, 2.5em 2.5em !important;
  background-repeat: no-repeat !important;
}

input[type="datatime-local"] {
  background-image: url(../img/icons/date_blue.png) !important;
  background-position: calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px), 100% 0 !important;
  background-size: 17px 17px, 5px 5px, 2.5em 2.5em !important;
  background-repeat: no-repeat !important;
}

.input_new {
  padding: 0 !important;
  height: 42px !important;
  padding: 4px 12px !important;
  border-radius: initial !important;
  width: 100% !important;
  max-height: 100% !important;
}

.select_new {
  padding: 0 !important;
  height: 42px !important;
  padding: 4px 12px !important;
  border-radius: initial !important;
  width: 100% !important;
  max-height: 100% !important;
}

.btn-primary {
  background-color: #005dca;
  color: white;
  position: relative;
  cursor: pointer;
  display: inline-flex;
  justify-content: end;
  align-items: flex-end;
  padding: 12px 22px !important;
  border: none;
}

.error-msg {
  color: red;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.na-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 8px;
}

.na-checkbox {
  width: fit-content;
  font-size: 0.9em;
  color: white;
  background-color: #0943b5;
  padding: 2px 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: absolute;
  right: 0;
  top: 0;
}

/* Aquí es donde ocurre la magia */
.no-aplica-toggle:checked+.na-checkbox {
  background-color: #a4a4a4;
  /* o el color que desees cuando está chequeado */
  color: #fff;
}

.mensaje_success {
  background-color: #0942b5e9;
  color: white;
  width: fit-content;
  padding: 12px;
  /* margin: 4px; */
  border-radius: 4px;
  /* position: absolute; */
  top: 58px;
  right: 0;
  left: 0;
  z-index: 100;
  margin: 0 auto;
}

textarea {
  border: none;
  box-sizing: border-box !important;
  background-color: #f6f8f9;
  outline: none;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100px;
  /* o la altura fija que quieras */
  min-height: 100px;
  max-height: 100px;
  resize: none;
  /* ni expandir ni achicar */
  padding: 12px;
}

.mensaje_alerta {
  padding: 12px;
  background-color: #fbb800ce;
  /* amarillo vibrante */
  color: #1B1B1B;
  /* texto oscuro para buen contraste */
  border-radius: 4px;
}