@charset "UTF-8";

:root {
  /* SLP COLORS */
  --slp-verde1: #055A1C;
  --slp-verde2: #338c36;
  --slp-verde3: #76b82a;
  --slp-rosa: #e60064;
  --slp-gris1: #706f6f;
  --slp-gris2: #9d9d9c;
  --slp-gris3: #f4f4f4;
  --slp-oscuro: #2b2727;
  --slp-contraste-primario: #053813;
  --slp-contraste-secundario: #d9e8d5;
  --slp-contraste-terciario: #055A1C;
  --slp-contraste-detalles: #3b2720;
  --slp-hover-secundario: #950a41;

  --dca-primary:  var(--slp-verde1) !important;
  --dca-secondary:  var(--slp-verde3) !important;
  --dca-white: #2A2C2E  !important;
  --dca-black: #FFF  !important;
  --dca-gray: #999  !important;
  --dca-gray-lightest: #444  !important;
  --dca-gray-lighter: #666  !important;
  --dca-gray-light: #888  !important;
  --dca-gray-darker: #aaa  !important;
  --dca-gray-darkest: #eee  !important;
  --dca-gray-super-lightest: #333  !important;
}
/* ------------------------------------------------------------------------------------------------------ */
/* ------------ Django CMS Classes ---------------------------------------------------------------------- */
  div.cms-structure.cms-structure-condensed{
    right: -15px !important;
  }
  html.cms-ready{
    margin: 0 !important;
  }
  div.cms {
    position: sticky !important;
  }
  div.cms .cms-messages *{
    color: var(--dca-black) !important;
  }
  div.cms .cms-tooltip,
  div.cms .cms-tooltip-touch{
    color: transparent !important;
    background: transparent !important;
  }
  div.cms .cms-tooltip span,
  div.cms .cms-tooltip-touch span{
    top: 4px !important;
    left: 0 !important;
    right: auto !important;
    border-radius: 3px !important;
    max-width: 5rem;
    text-wrap: auto;
    line-height: normal;
  }

  div.cms .cms-toolbar{ /* Mantiene el Toolbar pegado a la parte superior */
    position: sticky !important;
  }
  .cms-prevent-scrolling div.cms .cms-toolbar { /* Mantiene el Toolbar Arriba del Sideframe cuando este se abre*/
    position: fixed !important;
  }

  div.cms .cms-btn-action{
    border: 0 !important;
    color: white !important;
  }
  div.cms .cms-btn-caution{
    border: 0 !important;
    color: white !important;
    background-color: var(--slp-rosa) !important;
  }

  div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover>a{
    /* color: white !important; */
    background: var(--slp-verde1) !important;
  }
  div.cms .cms-toolbar-item-navigation .cms-toolbar-item-navigation-hover>a span{
    color: white !important;
  }
  div.cms.cms-toolbar-debug .cms-debug-bar{
    background-color: var(--slp-verde3) !important;
  }
  div.cms.cms-toolbar-debug .cms-toolbar .cms-btn-action{
    background-color: var(--slp-verde1) !important;
    border-color: var(--slp-verde1) !important;
    color: white !important;
  }
  .cms-toolbar-item.cms-toolbar-item-logo a:focus,
  .cms-toolbar-item.cms-toolbar-item-logo a:hover{
    color: var(--slp-verde3) !important;
  }
  div.cms .cms-toolbar-item-logo a:before{
    content: "REP🌎SLP" !important;
    font-family: "Montserrat";
    font-weight: 500;
  }
  div.cms .cms-structure .cms-draggable-is-dragging .cms-dragitem{
    --dca-primary:  var(--slp-verde3) !important;
    border-radius: 10px !important;
  }
  div.cms .cms-droppable{
    --dca-primary:  var(--slp-verde3) !important;
    border-radius: 10px;
  }
  div.cms .cms-droppable:before{
    border-left: 8px solid var(--slp-verde3) !important;
  }
  div.cms .cms-sideframe{
    width: 65% !important;
  }
  div.cms .cms-submenu-dropdown-settings .cms-submenu-item a:focus,
  div.cms .cms-submenu-dropdown-settings .cms-submenu-item a:hover{
    color: var(--dca-gray-darkest) !important;
  }

  div.cms .cms-add-plugin-placeholder{
    color: var(--dca-secondary) !important;
    border-color: var(--dca-secondary) !important;
  }

  div.cms .cms-add-plugin-placeholder:after{
    background-color: transparent !important;
  }

  div.cms .cms-plugin-picker .cms-submenu-item a:focus,
  div.cms .cms-plugin-picker .cms-submenu-item a:hover{
    color: var(--dca-secondary) !important;
    border-top: 1px solid var(--dca-secondary) !important;
    border-bottom: 1px solid var(--dca-secondary) !important;
  }

  div.cms .cms-modal-close:focus,
  div.cms .cms-modal-close:hover,
  div.cms .cms-modal-maximize:focus,
  div.cms .cms-modal-maximize:hover,
  div.cms .cms-modal-minimize:focus,
  div.cms .cms-modal-minimize:hover,
  .cms-modal-minimized div.cms .cms-modal-minimize{
      color: var(--slp-verde3) !important;
  }

  /* Animaciones de pulsos */
  .cms-toolbar-item.cms-toolbar-item-buttons .cms-btn.cms-icon-btn {
    font-size: 1rem;
    display: flex;
    position: relative;
    width: 2rem;
    justify-content: center;
  }

  .cms-toolbar-item.cms-toolbar-item-buttons .cms-btn:has(.pulsating) { 
    border: solid 2px var(--slp-verde2);
    animation: pulsating-border-pulse 2s ease-in infinite;
  }

  @keyframes pulsating-border-pulse {
    0%{
      box-shadow: var(--slp-verde1) 0 0 1px 1px;
    }
    50% {
      box-shadow: var(--slp-verde1) 0 0 1px 2px;
    }
    100% {
      box-shadow: var(--slp-verde1) 0 0 1px 1px;
    }
  }
/* ------------------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------- Django CMS Classes ------------ */
/* -------------- TEXT COLORS -------------- */
.slpColors-txt-main{
  color: var(--slp-verde1) !important;
}
.slpColors-txt-secondary{
  color: var(--slp-rosa) !important;
}
.slpColors-txt-body{
  color: var(--slp-oscuro) !important;
}
.slpColors-txt-info{
  color: var(--slp-gris1) !important;
}
/* ----------- BACKGROUND COLORS ----------- */
.slpColors-bg-g1{
  background-color: var(--slp-gris1) !important;
}
.slpColors-bg-g2{
  background-color: var(--slp-gris2) !important;
}
.slpColors-bg-g3{
  background-color: var(--slp-gris3) !important;
}
.slpColors-bg-v1{
  background-color: var(--slp-verde1) !important;
}
.slpColors-bg-v2{
  background-color: var(--slp-verde2) !important;
}
.slpColors-bg-v3{
  background-color: var(--slp-verde3) !important;
}
.slpColors-bg-r1{
  background-color: var(--slp-rosa) !important;
}
.slpColors-bg-oscuro{
  background-color: var(--slp-oscuro) !important;
}
/* ------------- BORDER COLORS ------------- */
.slpColors-border-g1{
  border-color: var(--slp-gris1) !important;
}
.slpColors-border-g2{
  border-color: var(--slp-gris2) !important;
}
.slpColors-border-g3{
  border-color: var(--slp-gris3) !important;
}
.slpColors-border-v1{
  border-color: var(--slp-verde1) !important;
}
.slpColors-border-v2{
  border-color: var(--slp-verde2) !important;
}
.slpColors-border-v3{
  border-color: var(--slp-verde3) !important;
}
.slpColors-border-r1{
  border-color: var(--slp-rosa) !important;
}
.slpColors-border-oscuro{
  border-color: var(--slp-oscuro) !important;
}
 /* -------------- PERS CLASSES -------------- */
 /* RATIOS */
