.view-crud {
  padding: 15px 0;
}
.view-crud .block--actions a.link {
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
}
.view-crud .block--actions a.link img {
  display: inline-block;
  vertical-align: bottom;
}

.crud--view {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 20px auto;
  font-size: 14px;
}
.crud--view .table-6cols td:nth-of-type(odd) {
  width: 5%;
}
.crud--view .table-6cols td:nth-of-type(even) {
  width: 28.3333333333%;
}
.crud--view .table-4cols td:nth-of-type(odd) {
  width: 25%;
}
.crud--view .table-4cols td:nth-of-type(even) {
  width: 25%;
}
.crud--view .table-2cols td:nth-of-type(odd) {
  width: 40%;
}
.crud--view .table-2cols td:nth-of-type(even) {
  width: 60%;
}
.crud--view section {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 14px;
  padding: 10px 10px;
}
.crud--view section .actions .btn {
  padding: 10px 15px;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.crud--view section .actions .btn.d-block {
  display: block;
}
.crud--view section .actions .btn svg, .crud--view section .actions .btn img {
  display: inline-block;
  width: 16px;
  height: auto;
  line-height: 1;
  vertical-align: middle;
}
.crud--view section .actions .btn.btn-action {
  background-color: #f3f4f6;
  color: #6b7280;
}
.crud--view section .actions .btn.btn-action:hover {
  background-color: #e5e7eb;
}
.crud--view section .actions .btn.btn-lila {
  background-color: #4f46e5;
  color: white;
}
.crud--view section .actions .btn.btn-lila:hover {
  background-color: #4338ca;
  color: white;
}
.crud--view section .actions .btn.btn-warning {
  text-transform: none;
  background-color: red;
  color: white;
}
.crud--view section .actions .btn.btn-warning:hover {
  background-color: red;
  opacity: 0.7;
}
.crud--view section.block--actions {
  border-bottom: 2px solid #e5e7eb;
  flex-direction: column;
  padding: 20px 10px;
}
.crud--view section.block--actions p {
  display: block;
  margin: 0 0 15px;
}
.crud--view section.block--actions.center {
  align-items: center;
}
.crud--view section.block--actions.right {
  align-items: flex-end;
}
.crud--view section.block--info {
  border-bottom: 2px solid #e5e7eb;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.crud--view section.block--info h3 {
  font-weight: normal;
}
.crud--view section.block--info span {
  font-weight: bold;
}
.crud--view section.block--intro {
  background-color: #f9fafb;
  border-bottom: 2px solid #e5e7eb;
  font-weight: bold;
}
.crud--view section.block--table {
  padding: 0 0;
}
.crud--view section.block--table table {
  padding: 0;
  margin: 0;
}
.crud--view section.block--table table td {
  padding: 10px 10px;
  border-bottom: 2px solid #e5e7eb;
}
.crud--view section.block--table table td:nth-of-type(odd) {
  color: #374151;
}
.crud--view section.block--table table td:nth-of-type(even) {
  font-weight: bold;
}
.crud--view .table--crud td {
  font-size: 14px;
  color: black;
  padding: 10px 5px;
}
.crud--view .table--crud tr:first-child {
  background-color: #c20011;
}
.crud--view .table--crud tr:first-child td {
  color: #fff;
  border-bottom: none;
}
.crud--view .table--crud tr td {
  border-bottom: solid #c20011 1px;
}
.crud--view .table--crud tr td:first-child {
  font-weight: bold;
}

.crud--nav {
  background-color: #ffffff;
  border-bottom: solid #f8f9fa 1px;
}
.crud--nav ul {
  padding: 10px 30px;
  margin: 0 0;
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 0 25px;
  align-items: center;
}
.crud--nav ul li {
  text-decoration: none;
  font-weight: bold;
}
.crud--nav ul li.active {
  text-decoration: underline;
}
.crud--nav ul li:hover {
  text-decoration: underline;
}
.crud--nav ul li a {
  text-decoration: inherit;
}

.crud--forms p.mini {
  margin: 0 0;
  padding: 0 0;
  font-size: 13px;
  font-style: italic;
}
.crud--forms .password-container {
  position: relative;
}
.crud--forms .password-container #toggle-password-visibility {
  appearance: none;
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  border: none;
  padding: 10px 10px;
  margin: 0;
}
.crud--forms .password-container #toggle-password-visibility svg {
  display: block;
  width: 16px;
  height: 16px;
}
.crud--forms .form-item {
  padding: 15px 0;
}
.crud--forms .form-item.field_profile_distrito, .crud--forms .form-item.field_profile_barrio {
  display: none;
}
.crud--forms .form-item.field_profile_distrito.active, .crud--forms .form-item.field_profile_barrio.active {
  display: block;
}
.crud--forms .lopd label {
  font-weight: normal;
  font-size: 12px;
  line-height: 1.36;
}
.crud--forms label {
  display: block;
  font-weight: bold;
  padding-bottom: 10px;
  font-size: 16px;
}
.crud--forms .custom-select {
  position: relative;
}
.crud--forms .custom-select::before,
.crud--forms .custom-select::after {
  --size: 0.3rem;
  position: absolute;
  content: "";
  right: 1rem;
  pointer-events: none;
}
.crud--forms .custom-select::before {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-bottom: var(--size) solid black;
  top: 40%;
}
.crud--forms .custom-select::after {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-top: var(--size) solid black;
  top: 55%;
}
.crud--forms select {
  appearance: none;
  /* safari */
  -webkit-appearance: none;
  /* other styles for aesthetics */
  width: 100%;
  background-color: #f8f9fa;
  border-color: #cacfd5;
  border-radius: 7px;
  padding: 15px 10px;
  color: #000;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.crud--forms input[type=text], .crud--forms input[type=password], .crud--forms input[type=tel], .crud--forms input[type=email] {
  background-color: #f8f9fa;
  border-color: #cacfd5;
  border-radius: 7px;
  padding: 5px 10px;
  color: #000;
  font-size: 16px;
  line-height: 1.34;
}
.crud--forms input:disabled {
  background-color: #cacfd5;
  border-color: #cacfd5;
}
.crud--forms textarea {
  background-color: #f8f9fa;
  border-color: #cacfd5;
  border-radius: 7px;
  padding: 15px 10px;
  font-size: 16px;
  line-height: 1.34;
  color: #000;
}
.crud--forms .action {
  padding: 25px 0 0;
}
.crud--forms .btn-right {
  margin: 0;
  margin-left: auto;
}
.crud--forms .block--title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 20px 0;
}
.crud--forms .block--actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 0;
}
.crud--forms .block--actions a.link {
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
}
.crud--forms .block--actions a.link img {
  display: inline-block;
  vertical-align: bottom;
}
.crud--forms .block--forms {
  display: table;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 40px;
}
.crud--forms form {
  background-color: #ffffff;
  border: solid #eeeff0 1px;
  padding: 25px 25px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.crud--bg {
  background-color: #f8f9fa;
}

.crud-users--list, .crud-registers--list {
  padding: 20px 0;
}
.crud-users--list .table-crud--historico span, .crud-registers--list .table-crud--historico span {
  display: inline-block;
  padding: 0 5px;
}
.crud-users--list .table-crud--historico span.preloader, .crud-registers--list .table-crud--historico span.preloader {
  visibility: hidden;
  padding: 0 0;
  display: block;
  float: right;
  width: 20px;
  height: 20px;
  position: relative;
}
.crud-users--list .table-crud--historico span.preloader.active, .crud-registers--list .table-crud--historico span.preloader.active {
  visibility: visible;
}
.crud-users--list .table-crud--historico span.preloader img, .crud-registers--list .table-crud--historico span.preloader img {
  display: table;
  width: 100%;
  margin-left: 5px;
}
.crud-users--list .table--header th.orderable, .crud-registers--list .table--header th.orderable {
  position: relative;
  padding-right: 25px;
  cursor: hand;
  cursor: pointer;
}
.crud-users--list .table--header th.orderable:hover:after, .crud-registers--list .table--header th.orderable:hover:after {
  opacity: 0.5;
}
.crud-users--list .table--header th.orderable.asc.active:after, .crud-registers--list .table--header th.orderable.asc.active:after {
  opacity: 1 !important;
  background-image: url("../icons/order-asc.svg");
}
.crud-users--list .table--header th.orderable.desc.active:after, .crud-registers--list .table--header th.orderable.desc.active:after {
  opacity: 1 !important;
  background-image: url("../icons/order-desc.svg");
}
.crud-users--list .table--header th.orderable:after, .crud-registers--list .table--header th.orderable:after {
  position: absolute;
  top: 15px;
  content: "";
  width: 8px;
  height: 14px;
  margin-left: 10px;
  background-image: url("../icons/order.svg");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  transition: all 0.4s;
}
.crud-users--list .table-container, .crud-registers--list .table-container {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: auto;
  font-size: 14px;
}
.crud-users--list .table-header, .crud-registers--list .table-header {
  padding: 20px;
  border-bottom: 2px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 15px;
}
.crud-users--list .table-header h1, .crud-registers--list .table-header h1 {
  font-size: 20px;
  color: #374151;
}
.crud-users--list .table-header span, .crud-registers--list .table-header span {
  color: #6b7280;
  margin-right: auto;
}
.crud-users--list .table-header-buttons, .crud-registers--list .table-header-buttons {
  display: flex;
  gap: 10px;
}
.crud-users--list .table-header-buttons .btn, .crud-registers--list .table-header-buttons .btn {
  text-decoration: none;
}
.crud-users--list .btn, .crud-registers--list .btn {
  padding: 8px 16px;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.crud-users--list .btn svg, .crud-registers--list .btn svg {
  display: inline-block;
  width: 16px;
  height: auto;
  line-height: 1;
  vertical-align: middle;
}
.crud-users--list .btn.btn-action, .crud-registers--list .btn.btn-action {
  background-color: #f3f4f6;
  color: #6b7280;
}
.crud-users--list .btn.btn-action:hover, .crud-registers--list .btn.btn-action:hover {
  background-color: #e5e7eb;
}
.crud-users--list .btn.btn-lila, .crud-registers--list .btn.btn-lila {
  background-color: #4f46e5;
  color: white;
}
.crud-users--list .btn.btn-lila:hover, .crud-registers--list .btn.btn-lila:hover {
  background-color: #4338ca;
  color: white;
}
.crud-users--list .table, .crud-registers--list .table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.crud-users--list .table thead, .crud-registers--list .table thead {
  background-color: #f9fafb;
}
.crud-users--list .table thead th, .crud-registers--list .table thead th {
  padding: 12px 16px;
  text-align: left;
  color: #1f2937;
  font-weight: 600;
}
.crud-users--list .th-content, .crud-registers--list .th-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.crud-users--list .dropdown, .crud-registers--list .dropdown {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 4px 8px;
  cursor: pointer;
  margin-left: 8px;
}
.crud-users--list .icon-button, .crud-registers--list .icon-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}
.crud-users--list .icon-button img, .crud-registers--list .icon-button img {
  width: 16px;
  height: 16px;
}
.crud-users--list .text-center, .crud-registers--list .text-center {
  text-align: center;
}
.crud-users--list .table tbody td, .crud-registers--list .table tbody td {
  padding: 12px 16px;
  color: #4b5563;
  border-bottom: 1px solid #e5e7eb;
}
.crud-users--list .table tbody td.td-actions, .crud-registers--list .table tbody td.td-actions {
  display: flex;
  align-items: center;
  gap: 0 10px;
  justify-content: center;
}
.crud-users--list .table tbody td.td-actions a:hover, .crud-registers--list .table tbody td.td-actions a:hover {
  opacity: 0.5;
}
.crud-users--list .table tbody tr:last-child td, .crud-registers--list .table tbody tr:last-child td {
  border-bottom: none;
}
.crud-users--list .roles span, .crud-registers--list .roles span {
  border-radius: 0.25rem;
  padding-bottom: 0.125rem;
  padding-top: 0.125rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1rem;
  background-color: #f1f2f4;
  color: #1c2530;
}
.crud-users--list .roles.administrator span, .crud-registers--list .roles.administrator span {
  background-color: #cffafe;
  color: #059669;
}
.crud-users--list .roles.subscriber span, .crud-registers--list .roles.subscriber span {
  background-color: #e0eafe;
  color: #3c328e;
}
.crud-users--list .table-footer, .crud-registers--list .table-footer {
  padding: 20px;
  border-top: 2px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.crud-users--list .table-footer div, .crud-registers--list .table-footer div {
  color: #374151;
}
.crud-users--list .table-footer-buttons, .crud-registers--list .table-footer-buttons {
  display: flex;
  gap: 10px;
}

.crud-btn {
  padding: 8px 16px;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.crud-btn svg, .crud-btn img {
  display: inline-block;
  width: 16px;
  height: auto;
  line-height: 1;
  vertical-align: middle;
}
.crud-btn.btn-action {
  background-color: #f3f4f6;
  color: #6b7280;
}
.crud-btn.btn-action:hover {
  background-color: #e5e7eb;
}
.crud-btn.btn-action:visited {
  color: white;
}
.crud-btn.btn-lila {
  background-color: #4f46e5;
  color: white;
}
.crud-btn.btn-lila:hover {
  background-color: #4338ca;
  color: white;
}
.crud-btn.btn-lila:visited {
  color: white;
}

.table--norecords {
  padding: 30px 15px;
  font-weight: bold;
  text-align: center;
}

.table--search {
  padding: 15px 15px;
  border-bottom: 2px solid #e5e7eb;
}
.table--search form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  column-gap: 20px;
}
.table--search form .form-item {
  flex: 1 0 auto;
  position: relative;
}
.table--search form .form-item input[type=text], .table--search form .form-item input[type=password], .table--search form .form-item input[type=tel], .table--search form .form-item input[type=email] {
  background-color: #f8f9fa;
  border-color: #cacfd5;
  border-radius: 7px;
  padding: 6px 10px;
  color: #000;
  font-size: 16px;
}
.table--search form .form-item input:disabled {
  background-color: #cacfd5;
  border-color: #cacfd5;
}
.table--search form .icon {
  display: none;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 10px;
  bottom: 12px;
}
.table--search form .actions {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
}
.table--search form .actions button {
  float: right;
}
.table--search form .actions .search-reset {
  float: left;
  font-size: 12px;
  line-height: 18px;
  padding-top: 5px;
}

/*# sourceMappingURL=crud.css.map */
