@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
/**
  * @yaireo/ui-range - CSS-only custom, flexible, range input
  *
  * @version v2.1.15
  * @homepage https://github.com/yairEO/ui-range
  */

.range-slider{--primary-color: #0366D6;--value-offset-y: var(--ticks-gap);--value-active-color: white;--value-background: transparent;--value-background-hover: var(--primary-color);--value-font: 700 12px/1 Arial;--fill-color: var(--primary-color);--progress-background: #EEE;--progress-radius: 20px;--track-height: calc(var(--thumb-size)/2);--min-max-font: 12px Arial;--min-max-opacity: .5;--min-max-x-offset: 10%;--thumb-size: 22px;--thumb-color: white;--thumb-shadow: 0 0 3px rgba(0,0,0,.4),
                  0 0 1px rgba(0,0,0,.5) inset,
                  0 0 0 99px var(--thumb-color) inset;--thumb-shadow-active: 0 0 0 calc(var(--thumb-size)/4) inset var(--thumb-color),
                         0 0 0 99px var(--primary-color) inset,
                         0 0 3px rgba(0,0,0,.4);--thumb-shadow-hover: var(--thumb-shadow);--ticks-thickness: 1px;--ticks-height: 5px;--ticks-gap: var(--ticks-height, 0);--ticks-color: silver;--step: 1;--ticks-count: (var(--max) - var(--min)) / var(--step);--maxTicksAllowed: 30;--too-many-ticks: Min(1, Max(var(--ticks-count) - var(--maxTicksAllowed), 0));--x-step: Max( var(--step), var(--too-many-ticks) * (var(--max) - var(--min)) );--tickIntervalPerc_1: Calc( (var(--max) - var(--min)) / var(--x-step) );--tickIntervalPerc: calc(  (100% - var(--thumb-size))/var(--tickIntervalPerc_1) * var(--tickEvery, 1)  );--value-a: Clamp(var(--min), var(--value, 0), var(--max));--value-b: var(--value, 0);--text-value-a: var(--text-value, "");--completed-a: calc((var(--value-a) - var(--min) ) / (var(--max) - var(--min)) * 100);--completed-b: calc((var(--value-b) - var(--min) ) / (var(--max) - var(--min)) * 100);--ca: Min(var(--completed-a), var(--completed-b));--cb: Max(var(--completed-a), var(--completed-b));--thumbs-too-close: Clamp(
    -1,
    1000 * (Min(1, Max(var(--cb) - var(--ca) - 5, -1)) + 0.001),
    1
  );--thumb-close-to-min: Min(1, Max(var(--ca) - 5, 0));--thumb-close-to-max: Min(1, Max(95 - var(--cb), 0));box-sizing:content-box;display:inline-block;height:Max(calc(22px/2), 22px);height:Max(var(--track-height), var(--thumb-size));background:linear-gradient(to right, silver 1px, transparent 1px) repeat-x;background:linear-gradient(to right, var(--ticks-color) var(--ticks-thickness), transparent 1px) repeat-x;background-size:calc(  (100% - 22px)/( (var(--max) - var(--min)) / Max( 1, Min(1, Max((var(--max) - var(--min)) / 1 - 30, 0)) * (var(--max) - var(--min)) ) ) * 1  ) 5px;background-size:calc(  (100% - 22px)/Calc( (var(--max) - var(--min)) / Max( 1, Min(1, Max((var(--max) - var(--min)) / 1 - 30, 0)) * (var(--max) - var(--min)) ) ) * 1  ) 5px;background-size:var(--tickIntervalPerc) var(--ticks-height);background-position-x:calc(22px/2 - 1px/2);background-position-x:calc(var(--thumb-size)/2 - var(--ticks-thickness)/2);background-position-y:bottom;background-position-y:var(--flip-y, bottom);padding-bottom:5px;padding-bottom:var(--flip-y, var(--ticks-gap));padding-top:calc(var(--flip-y) * 5px);padding-top:calc(var(--flip-y) * var(--ticks-gap));position:relative;z-index:1}.range-slider[data-ticks-position='top']{--flip-y: 1}.range-slider::before,.range-slider::after{--offset: calc(var(--thumb-size)/2);content:counter(x);display:block;display:var(--show-min-max, block);font:var(--min-max-font);position:absolute;bottom:-2.5ch;bottom:var(--flip-y, -2.5ch);top:calc(-2.5ch * var(--flip-y));opacity:Clamp(0, var(--at-edge), var(--min-max-opacity));transform:translateX(calc( var(--min-max-x-offset) * -1 * -1)) scale(var(--at-edge));transform:translateX(calc( var(--min-max-x-offset) * var(--before, -1) * -1)) scale(var(--at-edge));pointer-events:none}.range-slider::before{--before: 1;--at-edge: var(--thumb-close-to-min);counter-reset:x var(--min);left:var(--offset)}.range-slider::after{--at-edge: var(--thumb-close-to-max);counter-reset:x var(--max);right:var(--offset)}.range-slider__values{position:relative;top:50%;line-height:0;text-align:justify;width:100%;pointer-events:none;margin:0 auto;z-index:5}.range-slider__values::after{content:'';width:100%;display:inline-block;height:0;background:red}.range-slider__progress{--start-end: calc(var(--thumb-size)/2);--clip-end: calc(100% - (var(--cb) ) * 1%);--clip-start: calc(var(--ca) * 1%);--clip: inset(-20px var(--clip-end) -20px var(--clip-start));position:absolute;left:calc(var(--thumb-size)/2);left:var(--start-end);right:calc(var(--thumb-size)/2);right:var(--start-end);top:calc(var(--ticks-gap) * 0 + var(--thumb-size)/2 - var(--track-height)/2);top:calc(var(--ticks-gap) * var(--flip-y,0) + var(--thumb-size)/2 - var(--track-height)/2);height:calc(var(--track-height));background:#EEE;background:var(--progress-background, #EEE);pointer-events:none;z-index:-1;border-radius:var(--progress-radius)}.range-slider__progress::before{content:'';position:absolute;left:0;right:0;-webkit-clip-path:var(--clip);clip-path:var(--clip);top:0;bottom:0;background:black;background:var(--fill-color, black);box-shadow:var(--progress-flll-shadow);z-index:1;border-radius:inherit}.range-slider__progress::after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;box-shadow:var(--progress-shadow);pointer-events:none;border-radius:inherit}.range-slider>input{-webkit-appearance:none;width:100%;height:var(--thumb-size);margin:0;position:absolute;left:0;top:calc(50% - Max(var(--track-height), var(--thumb-size))/2 + (var(--ticks-gap)/2 * -1));top:calc(50% - Max(var(--track-height), var(--thumb-size))/2 + (var(--ticks-gap)/2 * var(--flip-y, -1)));top:calc(50% - Max(var(--track-height), var(--thumb-size))/2 + calc(var(--ticks-gap)/2 * -1));top:calc(50% - Max(var(--track-height), var(--thumb-size))/2 + calc(var(--ticks-gap)/2 * var(--flip-y, -1)));cursor:-webkit-grab;cursor:grab;outline:none;background:none}.range-slider>input:not(:only-of-type){pointer-events:none}.range-slider>input::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;border:none;height:var(--thumb-size);width:var(--thumb-size);transform:var(--thumb-transform);border-radius:50%;border-radius:var(--thumb-radius, 50%);background:var(--thumb-color);box-shadow:var(--thumb-shadow);pointer-events:auto;-webkit-transition:.1s;transition:.1s}.range-slider>input::-moz-range-thumb{-moz-appearance:none;appearance:none;border:none;height:var(--thumb-size);width:var(--thumb-size);transform:var(--thumb-transform);border-radius:50%;border-radius:var(--thumb-radius, 50%);background:var(--thumb-color);box-shadow:var(--thumb-shadow);pointer-events:auto;-moz-transition:.1s;transition:.1s}.range-slider>input::-ms-thumb{appearance:none;border:none;height:var(--thumb-size);width:var(--thumb-size);transform:var(--thumb-transform);border-radius:50%;border-radius:var(--thumb-radius, 50%);background:var(--thumb-color);box-shadow:var(--thumb-shadow);pointer-events:auto;-ms-transition:.1s;transition:.1s}.range-slider>input:hover{--thumb-shadow: var(--thumb-shadow-hover)}.range-slider>input:hover+output{--value-background: var(--value-background-hover);--y-offset: -5px;color:var(--value-active-color);box-shadow:0 0 0 3px var(--value-background-hover);box-shadow:0 0 0 3px var(--value-background)}.range-slider>input:active{--thumb-shadow: var(--thumb-shadow-active);cursor:-webkit-grabbing;cursor:grabbing;z-index:2}.range-slider>input:active+output{transition:0s}.range-slider>input:nth-of-type(1){--is-left-most: Clamp(0, (var(--value-a) - var(--value-b)) * 99999 ,1)}.range-slider>input:nth-of-type(1)+output{--value: var(--value-a);--x-offset: calc(var(--completed-a) * -1%)}.range-slider>input:nth-of-type(1)+output:not(:only-of-type){--flip: calc(var(--thumbs-too-close) * -1)}.range-slider>input:nth-of-type(1)+output::after{content:"" var(--text-value-a) "";content:var(--prefix, "") var(--text-value-a) var(--suffix, "")}.range-slider>input:nth-of-type(2){--is-left-most: Clamp(0, (var(--value-b) - var(--value-a)) * 99999 ,1)}.range-slider>input:nth-of-type(2)+output{--value: var(--value-b)}.range-slider>input:only-of-type ~ .range-slider__progress{--clip-start: 0}.range-slider>input+output{--flip: -1;--x-offset: calc(var(--completed-b) * -1%);--pos: calc(((var(--value) - var(--min))/(var(--max) - var(--min))) * 100%);pointer-events:none;position:absolute;z-index:5;background:var(--value-background);border-radius:10px;padding:2px 4px;left:calc(((var(--value) - var(--min))/(var(--max) - var(--min))) * 100%);left:var(--pos);transform:translate(calc(var(--completed-b) * -1%), calc(150% * -1 - (0px + var(--value-offset-y)) * -1));transform:translate(var(--x-offset), calc(150% * var(--flip) - (var(--y-offset, 0px) + var(--value-offset-y)) * var(--flip)));transition:all .12s ease-out, left 0s}.range-slider>input+output::after{content:"" var(--text-value-b) "";content:var(--prefix, "") var(--text-value-b) var(--suffix, "");font:var(--value-font)}

:root,
[data-bs-theme=light] {
  --bs-primary: #024430;
  --bs-primary-rgb: 2, 68, 48;
}
:root,
[data-bs-theme=light] {
  --bs-body-bg: #f4f7f9;
  --bs-border-color-translucent: #e2e8f0;
}
.pre-load {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  z-index: 99999999999;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0;
  display: -ms-flexbox;
  display: box;
  display: flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: all 0.4s;
  transition-timing-function: ease;
}
.pre-load .spinner {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pre-load .spinner .infinyti {
  width: 80px;
  margin-top: -30px;
  margin-left: 30px;
}
.pre-load .spinner .infinyti img {
  min-width: 100%;
  width: 100%;
  height: auto;
}
.pre-load.hide-loader {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
#loader-ajax {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  top: 0;
  left: 0;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#loader-ajax .spinner {
  position: fixed;
  z-index: 99999999;
}
.spinner-inner {
  position: absolute;
  width: 150px;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 50%;
  margin-left: -75px;
  height: 122px;
  top: 50%;
  margin-top: -61px;
}
.spinner-inner .logo img {
  max-width: 100%;
  height: auto;
}
.spinner-inner .infinyti {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.spinner-inner .infinyti img {
  max-width: 50%;
  height: auto;
}
/**
|-------------------------------------------------------------------------------
| Elimina estilos del navegador
|-------------------------------------------------------------------------------
| Reinicia los valores de estilos establecidos por defecto por el navegador
|
*/
@media only screen {
  body {
    zoom: 100%;
  }
}
@media only screen and (max-width: 3841px) {
  body {
    zoom: 100%;
  }
}
@media only screen and (max-width: 2561px) {
  body {
    zoom: 100%;
  }
}
@media only screen and (max-width: 1920px) {
  body {
    zoom: 100%;
  }
}
@media only screen and (max-width: 1399px) {
  body {
    zoom: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  body {
    zoom: 100%;
  }
}
@media only screen and (max-width: 991px) {
  body {
    zoom: 100%;
  }
}
@media only screen and (max-width: 767px) {
  body {
    zoom: 100%;
  }
}
@media only screen and (max-width: 575px) {
  body {
    zoom: 100%;
  }
}
html {
  font-size: 14px;
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background: none;
}
@media only screen and (max-width: 767px) {
  *::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
}
*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px none;
}
*::-webkit-scrollbar-thumb {
  background-color: #d1d1d1;
  border-radius: 5px;
  -webkit-transition: all 1s;
  transition: all 1s;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #024430;
}
h3 {
  font-size: 1.2rem;
  color: #024430;
}
h2 {
  font-size: 1.2rem;
  color: #024430;
}
.name-block {
  transition: width 0.1s linear;
}
.name-block .name-tag {
  color: #024430;
  margin-bottom: 0;
  transition: transform 0.4s ease-in-out, font-size 0.1s linear;
  transform: translate3d(0px, 12px, 0);
}
.name-block .id-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-family: "Quicksand", sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in;
  opacity: 0.001;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  transform: translate3d(0, 15px, 0);
}
.name-block:hover .name-tag,
.name-block.active .name-tag {
  transform: translate3d(0, -5px, 0);
}
.name-block:hover .id-tag,
.name-block.active .id-tag {
  opacity: 1;
  -ms-filter: none;
  -webkit-filter: none;
          filter: none;
  transform: translate3d(0, -5px, 0);
}
.title-block .name-tag {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}
.title-block .name-tag .separator {
  color: #33666e;
  font-weight: 200;
  font-size: 1.5rem;
}
.title-block .name-tag .resource-title {
  color: $colorBaseDark300;
  font-weight: 300;
}
.title-block .name-tag .animal-name-title {
  color: #191a1b;
  font-weight: medium;
}
.title-block .name-tag .animal-code-title {
  color: #024430;
  font-weight: bold;
}
.protocols .name-block {
  border-bottom: 1px solid rgba(34,34,34,0.125);
}
.bd-r {
  border-right: 1px solid rgba(17,17,17,0.4);
}
.fade-out {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  transition: opacity 0.5s ease;
}
.width-50 {
  width: 50px !important;
}
.width-75 {
  width: 75px !important;
}
.width-100 {
  width: 100px !important;
}
.w-150,
.width-150 {
  width: 150px !important;
}
.w-200,
.width-200 {
  width: 200px !important;
}
.w-250,
.width-250 {
  width: 250px !important;
}
.w-290,
.width-290 {
  width: 290px !important;
}
.w-300,
.width-300 {
  width: 300px !important;
}
.w-350,
.width-350 {
  width: 350px !important;
}
.w-400,
.width-400 {
  width: 400px !important;
}
.form.is-loading {
  pointer-events: none;
/* Deshabilita interacciones */
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
/* Reduce la opacidad para simular estado deshabilitado */
  position: relative;
/* Necesario para la barra de carga */
  background-color: #f0f0f0;
/* Color de fondo deshabilitado */
}
.form {
  padding-top: 20px;
}
.form-floating.is-loading::before,
.form.is-loading::before {
  content: '';
  display: block;
  width: 100%;
  height: 50px;
/* Altura de la barra de carga */
  background: linear-gradient(90deg, rgba(52,152,219,0) 0%, rgba(2,68,48,0.25) 50%, rgba(52,152,219,0) 100%);
  background-size: 200% 100%;
  position: absolute;
  top: 0;
  margin-left: 0px;
  margin-right: 0px;
/* Posición de la barra de carga al fondo del contenedor */
  left: 0;
  animation: loading-animation 1.5s infinite linear;
  z-index: 999;
  border-radius: 4px;
}
:root,
[data-bs-theme=light] {
  --bs-body-font-weight: 500;
  --bs-font-sans-serif: "Quicksand", sans-serif;
}
.list-group {
  --bs-list-group-bg: transparent;
}
th {
  font-weight: 600;
}
.offcanvas {
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  margin-right: 1rem;
  margin-left: 1px;
  margin-top: 1rem;
  height: calc(100% - 2rem);
}
.offcanvas .offcanvas-header {
  background-color: #f7f7f7 !important;
}
.offcanvas .offcanvas-header {
  border-bottom: none;
  box-shadow: 0 -11px 16px 20px rgba(0,0,0,0.15);
  z-index: 10;
}
.offcanvas .offcanvas-header h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
}
.offcanvas .offcanvas-header h3 i {
  color: #3bce07;
}
.offcanvas .offcanvas-body {
  box-shadow: 0 -11px 16px 20px rgba(0,0,0,0.15);
  z-index: 5;
  padding-top: 2rem;
}
.offcanvas .offcanvas-footer {
  background-color: #f7f7f7 !important;
}
.offcanvas .offcanvas-footer {
  text-align: right;
  border-top: none;
  padding: 1rem;
}
.modal .modal-dialog .modal-content {
  overflow: hidden;
  border-radius: 14px;
}
.modal .modal-dialog .modal-content .modal-header {
  background-color: #f7f7f7 !important;
}
.modal .modal-dialog .modal-content .modal-header {
  position: relative;
  border-bottom: none;
  box-shadow: 0 -11px 16px 20px rgba(0,0,0,0.15);
  z-index: 10;
}
.modal .modal-dialog .modal-content .modal-header h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
}
.modal .modal-dialog .modal-content .modal-header h3 i {
  color: #3bce07;
}
.modal .modal-dialog .modal-content .modal-body {
  box-shadow: 0 -11px 16px 20px rgba(0,0,0,0.15);
  z-index: 5;
}
.modal .modal-dialog .modal-content .modal-footer {
  background-color: #f7f7f7 !important;
}
.modal .modal-dialog .modal-content .modal-footer {
  box-shadow: inset 0 19px 11px -12px rgba(0,0,0,0.1);
  text-align: right;
  border-top: none;
  padding: 1rem;
}
table tbody tr td,
table tbody tr th {
  background-color: transparent;
  color: #222;
  border-style: dotted;
}
table tbody tr select {
  min-width: 200px;
}
.table-hover tbody tr:hover td,
.table-hover tbody tr:hover th {
  box-shadow: inset 0 0 0 9999px #f7f7f7;
}
.table-sm tbody tr td,
.table-sm tbody tr th {
  padding: 7px;
}
.if-border,
.if-border-top,
.if-border-bottom,
.if-border-start,
.if-border-end {
  border-style: dotted !important;
}
.BarCustomChart-barra {
  margin-top: 1rem !important;
}
.BarCustomChart-barra {
  margin-bottom: 0;
}
.barLegend {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.progressBar-bg-1 {
  color: #1e4844;
}
.progressBar-bg-2 {
  color: #dbc9a0;
}
.progressBar-bg-3 {
  color: #bcf49d;
}
.progressBar-bg-4 {
  color: #7ab5af;
}
.navbar-nav .nav-item .nav-link {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .navbar-nav .nav-item .nav-link {
    -o-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .navbar-nav .nav-item .nav-link {
    border-radius: 0 !important;
  }
  .navbar-nav .nav-item .nav-link {
    padding: 0.5rem 1.5rem;
  }
}
.navbar-nav .nav-item .dropdown-toggle:after {
  border: none !important;
}
.navbar-nav .nav-item .dropdown-toggle:after {
  font-family: 'Material Symbols Outlined';
  content: '\e313';
}
#metricsDashboard > .nav-link,
.dropdown-mega > .dropdown-toggle {
  font-weight: 600 !important;
  margin-bottom: 0 !important;
}
#metricsDashboard > .nav-link,
.dropdown-mega > .dropdown-toggle {
  color: #222;
}
#metricsDashboard > .nav-link:hover,
.dropdown-mega > .dropdown-toggle:hover {
  color: #ffe7bb;
}
.dropdown-mega .dropdown-toggle,
.dropdown-mega .mb {
  margin-bottom: 1.618rem;
}
.dropdown-mega .mega-content {
  text-wrap: wrap;
}
.dropdown-mega >.dropdown-menu {
  width: 100vw;
  padding: 1.618rem;
  background-color: #fffefa;
}
@media only screen and (max-width: 1399px) {
  .dropdown-mega >.dropdown-menu {
    padding: 1rem;
  }
}
.dropdown-mega >.dropdown-menu .megamenu-block .megamenu-block-title {
  font-size: 1.618rem;
  color: #024430;
  border-bottom: 1px solid rgba(17,17,17,0.1);
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.dropdown-mega >.dropdown-menu .megamenu-block .megamenu-block-list .list-group-item {
  padding: 0.2rem 1rem !important;
}
.dropdown-mega >.dropdown-menu .megamenu-block .megamenu-block-list .list-group-item {
  display: -ms-flexbox;
  display: box;
  display: flex;
  border: none;
  border-bottom: 1px dotted rgba(17,17,17,0.1);
}
.dropdown-mega >.dropdown-menu .megamenu-block .megamenu-block-list .list-group-item:hover {
  background-color: #024430;
  color: #ffe7bb;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.dropdown-mega >.dropdown-menu .megamenu-block .megamenu-block-list >.dropdown .dropdown-toggle {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}
.dropdown-mega >.dropdown-menu .megamenu-block .megamenu-block-list >.dropdown .dropdown-toggle::after {
  position: absolute;
  right: 0;
  height: 6px;
  top: 50%;
  margin-top: -3px;
  margin-right: 8px;
}
@media only screen and (min-width: 1050px) {
  .dropdown-mega >.dropdown-menu .megamenu-block .megamenu-block-list >.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .dropdown-mega >.dropdown-menu .megamenu-block .megamenu-block-list >.dropdown:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}
.material-symbols-outlined {
  font-weight: inherit !important;
  font-style: inherit !important;
  font-size: inherit !important;
}
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
.animals-sale-list-animals_index .modal {
  z-index: 1000 !important;
}
.animals-sale-list-animals_index .modal-backdrop.show {
  z-index: 999 !important;
}
.my-gallery {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.form-check-input {
  border: var(--bs-border-width) solid #666;
}
@media only screen and (max-width: 767px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}
.animals-register-data_mastitis .dt-container .label-top-container {
  margin: 0 !important;
}
.animals-register-data_mastitis .dt-container .label-top-container {
  width: 100%;
}
.animals-register-data_mastitis .dt-container .label-top-container .form-select {
  height: 42px;
}
.dataTable tbody .btn.btn-xs.btn-outline-secondary {
  font-size: 0.9rem;
  background-color: #024430;
  color: #ffe7bb;
}
.dataTable tbody .btn.btn-xs.btn-outline-secondary:hover {
  background-color: #035d41;
}
.animals-genetics_index .offcanvas .form-group .btn-group {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #toolBar [role="group"] {
    width: 100%;
  }
}
#toolBar .navbar-nav {
  gap: 0.3rem;
}
@media only screen and (max-width: 991px) {
  #toolBar .navbar-nav {
    -o-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -o-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
  #toolBar .navbar-nav > .mb-2 {
    margin-bottom: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  #toolBar .navbar-nav {
    -o-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #toolBar .navbar-nav > .btn-toolbar.mb-2 {
    width: 100%;
  }
  #toolBar .navbar-nav > .mb-2 {
    margin-bottom: 0 !important;
  }
}
.toast-container-api {
  background-color: rgba(0,0,0,0.2) !important;
  -webkit-backdrop-filter: blur(3px) !important;
          backdrop-filter: blur(3px) !important;
}
.toast-container-api {
  height: 100vh;
  overflow-y: scroll;
}
.toast-container-api .toast {
  --bs-toast-font-size: 1rem;
}
.events-icon svg {
  width: 15px;
  height: auto;
}
.sheet-kpi-container {
  display: -ms-flexbox;
  display: box;
  display: flex;
  margin-bottom: 0.5em;
  gap: 0.5em;
}
@media only screen and (max-width: 767px) {
  .sheet-kpi-container {
    -o-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.text-bg-success {
  background-color: #4fa377 !important;
}
.text-bg-warning {
  background-color: #ffdd69 !important;
}
.text-bg-danger {
  background-color: #ed727a !important;
}
.text-bg-orange {
  background-color: #ffad5b !important;
}
@keyframes loading-animation {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.dropdown-indicator .dropdown-indicator-icon {
  height: 1rem;
  width: 1rem;
  transition: all 0.2s ease;
  margin-left: -4px;
}
.navbar-vertical {
  background-color: #313335;
}
.navbar-vertical .nav-item {
  display: block;
  width: 100%;
}
.navbar-vertical a,
.navbar-vertical .nav-link {
  padding-left: 0;
  padding-right: 0;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.navbar-vertical a *,
.navbar-vertical .nav-link * {
  color: #cccccd;
}
.navbar-vertical a.active,
.navbar-vertical .nav-link.active {
  background-color: #3b3d40;
}
.navbar-vertical a.active *,
.navbar-vertical .nav-link.active * {
  color: #fff;
}
.navbar-vertical a {
  width: 100%;
}
.navbar-vertical a:hover {
  background-color: #f1cf69;
}
.navbar-vertical a:hover * {
  color: #334543;
}
.navbar-vertical a:focus {
  color: #fff !important;
}
@media only screen and (min-width: 1199px) {
  .navbar-vertical {
    height: calc(100vh - 4rem);
    border-right: 1px solid var(--phoenix-navbar-vertical-border-color);
    margin: 0;
  }
}
.navbar-vertical .navbar-vertical-content {
  padding: 1rem 0;
}
.navbar-vertical .navbar-vertical-label {
  color: #f1cf69;
}
.navbar-vertical .navbar-collapse {
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: calc(100vh - 4rem);
}
.navbar-vertical .navbar-collapse .navbar-vertical-content {
  width: 260px;
}
.navbar-vertical .navbar-collapse .navbar-vertical-content.scrollbar {
  overflow: auto;
}
.navbar-vertical .navbar-vertical-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 0;
  padding-left: 2rem;
  margin: 1rem 0 0 0;
}
.navbar-vertical .nav-link {
  padding-left: 2rem !important;
}
.navbar-vertical .nav-link {
  font-size: 1rem;
  font-family: "Quicksand", sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 20px;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.navbar-vertical .nav-link .nav-link-icon {
  margin: 0 10px 0 5px;
}
.navbar-vertical .dropdown-indicator {
  padding-left: 1.25rem !important;
}
.navbar-vertical .dropdown-indicator .dropdown-indicator-icon {
  height: 1rem;
  width: 1rem;
  transition: transform 0.2s ease;
  color: #fff;
  margin-left: -4px;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.navbar-vertical .dropdown-indicator[aria-expanded=true] .dropdown-indicator-icon {
  transform: rotate(90deg);
}
.navbar-vertical .nav.parent {
  background-color: #212224;
  -o-box-orient: vertical;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -o-box-lines: single;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}
.navbar-vertical .nav.parent .nav-item .nav-link {
  font-size: 0.95rem;
}
.navbar-vertical .navbar-vertical-footer {
  border-top: 1px solid #334543;
  height: 4rem;
  width: 100%;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 2rem;
}
.navbar-vertical .navbar-vertical-footer a {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.navbar-vertical .navbar-vertical-footer a i {
  margin: 0.2rem 0.5rem 0.25rem 0;
  width: 1rem;
  height: 1rem;
}
body,
.content {
  position: relative;
  padding: 0;
}
@media only screen and (max-width: 1199px) {
  body,
  .content {
    width: 100vw;
    margin-left: 0;
  }
}
body .admin-body >.card,
.content .admin-body >.card {
  background-color: transparent;
  box-shadow: 0 0 0 transparent;
}
.main-container {
  display: -ms-flexbox;
  display: box;
  display: flex;
  min-height: calc(100vh - 4.4rem);
  margin-top: 55px;
}
@media only screen and (max-width: 991px) {
  .main-container {
    margin-top: 0;
  }
}
.main-container .side-menu {
  background-color: #313335;
  width: 260px;
  position: fixed;
  top: 4rem;
  z-index: 9;
}
@media only screen and (max-width: 1199px) {
  .main-container .side-menu {
    top: 0;
    z-index: 9999;
  }
}
.main-container .side-menu .offcanvas-body {
  padding: 0;
  overflow-y: visible;
  overflow-y: initial;
}
.main-container .content {
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .main-container .content {
    width: 100%;
    margin-left: 0;
  }
}
.main-container .content.paddocks {
  height: calc(100vh - 4.2rem) !important;
}
.comp-farms .main-container .content {
  width: 100%;
  margin-left: 0;
}
.select2 .select2-selection {
  border: var(--bs-border-width) solid var(--bs-border-color);
  height: 34px;
  padding: 0 20px 0 5px;
  font-size: 0.9rem;
  font-weight: 400;
}
.select2 .select2-selection .select2-selection__rendered {
  line-height: 32px;
}
.select2 .select2-selection .select2-selection__arrow {
  height: 33px;
  width: 30px;
}
.select2-container .select2-dropdown {
  border: none;
  box-shadow: 0 5px 5px rgba(34,34,34,0.1);
}
.select2-container .select2-dropdown .select2-results__options {
  font-size: 0.9rem;
  color: #98999a;
}
.select2-container .select2-dropdown .select2-results__option--highlighted {
  background-color: #f1cf69;
  color: #313335;
}
.signup-layout {
  height: 100vh;
}
.signup-layout .full-content {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
:root {
  --bg-navbar-color: #fff;
}
button:focus {
  outline: none;
  box-shadow: none;
}
.header-1 {
  background-color: #fff;
  background-color: var(--bg-navbar-color);
  position: fixed;
  width: 100%;
  top: 0;
  padding: 0;
  z-index: 1020;
  min-height: 4rem;
  border-bottom: 1px solid #f1eee0;
  box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
}
@media only screen and (max-width: 991px) {
  .header-1 {
    position: relative;
    min-height: auto;
  }
}
.header-1 .navbar .navbar-brand {
  min-width: 130px;
}
@media only screen and (max-width: 1199px) {
  .header-1 .navbar .navbar-brand {
    width: 35px;
    min-width: 35px;
    overflow: hidden;
  }
  .header-1 .navbar .navbar-brand .img-fluid {
    max-width: 130px;
    height: auto;
  }
}
@media only screen and (max-width: 991px) {
  .header-1 .navbar .navbar-brand {
    width: 131px;
  }
}
.header-1 .navbar .desktop-mainmenu .nav-item:first-child .nav-link {
  border-radius: var(--bs-border-radius) 0 0 var(--bs-border-radius);
}
.header-1 .navbar .desktop-mainmenu .nav-item:nth-last-of-type(1) .nav-link {
  border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0;
  border-right-color: $navbarHighlightBorderColor;
}
.header-1 .navbar .desktop-mainmenu .nav-item:hover .nav-link {
  background-color: #024430 !important;
}
.header-1 .navbar .desktop-mainmenu .nav-item:hover .nav-link {
  color: #ffe7bb;
}
.header-1 .navbar .desktop-mainmenu .nav-item .nav-link.show {
  background-color: #024430 !important;
}
.header-1 .navbar .desktop-mainmenu .nav-item .nav-link.show {
  color: #ffe7bb;
}
.header-1 .navbar .desktop-mainmenu .nav-item .dropdown-menu .dropdown-item {
  padding-right: 2rem;
}
.header-1 .navbar .desktop-mainmenu .nav-item .dropdown-menu .dropdown-item:hover,
.header-1 .navbar .desktop-mainmenu .nav-item .dropdown-menu .dropdown-item.show {
  background-color: #024430;
  color: #ffe7bb;
}
.header-1 .navbar .desktop-mainmenu .nav-item .dropdown-menu .dropdown-item::after {
  position: absolute;
  top: 11px;
  right: 1rem;
}
.header-1 .navbar .navbar-collapse .tools {
  min-width: 300px;
}
@media only screen and (max-width: 767px) {
  .header-1 .navbar .navbar-collapse .tools .dropdown-menu {
    width: 100vw !important;
  }
  .header-1 .navbar .navbar-collapse .tools .dropdown-menu {
    top: 47px;
    right: -27px;
  }
}
@media only screen and (max-width: 991px) {
  .header-1 .navbar .navbar-collapse.collapsing {
    display: -ms-flexbox;
    display: box;
    display: flex;
    -o-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .header-1 .navbar .navbar-collapse.show {
    -o-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -ms-flexbox;
    display: box;
    display: flex;
  }
  .header-1 .navbar .navbar-collapse .navbar-nav {
    width: 100%;
    -o-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .header-1 .navbar .navbar-collapse .tools {
    margin: 0 !important;
  }
  .header-1 .navbar .navbar-collapse .tools {
    --tool-padding: 1rem;
    border-top: 1px solid #e7e7e7;
    margin-top: 5px;
    padding: 1rem;
    padding: var(--tool-padding);
    width: 100%;
    -o-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -o-box-ordinal-group: 1;
    -ms-flex-order: 1;
    order: 1;
    border-bottom: 1px solid rgba(49,51,53,0.1);
  }
  .header-1 .navbar .navbar-collapse .tools .btn-toolbar {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -o-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .header-1 .navbar .navbar-collapse .tools .btn-toolbar .btn-group:nth-last-of-type(1) {
    margin-left: 0 !important;
  }
  .header-1 .navbar .navbar-collapse .tools .select2-container {
    margin-right: 1rem;
  }
}
.header-1 .navbar .navbar-collapse .select2-container {
  width: 150px;
}
@media only screen and (max-width: 991px) {
  .header-1 .navbar .container-fluid {
    display: -ms-flexbox;
    display: box;
    display: flex;
    padding: 0;
  }
  .header-1 .navbar .container-fluid .navbar-brand {
    margin-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .header-1 .navbar .container-fluid .navbar-toggler {
    margin-right: calc(var(--bs-gutter-x) * 0.5);
  }
  .header-1 .navbar .mobile-mainmenu {
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    margin-top: 0.2rem;
    background-color: rgba(2,68,48,0.02);
  }
  .header-1 .navbar .mobile-mainmenu .nav-link,
  .header-1 .navbar .mobile-mainmenu .dropdown-item {
    padding: 0.6rem 1rem;
    border-bottom: 1px solid rgba(2,68,48,0.07);
    font-size: 16px;
  }
  .header-1 .navbar .mobile-mainmenu .nav-link .bi,
  .header-1 .navbar .mobile-mainmenu .dropdown-item .bi {
    display: none;
  }
  .header-1 .navbar .mobile-mainmenu .nav-link.show,
  .header-1 .navbar .mobile-mainmenu .dropdown-item.show {
    background-color: #024430;
    color: #ffe7bb;
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,0.125);
  }
  .header-1 .navbar .mobile-mainmenu .dropdown-menu {
    box-shadow: none !important;
  }
  .header-1 .navbar .mobile-mainmenu .dropdown-menu {
    padding: calc(var(--bs-gutter-x) * 0.5);
    background-color: rgba(2,68,48,0.05);
  }
}
@media only screen and (max-width: 767px) {
  .header-1 .navbar {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}
.header-1 .navbar .mega-content {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
}
@media only screen and (max-width: 991px) {
  .header-1 .navbar .mega-content {
    max-height: none;
    max-height: initial;
  }
}
.header-1 .navbar .animale-menu .nav-link {
  animation: colorChange 1s infinite alternate;
}
@media only screen and (max-width: 575px) {
  .header-1 .navbar .dropdown-user-menu .dropdown-menu {
    width: 100vw !important;
  }
  .header-1 .navbar .dropdown-user-menu .dropdown-menu {
    right: -12px;
  }
}
@keyframes colorChange {
  0% {
    background-color: #cce7dd;
  }
  100% {
    background-color: #f2f9f6;
  }
}
.header-apps {
  background-color: transparent;
}
.menu-more {
  display: none /* Ocultar el menú "Más" por defecto */;
}
.menu-more .show {
  display: block /* Se muestra si hay elementos */;
}
.menu-more .dropdown-menu {
  max-height: 1000px;
}
.navbar-nav .nav-item {
  white-space: nowrap /* Evitar que los textos se corten en varias líneas */;
}
.sidebar {
  background-color: #313335;
  opacity: 0.95;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";
  filter: alpha(opacity=95);
}
.side-menu::-webkit-scrollbar-thumb,
position sticky::-webkit-scrollbar-thumb,
top 4rem::-webkit-scrollbar-thumb,
height 100%::-webkit-scrollbar-thumb {
  background-color: #738f89;
}
.side-menu .side-item,
position sticky .side-item,
top 4rem .side-item,
height 100% .side-item {
  color: #cccccd;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 15px;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #cccccd;
  transition: all 0.25s;
  background-color: #091b21;
  text-align: left;
  gap: 15px;
}
.side-menu .side-item .single-item,
position sticky .side-item .single-item,
top 4rem .side-item .single-item,
height 100% .side-item .single-item {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
}
.side-menu .side-item .single-item .text-item,
position sticky .side-item .single-item .text-item,
top 4rem .side-item .single-item .text-item,
height 100% .side-item .single-item .text-item {
  color: #fff;
  font-size: 1rem;
  font-family: "Quicksand", sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 20px;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.25s;
}
.side-menu .side-item .icon,
position sticky .side-item .icon,
top 4rem .side-item .icon,
height 100% .side-item .icon {
  color: #3bce07;
  transition: all 0.25s;
}
.side-menu .side-item .icon-down,
position sticky .side-item .icon-down,
top 4rem .side-item .icon-down,
height 100% .side-item .icon-down {
  transform: rotate(180deg);
}
.side-menu .side-item:focus,
position sticky .side-item:focus,
top 4rem .side-item:focus,
height 100% .side-item:focus {
  box-shadow: none;
}
.side-menu .side-item.collapsed,
position sticky .side-item.collapsed,
top 4rem .side-item.collapsed,
height 100% .side-item.collapsed {
  background-color: transparent;
}
.side-menu .side-item.collapsed .single-item .text-item,
position sticky .side-item.collapsed .single-item .text-item,
top 4rem .side-item.collapsed .single-item .text-item,
height 100% .side-item.collapsed .single-item .text-item {
  color: #cccccd;
}
.side-menu .side-item.collapsed .icon,
position sticky .side-item.collapsed .icon,
top 4rem .side-item.collapsed .icon,
height 100% .side-item.collapsed .icon {
  color: #cccccd;
}
.side-menu .side-item.collapsed .icon-down,
position sticky .side-item.collapsed .icon-down,
top 4rem .side-item.collapsed .icon-down,
height 100% .side-item.collapsed .icon-down {
  transform: rotate(0deg);
}
.side-menu .side-item.collapsed:hover,
position sticky .side-item.collapsed:hover,
top 4rem .side-item.collapsed:hover,
height 100% .side-item.collapsed:hover {
  background-color: #091b21;
}
.side-menu .side-item.collapsed:hover .single-item .text-item,
position sticky .side-item.collapsed:hover .single-item .text-item,
top 4rem .side-item.collapsed:hover .single-item .text-item,
height 100% .side-item.collapsed:hover .single-item .text-item {
  color: #fff;
}
.side-menu .side-item.collapsed:hover .icon,
position sticky .side-item.collapsed:hover .icon,
top 4rem .side-item.collapsed:hover .icon,
height 100% .side-item.collapsed:hover .icon {
  color: #3bce07;
}
.side-menu .submenu,
position sticky .submenu,
top 4rem .submenu,
height 100% .submenu {
  background-color: #102428;
  transition: all 0.25s;
}
.side-menu .submenu a,
position sticky .submenu a,
top 4rem .submenu a,
height 100% .submenu a {
  padding: 12px 25px;
  color: #cccccd;
  display: block;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.25s;
  text-align: left;
}
.side-menu .submenu a:hover,
position sticky .submenu a:hover,
top 4rem .submenu a:hover,
height 100% .submenu a:hover {
  background-color: #334543;
  color: #fff;
}
.main-content {
  margin-top: 20px;
  display: grid;
  grid-template-rows: 40px 1fr;
}
.components {
  padding: 0 20px;
}
.admin-header {
  background-color: #f4f7f9;
  background-color: var(--bs-body-bg);
  position: fixed;
  top: 4rem;
  z-index: 11;
  width: 100%;
  box-shadow: 0 3px 5px rgba(25,47,49,0);
}
@media only screen and (max-width: 1199px) {
  .admin-header {
    top: 0;
    position: relative;
    width: 100%;
  }
}
.admin-header .level-1 {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 1rem;
  padding-left: 15px;
  padding-top: 1rem;
}
.admin-header .level-1 .btn-close-if {
  position: relative !important;
}
.admin-header .level-1 .btn-close-if {
  top: -12px;
  height: 33.5px;
}
.admin-header .navbar {
  border: none !important;
}
@media only screen and (max-width: 991px) {
  .admin-header .navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.admin-header .navbar .navbar-toggler {
  display: none;
}
.admin-header .navbar .navbar-collapse {
  display: block;
  margin-top: 0.75rem;
  display: block;
  margin-top: 0.75rem;
}
@media only screen and (max-width: 991px) {
  .admin-header .navbar .navbar-collapse {
    margin-top: 0.5rem !important;
  }
}
.admin-header .navbar .navbar-collapse .btn-toolbar .btn-group > .btn-group .dropdown-menu.show {
  position: absolute;
  top: 0px;
  right: auto;
  bottom: auto;
  left: 0px;
  margin: 0px;
  transform: translate3d(0px, 40px, 0px);
}
.admin-header .navbar .navbar-collapse .navbar-nav > * {
  margin-right: 0 !important;
}
.admin-header .navbar .navbar-collapse .navbar-nav > * {
  margin-left: 0;
}
.admin-header .navbar .navbar-collapse {
  margin-top: 0;
}
.paddocks .admin-header {
  padding-top: 0;
}
.app-protocols .admin-body,
.app-costs .admin-body {
  margin-top: 42px;
}
@media only screen and (max-width: 1199px) {
  .app-protocols .admin-body,
  .app-costs .admin-body {
    margin-top: 0;
  }
  .app-protocols .admin-body .col-12 .tab-content,
  .app-costs .admin-body .col-12 .tab-content {
    padding-top: 0 !important;
  }
}
.admin-body {
  width: 100%;
  height: calc(100% - 42px);
  margin-top: 42px;
}
@media only screen and (max-width: 1199px) {
  .admin-body {
    margin-top: 0;
  }
}
.admin-body > .card {
  border: none;
  height: 100%;
}
.admin-body .card-main {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  border-radius: 0;
}
.admin-body .side-list {
  width: 300px;
  border-radius: 0;
  padding: 0;
  top: 105px;
  z-index: 5;
  overflow-y: auto;
  border-right: 1px solid #dee2e6;
}
.admin-body .side-list .gender-bar {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(34,34,34,0.2);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9;
  padding: 1rem;
}
.admin-body .side-list .gender-bar ul {
  padding: 0;
  margin: 0;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.admin-body .side-list .gender-bar ul li {
  width: 50%;
}
.admin-body .side-list .gender-bar ul li button {
  width: 100%;
}
.admin-body .side-list .gender-bar ul li .nav-link {
  color: #024430;
  border-radius: 0;
  border: 1px solid #024430;
}
.admin-body .side-list .gender-bar ul li .nav-link.active {
  border: 1px solid #024430;
  background-color: #024430;
  color: #fff;
}
.admin-body .side-list .gender-bar ul li .nav-link.active:hover {
  background-color: #024430;
  color: #fff;
}
.admin-body .side-list .gender-bar ul li .nav-link:hover {
  background-color: #334543;
  color: #fff;
}
.admin-body .side-list .tab-content {
  height: calc(100% - 65px);
}
.admin-body .side-list .tab-content .list-group-item {
  border-right: none;
}
.protocols .admin-body {
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.protocols .admin-body > .card {
  width: calc(100% - 300px);
}
@media only screen and (max-width: 767px) {
  .protocols .admin-body > .card {
    width: 100%;
    margin-left: 0;
  }
}
.protocols .admin-body .help {
  padding-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .protocols .admin-body .side-groups .offcanvas-body {
    padding: 0;
  }
  .protocols .admin-body .side-groups .offcanvas-body .side-list {
    overflow: visible;
    overflow: initial;
    width: 100%;
    position: inherit;
    top: 0;
    border: none;
  }
  .protocols .admin-body .side-groups .offcanvas-body .side-list .tab-content {
    border-right: 1px solid #dee2e6;
  }
}
.protocols-farms_index .admin-body {
  height: auto;
}
.nav {
  --bs-nav-link-color: #024430;
}
.nav-tabs {
  --bs-nav-tabs-border-color: var(--bs-border-color);
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -o-box-lines: single;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.nav-tabs .nav-link {
  white-space: nowrap !important;
}
.nav-tabs .nav-item .nav-link {
  white-space: nowrap !important;
}
.nav-tabs .nav-item .nav-link.active {
  background-color: var(--bs-nav-tabs-border-color);
  color: #024430;
}
.card-map {
  border: none;
}
.card-map .card-map-body {
  margin: 0;
  padding: 0;
}
.card-map .card-map-body .map {
  width: 100%;
  height: calc(100vh - 8rem);
  overflow-y: none;
}
.card-map .card-map-body .map iframe {
  width: 100%;
  height: 100%;
  margin-bottom: -10px;
}
.card-form {
  position: -webkit-sticky;
  position: sticky;
}
.card-app {
  transition: all 0.2s ease-in-out;
  -webkit-text-decoration: none;
  text-decoration: none;
  position: relative;
}
.card-app:hover {
  overflow: hidden;
  box-shadow: 0 0 1.5rem rgba(34,34,34,0.5);
  transform: scale(1.025);
}
.content.protocols .container > .card {
  border: 0;
}
.content.protocols .container > .card .settings-container .form > div {
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.content.protocols .container > .card .settings-container .form > div > .pt-4 {
  padding: 2rem 1rem 1rem !important;
}
.content.protocols .container > .card .settings-container .form > div > .pt-4 .actions {
  margin-bottom: 1rem !important;
}
.card > .main-body .card,
.content.protocols .container > .card .settings-container .form > div,
.card.card-final {
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}
.card > .main-body .card .heading,
.content.protocols .container > .card .settings-container .form > div .heading,
.card.card-final .heading,
.card > .main-body .card .card-header,
.content.protocols .container > .card .settings-container .form > div .card-header,
.card.card-final .card-header {
  background-color: #fcfcfc;
  padding: 1.5rem;
  border-bottom: none;
  box-shadow: 0 -11px 16px 15px rgba(0,0,0,0.1);
  z-index: 5;
}
.card > .main-body .card .heading h1,
.content.protocols .container > .card .settings-container .form > div .heading h1,
.card.card-final .heading h1,
.card > .main-body .card .card-header h1,
.content.protocols .container > .card .settings-container .form > div .card-header h1,
.card.card-final .card-header h1,
.card > .main-body .card .heading h2,
.content.protocols .container > .card .settings-container .form > div .heading h2,
.card.card-final .heading h2,
.card > .main-body .card .card-header h2,
.content.protocols .container > .card .settings-container .form > div .card-header h2,
.card.card-final .card-header h2,
.card > .main-body .card .heading h3,
.content.protocols .container > .card .settings-container .form > div .heading h3,
.card.card-final .heading h3,
.card > .main-body .card .card-header h3,
.content.protocols .container > .card .settings-container .form > div .card-header h3,
.card.card-final .card-header h3,
.card > .main-body .card .heading h4,
.content.protocols .container > .card .settings-container .form > div .heading h4,
.card.card-final .heading h4,
.card > .main-body .card .card-header h4,
.content.protocols .container > .card .settings-container .form > div .card-header h4,
.card.card-final .card-header h4,
.card > .main-body .card .heading h5,
.content.protocols .container > .card .settings-container .form > div .heading h5,
.card.card-final .heading h5,
.card > .main-body .card .card-header h5,
.content.protocols .container > .card .settings-container .form > div .card-header h5,
.card.card-final .card-header h5,
.card > .main-body .card .heading h6,
.content.protocols .container > .card .settings-container .form > div .heading h6,
.card.card-final .heading h6,
.card > .main-body .card .card-header h6,
.content.protocols .container > .card .settings-container .form > div .card-header h6,
.card.card-final .card-header h6 {
  color: #024430;
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
}
.card > .main-body .card .heading h1 >i,
.content.protocols .container > .card .settings-container .form > div .heading h1 >i,
.card.card-final .heading h1 >i,
.card > .main-body .card .card-header h1 >i,
.content.protocols .container > .card .settings-container .form > div .card-header h1 >i,
.card.card-final .card-header h1 >i,
.card > .main-body .card .heading h2 >i,
.content.protocols .container > .card .settings-container .form > div .heading h2 >i,
.card.card-final .heading h2 >i,
.card > .main-body .card .card-header h2 >i,
.content.protocols .container > .card .settings-container .form > div .card-header h2 >i,
.card.card-final .card-header h2 >i,
.card > .main-body .card .heading h3 >i,
.content.protocols .container > .card .settings-container .form > div .heading h3 >i,
.card.card-final .heading h3 >i,
.card > .main-body .card .card-header h3 >i,
.content.protocols .container > .card .settings-container .form > div .card-header h3 >i,
.card.card-final .card-header h3 >i,
.card > .main-body .card .heading h4 >i,
.content.protocols .container > .card .settings-container .form > div .heading h4 >i,
.card.card-final .heading h4 >i,
.card > .main-body .card .card-header h4 >i,
.content.protocols .container > .card .settings-container .form > div .card-header h4 >i,
.card.card-final .card-header h4 >i,
.card > .main-body .card .heading h5 >i,
.content.protocols .container > .card .settings-container .form > div .heading h5 >i,
.card.card-final .heading h5 >i,
.card > .main-body .card .card-header h5 >i,
.content.protocols .container > .card .settings-container .form > div .card-header h5 >i,
.card.card-final .card-header h5 >i,
.card > .main-body .card .heading h6 >i,
.content.protocols .container > .card .settings-container .form > div .heading h6 >i,
.card.card-final .heading h6 >i,
.card > .main-body .card .card-header h6 >i,
.content.protocols .container > .card .settings-container .form > div .card-header h6 >i,
.card.card-final .card-header h6 >i {
  color: #3bce07;
}
.card > .main-body .card > .card-body,
.content.protocols .container > .card .settings-container .form > div > .card-body,
.card.card-final > .card-body {
  z-index: 5;
}
.card > .main-body .card > .card-body tbody tr td:last-child,
.content.protocols .container > .card .settings-container .form > div > .card-body tbody tr td:last-child,
.card.card-final > .card-body tbody tr td:last-child {
  text-align: right;
}
.card > .main-body .card > .card-body .dh-col,
.content.protocols .container > .card .settings-container .form > div > .card-body .dh-col,
.card.card-final > .card-body .dh-col {
  margin: 0;
}
.card > .main-body .card .card-footer,
.content.protocols .container > .card .settings-container .form > div .card-footer,
.card.card-final .card-footer {
  background: linear-gradient(0deg, var(--bs-card-cap-bg) 66%, rgba(71,71,71,0.15) 100%);
  text-align: right;
  border-top: none;
  padding: 1rem;
}
.shadow-0 {
  box-shadow: none !important;
}
.zindex-4 {
  z-index: 4 !important;
}
.card-final .card-body tbody tr td,
.card-final .card-body tbody tr th {
  background-color: #fff;
  color: #222;
  border-style: dotted;
}
.card > .main-body .card-dashboard {
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
}
.card > .main-body .card-dashboard > h1,
.card > .main-body .card-dashboard > h2,
.card > .main-body .card-dashboard > h3,
.card > .main-body .card-dashboard > h4,
.card > .main-body .card-dashboard > h5,
.card > .main-body .card-dashboard > h6 {
  background-color: #fcfcfc;
  padding: 1.5rem;
  border-bottom: none;
  box-shadow: 0 -11px 16px 15px rgba(0,0,0,0.1);
  z-index: 5;
}
.card > .main-body .card-dashboard .card-body {
  padding: 0;
}
.card > .main-body .card-dashboard .card-body > h5 {
  background-color: #fcfcfc;
  padding: 1.5rem;
  border-bottom: none;
  box-shadow: 0 -11px 16px 15px rgba(0,0,0,0.1);
  z-index: 5;
}
.card > .main-body .card-dashboard .card-body > h5 i {
  color: #3bce07;
}
.card > .main-body .card-dashboard .card-body > .row {
  z-index: 5;
  padding: 1rem;
}
.card > .main-body .card-dashboard > .card-header h5 i,
.card > .main-body .card-dashboard > h5 i {
  color: #3bce07;
}
.card > .main-body .card-final {
  background-color: #fff;
}
.dh-row > .card {
  height: 100%;
}
.card-setting {
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.card-setting .card-body {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .card-setting .card-body {
    padding: 0.5rem;
  }
}
.card-setting .card-body * {
  margin: 0;
}
.card-setting .card-body .heading {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.card-setting .card-body .heading .title h6 {
  font-weight: 900;
  font-size: 1.4rem;
  color: #054837;
}
.card-setting .card-body .heading .action .dropdown-toggle::after {
  display: none;
}
.card-setting .card-body > .row {
  border-radius: 8px;
  border: 1px solid #e7e7e7;
  padding: 10px 15px;
}
.card-setting .card-body > .row div .field {
  display: inline-block;
  color: #024430;
  font-weight: bold;
}
.card-setting .card-body > .row div .value {
  display: inline-block;
  color: #313335;
}
.card-setting .card-body .boolean-icon {
  display: -ms-flexbox;
  display: box;
  display: flex;
  gap: 5px;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.card-setting .card-body .boolean-icon .on {
  color: #148145;
  font-size: 1.2rem;
}
.card-setting .card-body .boolean-icon .off {
  color: #d1314b;
  font-size: 1.2rem;
}
.btn i,
.btn .icon {
  margin-right: 6px;
}
.btn-icon {
  padding: 0 !important;
}
.btn-icon i,
.btn-icon .icon {
  margin: 0;
}
.btn {
  border-radius: 5px;
}
.btn.btn-icon {
  height: 38px;
  width: 38px;
  font-size: 1.5rem;
  line-height: 38px;
}
.btn-xs {
  font-size: 0.8rem;
  padding: 0.15rem 0.3rem;
}
.btn-xs.btn-icon {
  height: 27px;
  width: 27px;
  font-size: 1rem;
  line-height: 27px;
}
.btn-sm {
  font-size: 0.9rem;
  padding: 0.2rem 0.4rem;
}
.btn-sm.btn-icon {
  height: 32px;
  width: 32px;
  font-size: 1.2rem;
  line-height: 32px;
}
.btn-lg {
  font-size: 1.25rem;
  padding: 0.5rem 1rem;
}
.btn-lg.btn-icon {
  height: 48px;
  width: 48px;
  font-size: 1.9rem;
  line-height: 48px;
}
.btn-xl {
  font-size: 1.4rem;
  padding: 0.6rem 1.2rem;
}
.btn-xl.btn-icon {
  height: 54px;
  width: 54px;
  font-size: 2.3rem;
  line-height: 54px;
}
.btn-google {
  border-color: #db4a39 !important;
}
.btn-google {
  background-color: #db4a39;
  color: #fff;
  text-align: center;
}
.btn-google:hover {
  background-color: #e37164;
  color: #fff;
}
.btn-facebook {
  border-color: #3b5998 !important;
}
.btn-facebook {
  background-color: #3b5998;
  color: #fff;
  text-align: center;
}
.btn-facebook:hover {
  background-color: #4c70ba;
  color: #fff;
}
.btn-microsoft {
  border-color: #00a4ef !important;
}
.btn-microsoft {
  background-color: #00a4ef;
  color: #fff;
  text-align: center;
}
.btn-microsoft:hover {
  background-color: #23baff;
  color: #fff;
}
.btn-notify::before {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #d13f19;
  z-index: 1;
}
.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(51,69,67,0.5);
}
.btn.btn-breadcrumb {
  background-color: transparent;
  border-color: transparent;
  color: #111;
  text-align: center;
}
.btn.btn-breadcrumb:hover {
  background-color: rgba(13,13,13,0);
  border-color: rgba(26,26,26,0);
  color: #111;
}
.btn.btn-breadcrumb:focus {
  background-color: rgba(13,13,13,0);
  border-color: transparent;
  box-shadow: 0 0 0 0.25rem rgba(0,0,0,0.25);
}
.btn.btn-breadcrumb:focus-visible {
  color: #111;
  background-color: transparent;
  border-color: transparent;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0,0,0,0.25);
}
.btn.btn-breadcrumb:active {
  background-color: rgba(0,0,0,0) !important;
  border-color: rgba(0,0,0,0) !important;
  color: #111 !important;
}
.btn.btn-outline-breadcrumb {
  background-color: #f9f9fa;
  border-color: #f4f4f5;
  color: contrast-color(#555556);
  text-align: center;
}
.btn.btn-outline-breadcrumb:hover {
  background-color: #d9d9da;
  border-color: #e6e6e6;
  color: contrast-color(#cccccd);
}
.btn.btn-outline-breadcrumb:focus {
  background-color: #d9d9da;
  border-color: #cccccd;
  box-shadow: 0 0 0 0.25rem rgba(204,204,205,0.25);
}
.btn.btn-outline-breadcrumb:focus-visible {
  color: #555556;
  background-color: #cccccd;
  border-color: #cccccd;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(204,204,205,0.25);
}
.btn.btn-outline-breadcrumb:active {
  background-color: #bfbfc0 !important;
  border-color: #bfbfc0 !important;
  color: contrast-color(#cccccd) !important;
}
.btn.btn-default {
  background-color: #e7e7e7;
  border-color: #e7e7e7;
  color: #111;
  text-align: center;
}
.btn.btn-default:hover {
  background-color: #f4f4f4;
  border-color: #fff;
  color: #111;
}
.btn.btn-default:focus {
  background-color: #f4f4f4;
  border-color: #e7e7e7;
  box-shadow: 0 0 0 0.25rem rgba(231,231,231,0.25);
}
.btn.btn-default:focus-visible {
  color: #111;
  background-color: #e7e7e7;
  border-color: #e7e7e7;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(231,231,231,0.25);
}
.btn.btn-default:active {
  background-color: #dadada !important;
  border-color: #dadada !important;
  color: #111 !important;
}
.btn.btn-outline-default {
  background-color: #f9f9fa;
  border-color: #f4f4f5;
  color: contrast-color(#555556);
  text-align: center;
}
.btn.btn-outline-default:hover {
  background-color: #d9d9da;
  border-color: #e6e6e6;
  color: contrast-color(#cccccd);
}
.btn.btn-outline-default:focus {
  background-color: #d9d9da;
  border-color: #cccccd;
  box-shadow: 0 0 0 0.25rem rgba(204,204,205,0.25);
}
.btn.btn-outline-default:focus-visible {
  color: #555556;
  background-color: #cccccd;
  border-color: #cccccd;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(204,204,205,0.25);
}
.btn.btn-outline-default:active {
  background-color: #bfbfc0 !important;
  border-color: #bfbfc0 !important;
  color: contrast-color(#cccccd) !important;
}
.btn.btn-primary {
  background-color: #024430;
  border-color: #024430;
  color: #ffe7bb;
  text-align: center;
}
.btn.btn-primary:hover {
  background-color: #035d41;
  border-color: #037653;
  color: #ffe7bb;
}
.btn.btn-primary:focus {
  background-color: #035d41;
  border-color: #024430;
  box-shadow: 0 0 0 0.25rem rgba(2,68,48,0.25);
}
.btn.btn-primary:focus-visible {
  color: #ffe7bb;
  background-color: #024430;
  border-color: #024430;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(2,68,48,0.25);
}
.btn.btn-primary:active {
  background-color: #012b1f !important;
  border-color: #012b1f !important;
  color: #ffe7bb !important;
}
.btn.btn-outline-primary {
  background-color: #e5ecea;
  border-color: #ccd9d5;
  color: contrast-color(#ffe7bb);
  text-align: center;
}
.btn.btn-outline-primary:hover {
  background-color: #035d41;
  border-color: #037653;
  color: contrast-color(#024430);
}
.btn.btn-outline-primary:focus {
  background-color: #035d41;
  border-color: #024430;
  box-shadow: 0 0 0 0.25rem rgba(2,68,48,0.25);
}
.btn.btn-outline-primary:focus-visible {
  color: #ffe7bb;
  background-color: #024430;
  border-color: #024430;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(2,68,48,0.25);
}
.btn.btn-outline-primary:active {
  background-color: #012b1f !important;
  border-color: #012b1f !important;
  color: contrast-color(#024430) !important;
}
@warn 'Algunas entradas no son colores válidos en el mixin button-styles.';
.btn.btn-secondary {
  background-color: #334543;
  border-color: #334543;
  color: $colorTextSecondary;
  text-align: center;
}
.btn.btn-secondary:hover {
  background-color: #3e5451;
  border-color: #49625f;
  color: $colorTextSecondary;
}
.btn.btn-secondary:focus {
  background-color: #3e5451;
  border-color: #334543;
  box-shadow: 0 0 0 0.25rem rgba(51,69,67,0.25);
}
.btn.btn-secondary:focus-visible {
  color: $colorTextSecondary;
  background-color: #334543;
  border-color: #334543;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(51,69,67,0.25);
}
.btn.btn-secondary:active {
  background-color: #283635 !important;
  border-color: #283635 !important;
  color: $colorTextSecondary !important;
}
.btn.btn-outline-secondary {
  background-color: #eaecec;
  border-color: #d6d9d9;
  color: contrast-color($colorTextSecondary);
  text-align: center;
}
.btn.btn-outline-secondary:hover {
  background-color: #3e5451;
  border-color: #49625f;
  color: contrast-color(#334543);
}
.btn.btn-outline-secondary:focus {
  background-color: #3e5451;
  border-color: #334543;
  box-shadow: 0 0 0 0.25rem rgba(51,69,67,0.25);
}
.btn.btn-outline-secondary:focus-visible {
  color: $colorTextSecondary;
  background-color: #334543;
  border-color: #334543;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(51,69,67,0.25);
}
.btn.btn-outline-secondary:active {
  background-color: #283635 !important;
  border-color: #283635 !important;
  color: contrast-color(#334543) !important;
}
.btn.btn-tertiary {
  background-color: #33666e;
  border-color: #33666e;
  color: #e7e7e7;
  text-align: center;
}
.btn.btn-tertiary:hover {
  background-color: #3b767f;
  border-color: #438691;
  color: #e7e7e7;
}
.btn.btn-tertiary:focus {
  background-color: #3b767f;
  border-color: #33666e;
  box-shadow: 0 0 0 0.25rem rgba(51,102,110,0.25);
}
.btn.btn-tertiary:focus-visible {
  color: #e7e7e7;
  background-color: #33666e;
  border-color: #33666e;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(51,102,110,0.25);
}
.btn.btn-tertiary:active {
  background-color: #2b565d !important;
  border-color: #2b565d !important;
  color: #e7e7e7 !important;
}
.btn.btn-outline-tertiary {
  background-color: #eaeff0;
  border-color: #d6e0e2;
  color: contrast-color(#e7e7e7);
  text-align: center;
}
.btn.btn-outline-tertiary:hover {
  background-color: #3b767f;
  border-color: #438691;
  color: contrast-color(#33666e);
}
.btn.btn-outline-tertiary:focus {
  background-color: #3b767f;
  border-color: #33666e;
  box-shadow: 0 0 0 0.25rem rgba(51,102,110,0.25);
}
.btn.btn-outline-tertiary:focus-visible {
  color: #e7e7e7;
  background-color: #33666e;
  border-color: #33666e;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(51,102,110,0.25);
}
.btn.btn-outline-tertiary:active {
  background-color: #2b565d !important;
  border-color: #2b565d !important;
  color: contrast-color(#33666e) !important;
}
.btn.btn-cuaternary {
  background-color: #f1cf69;
  border-color: #f1cf69;
  color: #024430;
  text-align: center;
}
.btn.btn-cuaternary:hover {
  background-color: #f3d680;
  border-color: #f5de98;
  color: #024430;
}
.btn.btn-cuaternary:focus {
  background-color: #f3d680;
  border-color: #f1cf69;
  box-shadow: 0 0 0 0.25rem rgba(241,207,105,0.25);
}
.btn.btn-cuaternary:focus-visible {
  color: #024430;
  background-color: #f1cf69;
  border-color: #f1cf69;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(241,207,105,0.25);
}
.btn.btn-cuaternary:active {
  background-color: #efc852 !important;
  border-color: #efc852 !important;
  color: #024430 !important;
}
.btn.btn-outline-cuaternary {
  background-color: #fdfaf0;
  border-color: #fcf5e1;
  color: contrast-color(#024430);
  text-align: center;
}
.btn.btn-outline-cuaternary:hover {
  background-color: #f3d680;
  border-color: #f5de98;
  color: contrast-color(#f1cf69);
}
.btn.btn-outline-cuaternary:focus {
  background-color: #f3d680;
  border-color: #f1cf69;
  box-shadow: 0 0 0 0.25rem rgba(241,207,105,0.25);
}
.btn.btn-outline-cuaternary:focus-visible {
  color: #024430;
  background-color: #f1cf69;
  border-color: #f1cf69;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(241,207,105,0.25);
}
.btn.btn-outline-cuaternary:active {
  background-color: #efc852 !important;
  border-color: #efc852 !important;
  color: contrast-color(#f1cf69) !important;
}
.btn-linked {
  background-color: transparent;
  border-color: transparent;
  color: #024430;
  text-align: center;
}
.btn-linked:hover {
  background-color: #035d41;
  border-color: #037653;
  color: #fff;
}
.btn-linked:focus {
  background-color: #035d41;
  border-color: #024430;
  box-shadow: 0 0 0 0.25rem rgba(2,68,48,0.25);
}
.btn-linked:focus-visible {
  color: #fff;
  background-color: #024430;
  border-color: #024430;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(2,68,48,0.25);
}
.btn-linked:active {
  background-color: #012b1f !important;
  border-color: #012b1f !important;
  color: #fff !important;
}
div.dtsb-searchBuilder div.dtsb-logicContainer button,
div.dtsb-searchBuilder button.dtsb-button,
div.dt-buttons>.dt-button,
div.dt-buttons>div.dt-button-split,
.dt-button {
  background-color: #024430;
  border-color: #024430;
  color: #ffe7bb;
  text-align: center;
  border-radius: 5px;
}
div.dtsb-searchBuilder div.dtsb-logicContainer button:hover:not(.disabled),
div.dtsb-searchBuilder button.dtsb-button:hover:not(.disabled),
div.dt-buttons>.dt-button:hover:not(.disabled),
div.dt-buttons>div.dt-button-split:hover:not(.disabled),
.dt-button:hover:not(.disabled),
div.dtsb-searchBuilder div.dtsb-logicContainer button:hover,
div.dtsb-searchBuilder button.dtsb-button:hover,
div.dt-buttons>.dt-button:hover,
div.dt-buttons>div.dt-button-split:hover,
.dt-button:hover {
  background-color: #035d41;
  border-color: #037653;
  color: #ffe7bb;
}
div.dtsb-searchBuilder div.dtsb-logicContainer button:focus,
div.dtsb-searchBuilder button.dtsb-button:focus,
div.dt-buttons>.dt-button:focus,
div.dt-buttons>div.dt-button-split:focus,
.dt-button:focus {
  outline: 0 !important;
}
div.dtsb-searchBuilder div.dtsb-logicContainer button:focus,
div.dtsb-searchBuilder button.dtsb-button:focus,
div.dt-buttons>.dt-button:focus,
div.dt-buttons>div.dt-button-split:focus,
.dt-button:focus {
  background-color: #035d41;
  border-color: #024430;
  box-shadow: 0 0 0 0.25rem rgba(2,68,48,0.25);
}
div.dtsb-searchBuilder div.dtsb-logicContainer button:focus-visible,
div.dtsb-searchBuilder button.dtsb-button:focus-visible,
div.dt-buttons>.dt-button:focus-visible,
div.dt-buttons>div.dt-button-split:focus-visible,
.dt-button:focus-visible {
  color: #ffe7bb;
  background-color: #024430;
  border-color: #024430;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(2,68,48,0.25);
}
div.dtsb-searchBuilder div.dtsb-logicContainer button:active,
div.dtsb-searchBuilder button.dtsb-button:active,
div.dt-buttons>.dt-button:active,
div.dt-buttons>div.dt-button-split:active,
.dt-button:active {
  background-color: #012b1f !important;
  border-color: #012b1f !important;
  color: #ffe7bb !important;
}
.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(51,69,67,0.5);
}
.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus,
.btn-check:active+.btn-cuaternary:focus,
.btn-check:checked+.btn-cuaternary:focus,
.btn-cuaternary.active:focus,
.btn-cuaternary:active:focus,
.show>.btn-cuaternary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(241,207,105,0.5) !important;
}
.btn-light {
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  text-align: center;
}
.btn-light:hover {
  background-color: #94b0ad;
  border-color: #779a96;
  color: #fff;
}
.btn-light:focus {
  background-color: #1d2827;
  border-color: #334543;
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(51,69,67,0.5);
}
.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(51,69,67,0.5);
}
.btn-like {
  padding: 0.375rem 0.75rem;
}
.btn-like:hover {
  background-color: transparent;
  border-color: transparent;
}
.btn-like:focus {
  background-color: transparent;
  border-color: transparent;
}
.btn-default.btn-icon {
  text-align: center;
}
.btn-default.btn-icon:hover {
  color: #fff !important;
}
.btn-outline-primary {
  border-color: #024430;
  color: #024430;
  text-align: center;
}
.btn-outline-primary:active {
  background-color: #334543 !important;
  border-color: #334543 !important;
}
.btn-outline-primary:active {
  color: #fff;
  text-align: center;
}
.btn-outline-primary:hover {
  background-color: #037653;
  border-color: #037653;
  color: #fff;
}
.btn-outline-primary:focus {
  background-color: #01120d;
  border-color: #024430;
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(2,68,48,0.5);
}
.btn-check:checked+.btn-outline-primary {
  background-color: #024430;
  border-color: #024430;
}
.btn-check:active+.btn-outline-primary:focus,
.btn-check:checked+.btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary:active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(2,68,48,0.5) !important;
}
.btn-outline-cuaternary {
  border-color: #f1cf69;
  color: #313335;
  text-align: center;
}
.btn-outline-cuaternary:active {
  background-color: #334543 !important;
  border-color: #334543 !important;
}
.btn-outline-cuaternary:active {
  color: #fff;
  text-align: center;
}
.btn-outline-cuaternary:hover {
  background-color: #f1cf69;
  border-color: #f5de98;
  color: #313335;
}
.btn-outline-cuaternary:focus {
  background-color: #edc03a;
  border-color: #f1cf69;
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(241,207,105,0.5);
}
.btn-check:checked+.btn-outline-primary {
  background-color: #f1cf69;
  border-color: #f1cf69;
}
.btn-check:active+.btn-outline-primary:focus,
.btn-check:checked+.btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary:active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(241,207,105,0.5) !important;
}
.form-floating>.form-control:not(:-moz-placeholder-shown)~label {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  color: #024430;
}
.form-floating>.form-control:not(:-ms-input-placeholder)~label {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  color: #024430;
}
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  opacity: 1;
  -ms-filter: none;
  -webkit-filter: none;
          filter: none;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  color: #024430;
}
.form-control:focus {
  border-color: #024430;
  box-shadow: 0 0 0px 0.25rem rgba(2,68,48,0.25);
}
form .btn-group {
  margin-bottom: 1rem;
}
form .form-floating {
  margin-bottom: 1rem;
}
.features-heads .fh,
.features .fh {
  height: 50px;
  box-sizing: border-box;
  padding: 5px;
  font-size: 0.85rem;
}
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active,
.btn-check+.btn:hover {
  background-color: #f1cf69;
  z-index: 999;
  position: relative;
}
.btn-check:checked+.btn label,
.btn.active label,
.btn.show label,
.btn:first-child:active label,
:not(.btn-check)+.btn:active label,
.btn-check+.btn:hover label {
  border: 1px solid #d13f19;
  background-color: #f1cf69;
}
.cc-field {
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.cc-field .column-table {
  display: inline-block;
  border-left: 1px solid #cccccd;
}
.cc-field .column-table:last-child {
  border-right: 1px solid #cccccd;
}
.cc-field .column-table label {
  margin: 0;
  border: 0;
  background-color: #fff;
}
.cc-field .column-table label .radio-head {
  border-top: 1px solid #cccccd;
  border-bottom: 1px solid #cccccd;
  font-size: 0.85rem;
  height: 40px;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cc-field .column-table label .radio-head p {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
}
.cc-field .column-table .btn {
  width: 70px;
  border: 0;
  padding: 0;
  color: #111;
}
.cc-field .column-table .btn .radio-body .fh {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid #cccccd;
}
.cc-field .column-table .btn .radio-body .fh i.color-a {
  color: #1a9bd8 !important;
}
.cc-field .column-table .btn .radio-body .fh i.color-a {
  font-size: 1.25rem;
}
.cc-field .column-table .btn .radio-body .fh i.color-b {
  color: #024430 !important;
}
.cc-field .column-table .btn .radio-body .fh i.color-b {
  font-size: 1.25rem;
}
.cc-field .column-table .btn .radio-body img {
  border-bottom: 1px solid #cccccd;
  transition: all 0.25s;
}
.cc-field .column-table .btn:hover {
  color: #111;
  background-color: #f1cf69;
}
.cc-field .column-table .btn:hover .radio-body img {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
}
.cc-field .column-table .btn:active {
  color: #111;
  background-color: #ebbb2a;
}
.cc-field .column-table .btn:active .radio-body img {
  opacity: 1;
  -ms-filter: none;
  -webkit-filter: none;
          filter: none;
}
.features-heads {
  width: 200px;
  display: inline-block;
}
.features-heads .fh {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #cccccd;
  border-left: 1px solid #cccccd;
}
.features-heads .fh:last-child {
  border-bottom: 1px solid #cccccd;
}
.features-heads .fh-hidden {
  height: 39px;
  border-color: transparent;
}
.form-check-input {
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0.1rem;
}
.form-check-input:checked {
  background-color: #024430;
  border-color: #024430;
}
.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(2,68,48,0.25);
}
.table-responsive {
  width: 100%;
  overflow-x: nowrap;
}
table.if-table {
  table-layout: auto;
  width: 100%;
  white-space: nowrap;
}
table.if-table thead th {
  color: #738f89;
}
table.if-table .groups-col {
  width: 100px;
}
table.if-table td.action {
  position: relative;
}
table.if-table td.action:hover {
  background-color: rgba(2,68,48,0.1);
  cursor: pointer;
}
table.if-table td.action::before {
  width: 7px;
  height: 7px;
  background-color: #d13f19;
  content: '';
  display: inline-block;
  border-radius: 50%;
  line-height: 1rem;
  margin-bottom: 1px;
}
table.if-table .btn-danger {
  color: #fff;
}
.data-container .name-tag {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.data-container .dataTables_wrapper .dataTables_filter {
  position: absolute;
  top: 0.95rem;
  right: 1rem;
  z-index: 10;
}
.data-container .dataTables_wrapper .dataTables_filter label {
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.data-container .dataTables_wrapper .dataTables_filter label input {
  margin-left: 5px;
}
.data-container .dataTables_wrapper .dt-buttons {
  position: absolute;
  top: 0.75rem;
  right: 18rem;
}
.table-ideasfarm-1 thead tr th {
  color: #191a1b;
  font-weight: 500;
}
.table-ideasfarm-1 tbody tr td {
  color: #191a1b;
}
.table-ideasfarm-1 tbody tr .cell-primary {
  color: #024430;
  font-weight: 600;
}
tr.male {
  border-left: 3px solid #bfd9fb;
}
tr.female {
  border-left: 3px solid #f3d8e6;
}
.table-ideasfarm-2 {
  border-spacing: 0 5px;
  border-collapse: separate;
}
.table-ideasfarm-2 thead tr th {
  color: #334543;
  font-weight: 500;
}
.table-ideasfarm-2 tbody tr {
  box-shadow: 0 0 15 #334543;
  margin: 5px 0;
}
.table-ideasfarm-2 tbody tr td {
  color: #6d8882;
}
.collapse-heading {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px 20px;
}
.collapse-heading .table {
  margin-bottom: 0;
}
.collapse-heading .table tbody tr:last-child td {
  border-bottom: none;
}
.table-collapse-ideasfarm {
  border-spacing: 0 5px;
  border-collapse: separate;
}
.table-collapse-ideasfarm thead tr th {
  font-weight: 500;
}
.table-collapse-ideasfarm tbody tr {
  box-shadow: 0 0 15 #334543;
  margin: 5px 0;
}
.table-collapse-ideasfarm tbody tr td {
  color: #6d8882;
}
.table .collapse-activator {
  transition: all 0.25s;
}
.table .collapse-activator:hover {
  background-color: #e8f5ef;
}
.table .collapse-activator:hover td {
  background-color: transparent !important;
}
.collapse-container {
  padding: 0 20px;
}
.collapse-container .show-details {
  margin-top: 5px;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.collapse-container .show-details .text-label {
  margin-left: 5px;
  font-size: 0.8rem;
}
.row-no-hover td:hover,
.row-no-hover th:hover {
  box-shadow: none;
}
.collapse-action .show-details {
  color: #111;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.25s;
}
.collapse-action .show-details:hover {
  color: #024430;
}
td.cell-primary {
  color: #024430;
  font-weight: 600;
}
tr.male {
  border-left: 3px solid #bfd9fb;
}
tr.female {
  border-left: 3px solid #f3d8e6;
}
.table-costs thead th {
  background-color: #e5ecea;
  color: #111;
  min-width: 150px;
  font-weight: 300;
  white-space: nowrap;
}
.table-costs tbody td,
.table-costs tbody th {
  white-space: nowrap;
}
.table-costs .tr-child-l0 th,
.table-costs .tr-child-l0 td {
  background-color: #e5ecea;
  color: #111;
}
.table-costs .tr-child-l1 th {
  color: #d13f19 !important;
}
.table-costs .tr-child-l1 th {
  background-color: #f2f5f4;
  color: #111;
  padding-left: 1.5em;
  min-width: 150px;
}
.table-costs .tr-child-l2 th {
  padding-left: 3em;
}
.table-costs .table-collapse .table-costs tbody td {
  min-width: 150px;
}
.table-costs th.min-w-250 {
  min-width: 300px;
}
.table-costs .tr-child-l1 .min-w-250 {
  color: #d13f19 !important;
}
.table-costs .tr-child-l1 .min-w-250 {
  min-width: 300px;
}
.tb-salary .tr-child-l0 th,
.tb-salary .tr-child-l0 td {
  background-color: #cbecbd;
}
.tb-feeding .tr-child-l0 th,
.tb-feeding .tr-child-l0 td {
  background-color: #ffe391;
}
.tb-feeding .tr-child-l1 th,
.tb-feeding .tr-child-l1 td {
  background-color: #ffeebe;
}
.tb-feeding .tr-child-l2 th,
.tb-feeding .tr-child-l2 td {
  background-color: #fff9e5;
}
.tb-reproduction-and-health .tr-child-l0 th,
.tb-reproduction-and-health .tr-child-l0 td {
  background-color: #fec3cc;
}
.tb-reproduction-and-health .tr-child-l1 th,
.tb-reproduction-and-health .tr-child-l1 td {
  background-color: #fedde0;
}
.tb-reproduction-and-health .tr-child-l2 th,
.tb-reproduction-and-health .tr-child-l2 td {
  background-color: #fef5ed;
}
table {
  width: 100% !important;
}
table.dataTable {
  border-radius: 8px;
  overflow: hidden;
}
table.dataTable thead>tr>th span.dt-column-title {
  white-space: break-spaces;
}
table.dataTable thead>tr.no-wrap>th span.dt-column-title {
  white-space: nowrap;
}
table.dataTable>thead>tr>th,
table.dataTable>thead>tr>td {
  text-align: left !important;
}
table.dataTable>thead>tr>th,
table.dataTable>thead>tr>td {
  border-top: 1px solid rgba(0,0,0,0.07);
  border-left: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(5,72,55,0.15);
  background-color: rgb(250, 250, 251);
}
table.dataTable>thead>tr>th:last-child,
table.dataTable>thead>tr>td:last-child {
  border-right: 1px solid rgba(0,0,0,0.07);
}
table.dataTable>tbody>tr>th,
table.dataTable>tbody>tr>td {
  font-family: "Quicksand", sans-serif !important;
  text-align: left !important;
  border-left-color: transparent !important;
  padding: 0.3rem !important;
}
table.dataTable>tbody>tr>th,
table.dataTable>tbody>tr>td {
  height: 45px;
  background-color: #fff;
}
table.dataTable.display>tbody>tr:nth-child(odd)>* {
  box-shadow: inset 0 0 0 9999px transparent;
  color: #191a1b;
}
table.dataTable.display>tbody>tr:nth-child(even)>* {
  box-shadow: inset 0 0 0 9999px rgba(231,231,231,0);
  color: #191a1b;
}
table.dataTable.display tbody tr:hover>*,
table.dataTable.order-column.hover tbody tr:hover>* {
  box-shadow: inset 0 0 0 9999px rgba(231,231,231,0.4);
}
table.dataTable.display>tbody>tr:nth-child(odd)>.sorting_1,
table.dataTable.order-column.stripe>tbody>tr:nth-child(odd)>.sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(231,231,231,0);
}
table.dataTable.display tbody tr:hover>.sorting_1,
table.dataTable.order-column.hover tbody tr:hover>.sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(231,231,231,0.4);
}
table.dataTable.display>tbody>tr>* {
  border-top: 1px solid rgba(0,0,0,0.07);
  border-left: 1px solid rgba(0,0,0,0.07);
}
table.dataTable.display>tbody>tr>*:last-child {
  border-right: 1px solid rgba(0,0,0,0.07);
}
div.dt-container.dt-empty-footer tbody>tr:last-child>* {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
div.dt-container .dt-paging .dt-paging-button:hover {
  color: #f1cf69 !important;
}
div.dt-container .dt-paging .dt-paging-button:hover {
  border-radius: 17px;
  background: #334543;
}
div.dt-container .dt-paging .dt-paging-button.current,
div.dt-container .dt-paging .dt-paging-button.current:hover {
  border-radius: 17px;
  background: transparent;
}
@media only screen and (max-width: 1199px) {
  .dtfh-floatingparent-head {
    top: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .dt-layout-row .dt-layout-cell.dt-end {
    display: -ms-flexbox;
    display: box;
    display: flex;
    -o-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -o-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .dt-layout-row .dt-layout-cell.dt-end .dt-search {
    width: calc(100% - 1rem);
  }
  .dt-layout-row .dt-layout-cell.dt-end .dt-search input {
    width: 100%;
  }
}
th.col-label,
td.col-label {
  min-width: 150px;
  width: 150px;
  white-space: nowrap;
}
th.col-month,
td.col-month {
  min-width: 100px;
  width: 100px;
  text-align: right;
  white-space: nowrap;
}
.col-hover,
th.col-hover,
td.col-hover {
  box-shadow: 0 0 0 transparent, inset 2px 2px 540px rgba(0,0,0,0.075);
}
.table-sync-wrapper {
  cursor: -webkit-grab;
  cursor: grab;
}
.table-sync-wrapper.dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.table-sync-wrapper {
  position: relative;
/* permite sticky interno                         */
  overflow-x: auto;
/* scroll horizontal nativo                       */
}
.table-sync-float {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
  pointer-events: none;
/* no intercepta clics                            */
  border-collapse: collapse;
  background: #fff;
}
.table-sync-float th {
  border: none;
}
.table-sync-wrapper td.col-label,
.table-sync-wrapper th.col-label {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 5;
}
.table-sync-wrapper .table-sync-float th.col-label {
  z-index: 999;
}
.col-label {
  position: relative;
  max-width: 160px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.marquee-wrapper {
  display: inline-block;
  white-space: nowrap;
}
.marquee-run {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 10s linear infinite;
  animation: marquee var(--mq-time, 10s) linear infinite;
}
.col-label:hover .marquee-run {
  animation-play-state: paused;
}
table thead tr th,
.table-report-level-1 thead tr th,
.table-header thead tr th {
  background-color: #fcfcfc !important;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
}
tr.table-row-0 td,
tr.table-row-0 th {
  background-color: #eaefee !important;
}
tr.table-row-1 td,
tr.table-row-1 th {
  background-color: #d1f0e8 !important;
}
tr.table-row-2 td,
tr.table-row-2 th {
  background-color: #def4ef !important;
}
tr.table-row-3 td,
tr.table-row-3 th {
  background-color: #ecf9f6 !important;
}
tr.table-row-4 td,
tr.table-row-4 th {
  background-color: #f5fcfa !important;
}
.costs-costs_index table,
.costs-costs_byMonth table {
  margin-bottom: 0;
}
.costs-costs_index .col-label {
  width: 200px;
  max-width: 200px;
}
.costs-costs_index .table-sm .col-label,
.costs-costs_index .table-sm .col-month {
  padding: 0.25rem 0.5rem !important;
}
.t-label {
  width: auto;
  text-align: left;
}
.t-money,
.t-column,
.t-qty {
  width: 180px;
  text-align: right;
}
.t-subRow td,
.t-subRow th {
  background-color: #f5fcfa;
}
table.dataTable.order-column.hover tbody tr:hover>*,
table.dataTable.display tbody tr:hover>* {
  box-shadow: inset 0 0 0 9999px rgba(236,249,232,0.644) !important;
}
.highlight-col {
  box-shadow: inset 0 0 0 9999px rgba(236,249,232,0.644) !important;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * 100%));
    transform: translateX(calc(-1 * var(--mq-shift, 100%)));
  }
}
.list-stats {
  padding: 0 !important;
}
.list-stats {
  overflow: hidden;
}
.list-stats .stats-title {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #e7e7e7;
  padding: 1.5rem 0 0;
}
.list-stats .title {
  color: #024430;
  font-size: 1.3rem;
  background-color: #f7f7f7;
  padding: 1.5rem;
  border-bottom: none;
  box-shadow: 0 -11px 16px 20px rgba(0,0,0,0.15);
  z-index: 10;
}
.list-stats .stats .item {
  padding: 7px !important;
}
.list-stats .stats .item {
  border-bottom: 1px dotted #e7e7e7;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.list-stats .stats .item .tag {
  font-size: 1rem;
}
.list-stats .stats .item .value {
  color: #024430;
  font-size: 1rem;
  font-weight: 500;
}
.list-stats .stats .item.graph-separator {
  padding-top: 0;
  padding-bottom: 0;
  height: auto;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.list-stats .stats .item.graph {
  padding-top: 0;
  padding-bottom: 0;
  height: auto;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.list-stats .stats .item.graph .tag {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 50%;
}
.list-stats .stats .item.graph .value {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
  height: 100%;
  color: #054837;
}
.list-stats .stats .item.graph .value .min {
  border-left: 1px solid #e7e7e7;
  width: 50%;
  height: 100%;
  padding-left: 5px;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: auto;
  z-index: 1;
}
.list-stats .stats .item.graph .value .max {
  padding-right: 5px;
  text-align: right;
  width: 50%;
  height: 100%;
  -o-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  border-left: 1px solid #e7e7e7;
  border-right: 1px solid #e7e7e7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: auto;
  z-index: 1;
}
.list-stats .stats .item.graph .value[data-nc-percent] {
  position: relative;
}
.list-stats .stats .item.graph .value[data-nc-percent]:before {
  content: '';
  position: absolute;
  top: 0;
  background-color: #72df83;
  z-index: 0;
  height: 100%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-100"]:before {
  left: 0%;
  width: 50%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-99"]:before {
  left: 0.5%;
  width: 49.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-98"]:before {
  left: 1%;
  width: 49%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-97"]:before {
  left: 1.5%;
  width: 48.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-96"]:before {
  left: 2%;
  width: 48%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-95"]:before {
  left: 2.5%;
  width: 47.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-94"]:before {
  left: 3%;
  width: 47%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-93"]:before {
  left: 3.5%;
  width: 46.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-92"]:before {
  left: 4%;
  width: 46%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-91"]:before {
  left: 4.5%;
  width: 45.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-90"]:before {
  left: 5%;
  width: 45%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-89"]:before {
  left: 5.5%;
  width: 44.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-88"]:before {
  left: 6%;
  width: 44%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-87"]:before {
  left: 6.5%;
  width: 43.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-86"]:before {
  left: 7%;
  width: 43%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-85"]:before {
  left: 7.5%;
  width: 42.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-84"]:before {
  left: 8%;
  width: 42%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-83"]:before {
  left: 8.5%;
  width: 41.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-82"]:before {
  left: 9%;
  width: 41%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-81"]:before {
  left: 9.5%;
  width: 40.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-80"]:before {
  left: 10%;
  width: 40%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-79"]:before {
  left: 10.5%;
  width: 39.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-78"]:before {
  left: 11%;
  width: 39%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-77"]:before {
  left: 11.5%;
  width: 38.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-76"]:before {
  left: 12%;
  width: 38%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-75"]:before {
  left: 12.5%;
  width: 37.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-74"]:before {
  left: 13%;
  width: 37%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-73"]:before {
  left: 13.5%;
  width: 36.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-72"]:before {
  left: 14%;
  width: 36%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-71"]:before {
  left: 14.5%;
  width: 35.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-70"]:before {
  left: 15%;
  width: 35%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-69"]:before {
  left: 15.5%;
  width: 34.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-68"]:before {
  left: 16%;
  width: 34%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-67"]:before {
  left: 16.5%;
  width: 33.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-66"]:before {
  left: 17%;
  width: 33%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-65"]:before {
  left: 17.5%;
  width: 32.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-64"]:before {
  left: 18%;
  width: 32%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-63"]:before {
  left: 18.5%;
  width: 31.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-62"]:before {
  left: 19%;
  width: 31%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-61"]:before {
  left: 19.5%;
  width: 30.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-60"]:before {
  left: 20%;
  width: 30%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-59"]:before {
  left: 20.5%;
  width: 29.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-58"]:before {
  left: 21%;
  width: 29%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-57"]:before {
  left: 21.5%;
  width: 28.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-56"]:before {
  left: 22%;
  width: 28%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-55"]:before {
  left: 22.5%;
  width: 27.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-54"]:before {
  left: 23%;
  width: 27%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-53"]:before {
  left: 23.5%;
  width: 26.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-52"]:before {
  left: 24%;
  width: 26%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-51"]:before {
  left: 24.5%;
  width: 25.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-50"]:before {
  left: 25%;
  width: 25%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-49"]:before {
  left: 25.5%;
  width: 24.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-48"]:before {
  left: 26%;
  width: 24%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-47"]:before {
  left: 26.5%;
  width: 23.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-46"]:before {
  left: 27%;
  width: 23%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-45"]:before {
  left: 27.5%;
  width: 22.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-44"]:before {
  left: 28%;
  width: 22%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-43"]:before {
  left: 28.5%;
  width: 21.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-42"]:before {
  left: 29%;
  width: 21%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-41"]:before {
  left: 29.5%;
  width: 20.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-40"]:before {
  left: 30%;
  width: 20%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-39"]:before {
  left: 30.5%;
  width: 19.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-38"]:before {
  left: 31%;
  width: 19%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-37"]:before {
  left: 31.5%;
  width: 18.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-36"]:before {
  left: 32%;
  width: 18%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-35"]:before {
  left: 32.5%;
  width: 17.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-34"]:before {
  left: 33%;
  width: 17%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-33"]:before {
  left: 33.5%;
  width: 16.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-32"]:before {
  left: 34%;
  width: 16%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-31"]:before {
  left: 34.5%;
  width: 15.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-30"]:before {
  left: 35%;
  width: 15%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-29"]:before {
  left: 35.5%;
  width: 14.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-28"]:before {
  left: 36%;
  width: 14%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-27"]:before {
  left: 36.5%;
  width: 13.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-26"]:before {
  left: 37%;
  width: 13%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-25"]:before {
  left: 37.5%;
  width: 12.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-24"]:before {
  left: 38%;
  width: 12%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-23"]:before {
  left: 38.5%;
  width: 11.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-22"]:before {
  left: 39%;
  width: 11%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-21"]:before {
  left: 39.5%;
  width: 10.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-20"]:before {
  left: 40%;
  width: 10%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-19"]:before {
  left: 40.5%;
  width: 9.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-18"]:before {
  left: 41%;
  width: 9%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-17"]:before {
  left: 41.5%;
  width: 8.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-16"]:before {
  left: 42%;
  width: 8%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-15"]:before {
  left: 42.5%;
  width: 7.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-14"]:before {
  left: 43%;
  width: 7%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-13"]:before {
  left: 43.5%;
  width: 6.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-12"]:before {
  left: 44%;
  width: 6%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-11"]:before {
  left: 44.5%;
  width: 5.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-10"]:before {
  left: 45%;
  width: 5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-9"]:before {
  left: 45.5%;
  width: 4.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-8"]:before {
  left: 46%;
  width: 4%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-7"]:before {
  left: 46.5%;
  width: 3.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-6"]:before {
  left: 47%;
  width: 3%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-5"]:before {
  left: 47.5%;
  width: 2.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-4"]:before {
  left: 48%;
  width: 2%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-3"]:before {
  left: 48.5%;
  width: 1.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-2"]:before {
  left: 49%;
  width: 1%;
}
.list-stats .stats .item.graph .value[data-nc-percent="-1"]:before {
  left: 49.5%;
  width: 0.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="0"]:before {
  left: 50%;
  width: 0%;
}
.list-stats .stats .item.graph .value[data-nc-percent="1"]:before {
  left: 50%;
  width: 0.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="2"]:before {
  left: 50%;
  width: 1%;
}
.list-stats .stats .item.graph .value[data-nc-percent="3"]:before {
  left: 50%;
  width: 1.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="4"]:before {
  left: 50%;
  width: 2%;
}
.list-stats .stats .item.graph .value[data-nc-percent="5"]:before {
  left: 50%;
  width: 2.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="6"]:before {
  left: 50%;
  width: 3%;
}
.list-stats .stats .item.graph .value[data-nc-percent="7"]:before {
  left: 50%;
  width: 3.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="8"]:before {
  left: 50%;
  width: 4%;
}
.list-stats .stats .item.graph .value[data-nc-percent="9"]:before {
  left: 50%;
  width: 4.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="10"]:before {
  left: 50%;
  width: 5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="11"]:before {
  left: 50%;
  width: 5.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="12"]:before {
  left: 50%;
  width: 6%;
}
.list-stats .stats .item.graph .value[data-nc-percent="13"]:before {
  left: 50%;
  width: 6.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="14"]:before {
  left: 50%;
  width: 7%;
}
.list-stats .stats .item.graph .value[data-nc-percent="15"]:before {
  left: 50%;
  width: 7.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="16"]:before {
  left: 50%;
  width: 8%;
}
.list-stats .stats .item.graph .value[data-nc-percent="17"]:before {
  left: 50%;
  width: 8.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="18"]:before {
  left: 50%;
  width: 9%;
}
.list-stats .stats .item.graph .value[data-nc-percent="19"]:before {
  left: 50%;
  width: 9.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="20"]:before {
  left: 50%;
  width: 10%;
}
.list-stats .stats .item.graph .value[data-nc-percent="21"]:before {
  left: 50%;
  width: 10.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="22"]:before {
  left: 50%;
  width: 11%;
}
.list-stats .stats .item.graph .value[data-nc-percent="23"]:before {
  left: 50%;
  width: 11.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="24"]:before {
  left: 50%;
  width: 12%;
}
.list-stats .stats .item.graph .value[data-nc-percent="25"]:before {
  left: 50%;
  width: 12.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="26"]:before {
  left: 50%;
  width: 13%;
}
.list-stats .stats .item.graph .value[data-nc-percent="27"]:before {
  left: 50%;
  width: 13.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="28"]:before {
  left: 50%;
  width: 14%;
}
.list-stats .stats .item.graph .value[data-nc-percent="29"]:before {
  left: 50%;
  width: 14.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="30"]:before {
  left: 50%;
  width: 15%;
}
.list-stats .stats .item.graph .value[data-nc-percent="31"]:before {
  left: 50%;
  width: 15.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="32"]:before {
  left: 50%;
  width: 16%;
}
.list-stats .stats .item.graph .value[data-nc-percent="33"]:before {
  left: 50%;
  width: 16.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="34"]:before {
  left: 50%;
  width: 17%;
}
.list-stats .stats .item.graph .value[data-nc-percent="35"]:before {
  left: 50%;
  width: 17.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="36"]:before {
  left: 50%;
  width: 18%;
}
.list-stats .stats .item.graph .value[data-nc-percent="37"]:before {
  left: 50%;
  width: 18.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="38"]:before {
  left: 50%;
  width: 19%;
}
.list-stats .stats .item.graph .value[data-nc-percent="39"]:before {
  left: 50%;
  width: 19.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="40"]:before {
  left: 50%;
  width: 20%;
}
.list-stats .stats .item.graph .value[data-nc-percent="41"]:before {
  left: 50%;
  width: 20.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="42"]:before {
  left: 50%;
  width: 21%;
}
.list-stats .stats .item.graph .value[data-nc-percent="43"]:before {
  left: 50%;
  width: 21.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="44"]:before {
  left: 50%;
  width: 22%;
}
.list-stats .stats .item.graph .value[data-nc-percent="45"]:before {
  left: 50%;
  width: 22.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="46"]:before {
  left: 50%;
  width: 23%;
}
.list-stats .stats .item.graph .value[data-nc-percent="47"]:before {
  left: 50%;
  width: 23.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="48"]:before {
  left: 50%;
  width: 24%;
}
.list-stats .stats .item.graph .value[data-nc-percent="49"]:before {
  left: 50%;
  width: 24.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="50"]:before {
  left: 50%;
  width: 25%;
}
.list-stats .stats .item.graph .value[data-nc-percent="51"]:before {
  left: 50%;
  width: 25.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="52"]:before {
  left: 50%;
  width: 26%;
}
.list-stats .stats .item.graph .value[data-nc-percent="53"]:before {
  left: 50%;
  width: 26.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="54"]:before {
  left: 50%;
  width: 27%;
}
.list-stats .stats .item.graph .value[data-nc-percent="55"]:before {
  left: 50%;
  width: 27.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="56"]:before {
  left: 50%;
  width: 28%;
}
.list-stats .stats .item.graph .value[data-nc-percent="57"]:before {
  left: 50%;
  width: 28.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="58"]:before {
  left: 50%;
  width: 29%;
}
.list-stats .stats .item.graph .value[data-nc-percent="59"]:before {
  left: 50%;
  width: 29.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="60"]:before {
  left: 50%;
  width: 30%;
}
.list-stats .stats .item.graph .value[data-nc-percent="61"]:before {
  left: 50%;
  width: 30.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="62"]:before {
  left: 50%;
  width: 31%;
}
.list-stats .stats .item.graph .value[data-nc-percent="63"]:before {
  left: 50%;
  width: 31.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="64"]:before {
  left: 50%;
  width: 32%;
}
.list-stats .stats .item.graph .value[data-nc-percent="65"]:before {
  left: 50%;
  width: 32.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="66"]:before {
  left: 50%;
  width: 33%;
}
.list-stats .stats .item.graph .value[data-nc-percent="67"]:before {
  left: 50%;
  width: 33.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="68"]:before {
  left: 50%;
  width: 34%;
}
.list-stats .stats .item.graph .value[data-nc-percent="69"]:before {
  left: 50%;
  width: 34.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="70"]:before {
  left: 50%;
  width: 35%;
}
.list-stats .stats .item.graph .value[data-nc-percent="71"]:before {
  left: 50%;
  width: 35.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="72"]:before {
  left: 50%;
  width: 36%;
}
.list-stats .stats .item.graph .value[data-nc-percent="73"]:before {
  left: 50%;
  width: 36.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="74"]:before {
  left: 50%;
  width: 37%;
}
.list-stats .stats .item.graph .value[data-nc-percent="75"]:before {
  left: 50%;
  width: 37.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="76"]:before {
  left: 50%;
  width: 38%;
}
.list-stats .stats .item.graph .value[data-nc-percent="77"]:before {
  left: 50%;
  width: 38.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="78"]:before {
  left: 50%;
  width: 39%;
}
.list-stats .stats .item.graph .value[data-nc-percent="79"]:before {
  left: 50%;
  width: 39.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="80"]:before {
  left: 50%;
  width: 40%;
}
.list-stats .stats .item.graph .value[data-nc-percent="81"]:before {
  left: 50%;
  width: 40.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="82"]:before {
  left: 50%;
  width: 41%;
}
.list-stats .stats .item.graph .value[data-nc-percent="83"]:before {
  left: 50%;
  width: 41.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="84"]:before {
  left: 50%;
  width: 42%;
}
.list-stats .stats .item.graph .value[data-nc-percent="85"]:before {
  left: 50%;
  width: 42.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="86"]:before {
  left: 50%;
  width: 43%;
}
.list-stats .stats .item.graph .value[data-nc-percent="87"]:before {
  left: 50%;
  width: 43.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="88"]:before {
  left: 50%;
  width: 44%;
}
.list-stats .stats .item.graph .value[data-nc-percent="89"]:before {
  left: 50%;
  width: 44.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="90"]:before {
  left: 50%;
  width: 45%;
}
.list-stats .stats .item.graph .value[data-nc-percent="91"]:before {
  left: 50%;
  width: 45.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="92"]:before {
  left: 50%;
  width: 46%;
}
.list-stats .stats .item.graph .value[data-nc-percent="93"]:before {
  left: 50%;
  width: 46.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="94"]:before {
  left: 50%;
  width: 47%;
}
.list-stats .stats .item.graph .value[data-nc-percent="95"]:before {
  left: 50%;
  width: 47.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="96"]:before {
  left: 50%;
  width: 48%;
}
.list-stats .stats .item.graph .value[data-nc-percent="97"]:before {
  left: 50%;
  width: 48.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="98"]:before {
  left: 50%;
  width: 49%;
}
.list-stats .stats .item.graph .value[data-nc-percent="99"]:before {
  left: 50%;
  width: 49.5%;
}
.list-stats .stats .item.graph .value[data-nc-percent="100"]:before {
  left: 50%;
  width: 50%;
}
.list-stats .stats .item:hover {
  background-color: #d1ff60;
}
.list-stats .stats .item:nth-child(even):hover {
  background-color: #d1ff60;
}
#paddocks-list {
  top: 8rem;
  left: 15.8rem;
  background-color: rgba(255,255,255,0.8);
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
}
@media only screen and (max-width: 991px) {
  #paddocks-list {
    top: 8rem;
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  #paddocks-list {
    top: 8rem;
    left: 0;
    width: 100%;
  }
}
#paddocks-file {
  top: 8rem;
  overflow-y: scroll;
  background: rgba(25,47,49,0.8);
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
  color: #fff;
  width: 500px;
}
#paddocks-file .offcanvas-header .btn-close-paddock {
  border: 1px solid #3bce07;
  color: #3bce07;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 33px;
  height: 33px;
}
#paddocks-file .offcanvas-header .btn-close-paddock:hover {
  border: 1px solid #024430;
  background-color: #3bce07;
  color: #fff;
}
#paddocks-file .offcanvas-header .btn-close-paddock i {
  font-size: 1rem;
  margin: 0;
  padding: 0;
}
.paddock-card {
  background-color: rgba(114,223,131,0.3);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.paddock-card table.table {
  color: #fff;
  margin-bottom: 0;
}
.paddock-card table.table th {
  width: 60px;
  border: none;
  text-align: right;
}
.paddock-card table.table td {
  border: none;
}
.paddock-card-data {
  padding: 1rem;
}
.paddock-card-data table.table {
  color: #fff;
  margin-bottom: 0;
}
.paddock-card-data table.table th {
  border: none;
}
.paddock-card-data table.table td {
  border: none;
}
#newRegister {
  top: 11.8rem;
}
.animal-info {
  padding-top: 20px;
  padding-bottom: 20px;
}
.animal-info h1 {
  font-family: "Poppins", sans-serif;
  color: #024430;
  font-weight: 700;
  font-size: 36px;
  line-height: 14px;
}
.animal-info h2 {
  font-family: "Poppins", sans-serif;
  color: #111;
  font-weight: 700;
  font-size: 40px;
  line-height: 54px;
  margin-bottom: 0;
}
.animal-info h3 {
  font-family: "Poppins", sans-serif;
  color: #111;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
}
.animal-info h3 span {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.modal-header {
  background: #1f1f1f;
  background: #fff;
  color: #fff;
  border-bottom: none;
}
.modal-body {
  padding: 3rem;
}
.modal-body .modal-form-container {
  padding-left: 3rem;
}
.modal {
  z-index: 1065;
}
.modal-danger .modal-dialog .modal-content .modal-header {
  background-color: #dc3545 !important;
}
.modal-danger .modal-dialog .modal-content .modal-header .modal-title {
  color: #fff;
}
.modal-menu .modal-dialog .modal-content .modal-body {
  padding: 1.5rem;
}
.modal-menu .modal-dialog .modal-content .modal-body .animal-info {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.modal-menu .modal-dialog .modal-content .modal-body .animal-info .info p {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 26px;
}
.modal-menu .modal-dialog .modal-content .modal-body .animal-info .code-1 {
  text-align: left;
}
.modal-menu .modal-dialog .modal-content .modal-body .animal-info .code-1 p {
  font-size: 36px;
  color: #024430;
}
.modal-menu .modal-dialog .modal-content .modal-body .animal-info .name {
  text-align: center;
}
.modal-menu .modal-dialog .modal-content .modal-body .animal-info .name p {
  font-size: 40px;
  color: #111;
}
.modal-menu .modal-dialog .modal-content .modal-body .animal-info .code-2 {
  text-align: right;
}
.modal-menu .modal-dialog .modal-content .modal-body .animal-info .code-2 p {
  font-size: 36px;
  color: #024430;
}
.modal-menu .modal-dialog .modal-content .modal-body .list-group-item-action {
  border-top-width: 1px;
}
.modal-menu .modal-dialog .modal-content .modal-body .list-group-item-action:hover {
  background-color: #024430;
  color: #fff;
}
.modal-menu .modal-dialog .modal-content .modal-body .info-submenu .item-level-2 a {
  color: #024430;
  margin: 0 2px;
}
.modal-menu .modal-dialog .modal-content .modal-body .info-submenu .item-level-2 a:hover {
  color: $colroTextBase;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.modal-menu .modal-dialog .modal-content .modal-body .info-submenu:hover {
  background-color: #fff;
  border: 1px solid #024430;
  color: #111;
}
.modal-backdrop {
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
  background: rgba(9,27,33,0.3);
}
.modal-backdrop.show {
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
  z-index: 1025;
}
.tool-bar {
  padding: 11px 16px;
  background-color: #fff;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid rgba(34,34,34,0.075);
}
.tool-bar h5 {
  margin-bottom: 0;
}
.tool-bar .title h5.name-tag {
  margin-bottom: 0;
}
.tool-bar .if-tools a {
  color: #08573b;
  transition: all 0.25s;
}
.tool-bar .if-tools a.active {
  background-color: #024430;
  color: #fff;
}
.tool-bar .if-tools a.active:hover {
  background-color: #024430;
  color: #fff;
}
.tool-bar .if-tools a:hover {
  background-color: #e7e7e7;
  color: #08573b;
}
.gender-bar .btn-group .btn {
  border-radius: 0;
}
.list-group {
  border-radius: 0;
}
.list-group .list-group-item {
  padding: 15px 15px;
  transition: all 0.25s;
}
.list-group .list-group-item.active,
.list-group .list-group-item.active:hover {
  background-color: #024430;
  color: #fff;
  border-color: #024430;
}
.list-group a.list-group-item:hover,
.list-group a.list-group-item.hover:hover {
  background-color: #e8f5ef;
  color: #313335;
  border-color: #e8f5ef;
}
.list-group .list-group-item-danger {
  color: #d21313;
  background-color: #fff;
  border-color: #d21313;
  transition: all 0.25s;
}
.list-group .list-group-item-danger:hover {
  background-color: #8f0c0c !important;
  color: #fff !important;
  border-color: #8f0c0c !important;
}
.breadcrumb .dropdown-menu .list-group-item {
  padding: 10px 15px;
}
.breadcrumb .dropdown-menu .list-group-item:not(:first-child):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  margin-left: 20px;
  border-style: solid;
  border-top: 10px solid #e7e7e7;
  border-right: 20px solid transparent;
  border-bottom: 0px solid transparent;
  border-left: 20px solid transparent;
}
.range-slider {
  margin-bottom: 2rem;
  width: 100%;
}
frequency-app {
  width: 350px;
  display: inline-block;
  margin-bottom: 1rem;
/*
    |---------------------------------------------------------------------------
    | Frecuandia semanal
    |---------------------------------------------------------------------------
    */
/*
    |---------------------------------------------------------------------------
    | Frecuandia anual
    |---------------------------------------------------------------------------
    |
    | Da formato al selector de meses
    |
    */
/*
    |---------------------------------------------------------------------------
    | Frecuandia mensual
    |---------------------------------------------------------------------------
    |
    | Da formato al selector de dias del mes
    |
    */
/*
    |---------------------------------------------------------------------------
    | Frecuandia diaria
    |---------------------------------------------------------------------------
    |
    | Establece las estructura grafica del selector de tipos de repeticion de la
    | tarea
    |
    */
}
@media only screen and (max-width: 767px) {
  frequency-app {
    width: 100%;
  }
}
frequency-app .days-of-week {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: distribute;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 10px 0;
}
frequency-app .days-of-week > div {
  width: 45px;
}
frequency-app .days-of-week > div label {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  height: 45px;
}
frequency-app .months-of-year {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
frequency-app .months-of-year > div {
  width: 16.6%;
  margin-bottom: -1px;
  margin-right: -1px;
}
frequency-app .months-of-year > div label {
  display: block;
  border-radius: 0;
}
frequency-app .days-of-month,
frequency-app .days-of-month-of-year {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 10px 0;
}
frequency-app .days-of-month > div,
frequency-app .days-of-month-of-year > div {
  width: 45px;
  margin-bottom: -1px;
  margin-right: -1px;
}
frequency-app .days-of-month > div label,
frequency-app .days-of-month-of-year > div label {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0;
  height: 45px;
}
frequency-app .end-repeat.end-section {
  margin-bottom: 1rem;
}
frequency-app .end-repeat.end-section hr {
  display: none;
}
frequency-app .end-repeat.end-section .end-op {
  display: -ms-flexbox;
  display: box;
  display: flex;
  border-bottom: 1px solid rgba(8,87,59,0.15);
}
frequency-app .end-repeat.end-section .end-op .end-op-check {
  padding: 0 1rem;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
frequency-app .end-repeat.end-section .end-op .end-control {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem 1rem;
  border-left: 1px solid rgba(8,87,59,0.15);
}
frequency-app .end-repeat.end-section .end-op .end-control .form-floating {
  margin: 0;
  margin-right: 7px;
}
frequency-app .end-repeat.end-section .end-op .end-control select {
  width: 120px;
}
frequency-app .end-repeat.end-section .end-op:last-child {
  border-bottom: none;
}
.app-protocols [data-nc-trigger^="mtm-selector"] .mtm-option {
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 1rem !important;
}
.app-protocols [data-nc-trigger^="mtm-selector"] .mtm-option {
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 1rem;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .app-protocols [data-nc-trigger^="mtm-selector"] .mtm-option {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.app-protocols [data-nc-trigger^="mtm-selector"] .mtm-option .form-floating {
  margin-bottom: 0 !important;
}
.app-protocols [data-nc-trigger^="mtm-selector"] .mtm-option .form-floating {
  width: 28%;
}
@media only screen and (max-width: 767px) {
  .app-protocols [data-nc-trigger^="mtm-selector"] .mtm-option .form-floating {
    margin-bottom: 0 !important;
  }
  .app-protocols [data-nc-trigger^="mtm-selector"] .mtm-option .form-floating {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .app-protocols #tpl_per_date .form-group-months .btn-group {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .app-protocols #tpl_per_date .form-group-months .btn-group .btn.btn-outline-primary {
    width: 25%;
    border-radius: 0;
  }
}
.nc-dt-filters {
  width: 100%;
}
.nc-dt-filters .nc-filter-group > span {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}
.nc-dt-filters .nc-filter-btn {
  transition: all 0.2s ease-in-out;
}
.nc-dt-filters .nc-filter-btn:focus,
.nc-dt-filters .nc-filter-btn:active {
  outline: none !important;
  box-shadow: none !important;
}
.nc-dt-filters .nc-filter-btn:focus,
.nc-dt-filters .nc-filter-btn:active {
  background-color: none;
  border-color: none;
}
.nc-dt-filters .nc-filter-btn .badge {
  transition: all 0.2s ease-in-out;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35em 0.6em;
}
.nc-dt-filters .nc-filter-btn.active {
  background-color: #024430 !important;
  background-color: var(--if-brand) !important;
  border-color: #024430 !important;
  border-color: var(--if-brand) !important;
  color: #fff !important;
}
.nc-dt-filters .nc-filter-btn.active .badge {
  background-color: #fff !important;
  color: #024430 !important;
  color: var(--if-brand) !important;
}
.dt-column-title,
.if-sub-sort {
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -o-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 6px;
  width: 100%;
}
.dt-column-order,
.sort-icon {
  margin-left: auto !important;
}
.nc-excel-icon-wrapper {
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
  margin-right: 0;
}
.nc-excel-icon-wrapper .nc-excel-icon {
  font-size: 0.85em;
  transition: color 0.2s ease;
  color: #334543;
}
.nc-excel-icon-wrapper:hover .nc-excel-icon {
  color: #2b3b39;
}
.nc-excel-icon-wrapper.nc-filter-active .nc-excel-icon {
  color: #024430;
}
.nc-excel-popover {
  position: absolute;
  z-index: 9999;
  width: 260px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  font-size: 0.85rem;
  display: none;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}
.nc-excel-popover .nc-excel-header {
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
  border-radius: 8px 8px 0 0;
}
.nc-excel-popover .nc-excel-search {
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
}
.nc-excel-popover .nc-excel-list {
  max-height: 220px;
  overflow-y: auto;
  padding: 5px 0;
}
.nc-excel-popover .nc-excel-item {
  padding: 4px 12px;
  cursor: pointer;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: background 0.1s;
}
.nc-excel-popover .nc-excel-item:hover {
  background: #f8f9fa;
}
.nc-excel-popover .nc-excel-item .nc-filter-check {
  margin-top: 0;
  margin-right: 8px;
  cursor: pointer;
}
.nc-excel-popover .nc-excel-footer {
  padding: 8px 12px;
  border-top: 1px solid #eee;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #f8f9fa;
  border-radius: 0 0 8px 8px;
}
.kpi-indicator {
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.kpi-indicator.action {
  cursor: pointer;
}
.kpi-indicator.action:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.kpi-indicator .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}
.kpi-indicator.danger {
  background-color: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}
.kpi-indicator.danger .dot {
  background-color: #ef4444;
}
.kpi-indicator.warning {
  background-color: #fff9eb;
  color: #92400e;
  border-color: #fde68a;
}
.kpi-indicator.warning .dot {
  background-color: #f59e0b;
}
.kpi-indicator.success {
  background-color: #f0fdf4;
  color: #166534;
  border-color: #bbf7d0;
}
.kpi-indicator.success .dot {
  background-color: #22c55e;
}
.kpi-indicator.info,
.kpi-indicator.primary {
  background-color: #eff6ff;
  color: #1e40af;
  border-color: #bfdbfe;
}
.kpi-indicator.info .dot,
.kpi-indicator.primary .dot {
  background-color: #3b82f6;
}
.kpi-indicator.secondary {
  background-color: #f8fafc;
  color: #475569;
  border-color: #e2e8f0;
}
.kpi-indicator.secondary .dot {
  background-color: #94a3b8;
}
.dt-container > .row.mt-2 {
  margin-top: 0 !important;
}
.dt-container div.dtsp-panesContainer {
  margin-bottom: 0px;
}
.dt-container div.dtsp-panesContainer .dtsp-titleRow {
  display: none;
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 {
  margin-top: 0px !important;
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dtsp-topRow {
  display: none;
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dt-container {
  border: none;
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dt-container:hover {
  border: none !important;
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dt-container .dt-scroll-body {
  border-left: none !important;
  height: 35px !important;
  width: 100% !important;
  overflow-y: hidden !important;
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dt-container .dt-scroll-body table tbody {
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dt-container .dt-scroll-body table tbody tr {
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dt-container .dt-scroll-body table tbody tr td.dtsp-nameColumn {
  padding: 0 0.5rem !important;
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dt-container .dt-scroll-body table tbody tr .dtsp-nameCont {
  border: 1px solid $dhCardBg;
  cursor: pointer;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  background-color: $dhCardBg;
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dt-container .dt-scroll-body table tbody tr .dtsp-nameCont .dtsp-name {
  font-size: 1rem;
  padding: 10px;
  line-height: 1rem;
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dt-container .dt-scroll-body table tbody tr .dtsp-nameCont .dtsp-pill {
  background-color: transparent !important;
  border-radius: 0 0 0 0 !important;
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dt-container .dt-scroll-body table tbody tr .dtsp-nameCont .dtsp-pill {
  color: #024430;
  font-size: 1rem;
  padding: 10px 5px;
  line-height: 1rem;
  margin: 0;
  font-weight: normal;
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dt-container .dt-scroll-body table tbody tr.selected .dtsp-nameCont {
  border: 1px solid #3bce07;
  background-color: #334543;
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dt-container .dt-scroll-body table tbody tr.selected .dtsp-nameCont .dtsp-name {
  color: #fff;
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dt-container .dt-scroll-body table tbody tr.selected .dtsp-nameCont .dtsp-pill {
  color: #fff;
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dt-container .dt-scroll-body table tbody tr.selected >* {
  box-shadow: inset 0 0 0 9999px rgba(255,255,255,0.1);
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dt-container .dt-scroll-body table tbody tr:hover .dtsp-nameCont {
  background-color: #08573b;
  color: #fff;
  box-shadow: 0 0 4px rgba(34,34,34,0.3);
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dt-container .dt-scroll-body table tbody tr:hover .dtsp-nameCont .dtsp-pill {
  color: #fff;
}
.dt-container div.dtsp-panesContainer .dtsp-searchPanes .dtsp-searchPane.dtsp-columns-1 .dt-container .dt-scroll-body table tbody tr:first-child td {
  padding: 0 0.5rem 0 0 !important;
}
table.table.dataTable>tbody>tr.selected>* {
  box-shadow: inset 0 0 0 9999px transparent !important;
}
.dt-layout-cell.dt-end {
  display: -ms-flexbox !important;
  display: box !important;
  display: flex !important;
}
.dt-layout-cell.dt-end {
  -o-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 1rem;
}
.dt-layout-cell.dt-end .dt-button-collection.dtb-collection-closeable {
  top: 100px !important;
  width: 900px !important;
  width: var(--sb-container-with) !important;
  margin: 1rem calc(50% - (900px * 0.5)) !important;
  margin: 1rem calc(50% - (var(--sb-container-with) * 0.5)) !important;
  overflow: auto !important;
}
.dt-layout-cell.dt-end .dt-button-collection.dtb-collection-closeable {
  --sb-container-with: 900px;
  position: fixed;
  right: 0;
  max-height: calc(100vh - 10rem);
  z-index: 9999999;
  padding-bottom: 14rem;
}
@media only screen and (max-width: 991px) {
  .dt-layout-cell.dt-end .dt-button-collection.dtb-collection-closeable {
    width: calc(100vw - 2rem) !important;
    margin: 1rem !important;
  }
}
.dt-layout-cell.dt-end .dt-button-collection.dtb-collection-closeable .dtsb-criteria,
.dt-layout-cell.dt-end .dt-button-collection.dtb-collection-closeable .dtsb-group {
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 0.4rem;
  padding-bottom: 0.4rem;
}
div.dtsb-searchBuilder div.dtsb-group div.dtsb-criteria select.dtsb-data,
div.dtsb-searchBuilder div.dtsb-group div.dtsb-criteria select.dtsb-condition,
div.dtsb-searchBuilder div.dtsb-group div.dtsb-criteria select.dtsb-value {
  border: 1px solid #cccccd;
}
.nc-export-hidden-separator {
  display: none !important;
}
div.dt-button-collection.dropdown-menu {
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
  max-width: 90vw !important;
}
div.dt-button-collection.dropdown-menu {
  min-width: 250px;
  padding: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}
div.dt-button-collection .dt-button.dropdown-item {
  white-space: normal;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
@media (max-width: 576px) {
  div.dt-button-collection.dropdown-menu {
    width: 100vw !important;
    max-width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
  }
  div.dt-button-collection.dropdown-menu {
    min-width: 0;
    min-width: initial;
    border-radius: 0;
    margin: 0;
  }
}
@media print {
  @page {
    width: landscape;
    height: landscape; /* Sugiere impresión horizontal para ganar espacio en tablas anchas */
    margin: 10mm;
  }
  body.nucleus-print-window {
/* Reduce el tamaño global al 80% para imprimir mayor cantidad de datos */
    zoom: 0.8;
/* Ocultar barras decorativas de progreso puro para ahorrar tinta y mejorar legibilidad */
/* Asegurar correcto centrado del número solitario restante */
/* Quitar subrayados irrelevantes de modales al imprimir */
/* Borders de subcolumnas */
  }
  body.nucleus-print-window .d-flex {
    display: -ms-flexbox !important;
    display: box !important;
    display: flex !important;
  }
  body.nucleus-print-window .flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  body.nucleus-print-window .flex-column {
    -o-box-orient: vertical;
  }
  body.nucleus-print-window .gap-2 {
    gap: 0.5rem !important;
  }
  body.nucleus-print-window .justify-content-center {
    -o-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  body.nucleus-print-window .align-items-center {
    -ms-flex-align: center !important;
        align-items: center !important;
  }
  body.nucleus-print-window .align-items-center {
    -o-box-align: center;
    -ms-flex-align: center;
  }
  body.nucleus-print-window .lh-1 {
    line-height: 1 !important;
  }
  body.nucleus-print-window .lh-sm {
    line-height: 1.25 !important;
  }
  body.nucleus-print-window table.dataTable {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: auto !important;
  }
  body.nucleus-print-window table.dataTable { /* Permite a los navegadores comprimir columnas si es necesario */
  }
  body.nucleus-print-window table.dataTable th,
  body.nucleus-print-window table.dataTable td {
    vertical-align: middle !important;
    padding: 0.25rem !important;
    white-space: nowrap !important;
  }
  body.nucleus-print-window table.dataTable th,
  body.nucleus-print-window table.dataTable td { /* Menos espacio en blanco = más columnas */
  }
  body.nucleus-print-window .text-truncate {
    white-space: nowrap !important;
  }
  body.nucleus-print-window .text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
  }
  body.nucleus-print-window .small {
    font-size: 0.85em !important;
  }
  body.nucleus-print-window .fw-bold {
    font-weight: bold !important;
  }
  body.nucleus-print-window .text-muted {
    color: #6c757d !important;
  }
  body.nucleus-print-window .text-primary {
    color: #0d6efd !important;
  }
  body.nucleus-print-window .progress {
    display: none !important;
  }
  body.nucleus-print-window .d-flex.align-items-center.gap-2 > span {
    margin: auto !important;
  }
  body.nucleus-print-window .bg-danger {
    background-color: #dc3545 !important;
  }
  body.nucleus-print-window .rounded-circle {
    border-radius: 50% !important;
  }
  body.nucleus-print-window .rounded-circle {
    display: inline-block;
  }
  body.nucleus-print-window a.open-ofc-light-sheet {
    -webkit-text-decoration: none !important;
    text-decoration: none !important;
    color: inherit !important;
  }
  body.nucleus-print-window .border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
  }
  body.nucleus-print-window .border-secondary-subtle {
    border-color: #e2e3e5 !important;
  }
  body.nucleus-print-window .pb-1 {
    padding-bottom: 0.25rem !important;
  }
  body.nucleus-print-window .mb-1 {
    margin-bottom: 0.25rem !important;
  }
  body.nucleus-print-window .my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
}
.dropdown-menu {
  border: none;
  box-shadow: 0px 3px 10px rgba(34,34,34,0.2);
}
.dropdown-menu .dropdown-item:hover {
  background-color: #334543;
  color: #fff;
}
.dropdown-menu .dropdown-item.active {
  background-color: #334543;
  color: #ffe7bb;
}
.text-secondary {
  color: #334543 !important;
}
.text-secondary {
  opacity: 1;
  -ms-filter: none;
  -webkit-filter: none;
          filter: none;
}
.text-tertiary {
  color: #33666e !important;
}
.text-tertiary {
  opacity: 1;
  -ms-filter: none;
  -webkit-filter: none;
          filter: none;
}
.text-cuaternary {
  color: #f1cf69 !important;
}
.text-cuaternary {
  opacity: 1;
  -ms-filter: none;
  -webkit-filter: none;
          filter: none;
}
.kpi {
  display: -ms-flexbox;
  display: box;
  display: flex;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 850px;
  overflow: hidden;
  border: 1px solid #fff;
  min-height: 56px;
  color: #222;
  box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
  border-radius: 12px;
}
.kpi .icon {
  display: none !important;
}
.kpi .icon {
  background-color: #024430;
  color: #fff;
  min-width: 50px;
  height: 50px;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-family: 'Source Code Pro', monospace;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: lowercase;
}
.kpi .info {
  max-width: calc(100% - $wIcon);
  padding: 0 1rem;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.kpi .info .name {
  font-weight: 500;
  width: 100%;
  font-size: 0.9rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: calc(1rem * 1.68);
}
.kpi .info .value {
  font-size: 1rem;
  font-weight: 600;
  margin-top: -7px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 1rem;
  color: #111;
}
.kpi .info .value .symbol {
  font-size: 1rem;
  font-weight: 400;
}
.kpi:hover .icon {
  background-color: #023a29;
}
.data-stats {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}
.data-stats .chart {
  -ms-flex-preferred-size: calc(40% - 2rem);
      flex-basis: calc(40% - 2rem);
  -o-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  min-height: 200px;
  font-family: 'Source Code Pro', monospace;
}
.data-stats .kpis {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
  width: 60%;
}
a.kpi:hover {
  border-color: #fff;
  box-shadow: 3px 3px 7px rgba(34,34,34,0.25);
}
.comp-operative-tasks .kpi {
  background-color: #fff;
  border-color: transparent;
}
.comp-operative-tasks .kpi .info {
  margin: 15px 0;
}
.comp-operative-tasks .kpi .info .name {
  color: #222;
  font-size: 0.95rem;
}
.comp-operative-tasks .kpi .info .value {
  font-size: 2rem;
  font-weight: 600;
  line-height: 2rem;
  padding-top: 5px;
}
.comp-operative-tasks .kpi[data-bs-toggle="offcanvas"]:hover {
  border-color: #fff;
  box-shadow: 3px 3px 7px rgba(34,34,34,0.15);
}
.dashboard-card:has(.head-block[data-bs-toggle="offcanvas"]) {
  transition: all 0.25s;
}
.dashboard-card:has(.head-block[data-bs-toggle="offcanvas"]):hover {
  border-color: #fff;
  box-shadow: 3px 3px 7px rgba(34,34,34,0.15);
}
.list-group {
  width: 100%;
}
.form-check-input:checked + .form-checked-content {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.form-check-input-placeholder {
  border-style: dashed;
}
[contenteditable]:focus {
  outline: 0;
}
.list-group-checkable .list-group-item {
  cursor: pointer;
}
.list-group-item-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
.list-group-item-check:hover + .list-group-item {
  background-color: var(--bs-secondary-bg);
}
.list-group-item-check:checked + .list-group-item {
  color: #fff;
  background-color: #024430;
  border-color: #024430;
}
.list-group-item-check[disabled] + .list-group-item,
.list-group-item-check:disabled + .list-group-item {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.list-group-radio .list-group-item {
  cursor: pointer;
  border-radius: 0.5rem;
}
.list-group-radio .form-check-input {
  z-index: 2;
  margin-top: -0.5em;
}
.list-group-radio .form-check-input:checked + .list-group-item {
  background-color: var(--bs-body);
  border-color: #024430;
  box-shadow: 0 0 0 2px #024430;
}
.list-group-radio .list-group-item:hover,
.list-group-radio .list-group-item:focus {
  background-color: #e9eeee;
  color: #024430;
}
.list-group-radio .form-check-input[disabled] + .list-group-item,
.list-group-radio .form-check-input:disabled + .list-group-item {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.badge {
  --bs-badge-font-size: 0.9em;
}
.badge.text-bg-info {
  background-color: #0dcaf0 !important;
  color: #222 !important;
}
.badge.text-bg-info {
  border: 1px solid #5f7f75;
}
.badge.bg-primary {
  background-color: #ccd9d5 !important;
  color: #123329 !important;
}
.badge.bg-primary {
  font-weight: bold;
  border: 1px solid #5f7f75;
}
.badge.bg-secondary {
  background-color: #d6d9d9 !important;
  color: #2a3332 !important;
}
.badge.bg-secondary {
  font-weight: bold;
  border: 1px solid rgba(46,60,58,0.25);
}
.badge.bg-success {
  background-color: #ecf7ec !important;
  color: #537651 !important;
}
.badge.bg-success {
  font-weight: bold;
  border: 1px solid rgba(107,160,105,0.25);
}
.badge.bg-danger {
  background-color: rgba(240,175,182,0.2) !important;
  color: #9e767a !important;
}
.badge.bg-danger {
  font-weight: bold;
  border: 1px solid rgba(200,54,69,0.25);
}
.badge.bg-warning {
  background-color: #fff8e6 !important;
  color: #a29364 !important;
}
.badge.bg-warning {
  font-weight: bold;
  border: 1px solid #e8d085;
}
.badge.bg-info {
  background-color: rgba(13,202,240,0.2) !important;
  color: #62919b !important;
}
.badge.bg-info {
  font-weight: bold;
  border: 1px solid rgba(15,185,219,0.25);
}
.badge.bg-light {
  background-color: rgba(205,206,206,0.2) !important;
  color: #7d7d7d !important;
}
.badge.bg-light {
  font-weight: bold;
  border: 1px solid rgba(162,163,163,0.25);
}
.badge.bg-dark {
  background-color: rgba(55,58,62,0.5) !important;
  color: #fff !important;
}
.badge.bg-dark {
  font-weight: bold;
  border: 1px solid rgba(33,36,40,0.25);
}
.layout .app-weather .comp-weather .weather-weather_view .main-container {
  min-height: 20vh;
  border: 10px solid #d13f19;
}
.weather-bg {
  background-image: url("../images/weather-bg-02n.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #3a4b55;
}
.full-screen-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0,0,0,0.5);
  background-attachment: fixed;
  z-index: -10;
}
.weather-content {
  color: #fff;
}
.weather-content .bottom-tab {
  background-color: rgba(0,0,0,0.4);
  overflow-x: scroll;
  width: 100%;
}
.weather-content .bottom-tab .nav-pills {
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -o-box-lines: single;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.weather-content .bottom-tab .nav-pills .nav-item .nav-link {
  color: #fff;
}
.weather-content .bottom-tab .nav-pills .nav-item .nav-link.active {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(255,255,255,0.2);
}
.weather-content >.tab-content >.tab-pane {
  padding: 1rem;
}
.weather-content >.tab-content >.tab-pane .main-secondary-tabs {
  -o-box-ordinal-group: 1;
  -ms-flex-order: 1;
  order: 1;
}
.weather-content >.tab-content >.tab-pane .main-secondary-tabs .left-data {
  text-align: center;
}
.weather-content >.tab-content >.tab-pane .main-secondary-tabs .left-data__weather--title {
  font-size: 4.5rem;
  line-height: 4.5rem;
  text-shadow: 0 3px 7px rgba(34,34,34,0.35);
  margin-bottom: 0;
}
.weather-content >.tab-content >.tab-pane .main-secondary-tabs .left-data__sub-title-info {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.5rem;
  -o-box-align: top;
  -ms-flex-align: top;
  align-items: top;
  margin-bottom: 1rem;
}
.weather-content >.tab-content >.tab-pane .main-secondary-tabs .left-data__sub-title-info .left-data__temperature {
  font-size: 2.307rem;
  line-height: 2.307rem;
  text-shadow: 0 2px 2px rgba(34,34,34,0.35);
}
.weather-content >.tab-content >.tab-pane .main-secondary-tabs .left-data .top-data-txt,
.weather-content >.tab-content >.tab-pane .main-secondary-tabs .left-data .left-data__farm-name {
  font-size: 1.23rem;
  line-height: 1.23rem;
  text-shadow: 0 2px 2px rgba(34,34,34,0.35);
}
.weather-content >.tab-content >.tab-pane .main-secondary-tabs .right-data {
  margin-bottom: 1rem;
  padding: 1rem 0;
  display: -ms-flexbox;
  display: box;
  display: flex;
  gap: 1rem;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.weather-content >.tab-content >.tab-pane .main-secondary-tabs .right-data .day-container {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  -o-box-flex: 1;
  -ms-box-flex: 1;
  box-flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(255,255,255,0.1);
  border-radius: 1rem;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.weather-content >.tab-content >.tab-pane .main-secondary-tabs .right-data .day-container .day-container__text {
  padding: 1rem 5px;
}
.weather-content >.tab-content >.tab-pane .main-secondary-tabs .right-data .day-container .day-container__text p {
  margin-bottom: 0;
  text-align: center;
}
.weather-content >.tab-content >.tab-pane .main-secondary-tabs .right-data .day-container .day-container__text .day-container__text__title {
  font-size: 12px;
}
.weather-content >.tab-content >.tab-pane .main-secondary-tabs .right-data .day-container .day-container__text .day-container__icon {
  font-size: 2rem;
  text-align: center;
}
.weather-content >.tab-content >.tab-pane .main-secondary-tabs .right-data .day-container .day-container__text .day-container__text__value {
  font-size: 20px;
}
.weather-content >.tab-content >.tab-pane .hour-prediction-tabs {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(255,255,255,0.1);
  border-radius: 1rem;
  color: #fff;
  padding: 1rem;
}
.weather-content >.tab-content >.tab-pane .hour-prediction-tabs .owl-stage {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.weather-content >.tab-content >.tab-pane .hour-prediction-tabs .owl-stage .owl-item {
  background-color: rgba(255,255,255,0.1);
  border-radius: 1rem;
}
.weather-content >.tab-content >.tab-pane .hour-prediction-tabs .owl-stage .owl-item .nav-item .nav-link {
  color: #fff;
}
.weather-content >.tab-content >.tab-pane .hour-prediction-tabs .owl-stage .owl-item .nav-item:hover {
  background-color: rgba(255,255,255,0.2);
  border-radius: 1rem;
}
.weather-content >.tab-content >.tab-pane .hour-prediction-tabs .owl-nav {
  display: none !important;
}
.weather-content >.tab-content >.tab-pane .hour-prediction-tabs .owl-dots .owl-dot span {
  background: #fff;
}
.weather-content >.tab-content >.tab-pane .hour-prediction-tabs .owl-dots .owl-dot.active span {
  background: #3bce07;
}
.info-wrapper {
  position: absolute;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.info-wrapper.above {
  -o-box-direction: reverse;
  -o-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.info-wrapper.above .info-paddock:before {
  transform: translateY(-100%) scaleY(2);
}
.info-wrapper.below {
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}
.info-wrapper.below .info-paddock:before {
  transform: scaleY(2);
}
.info-paddock {
  position: relative;
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 100;
}
.info-paddock:before {
  content: '';
  position: absolute;
  top: 50%;
  width: 2px;
  height: 20px;
  background-color: #000;
  z-index: -1;
}
.breadcrumb {
  --nc-breadcrumb-text-color: #999;
  --nc-breadcrumb-text-color-link: #666;
  --nc-breadcrumb-text-color-link-hover: #024430;
  --nc-breadcrumb-text-color-strong: #192f31;
  margin-bottom: 0;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.breadcrumb .breadcrumb-item {
  color: var(--nc-breadcrumb-text-color);
  font-size: 1.1rem;
}
.breadcrumb .breadcrumb-item > a {
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.3s;
  color: var(--nc-breadcrumb-text-color-link);
}
.breadcrumb .breadcrumb-item > a:first-child {
  margin-right: 5px;
}
.breadcrumb .breadcrumb-item strong {
  color: var(--nc-breadcrumb-text-color-strong);
  font-weight: 600;
}
.breadcrumb .breadcrumb-item:last-child {
  color: var(--nc-breadcrumb-text-color-strong);
  font-weight: 600;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.breadcrumb .list-group-item a {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: var(--nc-breadcrumb-text-color-link-hover);
}
.breadcrumb .list-group-item a:first-child {
  margin-right: 5px;
}
.breadcrumb .breadcrumb-item a:hover,
.breadcrumb .breadcrumb-item a:hover strong {
  color: var(--nc-breadcrumb-text-color-link-hover);
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
}
.btn-group.breadcrumb .btn-group {
  margin-bottom: 0;
}
.btn-group.breadcrumb .bc-item {
  transition: all 0.25s;
}
.btn-group.breadcrumb .bc-item.disabled {
  opacity: inherit;
  -ms-filter: inherit;
  -webkit-filter: inherit;
          filter: inherit;
}
.btn-group.breadcrumb .bc-item:not(.btn-group) {
  padding-right: 12px;
  padding-left: 24px;
}
.btn-group.breadcrumb .bc-item:not(.btn-group):first-child {
  padding-right: 6px;
  padding-left: 10px;
}
.btn-group.breadcrumb .bc-item:not(.btn-group):before {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 10px solid #3bce07;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  margin-left: 0px;
  left: 100%;
  z-index: 3;
  transition: all 0.25s;
}
.btn-group.breadcrumb .bc-item:not(.btn-group):after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 10px solid #fff;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  margin-left: -1px;
  left: 100%;
  z-index: 3;
  transition: all 0.25s;
}
.btn-group.breadcrumb .bc-item:not(.btn-group):hover {
  background-color: #024430;
  color: #ffe7bb;
}
.btn-group.breadcrumb .bc-item:not(.btn-group):hover .primary {
  color: #fff !important;
}
.btn-group.breadcrumb .bc-item:not(.btn-group):hover:after {
  border-left: 10px solid #024430;
}
.btn-group.breadcrumb .bc-item:last-child {
  font-weight: bold;
}
.btn-group.breadcrumb .bc-item:last-child:before,
.btn-group.breadcrumb .bc-item:last-child:after,
.btn-group.breadcrumb .bc-item:last-child:hover {
  border-left: 0;
}
.btn-group.breadcrumb .bc-item.btn-group:first-child >.btn:first-child {
  padding-left: 10px;
}
.btn-group.breadcrumb .bc-item.btn-group:hover:after {
  border-left: 10px solid #e7e7e7;
}
.btn-group.breadcrumb .bc-item.btn-group >.btn {
  padding-left: 24px;
}
.btn-group.breadcrumb .bc-item.btn-group >.btn:hover,
.btn-group.breadcrumb .bc-item.btn-group >.btn.show {
  background-color: #024430;
  color: #ffe7bb;
}
.btn-group.breadcrumb .bc-item.btn-group >.btn.dropdown-toggle-split {
  font-size: 0.9rem;
  font-weight: 600;
  padding-right: 6px;
  padding-left: 6px;
  border-left: 1px solid #e7e7e7;
}
.btn-group.breadcrumb .bc-item.btn-group >.btn.dropdown-toggle-split:before {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 10px solid #3bce07;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  margin-left: 0px;
  left: 100%;
  z-index: 3;
  transition: all 0.25s;
}
.btn-group.breadcrumb .bc-item.btn-group >.btn.dropdown-toggle-split:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 10px solid #fff;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  margin-left: -1px;
  left: 100%;
  z-index: 3;
  transition: all 0.25s;
}
.btn-group.breadcrumb .bc-item.btn-group >.btn.dropdown-toggle-split:hover:after,
.btn-group.breadcrumb .bc-item.btn-group >.btn.dropdown-toggle-split.show:after {
  border-left: 10px solid #024430;
}
[data-nc-replace="tool-bar"] .navbar-nav form {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}
.dt-search,
.daterange-container,
.form-top-label {
  position: relative;
}
.dt-search label,
.daterange-container label,
.form-top-label label {
  position: absolute;
  background-color: #fff;
  left: 7px;
  top: -5px;
  font-size: 0.8rem;
  padding: 0px 3px;
  color: #1c9647;
  font-weight: 500;
}
.dt-search .input-daterange,
.daterange-container .input-daterange,
.form-top-label .input-daterange {
  padding: 10px 7px 1px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  width: 180px;
}
.label-top-container {
  position: relative;
}
.label-top-container label {
  position: absolute;
  background-color: #fff;
  left: 7px;
  top: -5px;
  font-size: 0.8rem;
  padding: 0px 3px;
  color: #1c9647;
  font-weight: 500;
}
.label-top-container .label-top-input,
.label-top-container input,
.label-top-container select {
  padding: 10px 7px 1px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}
table .label-top-container label {
  background-color: transparent;
  top: 2px;
}
table .label-top-container select {
  padding-top: 12px !important;
}
.daterangepicker .ranges li.active {
  background-color: #024430;
  color: #ffe7bb;
}
.daterangepicker td.in-range {
  background-color: #e5ecea;
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #024430;
  color: #ffe7bb;
}
.signin-container {
  background-color: #fff;
  height: 100%;
  display: grid;
  grid-template-columns: 530px 1fr;
  grid-template-rows: 100vh;
  grid-template-areas: "login body";
}
@media only screen and (max-width: 991px) {
  .signin-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "login";
  }
}
.signin-container .illustration {
  background-image: url("../images/signin-bg.jpg");
  background-size: cover;
  grid-area: body;
}
.signin-container .content {
  grid-area: login;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.signin-container .content form {
  padding: 2rem 0;
  width: 90%;
}
.signin-container .content form .signin-header {
  text-align: center;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1399px) {
  .signin-container .content form .signin-header {
    margin-bottom: 1rem;
  }
}
.signin-container .content form .signin-header img {
  width: 206px;
  margin-bottom: 84px;
}
@media only screen and (max-width: 1399px) {
  .signin-container .content form .signin-header img {
    margin-bottom: 2rem;
    max-width: 180px;
  }
}
.signin-container .content form .signin-header h4 {
  margin-bottom: 20px;
}
.signin-container .content form .signin-header p {
  margin-bottom: 0;
  line-height: 30px;
}
.signin-container .content form .signin-header p .btn {
  margin-left: 5px;
}
.signin-container .content form .form-actions {
  margin-top: 1rem;
  text-align: center;
}
.signin-container .content form .social-accounts {
  margin-top: 2rem;
  border-top: 1px solid #cccccd;
  text-align: center;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.signin-container .content form .social-accounts span {
  background-color: #fff;
  margin-top: -13px;
  -ms-flex-preferred-size: fill;
      flex-basis: fill;
  padding: 0 10px;
}
.signin-container .content form .social-accounts .social-actions {
  margin-top: 2rem;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
@media only screen and (max-width: 1399px) {
  .signin-container .content form .social-accounts .social-actions {
    gap: 10px;
  }
}
.signin-container .content form .social-accounts .social-actions .btn {
  width: 250px;
  min-width: 100px;
}
.signin-container .content form .social-accounts .social-actions .btn .icon {
  margin-right: 15px;
}
.card-registration .invalid-feedback {
  display: block;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  height: 0;
  transition: all 0.25s ease-in-out;
}
.card-registration .was-validated .invalid-feedback {
  opacity: 1;
  -ms-filter: none;
  -webkit-filter: none;
          filter: none;
  height: 21px;
}
.card-registration .image-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.signup-layout {
  background-color: #fff;
}
.signup-layout .acl-header {
  background-color: #334543;
  border-bottom: 7px solid #024430;
  height: 72px;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 15px;
  margin-bottom: 48px;
}
.signup-layout .card-registration {
  border: none;
}
.signup-layout .card-registration h3 {
  text-align: center;
}
.signup-layout .card-msg {
  border: none;
  text-align: center;
}
.opt-card {
  padding: 3rem;
  margin-bottom: 2rem;
}
.opt-card h4 {
  text-align: center;
  margin-bottom: 1rem;
}
.opt-card div {
  text-align: center;
}
.opt-card div small {
  font-weight: bold;
  color: #024430;
}
.opt-card p {
  text-align: center;
}
.opt-card #otp-form .opt-inputs {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: space-arround;
  -ms-flex-pack: space-arround;
  justify-content: space-arround;
  margin: 2rem 0;
}
.opt-card #otp-form .form-control {
  margin: 0 0.5rem;
  font-size: 30px;
  border-radius: 4px;
  text-transform: uppercase;
}
.farms .admin-body {
  position: -webkit-sticky;
  position: sticky;
  z-index: 10;
}
.farms .famrs-cta {
  min-height: 300px;
  background: url("../images/farms-bg.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .farms .famrs-cta {
    display: none;
  }
}
.farms .famrs-cta .text-bg {
  position: absolute;
  bottom: 100px;
  right: -100px;
  -webkit-text-stroke: 1px #fff;
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75);
  color: transparent;
  font-size: 4rem;
  font-weight: 700;
  transform: rotate(-90deg);
  line-height: 6rem;
}
@media only screen and (max-width: 767px) {
  .farms .famrs-cta .text-bg {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 320px) {
  .farms .famrs-cta .text-bg {
    font-size: 3rem;
  }
}
.farms .famrs-cta .farms-showcase-info {
  padding-left: 3rem;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -o-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .farms .famrs-cta .farms-showcase-info {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .farms .famrs-cta .farms-showcase-info .lead {
    font-size: 1rem;
  }
}
.farms .famrs-cta .farms-showcase-action {
  padding-right: 9rem;
}
@media only screen and (max-width: 991px) {
  .farms .famrs-cta .farms-showcase-action {
    width: 100%;
    padding: 0;
  }
}
.farms .famrs-cta .farms-showcase-action .card {
  background: rgba(0,0,0,0.1);
  box-shadow: 0px 0px 30px rgba(0,0,0,0.5), inset -1px -1px 2px rgba(255,255,255,0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
/* Note: backdrop-filter has minimal browser support */
  border-radius: 4px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 320px) {
  .farms .famrs-cta .farms-showcase-action .card {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
.farms .famrs-cta .farms-showcase-action .card .card-body {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.farms .famrs-cta .farms-showcase-action .card .card-title {
  margin-bottom: 2rem;
}
.farms .famrs-cta .farms-showcase-action .card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.farms .famrs-cta .farms-showcase-action .card ul li {
  margin-bottom: 1rem;
}
.farms .famrs-cta .farms-showcase-action .card ul li i {
  margin-right: 1rem;
  color: #72df83;
}
.farms .famrs-cta .farms-showcase-action .card .actions {
  padding-top: 2rem;
  text-align: center;
}
@media only screen and (max-width: 320px) {
  .farms .famrs-cta .farms-showcase-action .card .actions {
    padding-top: 0;
  }
}
.farms .famrs-cta-2 {
  min-height: 200px;
  background-position: 0 center;
}
@media only screen and (max-width: 767px) {
  .farms .famrs-cta-2 {
    min-height: 150px;
  }
}
.farms .famrs-cta-2 .text-bg {
  top: 0;
  right: 0;
  transform: rotate(0deg);
}
.farms .famrs-cta-2 .farms-showcase-action {
  padding-right: 3rem;
}
.farms .famrs-cta-2 .farms-showcase-action .card {
  padding-top: 0;
  padding-bottom: 1rem;
  margin-top: 5rem;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}
.farms .famrs-cta-2 .farms-showcase-action .card ul {
  display: none;
}
.farms .farm-list .card {
  transition: all 0.15s;
  border-radius: 0px;
}
.farms .farm-list .card .farm-header {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  background-color: #334543;
  padding: 0 15px;
}
.farms .farm-list .card .farm-header .card-title {
  margin: 5px 0 0 0;
  padding: 0;
}
.farms .farm-list .card .farm-header i {
  color: #fff;
}
.farms .farm-list .card .card-img-top {
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
.farms .farm-list .card:hover {
  box-shadow: 0px 0px 15px rgba(51,69,67,0.25);
}
.farms .farm-list .card:hover .card-img-top {
  -webkit-filter: grayscale(0%) /* Chrome 19+ & Safari 6+ */;
}
.farms .farm-list .card .farm-info {
  color: #fff;
}
.farms .farm-list .list-group .list-group-item {
  border-color: transparent !important;
}
.farms .farm-list .list-group .list-group-item {
  padding: 0.35rem 0;
}
.farms .farm-list .list-group .list-group-item:hover {
  background-color: transparent !important;
}
.farm-container .farm-menu .navbar .nav-item:hover .nav-link {
  color: #f1cf69;
}
.internal-general .if-forms {
  padding: 25px;
  background-color: #fff;
  top: calc(8rem - 5px);
  box-shadow: 0 25px 25px rgba(34,34,34,0.2);
  width: 400px;
  border-right: 1px solid #f1eee0;
}
.internal-general .admin-body > .card {
  background-color: transparent;
  border: none;
  width: calc(100% - 400px);
  margin-left: 400px;
}
.internal-general .admin-body .card-100 {
  margin-left: 0;
  width: 100%;
}
.protocol {
  padding: 3rem 0rem 2rem;
  color: #738f89;
  border: 1px solid #dee2e6;
  box-sizing: border-box;
  margin-bottom: 20px;
  margin-left: -1px;
  position: relative;
}
.protocol >h2 {
  background-color: #f3d8e6;
  color: #33666e;
  margin-bottom: 15px;
  font-size: 1.3rem;
  padding: 0.8rem 1.5rem;
}
.protocol >h2.male {
  background-color: #bfd9fb;
}
.protocol >h3 {
  background-color: #f7e2a5;
  font-size: 0.9rem;
  color: #08573b;
  padding: 5px 15px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  font-size: 1rem;
  left: 0;
  top: 0;
}
.protocol h4 {
  color: #024430;
  font-size: 1.2rem;
}
.head-list-item {
  color: #738f89;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.head-list-item h4 {
  font-size: 1.2rem;
  font-weight: bold;
}
.list-items {
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.list-items .item {
  border-bottom: 1px solid #e7e7e7;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
  padding: 5px 0;
}
.list-items .item .value {
  color: #024430;
  font-weight: 600;
  text-align: right;
}
.list-items .item:hover {
  background-color: #d1ff60;
}
@media only screen and (max-width: 767px) {
  .settings-container .actions {
    display: -ms-flexbox;
    display: box;
    display: flex;
    -o-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.settings-container .ontainer {
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 1.5rem;
}
.settings-container .timeline-steps {
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -o-box-lines: single;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow-x: scroll;
  -o-box-pack: initial;
  -ms-flex-pack: initial;
  justify-content: initial;
}
.timeline-steps {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.timeline-steps .timeline-step {
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: 1rem;
}
.timeline-steps .timeline-step:not(:first-child):before {
  content: "";
  display: block;
  border-top: 0.25rem dotted #3bce07;
  width: 3.8125rem;
  position: absolute;
  right: 7.5rem;
  top: 0.3125rem;
}
.timeline-steps .timeline-step:not(:last-child):after {
  content: "";
  display: block;
  border-top: 0.25rem dotted #3bce07;
  width: 3.46rem;
  position: absolute;
  left: 7.5rem;
  top: 0.3125rem;
}
.timeline-steps .timeline-content .inner-circle {
  border-radius: 1.5rem;
  height: 1rem;
  width: 1rem;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #024430;
}
.timeline-steps .timeline-content .inner-circle:before {
  content: "";
  background-color: #2e7814;
  display: inline-block;
  height: 3rem;
  width: 3rem;
  min-width: 3rem;
  border-radius: 6.25rem;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.timeline-steps .timeline-step not(:last-child):after {
  content: "";
  display: block;
  border-top: 0.25rem dotted #3b82f6;
  width: 3.46rem;
  position: absolute;
  left: 7.5rem;
  top: 0.3125rem;
}
.timeline-steps .timeline-content {
  width: 10rem;
  text-align: center;
}
.animals-vaccinations_index .timeline-steps .timeline-content .inner-circle {
  background-color: #808080;
}
.animals-vaccinations_index .timeline-steps .timeline-content .inner-circle:before {
  background-color: #707070;
}
.animals-vaccinations_index .timeline-steps .timeline-content.green .inner-circle {
  background-color: #024430;
}
.animals-vaccinations_index .timeline-steps .timeline-content.green .inner-circle:before {
  background-color: #2e7814;
}
.kpi-block {
  padding: 3rem;
  display: -ms-flexbox;
  display: box;
  display: flex;
  gap: 15px;
}
.if-kpi {
  box-shadow: 5px 10px 10px #e7e7e7, -5px -5px 10px #f3f3f3;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 8px;
  border: 1px solid #ebebeb;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  min-height: 150px;
  max-height: 150px;
}
.if-kpi.kpi-chart .kpi-title {
  padding-top: 1rem;
}
.if-kpi.kpi-chart .kpi-value {
  padding: 0.5rem;
  width: 100%;
  height: 100%;
  position: 0;
}
.if-kpi .kpi-title {
  padding: 1rem;
  color: #738f89;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
  font-weight: 600;
}
.if-kpi .kpi-title p {
  margin-bottom: 0;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  font-size: 1rem;
  line-height: 1.2rem;
}
.if-kpi .kpi-value {
  padding: 0 1rem 1rem;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.if-kpi .kpi-value .value {
  font-weight: 600;
  color: #024430;
}
.if-kpi .kpi-value .unit {
  font-size: 1.5rem;
  font-weight: 600;
  color: #738f89;
}
.chart-container {
  width: 100%;
  height: 100%;
}
.if-kpi-horizontal {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 25%;
}
.if-kpi-horizontal .kpi-title {
  font-size: 1.4rem;
  align-self: stretch;
  -ms-flex-item-align: stretch;
}
.if-kpi-horizontal .kpi-value {
  border-radius: 0 8px 8px 0;
}
.if-kpi-horizontal .kpi-value .value {
  line-height: 5rem;
  font-size: 5rem;
}
.if-kpi-1 {
  width: 150px;
  -o-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.if-kpi-1 .kpi-title {
  padding: 0 1rem;
}
.if-kpi-1 .kpi-title p {
  text-align: center;
  color: #024430;
}
.if-kpi-1 .kpi-value {
  padding: 0;
}
.if-kpi-1 .kpi-value .value {
  color: #253b3a;
  font-size: 2.5rem;
  line-height: 3rem;
}
.if-kpi-1.reverse {
  background-color: #334543;
}
.if-kpi-1.reverse .kpi-title p {
  font-size: 1.3rem;
  font-weight: normal;
  color: #e7e7e7;
}
.if-kpi-1.reverse .kpi-value {
  padding: 0;
}
.if-kpi-1.reverse .kpi-value .value {
  color: #3bce07;
}
.if-kpi-1.reverse .kpi-value .unit {
  color: #fff;
}
.if-kpi-2 {
  width: 200px;
}
.if-kpi-2 .kpi-title {
  text-align: center;
  font-size: 1.1rem;
}
.if-kpi-2 .kpi-value .value {
  font-size: 3.5rem;
}
.if-kpi-3 {
  min-height: 150px;
  width: 200px;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.if-kpi-3 .kpi-title {
  background-color: #024430;
  color: #fff;
}
.if-kpi-3 .kpi-value {
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.if-kpi-3 .kpi-value .value {
  font-size: 3.5rem;
}
.if-kpi-4 {
  min-height: 150px;
  min-width: 250px;
  width: 15%;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.if-kpi-4 .kpi-title {
  background-color: #334543;
  color: #fff;
  width: 100%;
}
.if-kpi-4 .kpi-value {
  width: 100%;
  height: 100%;
  padding: 1rem 0;
}
.if-kpi-4 .kpi-value .chart-container {
  width: 100%;
  height: 100%;
}
:root {
  --nc-dh-card-bg: #f7f7f7;
  --nc-dh-card-shadow-color: #d8d8d9;
  --nc-boxshadow: 1px 1px 3px var(--nc-dh-card-shadow-color);
}
.card-dashboard {
  --nc-dh-card-bg: #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #fff;
  background-color: var(--nc-dh-card-bg);
  border-radius: 8px;
  border: 1px solid #d9d9d9;
}
.card-dashboard .card-body {
  background-color: #f7f7f7;
  background-color: var(--nc-dh-card-bg);
}
.card-dashboard h3 {
  color: #024430;
  font-size: 1.2rem;
}
.card-dashboard ul {
  min-height: 250px;
}
.card-dashboard ul li {
  padding-bottom: 0.5rem;
}
.dh-col {
  margin-bottom: 1rem;
  display: -ms-flexbox;
  display: box;
  display: flex;
  gap: 1rem;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}
.dh-col .dh-col {
  margin-bottom: 0;
}
.dh-col >.dh-row {
  height: 100%;
}
.dh-col >.dh-row .card-dashboard {
  height: 100%;
}
.dh-col .dashboard-card {
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.dh-col .dashboard-card .head-block {
  align-self: stretch;
  -ms-flex-item-align: stretch;
}
.dh-col-kpi {
  min-width: 180px;
}
.dh-col-kpi .head-block.head-block-4 {
  background-color: #fff;
}
.dashboard-card {
  background-color: #fff;
  border: 1px solid #e2e8f0;
  box-sizing: border-box;
  position: relative;
  border-radius: 12px;
  min-height: 80px;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.15rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}
.dashboard-card .head-block,
.dashboard-card .info {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}
.dashboard-card h2,
.dashboard-card .name {
  -o-box-ordinal-group: 1;
  -ms-flex-order: 1;
  order: 1;
  color: #024430;
  font-size: 0.95rem;
}
.dashboard-card h1,
.dashboard-card h4,
.dashboard-card .value {
  -o-box-ordinal-group: 2;
  -ms-flex-order: 2;
  order: 2;
  color: #222;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 600;
  margin: 0;
}
.dashboard-card p,
.dashboard-card .extra {
  -o-box-ordinal-group: 3;
  -ms-flex-order: 3;
  order: 3;
  color: #686314;
  font-size: 0.95rem;
  margin: 0;
}
.dashboard-card table.value tr,
.dashboard-card table.value td,
.dashboard-card table.value th {
  background-color: transparent;
}
a.dashboard-card,
.dashboard-card[data-bs-toggle="offcanvas"],
.dashboard-card:has(.head-block[data-bs-toggle="offcanvas"]) {
  transition: all 0.25s;
}
a.dashboard-card:hover,
.dashboard-card[data-bs-toggle="offcanvas"]:hover,
.dashboard-card:has(.head-block[data-bs-toggle="offcanvas"]):hover {
  border-color: #fff;
  box-shadow: 3px 3px 7px rgba(34,34,34,0.15);
}
.admin-body > .card > .card-body {
  padding-bottom: 0rem;
}
.marker-label-infinyti {
  color: #fff !important;
}
.infoBox {
  background-color: rgba(9,27,33,0.8);
  border-radius: 5px;
}
.infoBox .info-wrapper-body {
  padding: 15px;
}
.infoBox .info-wrapper-body .info-wrapper-title {
  color: #fff;
}
.infoBox .info-wrapper-body .info-wrapper-p {
  color: #fff;
  margin-bottom: 0;
}
.infoBox .info-wrapper-body .info-wrapper-p span {
  margin-right: 5px;
}
.infoBox .info-wrapper-body .info-wrapper-p span:last-child {
  margin-right: 0;
}
.paddocks-paddocks_index .paddock-menu {
  padding-bottom: 0 !important;
}
.paddocks-paddocks_index .paddock-menu {
  background: rgba(0,0,0,0.01);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(0,0,0,0.25);
}
.paddocks-paddocks_index .paddock-menu .navbar-brand {
  display: none;
}
.paddocks-paddocks_index .paddock-menu .container-fluid >div:first-child {
  width: 100%;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.paddocks-paddocks_index .modal-body .btn {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.options-model .btn-option,
.modal-dialog .btn-option {
  -webkit-text-decoration: none;
  text-decoration: none;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .options-model .btn-option,
  .modal-dialog .btn-option {
    margin-bottom: 1rem;
  }
}
.options-model .btn-option .card,
.modal-dialog .btn-option .card {
  -webkit-text-decoration: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
}
.options-model .btn-option .card i,
.modal-dialog .btn-option .card i {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.options-model .btn-option .card i img,
.modal-dialog .btn-option .card i img {
  width: 60px;
  height: auto;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.options-model .btn-option .card:hover,
.modal-dialog .btn-option .card:hover {
  background-color: #e7e7e7;
}
.options-model .btn-option .card:hover *,
.modal-dialog .btn-option .card:hover * {
  color: #024430;
}
.options-model .btn-option .card:hover i img,
.modal-dialog .btn-option .card:hover i img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.options-model .btn-option.btn-1 i,
.modal-dialog .btn-option.btn-1 i {
  color: #3b5998;
}
.options-model .btn-option.btn-2 i,
.modal-dialog .btn-option.btn-2 i {
  color: #00a4ef;
}
.paddock-overlay-content.continer-overlay-marker {
  opacity: 1 !important;
  -ms-filter: none !important;
  -webkit-filter: none !important;
          filter: none !important;
  transition: all 0.2s !important;
}
.paddock-overlay-content.continer-overlay-marker:hover {
  transform: scale(1.5) !important;
  z-index: 999999 !important;
}
.paddock-overlay-content.continer-overlay-marker:hover .map-marker-info {
  background: rgba(0,0,0,0.2);
  -webkit-backdrop-filter: blur(6.1px);
          backdrop-filter: blur(6.1px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.2);
}
.map-marker-info {
  color: #fff;
  text-shadow: 0 0 2px #000, 0 0 3px #000, 0 0 4px #000;
  border-radius: 5px;
  min-width: 150px;
  margin-left: -50px;
  margin-top: -50px;
  font-size: 12px;
  padding: 5px;
  transition: all 0.2s;
}
.map-marker-info .map-marker-info__img {
  width: 60px;
  height: auto;
}
.map-marker-info .map-marker-info__title {
  word-spacing: nowrap;
}
.map-marker-info .map-marker-info__status {
  margin-top: 5px;
  text-shadow: 0px 0px 0px rgba(0,0,0,0);
  font-size: 1rem;
}
@media only screen and (max-width: 991px) {
  .offcanvas-map {
    margin: 0 !important;
    height: 100% !important;
  }
}
.offcanvas-map .offcanvas-map-content {
  height: 100%;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media only screen and (min-width: 991px) {
  .offcanvas-map {
    left: 1.5rem !important;
    top: 5.5rem !important;
    height: calc(100vh - 11rem) !important;
  }
  .offcanvas-map {
    border-radius: 1rem;
    overflow: hidden;
  }
  .offcanvas-map.short-details .offcanvas-body {
    padding: 0;
  }
}
.offcanvas-map .paddock-list-item {
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.offcanvas-map .paddock-list-item .paddock-info-table {
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.offcanvas-map .paddock-list-item .paddock-info-table .paddocks-data {
  width: 80%;
}
.offcanvas-map .paddock-list-item .paddock-info-table .paddock-photo-thumb {
  width: 100px;
  height: 100px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
  border-radius: 4px;
}
.offcanvas-map .paddock-list-item .paddock-info-table .paddock-photo-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.offcanvas-map .paddock-list-item .paddock-info-table .paddock-table {
  gap: 1rem;
}
.offcanvas-map .paddock-list-item .paddock-info-table .paddock-table .title {
  font-size: 1.1rem;
}
#shortDetails {
  top: 1rem !important;
  left: 1rem !important;
  width: 1000px !important;
  height: calc(100vh - 7rem) !important;
}
@media only screen and (max-width: 991px) {
  #shortDetails {
    width: calc(100vw - 2rem) !important;
    top: 5rem !important;
  }
}
@media only screen and (max-width: 767px) {
  #shortDetails {
    width: calc(100vw - 2rem) !important;
  }
}
#offcanvasPaddockView {
  left: auto !important;
  left: initial !important;
  right: 1.5rem !important;
  height: calc(100vh - 3rem) !important;
  top: 1.5rem !important;
}
#offcanvasPaddockView {
  width: 800px;
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  #offcanvasPaddockView {
    height: calc(100vh - 7rem) !important;
  }
}
@media only screen and (max-width: 991px) {
  #offcanvasPaddockView {
    top: 1rem !important;
    left: 1rem !important;
    width: calc(100vw - 2rem) !important;
  }
}
.map-farm-info .map-farm-content {
  background: rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(6.1px);
          backdrop-filter: blur(6.1px);
  position: absolute;
  top: 85vh;
  left: 1.5rem;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.75);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-left: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 0.7rem;
  border-radius: 4px;
}
@media only screen and (max-width: 991px) {
  .map-farm-info .map-farm-content {
    top: 80vh;
  }
}
.map-address-search {
  position: absolute;
  top: 70px;
  left: 50%;
  margin-left: -250px;
  width: 500px;
}
@media only screen and (max-width: 991px) {
  .map-address-search {
    position: static;
    position: initial;
    top: auto;
    top: initial;
    left: auto;
    left: initial;
    margin-left: 0;
    margin-left: initial;
    width: 100%;
    margin-top: 0.5rem;
  }
}
.map-address-search .form-control {
  color: #000 !important;
}
.map-address-search .form-control {
  background-color: #fff;
  border-color: #fff;
}
.map-address-search .form-control::-webkit-input-placeholder {
  color: #999;
}
.map-address-search .form-control::-moz-placeholder {
  color: #999;
}
.map-address-search .form-control:-ms-input-placeholder {
  color: #999;
}
.map-address-search .form-control::-ms-input-placeholder {
  color: #999;
}
.map-address-search .form-control::placeholder {
  color: #999;
}
.map-address-search .btn-primary {
  color: #fff;
}
.pac-container.pac-logo {
  top: 104px !important;
}
.sheet-side-menu ul li {
  border-bottom: 1px solid #e7e7e7;
}
.sheet-side-menu ul li a {
  padding: 0.4rem 1rem !important;
}
.fc a {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #222;
}
.fc .fc-header-toolbar {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.fc .fc-header-toolbar .fc-toolbar-chunk:nth-child(1) {
  -o-box-ordinal-group: 1;
  -ms-flex-order: 1;
  order: 1;
}
.fc .fc-header-toolbar .fc-toolbar-chunk:nth-child(2) {
  width: 100%;
  -o-box-ordinal-group: 3;
  -ms-flex-order: 3;
  order: 3;
  text-align: center;
  text-transform: capitalize;
}
.fc .fc-header-toolbar .fc-toolbar-chunk:nth-child(3) {
  -o-box-ordinal-group: 2;
  -ms-flex-order: 2;
  order: 2;
}
.fc .fc-header-toolbar .fc-button-primary {
  background-color: #1c9647;
  border-color: #1c9647;
  color: #fff;
  text-align: center;
}
.fc .fc-header-toolbar .fc-toolbar-title {
  font-size: 1.4rem;
  font-weight: 400;
}
.fc .fc-list-view {
  border: none;
}
.fc .fc-list-table tbody .fc-list-day .fc-list-day-cushion {
  background-color: #ececec;
}
.fc .fc-list-table tbody .fc-list-day .fc-list-day-cushion a {
  color: #000;
}
.fc .fc-scrollgrid-section-liquid > td {
  height: 372px;
}
.fc .fc-view table thead tr th .fc-scroller-harness {
  background-color: #024430;
}
.fc .fc-view table thead tr th .fc-scroller-harness a {
  color: #fff;
}
.fc .fc-daygrid-day.fc-day-today {
  background-color: rgba(209,213,122,0.129);
}
.fc table {
  font-size: 1.1rem;
}
.ev_pd_1 .fc-event-main,
.ev_pd_6 .fc-event-main {
  background-color: #6fe297;
}
.ev_pd_2 .fc-event-main,
.ev_pd_7 .fc-event-main {
  background-color: #d1d57a;
}
.ev_pd_3 .fc-event-main,
.ev_pd_8 .fc-event-main {
  background-color: #f0ad4e;
}
.ev_pd_4 .fc-event-main,
.ev_pd_9 .fc-event-main {
  background-color: #d9534f;
}
.ev_pd_5 .fc-event-main,
.ev_pd_10 .fc-event-main {
  background-color: #5bc0de;
}
.fc-multimonth-header-table {
  background-color: #4d7c6e;
}
.fc-multimonth-header-table .fc-col-header-cell-cushion {
  color: #fff;
  font-weight: 400;
}
.fc .fc-multimonth-title {
  text-transform: capitalize;
  font-weight: 500;
}
.animals-photos-animals_index .modal {
  z-index: 999999;
}
.table-hover tbody tr:hover,
.table-hover .is-hover {
  --bs-table-bg-state: #f1f5ef;
}
.highlight .table-action-default {
  background-color: #aaf792 !important;
  color: #334543 !important;
}
.highlight .table-action-default {
  cursor: pointer;
}
.onb-image {
  padding: 50px 0;
  max-width: 600px;
  margin: 0 auto;
}
.onb-title {
  margin-bottom: 2rem;
}
.modal-stats h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}
.modal-stats h4 {
  color: #024430;
  font-weight: 300;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.modal-stats .group-tag {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
.modal-stats .group-tag strong {
  font-family: "Poppins", sans-serif;
}
.modal-stats .breeds-box {
  padding: 0.5rem 1rem;
  background-color: #08573b;
  color: #fff;
}
.modal-stats .breeds-box .breeds-tag {
  font-weight: bold;
  text-transform: uppercase;
}
.animal-vcard {
  --vcard-photo-border-radius: 14px;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}
.animal-vcard .animal-vcard-photo {
  box-sizing: border-box;
  border: 1px solid #e7e7e7;
  -ms-flex-preferred-size: 49%;
      flex-basis: 49%;
  max-width: 250px;
  border-radius: var(--vcard-photo-border-radius);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .animal-vcard .animal-vcard-photo {
    display: none;
  }
}
.animal-vcard .animal-vcard-photo a {
  height: 100%;
}
.animal-vcard .animal-vcard-photo .square {
  position: relative;
  margin: 0;
}
.animal-vcard .animal-vcard-photo .square::after {
  content: "";
  display: block;
  padding-bottom: 80%;
}
.animal-vcard .animal-vcard-photo .square img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  .animal-vcard .animal-vcard-photo .square {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .animal-vcard .animal-vcard-photo .square img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.animal-vcard .animal-vcard-info {
  box-sizing: border-box;
  -ms-flex-preferred-size: calc(100% - (250px + 1rem));
      flex-basis: calc(100% - (250px + 1rem));
  -ms-flex-preferred-size: calc(100% - calc(250px + 1rem));
      flex-basis: calc(100% - calc(250px + 1rem));
}
@media only screen and (max-width: 767px) {
  .animal-vcard .animal-vcard-info {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .animal-vcard .animal-vcard-info {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.animal-vcard .animal-vcard-info .list-item-standard .tag {
  font-weight: 700;
}
.animal-vcard .animal-vcard-info .breed {
  color: #024430;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}
.animal-vcard .animal-vcard-info .breed .tag {
  font-weight: 500;
}
.animal-vcard .animal-vcard-info .breed .value {
  text-transform: uppercase;
}
.animal-vcard .animal-vcard-info .name {
  padding: 0;
  margin: 7px 0;
  font-size: 2rem;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.animal-vcard .animal-vcard-info .name .tag-container {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 1.6rem;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px dotted #222;
}
.animal-vcard .animal-vcard-info .name .tag-container .tag {
  font-size: 0.8rem;
  color: #222;
  font-weight: 600;
}
.animal-vcard .animal-vcard-info .name .tag-container:first-child {
  padding: 0;
  margin: 0;
  border: none;
}
.animal-vcard .animal-vcard-info .group .tag {
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
.animal-vcard .animal-vcard-info .group .value {
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
.animal-vcard .animal-vcard-info .ranking {
  position: relative;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.animal-vcard .animal-vcard-info .ranking .tag {
  font-weight: 700;
  color: #024430;
  text-transform: uppercase;
  margin-right: 5px;
}
.animal-vcard .animal-vcard-info .ranking .value {
  font-weight: normal;
  color: #024430;
}
.animal-vcard .animal-vcard-info .ranking .value i:last-child {
  margin-right: 5px;
}
.animal-vcard .animal-vcard-info .parents {
  transition: all 0.3s ease;
  margin-bottom: 1px;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #fff;
  background-color: #0e6c41;
  border-radius: 14px;
  overflow: hidden;
}
.animal-vcard .animal-vcard-info .parents .parent-info {
  padding: 5px 10px;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.animal-vcard .animal-vcard-info .parents .parent-info .parent-name,
.animal-vcard .animal-vcard-info .parents .parent-info .parent-breed {
  font-size: 1rem;
}
.animal-vcard .animal-vcard-info .parents .parent-tag {
  transition: all 0.3s ease;
  background-color: #f1cf69;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: #313335;
  width: 100px;
  line-height: 37px;
}
.animal-vcard .animal-vcard-info .parents:hover {
  position: relative;
  background-color: #f1cf69;
  color: #313335;
}
.animal-vcard .animal-vcard-info .father {
  background-color: #22827c;
}
.animal-vcard .animal-vcard-info .mother {
  background-color: #e52a7f;
}
.animal-vcard .animal-vcard-info .primary-info {
  display: -ms-flexbox;
  display: box;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .animal-vcard .animal-vcard-info .primary-info {
    margin-bottom: 1rem;
  }
}
.animal-vcard .animal-vcard-info .primary-info .primary-info-photo {
  margin-right: 1rem;
  border-radius: var(--vcard-photo-border-radius);
}
.animal-vcard .animal-vcard-info .primary-info .primary-info-photo .cow-photo {
  width: 150px;
  height: 100px;
}
@media only screen and (max-width: 575px) {
  .animal-vcard .animal-vcard-info .primary-info .primary-info-photo .cow-photo {
    display: -ms-flexbox !important;
    display: box !important;
    display: flex !important;
  }
}
.offcanvas.offcanvas-end.light-sheet {
  width: 1000px !important;
}
@media only screen and (max-width: 991px) {
  .offcanvas.offcanvas-end.light-sheet {
    width: calc(100vw - 2rem) !important;
  }
}
.cow-photo {
  display: inline-block;
  width: 100%;
  height: 200px;
  background-size: cover;
  transition: all 0.25s;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.cow-photo:hover {
  transform: scale(1.025);
  box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.35);
}
.img-trash {
  position: relative !important;
}
.trash {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}
.trash {
  z-index: 1;
}
.products .products-admin-body {
  display: -ms-flexbox;
  display: box;
  display: flex;
  margin-top: 80px;
}
.products .products-admin-body .if-categories-providers {
  padding: 1.5rem;
}
.products .products-admin-body .if-categories-providers .filters {
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}
.products .products-admin-body .if-categories-providers .filters label {
  color: #334543;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.products .products-admin-body .if-categories-providers .filters label input {
  margin-right: 0.5rem;
}
.products .products-admin-body .products-layout {
  display: -ms-flexbox;
  display: box;
  display: flex;
  gap: 1.8rem;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 1.5rem;
}
.products .products-admin-body .products-layout .product {
  position: relative;
  padding: 1.5rem;
  width: calc(25% - 1.8rem);
  border: 1px solid #d3ece2;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1399px) {
  .products .products-admin-body .products-layout .product {
    width: calc(25% - 1.8rem);
  }
}
@media only screen and (max-width: 1199px) {
  .products .products-admin-body .products-layout .product {
    width: calc(25% - 1.8rem);
  }
}
@media only screen and (max-width: 991px) {
  .products .products-admin-body .products-layout .product {
    width: calc(33.3% - 1.8rem);
  }
}
@media only screen and (max-width: 767px) {
  .products .products-admin-body .products-layout .product {
    width: calc(50% - 1.8rem);
  }
}
@media only screen and (max-width: 575px) {
  .products .products-admin-body .products-layout .product {
    width: 100%;
  }
}
.products .products-admin-body .products-layout .product .photos {
  position: relative;
}
.products .products-admin-body .products-layout .product .photos figure {
  position: relative;
}
.products .products-admin-body .products-layout .product .photos figure::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.products .products-admin-body .products-layout .product .photos figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.products .products-admin-body .products-layout .product .photos a.view-details {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  transition: all 0.3s ease;
}
.products .products-admin-body .products-layout .product h5 {
  font-weight: 500;
  color: #071920;
}
.products .products-admin-body .products-layout .product h5:hover {
  color: #06d6a0;
}
.products .products-admin-body .products-layout .product .brand {
  color: #738f89;
}
.products .products-admin-body .products-layout .product .category {
  font-size: 0.9rem;
  color: #738f89;
}
.products .products-admin-body .products-layout .product .provider {
  background-color: #f1cf69;
  font-size: 0.9rem;
  color: #555556;
  padding: 0.2rem 0.4rem;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.3s ease;
}
.products .products-admin-body .products-layout .product .provider:hover {
  background-color: #024430;
  color: #fff;
}
.products .products-admin-body .products-layout .product .price {
  font-size: 0.8rem;
  color: #98999a;
  text-align: right;
}
.products .products-admin-body .products-layout .product .price .value {
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  font-size: 1.5rem;
  color: #006d77;
  font-weight: bold;
  margin-top: 1rem;
}
.customTooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.customTooltip {
  visibility: hidden;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: 0;
  transform: translateY(10px);
  background-color: #fff;
  color: #333;
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  width: 500px;
  white-space: nowrap;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  max-height: 50vh;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .customTooltip {
    left: 0;
    width: 80vw;
  }
}
.customTooltip .table-responsive {
  max-height: calc(50vh - 3rem);
  overflow-y: scroll;
}
.customTooltip-container:hover .customTooltip {
  visibility: visible;
  opacity: 1;
  -ms-filter: none;
  -webkit-filter: none;
          filter: none;
  transition-delay: 0s;
}
.customTooltip-container:focus-within .customTooltip {
  visibility: visible;
  opacity: 1;
  -ms-filter: none;
  -webkit-filter: none;
          filter: none;
}
.animals-weights_index .offcanvas {
  width: 1100px !important;
}
@media only screen and (max-width: 1199px) {
  .animals-weights_index .offcanvas {
    width: calc(100vw - 2rem) !important;
  }
}
.smart-sidebar {
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  height: 100%;
  max-height: calc(100vh - 126px);
  overflow-y: auto;
}
.smart-sidebar .ss-header {
  margin-bottom: 24px;
}
.smart-sidebar .ss-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 8px;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.smart-sidebar .ss-title i {
  color: #3b82f6;
  font-size: 1.2rem;
}
.smart-sidebar .ss-desc {
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}
.smart-sidebar .ss-section-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 20px 0 10px 0;
}
.sf-header-actions .ss-section-title {
  margin: 0;
}
.sf-header-actions .btn-outline-primary {
  border-color: #e2e8f0;
  color: #64748b;
}
.sf-header-actions .btn-outline-primary:hover {
  background-color: #3b82f6;
  border-color: #3b82f6;
  color: #fff;
}
.sf-header-actions .btn-outline-danger {
  border-color: #e2e8f0;
  color: #64748b;
}
.sf-header-actions .btn-outline-danger:hover {
  background-color: #ef4444;
  border-color: #ef4444;
  color: #fff;
}
.btn-filter {
  width: 100%;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 8px;
  text-align: left;
}
.btn-filter .bf-label {
  font-size: 0.8rem;
  font-weight: 800;
}
.btn-filter .bf-badge {
  font-size: 0.75rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 20px;
  min-width: 32px;
  text-align: center;
}
.btn-dark-pro {
  background-color: #111827;
  border-color: #111827;
  margin-bottom: 20px;
  padding: 12px 16px;
}
.btn-dark-pro .bf-label {
  color: #fff;
  font-size: 0.85rem;
}
.btn-dark-pro .bf-badge {
  background-color: rgba(255,255,255,0.2);
  color: #fff;
}
.btn-danger-pro {
  background-color: #fff1f2;
  border-color: #fecaca;
}
.btn-danger-pro .bf-label {
  color: #111827;
}
.btn-danger-pro .bf-badge {
  background-color: #ef4444;
  color: #fff;
}
.btn-warning-pro {
  background-color: #fffdf0;
  border-color: #fde68a;
}
.btn-warning-pro .bf-label {
  color: #111827;
}
.btn-warning-pro .bf-badge {
  background-color: #f59e0b;
  color: #fff;
}
.accordion-pro {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-width: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 12px;
  --bs-accordion-btn-focus-box-shadow: none;
  margin-top: 10px;
}
.accordion-pro .accordion-item {
  border-bottom: 1px solid #e2e8f0;
}
.accordion-pro .accordion-item:last-child {
  border-bottom: none;
}
.accordion-pro .accordion-button {
  font-size: 0.75rem;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: transparent;
}
.accordion-pro .accordion-button:not(.collapsed) {
  color: #065f46;
  background: transparent;
  box-shadow: none;
}
.accordion-pro .accordion-button::after {
  transform: scale(0.8);
}
.accordion-pro .accordion-body {
  padding: 10px 0 15px 0;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
.sub-filter {
  width: 100%;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -o-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
  background: #f8fafc;
  border: 1px solid transparent;
}
.sub-filter:hover {
  background: #f1f5f9;
  border-color: #e2e8f0;
}
.sub-filter .sf-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
}
.sub-filter .sf-count {
  font-size: 0.7rem;
  font-weight: 800;
  color: #64748b;
  background: #e2e8f0;
  padding: 2px 6px;
  border-radius: 10px;
}
.dot-status {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 6px;
}
.dot-status.ds-green {
  background-color: #10b981;
}
.dot-status.ds-orange {
  background-color: #f59e0b;
}
.dot-status.ds-gray {
  background-color: #94a3b8;
}
.dot-status.ds-blue {
  background-color: #3b82f6;
}
.progress {
  background-color: rgba(0,0,0,0.05) !important;
  height: 8px !important;
}
.progress {
  border-radius: 4px;
  overflow: hidden;
}
.progress .progress-bar {
  transition: width 0.6s ease;
}
#table-if .progress-bar {
  transition: width 0.6s ease;
}
.btn-check+.btn:hover {
  color: #fff;
  background-color: #024430;
  border-color: #024430;
}
.list-stats .stats-title .title {
  margin-bottom: 0;
}
.list-stats .stats .item {
  padding: 5px 1rem;
}
.productive-styles .stats-title {
  background-color: #00563b;
}
.productive-styles .stats-title .title {
  color: #fff;
}
.productive-styles .stats .item .value {
  color: #00563b;
}
.reproductive-styles .stats-title {
  background-color: #00563b;
}
.reproductive-styles .stats-title .title {
  color: #fff;
}
.reproductive-styles .stats .item .value {
  color: #00563b;
}
.management-styles .stats-title {
  background-color: #00563b;
}
.management-styles .stats-title .title {
  color: #fff;
}
.management-styles .stats .item .value {
  color: #00563b;
}
.weights-styles .stats-title {
  background-color: #00563b;
}
.weights-styles .stats-title .title {
  color: #fff;
}
.weights-styles .stats .item .value {
  color: #00563b;
}
.operative-styles .stats-title {
  background-color: #00563b;
}
.operative-styles .stats-title .title {
  color: #fff;
}
.operative-styles .stats .item .value {
  color: #00563b;
}
.health-styles .stats-title {
  background-color: #00563b;
}
.health-styles .stats-title .title {
  color: #fff;
}
.health-styles .stats .item .value {
  color: #00563b;
}
.anatomy-styles .stats-title {
  background-color: #00563b;
}
.anatomy-styles .stats-title .title {
  color: #fff;
}
.anatomy-styles .stats .item .value {
  color: #00563b;
}
.events-styles .stats-title {
  background-color: #00563b;
}
.events-styles .stats-title .title {
  color: #fff;
}
.events-styles .stats .item .value {
  color: #00563b;
}
.if-offcanvas {
  width: 800px !important;
}
@media only screen and (max-width: 767px) {
  .if-offcanvas {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-100 {
  width: calc(100vw - 2rem) !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-100 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-90 {
  width: calc(90vw - 2rem) !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-90 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-80 {
  width: calc(80vw - 2rem) !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-80 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-70 {
  width: calc(70vw - 2rem) !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-70 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-60 {
  width: calc(60vw - 2rem) !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-60 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-50 {
  width: calc(50vw - 2rem) !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-50 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-40 {
  width: calc(40vw - 2rem) !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-40 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-30 {
  width: calc(30vw - 2rem) !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-30 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-20 {
  width: calc(20vw - 2rem) !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-20 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-10 {
  width: calc(10vw - 2rem) !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-10 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-200 {
  width: 200px !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-200 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-300 {
  width: 300px !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-300 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-400 {
  width: 400px !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-400 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-500 {
  width: 500px !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-500 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-600 {
  width: 600px !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-600 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-700 {
  width: 700px !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-700 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-800 {
  width: 800px !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-800 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-900 {
  width: 900px !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-900 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-1000 {
  width: 1000px !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-1000 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-1100 {
  width: 1100px !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-1100 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-1200 {
  width: 1200px !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-1200 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-1300 {
  width: 1300px !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-1300 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-1400 {
  width: 1400px !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-1400 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-1500 {
  width: 1500px !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-1500 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-1600 {
  width: 1600px !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-1600 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-1700 {
  width: 1700px !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-1700 {
    width: calc(100vw - 2rem) !important;
  }
}
.offcanvas-1800 {
  width: 1800px !important;
}
@media only screen and (max-width: 1199px) {
  .offcanvas-1800 {
    width: calc(100vw - 2rem) !important;
  }
}
/*
|-------------------------------------------------------------------------------
| DataTables
|-------------------------------------------------------------------------------
|
**/
/* Quita el subrayado de todos los enlaces dentro de las celdas de las tablas */
table tbody td a[href] {
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
}
table tbody td a[href] {
  transition: all 0.2s ease-in-out /* Opcional: le da un toque suave al aparecer */;
}
/* Muestra el subrayado SOLO cuando el mouse pasa por encima */
table tbody td a[href]:hover {
  -webkit-text-decoration: underline !important;
  text-decoration: underline !important;
}
table th {
  font-weight: normal;
  color: #d13f19 /* text-muted */;
}
/* Estado inactivo (por defecto) */
.if-sub-sort {
  transition: all 0.2s ease;
  cursor: pointer;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
/* Estado activo (cuando la columna está ordenando) */
.if-sub-sort.is-active {
  color: #148145 !important /* Aquí manejas el color de tu marca */;
  font-weight: bold !important;
}
.if-sub-sort.is-active {
  font-size: 0.85rem;
}
/* El icono de ordenamiento */
.if-sub-sort .sort-icon {
  margin-left: 5px;
  font-weight: bold;
}
/*
|-------------------------------------------------------------------------------
| Nucleus pagination - DataTables
|-------------------------------------------------------------------------------
|
**/
:root {
  --if-brand: #024430;
  --if-limit: #dc3545;
  --bg-light: #f4f7f6;
}
.badge-ui {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 5px;
  background: #e0f2fe;
  color: #024430;
  color: var(--if-brand);
  text-transform: uppercase;
}
/* 👇 CAMBIOS AQUÍ: Cambiamos 'if-' por 'nc-' 👇 */
.nc-nav-wrapper {
  position: relative !important;
}
.nc-nav-wrapper {
  overflow: hidden;
}
.nc-nav-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  z-index: 999999;
  background-color: #024430;
  background-color: var(--if-brand);
  transition: width 0.3s ease, opacity 0.4s ease, background-color 0.3s ease;
}
.nc-nav-progress-bar.limit-reached {
  background-color: #dc3545 !important;
  background-color: var(--if-limit) !important;
}
.nc-nav-badge {
  position: absolute;
  top: 10px;
  right: 25px;
  background: rgba(15,23,42,0.9);
  color: #fff;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  z-index: 2000;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  transition: opacity 0.4s ease;
  pointer-events: none;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.nc-cursor-free {
  cursor: ns-resize !important;
}
.nc-cursor-key {
  cursor: alias !important;
}
.nc-cursor-focus {
  cursor: pointer !important;
}
/* El resto queda igual */
.is-focused {
  cursor: ns-resize !important;
}
.is-focused {
  box-shadow: 0 0 0 3px rgba(13,110,253,0.15);
  border-color: #024430;
  border-color: var(--if-brand);
  border-radius: 6px;
}
.if-table thead {
  font-size: 0.8rem;
}
/* =========================================
   NUCLEUS PREMIUM MODALS (UI SUBSYSTEM)
   ========================================= */
.nc-modal-premium .modal-content {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.nc-modal-premium .modal-header {
  padding: 24px 24px 8px;
}
.nc-modal-premium .modal-header h5 {
  font-size: 1.25rem;
  color: #0f172a;
  font-weight: 900;
}
.nc-modal-premium .modal-body {
  padding: 8px 24px 24px;
}
.nc-modal-premium .modal-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}
.nc-modal-premium .modal-footer {
  padding: 12px 24px 24px;
  gap: 12px;
}
.nc-modal-premium .nc-prompt-input {
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 1rem;
}
.nc-modal-premium .nc-prompt-input:focus {
  border-color: #024430;
  border-color: var(--if-brand);
}
.modal-backdrop.show {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background-color: rgba(15,23,42,0.6);
}

/*# sourceMappingURL=maps/main.css.map */