.rat-3x4{
  aspect-ratio: 3/4 !important;
}
.rat-4x3{
  aspect-ratio: 4/3 !important;
}
.rat-4x5{
  aspect-ratio: 4/5;
}
.rat-5x4{ /* Ratios de imagenes de las tarjetas funcionarios */
  aspect-ratio: 5/4;
}
@media(min-width: 1200px){
  .rat-xl-unset{ 
    aspect-ratio: unset;
  }
}
/* FONTS */
.fs-11px{
  font-size: 11px;
}
.fs-14px{
  font-size: 14px;
}
.fs-09{
  font-size: 0.9rem; 
}
.fs-7 {
  font-size: 0.75rem;
}
.fs-8{
  font-size: 0.5rem;
}
@media(min-width: 576px){
  .fs-sm-2{
    font-size: 2rem !important;
  }
  .fs-sm-6{
    font-size: 1rem !important;
  }
}
/* WIDTH & HEIGHTS */
.w-fit-content {
  width: fit-content;
}
.w-max-content {
  width: max-content;
}

.min-w-20 {
  min-width: 20%;
}
.min-w-25 {
  min-width: 25%;
}

/* PADDINGS & MARGINS */
.-mt-4 {
  margin-top: -1.5rem;
}

.py-10{
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media(min-width: 992px) {
  .my-md-4{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .py-md-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .py-md-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .py-md-3{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

/* HOVER ACTIONS */
.hover-scale-101,
.hover-scale-105 {
  transition: all 0.3s;
}
.hover-scale-101:hover {
  transform: scale(1.01);
}
.hover-scale-105:hover {
  transform: scale(1.05);
}

.cursor-pointer {
  cursor: pointer;
}

/* Estilos personalizados de MHG */
.mhg-style-Cintillo{
  height: 3.5rem;
  background: var(--slp-rosa);
  text-align: center;
  transition: all 0.3s;
}

.mhg-style-Cintillo h4{
  color: white;
  margin-top: auto !important;
  margin-bottom: auto !important;
  margin-left: 32px;
  font-size: large;
}
.mhg-style-Cintillo .alert-social{
  color: white;
  margin: 0 3px;
  font-size: 1.2rem;
  transition: all 0.3s
}
.mhg-style-Cintillo .alert-social:focus,
.mhg-style-Cintillo .alert-social:hover{
  transform: scale(1.10);
}
.mhg-style-Cintillo .alert-ref{
  text-align: start;
  color: white;
  margin: auto;
  width: 100%;
}
.mhg-style-Cintillo a.alert-ref:focus,
.mhg-style-Cintillo a.alert-ref:hover{
  color: white;
  text-decoration: underline;
}
.mhg-style-Cintillo span{
  transition: all 0.3s
}
.mhg-style-Cintillo .alert-ref:focus span,
.mhg-style-Cintillo .alert-ref:hover span{
  transform: translateX(10px);
}

.mhg-style-Cintillo .hg-vert-align {
  vertical-align: middle;
}

@media(min-width: 480px){
  .mhg-style-Cintillo{
    height: 2rem;
  }
}

/* @follow-up REEMPLAZAR ESTA ETIQUETA POR slpColors-txt-info y fs-... */
.mhg-txt-resultado-busqueda{
  font-family: 'Montserrat';
  font-size: 1.3rem;
  color: var(--slp-gris1);
  padding-left: 10%;
}

.mhg-avisos-menu {
  margin: 0 -1rem; 
  width: calc(100% + 2rem);
}
/* ---------------------------------------------- */
/* -------------- ADVANCED CLASSES -------------- */
/* Ocultamos el body por default para esperar a que cargue el contenido */
body{
  display: none;
}
.custom2{
  box-shadow: 1px 1px 10px 0px rgba(0,0,0,0.75);
  -webkit-box-shadow: 1px 1px 10px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 1px 1px 10px 0px rgba(0,0,0,0.75);
}
.blog-list{
  margin-bottom: 3rem;
}
section {
  background-color: transparent;
}
body {
  font-style: normal;
  line-height: 1.5;
  font-weight: 400;
  color: #232323;
  position: relative;
}

button {
  background-color: transparent;
  border-color: transparent;
}

section,
.container,
.container-fluid {
  position: relative;
  word-wrap: break-word;
}

p {
  margin-bottom: 0;
}

a.mbr-iconfont:focus,
a.mbr-iconfont:hover {
  text-decoration: none;
}

.article .lead p,
.article .lead ul,
.article .lead ol,
.article .lead pre,
.article .lead blockquote {
  margin-bottom: 0;
}

a {
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
}
a, a:focus,
a, a:hover{
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-4,
.display-5,
.display-7,
span,
p,
a {
  word-break: break-word;
  word-wrap: break-word;
  font-weight: 400;
}

hr{
  margin: 10px !important;
}

b,
strong {
  font-weight: bold;
}

input:-webkit-autofill, input:-webkit-autofill:focus,
input:-webkit-autofill, input:-webkit-autofill:hover,
input:-webkit-autofill:focus, input:-webkit-autofill:active {
  transition-delay: 9999s;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
}

textarea[type=hidden] {
  display: none;
}

section {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
section .mbr-background-video,
section .mbr-background-video-preview {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

.hidden {
  visibility: hidden;
}

.mbr-z-index20 {
  z-index: 20;
}

/*! Text-aligns */
.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

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

.media-container-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: start;
}
.media-container-row .media-size-item {
  width: 400px;
}

.media-container-column {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: stretch;
}
.media-container-column > * {
  width: 100%;
}

@media (min-width: 992px) {
  .media-container-row {
    flex-wrap: nowrap;
  }
}
figure {
  margin-bottom: 0;
  overflow: hidden;
}

figure[mbr-media-size] {
  transition: width 0.1s;
}

img,
iframe {
  display: block;
  width: 100%;
}

.card {
  /* background-color: transparent; */
  border: none;
}

.card-box {
  width: 100%;
}

.card-img {
  text-align: center;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

.media {
  max-width: 100%;
  margin: 0 auto;
}

.mbr-figure {
  align-self: center;
}

.media-container > div {
  max-width: 100%;
}

.mbr-figure img,
.card-img img {
  width: 100%;
}

@media (max-width: 991px) {
  .media-size-item {
    width: auto !important;
  }

  .media {
    width: auto;
  }

  .mbr-figure {
    width: 100% !important;
  }
}
/*! Buttons */
.mbr-section-btn {
  margin-left: -0.6rem;
  margin-right: -0.6rem;
  font-size: 0;
}

nav .mbr-section-btn {
  margin-left: 0rem;
  margin-right: 0rem;
}

/*! Btn icon margin */
.btn .mbr-iconfont,
.btn.btn-sm .mbr-iconfont {
  order: 1;
  cursor: pointer;
  margin: 0rem;
  vertical-align: sub;
}

.btn.btn-md .mbr-iconfont,
.btn.btn-md .mbr-iconfont {
  margin-left: 0.8rem;
}

[type=submit] {
  -webkit-appearance: none;
}

/*! Map */
.map {
  height: 25rem;
  position: relative;
}
.map iframe {
  width: 100%;
  height: 100%;
}

.menu .navbar-brand {
  display: -webkit-flex;
}
.menu .navbar-brand span {
  display: flex;
  display: -webkit-flex;
}
.menu .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
}
.menu .navbar-brand .navbar-logo img {
  display: -webkit-flex;
  width: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu .navbar-toggleable-sm .navbar-nav {
    display: -ms-flexbox;
  }
}
@media (max-width: 991px) {
  .menu .navbar-collapse {
    max-height: 93.5vh;
  }
  .menu .navbar-collapse.show {
    overflow: auto;
  }
}
@media (min-width: 992px) {
  .menu .navbar-nav.nav-dropdown {
    display: -webkit-flex;
  }
  .menu .navbar-toggleable-sm .navbar-collapse {
    display: -webkit-flex !important;
  }
  .menu .collapsed .navbar-collapse {
    max-height: 93.5vh;
  }
  .menu .collapsed .navbar-collapse.show {
    overflow: auto;
  }
}
@media (max-width: 767px) {
  .menu .navbar-collapse {
    max-height: 80vh;
  }
}

.nav-link .mbr-iconfont {
  margin-right: 0.5rem;
}

.navbar {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
}

.navbar-collapse {
  -webkit-flex-basis: 100%;
  -webkit-flex-grow: 1;
  -webkit-align-items: center;
}

.nav-dropdown .link {
  padding: 0.667em 1.667em !important;
  margin: 0 !important;
}

/* Formularios de Búsquedas */
.select2-style-override,
button.dropdown-toggle,
input[type="text"],
input[type="date"],
input[type="search"] {
  box-shadow: none !important;
  background-color: var(--slp-gris3);
}
.select2-style-override:has(:focus),
button.dropdown-toggle,
input[type="text"]:focus,
input[type="date"]:focus,
input[type="search"]:focus {
  box-shadow: none;
  border-color: var(--slp-verde1);
}
/* Botones de Reiniciar búsqueda */
/* Botón personalizado para limpiar el campo */
input[type="text"] + div .btn-delete,
input[type="search"] + div .btn-delete {
    right: 2%;
    display: flex;
    align-self: anchor-center;
    justify-content: center;
    align-items: center;
    padding: 1px;
    height: 1.5rem;
    width: 1.5rem;
    color: var(--slp-verde1);
    transition: all 0.3s;
    border-radius: 100%;
}
input[type="text"] + div .btn-delete:hover,
input[type="search"] + div .btn-delete:hover {
  background-color: var(--slp-verde1);
  color: #FFFFFF;
}
/* input[type="text"][value=""] + div .btn-delete, */
input[type="search"][value=""] + div .btn-delete {
  display: none;
}

.select2-style-override .select2-container--default .select2-selection--single {
  border: none;
  background: transparent;
}
.select2-style-override .select2.select2-container,
.select2-style-override .selection .select2-selection { 
  height: 100%;
  align-content: center;
}
.select2-style-override .selection {
  display: block;
  height: 100%;
}

.select2-style-override .select2-selection__arrow {
  align-self: anchor-center !important;
}
.select2-container--open .select2-dropdown--below {
  border: solid 1px var(--slp-verde1)
}
input.select2-search__field {
  color: var(--slp-oscuro);
}

.modal-dialog,
.modal-content {
  height: 100%;
}
.modal-dialog .carousel-inner {
  height: calc(100vh - 1.75rem);
}
@media (max-width: 575px) {
  .modal-dialog .carousel-inner {
    height: calc(100vh - 1rem);
  }
}
.carousel-item {
  text-align: center;
}
.carousel-item img {
  margin: auto;
}

.navbar-toggler {
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

.navbar-toggler-left {
  position: absolute;
  left: 1rem;
}

.navbar-toggler-right {
  position: absolute;
  right: 1rem;
}

.card-img {
  width: auto;
}

.menu .navbar.collapsed:not(.beta-menu) {
  flex-direction: column;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: flex;
}

.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}

html,
body {
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}
footer{
  margin-top: auto;
}

.dropup .dropdown-toggle::after {
  display: none;
}

.gdpr-block label span.textGDPR input[name=gdpr] {
  top: 7px;
}
:focus {
  outline: none;
}

.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

blockquote {
  font-style: italic;
  padding: 3rem;
  font-size: 1.09rem;
  position: relative;
  border-left: 3px solid;
}

ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

@media (min-width: 992px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .row {
    margin-left: -16px;
    margin-right: -16px;
  }
  .row > [class*=col] {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 768px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mbr-container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 767px) {
  .mbr-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.card-wrapper,
.item-wrapper {
  overflow: hidden;
}

.app-video-wrapper > img {
  opacity: 1;
}

.item {
  position: relative;
}

.dropdown-menu .dropdown-menu {
  left: 100%;
}

.dropdown-item + .dropdown-menu {
  display: none;
}


@media (min-aspect-ratio: 16/9) {
  .mbr-video-foreground {
    height: 300% !important;
    top: -100% !important;
  }
}
@media (max-aspect-ratio: 16/9) {
  .mbr-video-foreground {
    width: 300% !important;
    left: -100% !important;
  }
}.btn {
  border-width: 2px;
}

.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.3rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  align-content: center;
  border-radius: 10px;
  margin: 2px 3px;
}
.btn-sm {
  padding: 0.4rem;
  border-radius: 6px;
  font-size: 14px;
  border-width: 1px;
  margin: auto;
  transition: all 0.3s;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 10px;
}
.btn-primary,
.btn-primary:active {
  background-color: var(--slp-verde1) !important;
  border-color: var(--slp-verde1) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:focus,
.btn-primary:hover,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: var(--slp-rosa) !important;
  border-color: var(--slp-rosa) !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #020a03 !important;
  border-color: #020a03 !important;
}
.slpColors-bg-v1 .btn-primary {
  background-color: var(--slp-verde2) !important;
  border-color: var(--slp-verde2) !important;
}
.slpColors-bg-v1 .btn-primary:hover,
.slpColors-bg-r1 .btn-primary:hover {
  background-color: var(--slp-verde3) !important;
  border-color: var(--slp-verde3) !important;
}

.btn-primary-static,
.btn-primary-static:active {
  background-color: var(--slp-verde1) !important;
  border-color: var(--slp-verde1) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary-static.disabled,
.btn-primary-static:disabled {
  color: #ffffff !important;
  background-color: var(--slp-gris1) !important;
  border-color: var(--slp-gris1) !important;
}

.btn-secondary,
.btn-secondary:active {
  background-color: var(--slp-rosa) !important;
  border-color: var(--slp-rosa) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:focus,
.btn-secondary:hover,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: var(--slp-hover-secundario) !important;
  border-color: var(--slp-hover-secundario) !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: var(--slp-hover-secundario) !important;
  border-color: var(--slp-hover-secundario) !important;
}
.btn-info,
.btn-info:active {
  background-color: var(--slp-gris3) !important;
  border: var(--bs-border-width) solid var(--bs-border-color) !important;
  color: var(--slp-gris1) !important;
  box-shadow: none;
}
.btn-info:focus,
/* .btn-info:hover, */
.btn-info.focus,
.btn-info.active {
  background-color: #ffffff !important;
  /* background-color: #0a0a0a !important; */
  border-color: var(--slp-verde1) !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-success,
.btn-success:active {
  background-color: var(--slp-verde1) !important;
  border-color: var(--slp-verde1) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:focus,
.btn-success:hover,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000802 !important;
  border-color: #000802 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000802 !important;
  border-color: #000802 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:focus,
.btn-warning:hover,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #353535 !important;
  border-color: #353535 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:focus,
.btn-danger:hover,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:focus,
.btn-white:hover,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:focus,
.btn-black:hover,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: var(--slp-verde1);
  color: var(--slp-verde1);
}
.btn-primary-outline:focus,
.btn-primary-outline:hover,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: var(--slp-rosa) !important;
  background-color: transparent !important;
  border-color: var(--slp-rosa) !important;
  box-shadow: none!important;
}
.slpColors-bg-v1 .btn-primary-outline,
.slpColors-bg-v1 .btn-primary-outline:active {
  background-color: transparent !important;
  border-color: var(--slp-verde2);
  color: var(--slp-verde2);
}
.slpColors-bg-v1 .btn-primary-outline:focus,
.slpColors-bg-r1 .btn-primary-outline:focus,
.slpColors-bg-v1 .btn-primary-outline:hover,
.slpColors-bg-r1 .btn-primary-outline:hover,
.slpColors-bg-v1 .btn-primary-outline.focus,
.slpColors-bg-r1 .btn-primary-outline.focus,
.slpColors-bg-v1 .btn-primary-outline.active,
.slpColors-bg-r1 .btn-primary-outline.active {
  color: var(--slp-verde3) !important;
  background-color: transparent !important;
  border-color: var(--slp-verde3) !important;
  box-shadow: none!important;
}

.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  background-color: transparent !important;
  border-color: var(--slp-verde1);
  color: var(--slp-verde1);
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: var(--slp-rosa);
  color: var(--slp-rosa);
}
.btn-secondary-outline:focus,
.btn-secondary-outline:hover,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: var(--slp-hover-secundario) !important;
  background-color: transparent!important;
  border-color: var(--slp-hover-secundario) !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  background-color: transparent !important;
  border-color: var(--slp-rosa);
  color: var(--slp-rosa);
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  color: #353535;
}
.btn-info-outline:focus,
.btn-info-outline:hover,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0a0a0a !important;
  background-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #353535 !important;
  border-color: #353535 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: var(--slp-verde1);
  color: var(--slp-verde1);
}
.btn-success-outline:focus,
.btn-success-outline:hover,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000802 !important;
  background-color: transparent!important;
  border-color: #000802 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: var(--slp-verde1) !important;
  border-color: var(--slp-verde1) !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-warning-outline:focus,
.btn-warning-outline:hover,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #c7c7c7 !important;
  background-color: transparent!important;
  border-color: #c7c7c7 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #353535;
  color: #353535;
}
.btn-danger-outline:focus,
.btn-danger-outline:hover,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #0a0a0a !important;
  background-color: transparent!important;
  border-color: #0a0a0a !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #353535 !important;
  border-color: #353535 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:focus,
.btn-black-outline:hover,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:focus,
.btn-white-outline:hover,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: var(--slp-verde1) !important;
}
.text-secondary {
  color: var(--slp-rosa) !important;
}
.text-success {
  color: var(--slp-verde1) !important;
}
.text-info {
  color: #353535 !important;
}
.text-warning {
  color: #bbbbbb !important;
}
.text-danger {
  color: #353535 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:focus,
a.text-primary:hover,
a.text-primary.active {
  text-decoration-line: underline;
}
a.text-secondary:focus,
a.text-secondary:hover,
a.text-secondary.active {
  color: #87093b !important;
}
a.text-success:focus,
a.text-success:hover,
a.text-success.active {
  color: #000000 !important;
}
a.text-link{
  color: #6d7a8c;
}
a.text-link:focus,
a.text-link:hover,
a.text-link.active {
  color: #48525f;
  text-decoration-line: underline;
}
a.text-warning:focus,
a.text-warning:hover,
a.text-warning.active {
  color: #888888 !important;
}
a.text-danger:focus,
a.text-danger:hover,
a.text-danger.active {
  color: #020202 !important;
}
a.text-white:focus,
a.text-white:hover,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:focus,
a.text-black:hover,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}

.nav-tabs .nav-link.active {
  color: var(--slp-verde1);
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.mbr-gallery-filter li.active .btn {
  background-color: var(--slp-verde1);
  border-color: var(--slp-verde1);
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:focus,
a:hover {
  color: var(--slp-verde1);
}

/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: var(--slp-verde1);
}
/* Forms */
.jq-selectbox li:focus,
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: var(--slp-verde1);
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:focus,
.jq-number__spin:hover {
  border-color: var(--slp-verde1);
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: var(--slp-verde1);
  border-bottom-color: var(--slp-verde1);
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: var(--slp-verde1) !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: var(--slp-rosa) !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2310531a' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}

.accordion-button:focus {
  box-shadow: 0 0 3px var(--slp-verde2)
}
.accordion-button::after {
  background-image: none !important;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.accordion-button:not(.collapsed) {
  color: white;
  background-color: var(--slp-verde2);
  border-color: var(--slp-verde2);
}

.mob-style-NoticiasCMS {
  padding-top: 2rem;
  background: linear-gradient(to bottom, var(--slp-gris3) 60%, transparent 1%);
}
@media (min-width: 992px) {
  .mob-style-NoticiasCMS .text-wrapper {
    padding: 0 2rem;
  }
}
.mob-style-NoticiasCMS .mbr-figure {
  align-self: center;
}
.mob-style-NoticiasCMS .mbr-figure iframe {
  width: 100%;
}
.mob-style-NoticiasCards .badge {
  position: absolute;
  top: -10px;
  right: 10px;
}
.mob-style-NoticiasCards .pers-overflow-x {
  overflow-x: scroll;
}
@media (min-width: 1200px) {
  .mob-style-NoticiasCards .pers-overflow-x {
    overflow-x: visible;
  }
}

.mob-style-NoticiasCards h2.mbr-section-title {
  position: relative;
  text-align: center;
  width: fit-content;
  margin-bottom: 0.875rem;
}
/* .mob-style-NoticiasCards h2.mbr-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  margin: 0 auto;
  width: 80%;
  height: 6px;
  background-color: var(--slp-verde1);
} */
.mob-style-NoticiasCards img,
.mob-style-NoticiasCards .item-img {
  height: 100%;
  /* height: 200px; */
  object-fit: cover;
}
.mob-style-NoticiasCards .item:focus,
.mob-style-NoticiasCards span:focus {
  outline: none;
}
.mob-style-NoticiasCards .item {
  cursor: pointer;
  transition: 0.5s;
}
.mob-style-NoticiasCards .item:focus,
.mob-style-NoticiasCards .item:hover {
  transform: scale(1.03);
}
.mob-style-NoticiasCards .item-wrapper {
  flex-flow: column nowrap;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
}

.mob-style-NoticiasCards .mbr-section-btn {
  margin-top: auto !important;
}
.mob-style-NoticiasCards .mbr-section-title {
  color: var(--slp-oscuro);
}
.mob-style-NoticiasCards .item-title {
  text-align: left;
}
.mob-style-NoticiasCards .item-subtitle {
  text-align: left;
  color: var(--slp-oscuro);
}
.mob-style-NoticiasCards .row{
  justify-content: left;
}
.mob-style-TextoFuncionario .socicon-bg-social {
  background: var(--slp-rosa);
  color: #ffffff;
}
.mob-style-TextoFuncionario a:focus .socicon-bg-social,
.mob-style-TextoFuncionario .socicon-bg-social:hover {
  background: var(--slp-hover-secundario);
}
.mob-style-TextoFuncionario .btn-social {
  font-size: 24px;
  border-radius: 50%;
  padding: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  position: relative;
  border: none !important;
  display: flex;
}
.mob-style-TextoFuncionario .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.mob-style-TextoFuncionario [class^="socicon-"]:before,
.mob-style-TextoFuncionario [class*=" socicon-"]:before {
  line-height: 55px;
}
.mob-style-Buscador {
  padding-top: 3rem;
  padding-bottom: 1rem;
}
.mob-style-Buscador .mbr-overlay {
  opacity: 0.4;
}

.mob-style-Buscador .input-group div {
  margin-right: 0px !important;
  margin-left: 0px !important;
}
@media (max-width: 768px) {
  .mob-style-Buscador .input-group .select2-style-override ,
  .mob-style-Buscador .input-group .dropdown-center,
  .mob-style-Buscador .input-group input[type="search"],
  .mob-style-Buscador .input-group button.btn {
    max-width: 100%;
    width: -webkit-fill-available;
    border-radius: 0%;
  }

  .mob-style-Buscador .input-group button:first-child,
  .mob-style-Buscador .input-group div:first-child input {
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }
  .mob-style-Buscador .input-group button:last-child,
  .mob-style-Buscador .input-group div:last-child input {
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
  }
}

.mob-style-ContenedorNoticias {
  min-height: 200px;
  padding-top: 0rem;
  padding-bottom: 1rem;
}
.mob-style-ContenedorNoticias img,
.mob-style-ContenedorNoticias .item-img {
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.mob-style-ContenedorNoticias .item:focus,
.mob-style-ContenedorNoticias span:focus {
  outline: none;
}
.mob-style-ContenedorNoticias .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.mob-style-ContenedorNoticias .item-wrapper {
  position: relative;
  transition: all 0.3s;
  border-radius: 10px;
  background: #f1f3f4;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
}
.mob-style-ContenedorNoticias .item-wrapper:hover {
  transform: scale(1.05);
}
@media (min-width: 992px) {
  .mob-style-ContenedorNoticias .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .mob-style-ContenedorNoticias .item-wrapper .item-content {
    padding: 1rem;
  }
}
.mob-style-ContenedorNoticias .mbr-section-btn {
  margin-top: auto !important;
}
.mob-style-ContenedorNoticias .mbr-section-title {
  color: #232323;
}
.mob-style-ContenedorNoticias .item-title {
  text-align: left;
}
.mob-style-ContenedorNoticias .item-subtitle {
  text-align: left;
  color: #232323;
}
.mob-style-Noticia {
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}
.mob-style-Noticia .mbr-section-title {
  margin-bottom: 18px;
  color: #202020;
}
.mob-style-Noticia .head_title {
  margin: 25px 0 58px;
  text-align: center;
}

.mob-style-Noticia .card_box {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.mob-style-Noticia .card_info {
  margin-bottom: 0;
  display: flex;
}
.mob-style-Noticia .card_date {
  color: #555555;
}
.mob-style-Noticia .card_title {
  line-height: 1.1em;
  margin-bottom: 0;
  color: #202020;
}
.mob-style-Noticia .card_text {
  margin-top: 4px;
}
.mob-style-Noticia .item-img {
  margin-bottom: 30px;
}
/* .mob-style-Noticia .item-img img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
} */
.mob-style-Noticia .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.mob-style-Noticia .linkBtn a:after,
.mob-style-Noticia .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.mob-style-Noticia .linkBtn a:before {
  left: 0;
}
.mob-style-Noticia .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.mob-style-Noticia .linkBtn a:hover:before,
.mob-style-Noticia .linkBtn a:hover:after {
  transform: translateX(100%);
}

.social-row {
  text-align: end;
  display: flex;
  align-items: end;
  justify-content: end;
}
.social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  padding: 0.3rem;
  border: 2px solid var(--slp-rosa);
  transition: all 0.3s;
}
.social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: var(--slp-rosa);
  font-size: 1.5rem;
}
.social-row .soc-item:hover {
  background-color: var(--slp-rosa);
}
.social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}

.mob-style-Tramites  a {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
.mob-style-Tramites .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.mob-style-Tramites .team-card:hover {
  transform: translateY(-10px);
}
.mob-style-Tramites .card-wrap {
  background: #fafaf9;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
  height: 100%;
  max-width: 440px;
  margin: auto;
  aspect-ratio: 3/2;
}

@media(max-width: 1420px){
  .mob-style-Tramites .card-wrap {
    aspect-ratio: 1/1;
  }
  .mob-style-Tramites .mhg-min-margin{
    width: min-content;
  }
}

.mob-style-Tramites .card-wrap:hover {
  background-color: var(--slp-verde2);
}
.mob-style-Tramites .card-wrap:hover .card-title,
.mob-style-Tramites .card-wrap:hover .card-subtitle,
.mob-style-Tramites .card-wrap:hover .mbr-pers-icon {
  color: white;
}

@media (max-width: 575px) {
  .mob-style-Tramites .hg-content-card {
    max-width: 75%;
  }
}

.mob-style-Tramites .card-wrap .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.mob-style-Tramites .card-wrap .content-wrap {
  display: flex;
  align-items: center;
  align-content: center;
  flex-flow: column;
  text-align: center;
}

.mob-style-Tramites .card-wrap:hover {
  transform: scale(1.05);
}
.mob-style-Tramites .social-row {
  text-align: center;
}
.mob-style-Tramites .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border: 2px solid var(--slp-rosa);
  transition: all 0.3s;
}
.mob-style-Tramites .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: var(--slp-rosa);
  font-size: 1.5rem;
}
.mob-style-Tramites .social-row .soc-item:hover {
  background-color: var(--slp-rosa);
}
.mob-style-Tramites .card-title,
.mob-style-Tramites .card-subtitle {
  color: var(--slp-verde1);
}

@media (max-width: 420px) {
  .mob-style-Tramites .card-title{
    font-size: 0.9rem;
  }
  .mob-style-Tramites .card-subtitle {
    font-size: 0.8rem;   
  }
}

.mob-style-Dependencia {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.mob-style-Dependencia a{
  color: #353535;
}
.mob-style-Dependencia .mbr-row .list-item a:hover{
  text-decoration-line: underline;
}

.mob-style-Dependencia .listico {
  color: var(--slp-rosa);
  padding-right: 1rem;
  font-size: 1.5rem;
}
.mob-style-Dependencia .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.mob-style-Dependencia .btn {
  margin: 2px !important;
  height: 55px;
}
.mob-style-Dependencia .form-group {
  padding-right: 0;
}
.mob-style-Dependencia .card {
  padding-top: 0px;
  padding-right: 50px;
  padding-bottom: 0px;
  padding-left: 50px;
}
.mob-style-Dependencia .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.mob-style-Dependencia .google-map iframe {
  min-height: 100%;
  width: 100%;
}
.mob-style-Dependencia .google-map [data-state-details] {
  color: #6b6763;
  font-family: 'Montserrat';
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.mob-style-Dependencia .google-map[data-state] {
  background: #e9e5dc;
}
.mob-style-Dependencia .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.mob-style-Dependencia .map-placeholder {
  display: none;
}

.mob-style-Dependencia .stripe {
  border-bottom: 1px solid var(--slp-verde1) !important;
  max-width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}
.mob-style-Dependencia .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9 !important;
  width: 85%;
}
.mob-style-Dependencia h5 {
  margin-bottom: 0;
}
.mob-style-Dependencia .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.mob-style-Dependencia .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.mob-style-Dependencia .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.mob-style-Dependencia .socicon {
  font-size: 1.3rem;
  color: #fff;
  background: var(--slp-rosa);
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.mob-style-Dependencia .socicon:focus,
.mob-style-Dependencia .socicon:hover{
  background: var(--slp-hover-secundario);
}
.mob-style-Dependencia .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.mob-style-Dependencia .social-list .soc-item {
  margin: 0 0.3rem;
}
.mob-style-Dependencia .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.mob-style-Dependencia .social-list a:focus,
.mob-style-Dependencia .social-list a:hover {
  background: var(--slp-rosa);
}
.mob-style-Dependencia .media-container-row > div {
  padding: 0px;
}
.mob-style-Dependencia .text2 {
  color: #000000;
  text-align: left;
}
.mob-style-Dependencia .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.mob-style-Dependencia .links {
  color: var(--slp-gris1);
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .mob-style-Dependencia .col-sm-12 {
    margin-bottom: 2rem;
  }
  .mob-style-Dependencia h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .mob-style-Dependencia .form-group {
    max-width: 180px;
  }
}
.mob-style-Dependencia .links span {
  color: var(--slp-gris2);
}
.mob-style-Dependencia .logo-title,
.mob-style-Dependencia .logo-sub-title {
  text-align: center;
}
.mob-style-Dependencia .logo-sub-title i {
  color: var(--slp-gris2);
}
.mob-style-TarjetasDependencias {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.mob-style-TarjetasDependencias .card-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
  aspect-ratio: 1/1;
}
@media (min-width: 576px) {
  .mob-style-TarjetasDependencias .card-wrap {
    aspect-ratio: 4/3;
  }
}
@media (min-width: 992px) {
  .mob-style-TarjetasDependencias .card-wrap {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 1200px) {
  .mob-style-TarjetasDependencias .card-wrap {
    aspect-ratio: 3/2;
  }
}

.mob-style-TarjetasDependencias a:focus .card-wrap,
.mob-style-TarjetasDependencias .card-wrap:hover{
  background: var(--slp-verde2);
  transform: scale(1.05);
}

.mob-style-TarjetasDependencias a:focus .card-wrap h1,
.mob-style-TarjetasDependencias .card-wrap:hover h1,
.mob-style-TarjetasDependencias a:focus .card-wrap h5,
.mob-style-TarjetasDependencias .card-wrap:hover h5{
  color: white !important;
}

.mob-style-FuncionariosCMS {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.mob-style-FuncionariosCMS .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.mob-style-FuncionariosCMS a:focus .team-card,
.mob-style-FuncionariosCMS .team-card:hover {
  transform: translateY(-10px);
}
.mob-style-FuncionariosCMS .card-wrap {
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: column;
  background: white;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
  aspect-ratio: 6/7;
}
@media (max-width: 1400px) {
  .mob-style-FuncionariosCMS .card-wrap {
    aspect-ratio: 5/7;
  }
}
@media (max-width: 1200px) {
  .mob-style-FuncionariosCMS .card-wrap {
    aspect-ratio: 4/7;
  }
}
@media (max-width: 992px) {
  .mob-style-FuncionariosCMS .card-wrap {
    aspect-ratio: 10/7;
  }
}
@media (max-width: 768px) {
  .mob-style-FuncionariosCMS .card-wrap {
    aspect-ratio: 1/1;
  }
}
@media (max-width: 480px) {
  .mob-style-FuncionariosCMS .card-wrap {
    aspect-ratio: 4/6;
  }
}

.mob-style-FuncionariosCMS .content-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.mob-style-FuncionariosCMS .carousel-control-next-icon{
  border-radius: 10px 0 0 10px;
}
.mob-style-FuncionariosCMS .carousel-control-prev-icon{
  border-radius: 0px 10px 10px 0px;
}
.mob-style-FuncionariosCMS .card-wrap .image-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.mob-style-FuncionariosCMS .mbr-section-btn.card-btn {
  padding: 0 2rem 2rem 2rem;
}
.mob-style-FuncionariosCMS .card-wrap:has(a:focus),
.mob-style-FuncionariosCMS .card-wrap:hover {
  transform: scale(1.03);
}
.mob-style-FuncionariosCMS .social-row {
  text-align: center;
  padding-bottom: 10px;
}
.mob-style-FuncionariosCMS .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  padding: 0.5rem;
  border: 2px solid var(--slp-rosa);
  transition: all 0.3s;
}
.mob-style-FuncionariosCMS .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: var(--slp-rosa);
  font-size: 1.5rem;
}
.mob-style-FuncionariosCMS .social-row .soc-item:has(a:focus),
.mob-style-FuncionariosCMS .social-row .soc-item:hover {
  background-color: var(--slp-rosa);
}
.mob-style-FuncionariosCMS .social-row .soc-item a:focus .mbr-iconfont,
.mob-style-FuncionariosCMS .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.mob-style-FuncionariosCMS .mbr-section-title {
  color: #000000;
}
.mob-style-FuncionariosCMS .card-title,
.mob-style-FuncionariosCMS .mbr-role,
.mob-style-FuncionariosCMS .social-row {
  color: #000000;
}
/* 
.mob-style-TarjetaFuncionario {
  background: #ffffff;
  min-height: 15rem;
}
.mob-style-TarjetaFuncionario .tarjeta{
  margin-bottom: 40px;
  max-width: 320px;
} */

.mob-style-TarjetaFuncionario .team-card {
  transition: all 0.3s;
}
.mob-style-TarjetaFuncionario a:focus .team-card,
.mob-style-TarjetaFuncionario .team-card:hover {
  transform: translateY(-10px);
}
.mob-style-TarjetaFuncionario .card-wrap {
  background: #fafaf9;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s;
  height: 450px;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
}
/* .mob-style-TarjetaFuncionario .card-wrap .image-wrap img {
  height: 100%;
  object-fit: cover;
} */

.mob-style-TarjetaFuncionario a:focus .card-wrap,
.mob-style-TarjetaFuncionario .card-wrap:hover {
  transform: scale(1.01);
}
.mob-style-TarjetaFuncionario .social-row {
  text-align: center;
}
.mob-style-TarjetaFuncionario .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 0rem;
  padding: 0.5rem;
  border: 2px solid var(--slp-rosa);
  transition: all 0.3s;
}
.mob-style-TarjetaFuncionario .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: var(--slp-rosa);
  font-size: 0.5rem;
}
.mob-style-TarjetaFuncionario .social-row .soc-item:hover {
  background-color: var(--slp-rosa);
}
.mob-style-TarjetaFuncionario .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.mob-style-TarjetaFuncionario .mbr-section-title {
  color: #000000;
}
/* @follow-up VERIFICAR EXISTENCIA DE CLASE EN TEAMCARDS PLUGIN */
.mob-style-TarjetaFuncionario .card-title, 
.mob-style-TarjetaFuncionario .social-row {
  color: #000000;
}
/* @follow-up VERIFICAR EXISTENCIA DE CLASE EN TEAMCARDS PLUGIN */
.mob-style-TarjetaFuncionario .mbr-role, 
.mob-style-TarjetaFuncionario .social-row {
  color: #000000;
}

.mob-style-ContenedorFuncionario {
  font-size: larger;
  padding-top: 20px;
  padding-bottom: 1rem;
}

.mob-style-ContenedorFuncionario .mbr-social-likes {
  text-align: left;
}

.mob-style-ContenedorFuncionario .doc-descr{
  text-align: left;
}
@media (max-width: 1400px) {
  .mob-style-ContenedorFuncionario .doc-descr{
    text-align: center !important;
  }
  .mob-style-ContenedorFuncionario .mbr-social-likes {
    text-align: center;
  }
}

.mob-style-ContenedorFuncionario input,
.mob-style-ContenedorFuncionario textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  min-height: 3rem;
  padding: 20px 10px 20px 0px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
}
.mob-style-ContenedorFuncionario input:focus,
.mob-style-ContenedorFuncionario textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}

.mob-style-ContenedorFuncionario input::-webkit-input-placeholder,
.mob-style-ContenedorFuncionario textarea::-webkit-input-placeholder {
  color: #6d7a8c;
}
.mob-style-ContenedorFuncionario input:-moz-placeholder,
.mob-style-ContenedorFuncionario textarea:-moz-placeholder {
  color: #6d7a8c;
}
.mob-style-ContenedorFuncionario .jq-selectbox li,
.mob-style-ContenedorFuncionario .jq-selectbox li {
  background-color: #ffffff;
}
.mob-style-ContenedorFuncionario .jq-selectbox li:hover,
.mob-style-ContenedorFuncionario .jq-selectbox li.selected {
  background-color: #ffffff;
}
.mob-style-ContenedorFuncionario .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.mob-style-ContenedorFuncionario .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.mob-style-ContenedorFuncionario .mbr-section-btn .btn-info {
  background-color: var(--slp-verde1) !important;
  color: white !important;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 10px 30px !important;
  border-radius: 5px !important;
  font-weight: 500;
  line-height: 1.92;
}
.mob-style-ContenedorFuncionario .mbr-section-btn .btn-info:hover,
.mob-style-ContenedorFuncionario .mbr-section-btn .btn-info:focus,
.mob-style-ContenedorFuncionario .mbr-section-btn .btn-info.focus,
.mob-style-ContenedorFuncionario .mbr-section-btn .btn-info.active {
  color: var(--slp-verde1) !important;
  background-color: #ffffff !important;
}
.mob-style-ContenedorFuncionario .team-left-inner .featured-wrapper img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 0 50px rgba(79, 110, 173, 0.1);
  border-radius: 10px;
}
.mob-style-ContenedorFuncionario .team-left-inner .team-info-block {
  padding: 30px;
  border-bottom: 1px solid #e5e8ef;
}
.mob-style-ContenedorFuncionario .team-left-inner .team-info-block .team-title {
  color: #130947;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}
.mob-style-ContenedorFuncionario .team-left-inner .team-info-block .team-designation {
  color: #4f87fb;
  line-height: 1.625;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0;
}
.mob-style-ContenedorFuncionario .team-left-inner .team-info-block .short-description p {
  line-height: 1.5;
  font-weight: 400;
  color: #6d7a8c;
}
.mob-style-ContenedorFuncionario .team-left-inner .team-info-block .personal-title {
  color: #4f87fb;
  font-size: 22px !important;
}
.mob-style-ContenedorFuncionario .team-left-inner .team-info-block .single-team-info {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 30px;
  line-height: 1.5;
}
.mob-style-ContenedorFuncionario .team-left-inner .team-info-block .single-team-info label {
  display: inline-block;
  width: 110px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.mob-style-ContenedorFuncionario .team-left-inner .team-info-block .display-7 {
  font-size: 24px;
}
.mob-style-ContenedorFuncionario .team-left-inner .team-info-block .display-4 {
  font-size: 16px;
}
.mob-style-ContenedorFuncionario .team-left-inner .team-info-block .social span {
  font-size: 1.1rem;
  padding: 17px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  border-radius: 4px;
  color: #073914;
  margin-right: 10px;
}
.mob-style-ContenedorFuncionario .team-left-inner .team-info-block .social span:hover {
  background-color: #073914;
  color: #ffffff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.mob-style-ContenedorFuncionario .team-left-inner .team-info-block:last-child {
  border: none;
}
.mob-style-ContenedorFuncionario .entry-content .text-box {
  padding: 0rem;
}
.mob-style-ContenedorFuncionario .entry-content .text-box .display-4 {
  font-size: 16px;
}
.mob-style-ContenedorFuncionario .entry-content .text-box .card-title {
  color: #130947;
  margin-bottom: 30px;
  font-weight: 700;
}
.mob-style-ContenedorFuncionario .entry-content .text-box .card-title.display-5 {
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.mob-style-ContenedorFuncionario .entry-content .text-box .doc-descr {
  line-height: 1.5;
  /* text-align: justify; */
  margin: 10px 30px;
  color: #6d7a8c;

}
.mob-style-ContenedorFuncionario .entry-content .capabilities {
  margin-bottom: 35px;
}
.mob-style-ContenedorFuncionario .entry-content .capabilities-title {
  color: #130947;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
}
.mob-style-ContenedorFuncionario .entry-content .capabilities .list {
  list-style-type: none;
  line-height: 1.5;
  padding-left: 0;
  margin-bottom: 0;
}
.mob-style-ContenedorFuncionario .entry-content .capabilities .list li {
  margin-bottom: 15px;
  color: #6d7a8c;
}
.mob-style-ContenedorFuncionario .entry-content .capabilities .list li::before {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #073914;
  content: '';
  margin-right: 10px;
  vertical-align: middle;
}
.mob-style-ContenedorFuncionario .entry-content .capabilities-text {
  color: #6d7a8c;
  padding-top: 10px;
}
.mob-style-ContenedorFuncionario .entry-content .capabilities .display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.mob-style-ContenedorFuncionario .entry-content .contact {
  margin-top: 30px;
}
.mob-style-ContenedorFuncionario .entry-content .contact-title {
  margin-bottom: 30px;
  color: #130947;
}
.mob-style-ContenedorFuncionario .entry-content .contact .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  padding: 13px 22px;
  font-weight: 500;
  line-height: 2.3;
  letter-spacing: 1px;
  display: inline-flex;
}
.mob-style-ContenedorFuncionario .entry-content .contact .btn.display-4 {
  font-size: 10px;
}
.mob-style-ContenedorFuncionario .entry-content .contact .btn-black {
  background-color: #28303f !important;
  border-color: #28303f !important;
}
.mob-style-ContenedorFuncionario .entry-content .contact .btn-black:hover {
  background-color: var(--slp-verde1) !important;
  border-color: var(--slp-verde1) !important;
}
.mob-style-ContenedorFuncionario .progress_elements {
  margin: 0 auto;
  margin-top: 30px;
}
.mob-style-ContenedorFuncionario .progress_elements .title-wrap {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.mob-style-ContenedorFuncionario .progress_elements .title-wrap .progressbar-title p {
  margin-bottom: 0.5rem;
}
.mob-style-ContenedorFuncionario .progress_elements .progress {
  width: 100%;
  height: 6px;
  position: relative;
  overflow: visible;
}
.mob-style-ContenedorFuncionario .progress_elements .progress::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  top: -4px;
}
.mob-style-ContenedorFuncionario .progress_elements .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.mob-style-ContenedorFuncionario .team-left-inner .team-info-block .short-description p {
  text-align: left;
  color: var(--slp-oscuro);
}
.mob-style-ContenedorFuncionario .entry-content .capabilities .capabilities-text {
  color: var(--slp-oscuro);
}
.mob-style-ContenedorFuncionario .entry-content .capabilities .mbr-list .list li {
  color: #000000;
}

.mob-style-ContenedorFuncionario .social-row {
  text-align: left;
}
.mob-style-ContenedorFuncionario .social-row .soc-item {
  background-color: var(--slp-rosa);
}
.mob-style-ContenedorFuncionario .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: white;
  font-size: .8rem;
}
.mob-style-ContenedorFuncionario .social-row .soc-item:hover {
  background-color: var(--slp-verde2);
}
.mob-style-ContenedorFuncionario .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.mob-style-ContenedorFuncionario .mbr-section-title {
  color: #000000;
}
.mob-style-ContenedorFuncionario .card-title,
.mob-style-ContenedorFuncionario .social-row {
  color: #000000;
}
.mob-style-ContenedorFuncionario .mbr-role,
.mob-style-ContenedorFuncionario .social-row {
  color: #000000;
}
.mob-style-ContenedorFuncionario .mbr-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* Estilos importados del PluginTitulo */
.mob-style-Titulo-general{
  padding-top: 0;
  padding-bottom: 0;
}
/* ESTILOS DE TITULOS */
.mob-style-Titulo-general .nav-link {
  font-weight: 900;
}
.mob-style-Titulo-general .nav-item:not(:first-child)::before {
  background: var(--slp-rosa);
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transition: 0.3s;
}
.mbr-section-title {
  color: var(--slp-oscuro);
  font-style: normal;
  line-height: 1.3;
}
.slpColors-bg-v1 .fs-icon,
.slpColors-bg-v1 .mbr-section-title,
.slpColors-bg-v1 .mbr-section-subtitle,
.slpColors-bg-v2 .fs-icon,
.slpColors-bg-v2 .mbr-section-title,
.slpColors-bg-v2 .mbr-section-subtitle,
.slpColors-bg-v3 .fs-icon,
.slpColors-bg-v3 .mbr-section-title,
.slpColors-bg-v3 .mbr-section-subtitle,
.slpColors-bg-r1 .fs-icon,
.slpColors-bg-r1 .mbr-section-title,
.slpColors-bg-r1 .mbr-section-subtitle,
.slpColors-bg-oscuro .fs-icon,
.slpColors-bg-oscuro .mbr-section-title,
.slpColors-bg-oscuro .mbr-section-subtitle{
  color: white;
}
.mob-style-Titulo-general .mbr-section-title{
  display: none;
}
.mob-style-Titulo-general .mbr-section-title:not(:empty){
  display: inherit;
  padding-top: 3rem;
  margin-bottom: 0.5rem;
}
.green-line {
  position: relative;
  display: inline-block;
}
.green-line::after {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: -11px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 150px;
  height: 6px;
  background-color: var(--slp-verde1);
}
.slpColors-bg-v1 .green-line::after {
  background-color: var(--slp-verde3);
}
/* ESTILOS DE SUBTITULOS */
.mbr-section-subtitle {
  line-height: 1.3;
  color: var(--slp-gris1);
  padding-top: 1rem;
  font-size: 1.6rem;
}
.mob-style-Titulo-general .mbr-section-subtitle{
  display: none;
}
.mob-style-Titulo-general .mbr-section-subtitle:not(:empty) {
  display: inherit;
}

.modal .modal-backdrop{
  z-index: 1000 !important;
}
.modal .modal-dialog{
  z-index: 1001 !important;
}

.badge{
  max-height: 1.3rem;
}

.fs-icon {
  color: inherit;
  font-size: 1rem;
}
.fs-icon-xs {
  font-size: 0.5rem;
}
.fs-icon-small {
  font-size: 0.75rem;
}
.fs-icon-medium {
  font-size: 1.25rem;
}
.fs-icon-large {
  font-size: 1.5rem;
}
.fs-icon-huge {
  font-size: 4rem;
}

/* ESTLOS DE ENCABEZADOS */
h2.card-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  width: 65%;
  height: 3px;
  background-color: var(--slp-verde1);
  justify-self: anchor-center;
}

/* CALENDARIOS */
.calendar-day {
  border: 1px solid var(--slp-gris3);
  border-radius: 10px;
  display: block;
  text-align: center;
}
.calendar-day.selected {
  background-color: var(--slp-verde2);
  color: white;
}
.calendar-day.not-this-month {
  border: 1px solid var(--slp-gris3);
  background-color: var(--slp-gris3);
  color: var(--slp-gris2);
}
.calendar-day.empty {
  border: none;
}

.event-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.calendar-day.has-event {
  transition: all 0.3s;
  color: var(--slp-verde2);
  border: var(--slp-verde2) solid 1px;
  position: relative;
}
.calendar-day.has-event:hover {
  background-color: var(--slp-verde2);
  border: var(--slp-verde1) solid 1px;
  color: white;
}
.calendar-day.has-event[aria-expanded="true"] {
  background-color: var(--slp-verde2);
  color: white;
}
.calendar-day.has-event::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--slp-verde2);
}
.calendar-day.has-event:hover::after {
  background-color: white;
  border: white;
}
.calendar-day.has-event[aria-expanded="true"]::after {
  background-color: white;
  border: white;
}

.calendar-day.today {
  color: var(--slp-verde1);
  text-decoration: underline;
  font-weight: bold;
}

/* Animación del mensaje de Seleccionar Día */
.hide-top {
  transition: all 0.3s ease-in-out;
  margin-top: 0rem !important;
}
.show ~ .hide-top,
.collapsing ~ .hide-top {
  margin-top: -100rem !important;
}

/* EVENTOS */
.slp-carousel .card,
.eventos-list .card {
  transition: all 0.3s;
  aspect-ratio: 1;
}
.slp-carousel .card:hover,
.eventos-list .card:hover {
  transform: scale(1.02);
}
.slp-carousel .places-list .carousel-item {
  flex: 0 0 calc(100% / 1);
}
/* .slp-carousel .programas-list .carousel-item, */
.slp-carousel .eventos-list .carousel-item {
  flex: 0 0 calc(100% / 2);
}
@media screen and (min-width: 576px) {
  .slp-carousel .carousel-inner {
    display: flex;
    margin-inline: auto;
    padding: 0.5em 0.25em;
    overflow: hidden;
  }
  .slp-carousel .carousel-item,
  .slp-carousel .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
  .slp-carousel .places-list .carousel-item{
    flex: 0 0 calc(100% / 2);
  }
  .slp-carousel .eventos-list .carousel-item {
    flex: 0 0 calc(100% / 3);
  }
}
@media screen and (min-width: 1024px) {
  .slp-carousel .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 4);
  }
  .slp-carousel .programas-list .carousel-item,
  .slp-carousel .places-list .carousel-item,
  .slp-carousel .eventos-list .carousel-item {
    flex: 0 0 calc(100% / 4);
  }
}

.slp-carousel .carousel-control-prev,
.slp-carousel .carousel-control-next {
  transition: all 0.3s;
  width: 3rem;
  height: 100%;
  background-color: var(--slp-oscuro);
  color: white;
  opacity: 25%;
  top: 0;
}
.slp-carousel .carousel-control-prev:hover,
.slp-carousel .carousel-control-next:hover {
  /* background-color: var(--slp-gris2);
  color: white; */
  opacity: 75%;
}
/* Abajo de 576px */
@media screen and (max-width: 575px) {
  .slp-carousel .carousel-control-prev,
  .slp-carousel .carousel-control-next {
    width: 2rem;
    opacity: 40%;
  }
}
.places-list .place-item,
.programas-list .programa-item,
.eventos-list .evento-item {
  display: block;
  position: relative;
  margin-right: 0;
}
@media (min-width: 1200px) {
  .programas-list .programa-item,
  .eventos-list .evento-item.col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
}

.slp-carousel .carousel-item.cat-item {
  transition: all 0.3s;
  flex: 0 0 calc(100% / 2)
}
.slp-carousel .carousel-item.cat-item:hover {
  transform: scale(1.02);
}

@media (min-width: 991px) {
  .slp-carousel .carousel-item.cat-item {
    flex: 0 0 calc(100% / 4);
  }
}
@media (min-width: 1499px) {
  .slp-carousel .carousel-item.cat-item {
    flex: 0 0 calc(100% / 5);
  }
}

@media (max-width: 576px) {
  .slp-carousel .carousel-item.cat-item {
    aspect-ratio: 1/1;
  }
}

.programa-item .rounded-pill{
  right: 10px;
  top: 10px;
}
/* .slp-carousel .evento-item .rounded-pill, */
.evento-item .rounded-pill {
  right: 10px;
  top: 10px;
  width: 20%;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .eventos-list .evento-item .rounded-pill {
    top: auto;
    bottom: calc(100% + 1rem);
    width: 2.5rem;
    height: 2.5rem;
  }
}

.social-links a.btn-social {
  margin: 0;
  align-content: center;
  display: grid;
}
.social-links a.btn-social span {
  font-size: 1.5rem;
  align-content: center;
  aspect-ratio: 1/1;
  height: 25px;
}

.data-list li a {
  position: relative;
  color: var(--slp-verde1) !important;
}
.data-list li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--slp-rosa);
  transition: 0.4s all;
}
.data-list li a:hover {
  color: var(--slp-rosa) !important;
  line-height: inherit !important;
}
.data-list li a:hover:before {
  width: 100%;
}

.carousel .carousel-indicators button {
  aspect-ratio: 1/1;
  height: 0.5rem;
  width: auto;
  border-radius: 100%;
  background-color: var(--slp-verde3);
}
@media (min-width: 576px) {
  .carousel .carousel-indicators button {
    width: 4rem;
    border-radius: 5% / 50%;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  background-color: var(--slp-oscuro);
}

.active>.page-link, .page-link.active {
  color: white;
  background-color: var(--slp-verde1);
  border-color: var(--slp-verde1);
}
.page-link {
  color: var(--slp-verde1);
}
.page-link:hover {
  color: var(--slp-verde1);
  border-color: var(--slp-verde1);
}
.active>.page-link, .page-link.active:hover {
  color: white;
  background-color: var(--slp-verde1);
  border-color: var(--slp-verde1);
}