@keyframes efecto-pulsar {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes efecto-alumbrar {
  0% {
    -moz-box-shadow: 0px 0px 25px #9D2449;
    -webkit-box-shadow: 0px 0px 25px #9D2449;
    box-shadow: 0px 0px 25px #9D2449;
  }
  50% {    
    -moz-box-shadow: 0px 0px 10px #9D2449;
    -webkit-box-shadow: 0px 0px 10px #9D2449;
    box-shadow: 0px 0px 10px #9D2449;
  }
  100% {
    -moz-box-shadow: 0px 0px 22px #9D2449;
    -webkit-box-shadow: 0px 0px 22px #9D2449;
    box-shadow: 0px 0px 22px #9D2449;
  }
}

* {
  scrollbar-color: #525965 #525965;
  scrollbar-width: thin;
}

.comunicados-login{
  display: none;
}

.margen-login{
  margin-top: 0;
}

@media (min-width: 576px) {}
@media (min-width: 768px) { 
  .comunicados-login{
    display: block;
  }
}
@media (min-width: 992px) {
  .margen-login{
    margin-top: 13%;
  }
}
@media (min-width: 1200px) { ... }

.input-alumbrar{
  animation: efecto-alumbrar 1.5s infinite;
}

.pulsar {
  display: inline-block;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 0;
}

.pulsar:after {
  content: "";
  position: absolute;
  opacity: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: efecto-pulsar 1.5s infinite;
}

.en-construccion{
  background-image: url('../img/en_construccion.jpg');
  background-position: center center;
  background-size: contain;
  width: 100%;
  height: 100%;
}

.loader-background {
  position: absolute;
  overflow: hidden;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1000%;
  z-index: 10000;
  background-color: #333;
  opacity: 0.8;
}

.loader {
  height: 30px;
  width: 550px;
  z-index: 999;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.loader--dot {
  animation-name: loader;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  height: 30px;
  width: 30px;
  left: 20%;
  border-radius: 100%;
  background-color: transparent;
  position: absolute;
  border: 1px solid white;
}

.loader--dot:first-child {
  background-color: #9D2449;
  animation-delay: 0.5s;
}
.loader--dot:nth-child(2) {
  background-color: #BF2C59;
  animation-delay: 0.4s;
}
.loader--dot:nth-child(3) {
  background-color: #B38E5D;
  animation-delay: 0.3s;
}
.loader--dot:nth-child(4) {
  background-color: #DEB16A;
  animation-delay: 0.2s;
}
.loader--dot:nth-child(5) {
  background-color: #1F5246;
  animation-delay: 0.1s;
}
.loader--dot:nth-child(6) {
  background-color: #13322B;
  animation-delay: 0s;
}
.loader--text {
  position: absolute;
  top: 200%;
  left: 0;
  right: 0;
  width: 4rem;
  margin: auto;
}
.loader--text:after {
  content: "Cargando";
  font-weight: bold;
  color: white;
  animation-name: loading-text;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes loader {
  15% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(230px);
  }
  65% {
    transform: translateX(230px);
  }
  95% {
    transform: translateX(0);
  }
}
@keyframes loading-text {
  0% {
    content: "Cargando";
  }
  25% {
    content: "Cargando.";
  }
  50% {
    content: "Cargando..";
  }
  75% {
    content: "Cargando...";
  }
}

.fondo-rojo{
   background-color: #9D2449;
}

.fondo-rojo-o{
   background-color: rgba(157, 36, 73, 0.65);
}

.fondo-dorado{ 
   background-color: #B38E5D;
}

.fondo-dorado-o{ 
   background-color: rgba(188, 150, 90, 0.65);
}

.fondo-verde{
   background-color: #13322B;
}

.fondo-verde-o{
   background-color: rgba(19, 50, 43, 0.65);
}

.fondo-negro{
   background-color: #2d2d2d;
}

.fondo-negro-o{
  background-color: rgba(40, 40, 40, 0.65);
}

.fondo-blanco-o{
  background-color: rgba(180, 180, 180, 0.45);
}

.fondo-gradienteo-dorado{
  background: rgba(179,142,93,1);
  background: -moz-radial-gradient(center, ellipse cover, rgba(179,142,93,1) 0%, rgba(138,111,75,1) 44%, rgba(107,84,55,1) 100%);
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(179,142,93,1)), color-stop(44%, rgba(138,111,75,1)), color-stop(100%, rgba(107,84,55,1)));
  background: -webkit-radial-gradient(center, ellipse cover, rgba(179,142,93,1) 0%, rgba(138,111,75,1) 44%, rgba(107,84,55,1) 100%);
  background: -o-radial-gradient(center, ellipse cover, rgba(179,142,93,1) 0%, rgba(138,111,75,1) 44%, rgba(107,84,55,1) 100%);
  background: -ms-radial-gradient(center, ellipse cover, rgba(179,142,93,1) 0%, rgba(138,111,75,1) 44%, rgba(107,84,55,1) 100%);
  background: radial-gradient(ellipse at center, rgba(179,142,93,1) 0%, rgba(138,111,75,1) 44%, rgba(107,84,55,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b38e5d', endColorstr='#6b5437', GradientType=1 );
}

.fondo-gradiente-rojo{
  background: rgba(157,36,72,1);
  background: -moz-linear-gradient(left, rgba(157,36,72,1) 0%, rgba(99,26,49,1) 44%, rgba(66,15,31,1) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(157,36,72,1)), color-stop(44%, rgba(99,26,49,1)), color-stop(100%, rgba(66,15,31,1)));
  background: -webkit-linear-gradient(left, rgba(157,36,72,1) 0%, rgba(99,26,49,1) 44%, rgba(66,15,31,1) 100%);
  background: -o-linear-gradient(left, rgba(157,36,72,1) 0%, rgba(99,26,49,1) 44%, rgba(66,15,31,1) 100%);
  background: -ms-linear-gradient(left, rgba(157,36,72,1) 0%, rgba(99,26,49,1) 44%, rgba(66,15,31,1) 100%);
  background: linear-gradient(to right, rgba(157,36,72,1) 0%, rgba(99,26,49,1) 44%, rgba(66,15,31,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9d2448', endColorstr='#420f1f', GradientType=1 );
}

.fondo-gradienteo-rojo{
  background: rgba(157,36,72,1);
  background: -moz-radial-gradient(center, ellipse cover, rgba(157,36,72,1) 0%, rgba(128,24,55,1) 44%, rgba(97,23,48,1) 100%);
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(157,36,72,1)), color-stop(44%, rgba(128,24,55,1)), color-stop(100%, rgba(97,23,48,1)));
  background: -webkit-radial-gradient(center, ellipse cover, rgba(157,36,72,1) 0%, rgba(128,24,55,1) 44%, rgba(97,23,48,1) 100%);
  background: -o-radial-gradient(center, ellipse cover, rgba(157,36,72,1) 0%, rgba(128,24,55,1) 44%, rgba(97,23,48,1) 100%);
  background: -ms-radial-gradient(center, ellipse cover, rgba(157,36,72,1) 0%, rgba(128,24,55,1) 44%, rgba(97,23,48,1) 100%);
  background: radial-gradient(ellipse at center, rgba(157,36,72,1) 0%, rgba(128,24,55,1) 44%, rgba(97,23,48,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9d2448', endColorstr='#611730', GradientType=1 );
}

.fondo-gradienteh-rojo {
  background: rgba(71,0,12,1);
  background: -moz-linear-gradient(left, rgba(71,0,12,1) 0%, rgba(41,1,1,1) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(71,0,12,1)), color-stop(100%, rgba(41,1,1,1)));
  background: -webkit-linear-gradient(left, rgba(71,0,12,1) 0%, rgba(41,1,1,1) 100%);
  background: -o-linear-gradient(left, rgba(71,0,12,1) 0%, rgba(41,1,1,1) 100%);
  background: -ms-linear-gradient(left, rgba(71,0,12,1) 0%, rgba(41,1,1,1) 100%);
  background: linear-gradient(to right, rgba(71,0,12,1) 0%, rgba(41,1,1,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47000c', endColorstr='#290101', GradientType=1 );
}

.footer-mapa{  
   background-color: #212529;
}

.footer-aviso{
   color: #949da7;
   font-size: 12px;
}

.texto-rojo{
   color: #9D2449 !important;
}

.texto-dorado{ 
   color: #B38E5D !important;
}

.texto-verde{
   color: #13322B !important;
}

.texto-verde-o{
   color: #0C231E !important;
}

.borde-rojo{
   border-color: #9D2449;
}

.borde-dorado{ 
   border-color: #B38E5D;
}

.borde-grueso{
   border-width: 0.3em;
   border-radius: 5em;
}

.boton-rojo{
   color: white;
   background-color: #9D2449;
   border-color: #9D2449;
}

.boton-dorado{ 
   color: white;
   background-color: #B38E5D;
   border-color: #B38E5D;
}

.boton-verde{
   color: white;
   background-color: #13322B;
   border-color: #13322B;
}

.boton-rojo:hover{
   background-color: #BF2C59;
   border-color: #BF2C59;
}

.boton-dorado:hover{ 
   background-color: #DEB16A;
   border-color: #DEB16A;
}

.boton-verde:hover{
   background-color: #1F5246;
   border-color: #1F5246;
}

.boton-bordes-rojos{
   color: #9D2449;
   border-color: #9D2449;
}

.boton-bordes-rojos:hover{
   color: #FFF;
   background-color: #9D2449;
   border-color: #9D2449;
}

.show>.boton-bordes-rojos.dropdown-toggle{
  background-color: #9D2449;
  color: #FFF;
}

.boton-bordes-dorados{
   color: #B38E5D;
   border-color: #B38E5D;
}

.boton-bordes-dorados:hover{
   color: #FFF;
   background-color: #B38E5D;
   border-color: #B38E5D;
}

.show>.boton-bordes-dorados.dropdown-toggle{
  background-color: #B38E5D;
  color: #FFF;
}

.boton-bordes-verdes{
   color: #13322B;
   border-color: #13322B;
}

.boton-bordes-verdes:hover{
   color: #FFF;
   background-color: #13322B;
   border-color: #13322B;
}

.show>.boton-bordes-verdes.dropdown-toggle{
  background-color: #13322B;
  color: #FFF;
}

.grupo-rojo{
   width: 100%;
   background-color: #9D2449;
   border-color: #9D2449;
   border-radius: 0.5em;
}

.grupo-dorado{ 
   width: 100%;
   background-color: #B38E5D;
   border-color: #B38E5D;
   border-radius: 0.5em;
}

.grupo-verde{
   width: 100%;
   background-color: #13322B;
   border-color: #13322B;   
   border-radius: 0.5em;
}

.grupo-rojo:hover{
   background-color: #9D2449;
   border-color: #9D2449;
   box-shadow: inset 0 0 20px #BF2C59, 0 0 20px #BF2C59;
}

.grupo-dorado:hover{
   background-color: #B38E5D;
   border-color: #B38E5D;
   box-shadow: inset 0 0 20px #DEB16A, 0 0 20px #DEB16A;
}

.grupo-verde:hover{
   background-color: #1F5246;
   border-color: #1F5246;
   box-shadow: inset 0 0 20px #1F5246, 0 0 20px #1F5246;
}

.boton-en-grupo {
   background-color: transparent;
   border-color: transparent;
}

.boton-en-grupo:focus{
   outline: none;
   box-shadow: none;
}

.boton-en-grupo:active{
   outline: none;
   box-shadow: none;
}

.boton-grupo-secundario{
   flex: 1 1 20%;
}

a {
   color: #9D2449;
}

a:hover {
   color: #B38E5D;
}

.nav-link.active {
  color: #B38E5D;
  font-weight: 750;
}

.nav-link.active:hover {
  font-weight: 800;
}

.sticky-top .nav-link{
  color: #dee2e6;
}

.sticky-top .nav-link:hover{
  color: #dddd;
  font-weight: 610;
}

.sticky-top .nav-link.active{
  color: #FFF;
}

input:active, input:focus, select:active, select:focus{
  outline: 0 !important;
  border-color: #9D2449 !important;
  box-shadow: 0 0 0 0.2rem rgba(157, 36, 73, 0.25) !important;
}

.nav-pills .nav-link {
  color: #B38E5D;
  font-weight: 600;
  background-color: rgba(255,255,255,0.5);
  border: 1px solid;
  border-color: #B38E5D;
  margin-top: 1px;
  margin-bottom: 1px;  
  padding-top: 15px;
  padding-bottom: 15px;
}

.nav-pills .nav-link.active {
  color: white;
  background-color: rgba(179, 142, 93, 0.6);
  font-weight: 800;
}

.nav-pills .nav-link:hover {  
  -webkit-box-shadow: 1px 1px 1px 1px #B38E5D;
  -moz-box-shadow: 1px 1px 1px 1px #B38E5D;
  box-shadow: 1px 1px 1px 1px #B38E5D;
  background-color: transparent;
  color: #9D2449;
}

.nav-pills .nav-link.texto-rojo:hover {  
  -webkit-box-shadow: 0px 0px 10px 2px #9D2449;
  -moz-box-shadow: 0px 0px 10px 2px #9D2449;
  box-shadow: 0px 0px 10px 2px #9D2449;
  background-color: transparent;
  color: #9D2449;
}

.nav-pills .nav-link.active:hover {
  color: #B38E5D;
}

.sr-only {
   position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0,0,0,0);
   border: 0;
}

.back-to-top{
   position: fixed; 
   top: 90vh;
   right: 25px;
   display: none;
   font-size: 42px;
   color: #9D2449;
   z-index: 10;
}

.back-to-top:hover{
   text-decoration: none;
   color: #000;
}

/* Estilo del Scrollbar */

::-webkit-scrollbar {
   width: 5px;
   height: 7px;
}
::-webkit-scrollbar-button {
   width: 0px;
   height: 0px;
}
::-webkit-scrollbar-thumb {
   background: #525965;
   border: 0px none #ffffff;
   border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
   background: #525965;
}
::-webkit-scrollbar-thumb:active {
   background: #525965;
}
::-webkit-scrollbar-track {
   background: transparent;
   border: 0px none #ffffff;
   border-radius: 50px;
}
::-webkit-scrollbar-track:hover {
   background: transparent;
}
::-webkit-scrollbar-track:active {
   background: transparent;
}
::-webkit-scrollbar-corner {
   background: transparent;
}

.select2-container--default .select2-selection--single {
   display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    position: relative;
}

.custom-select:invalid + .select2 .select2-selection{
   border-color: #dc3545!important;
}
.custom-select:valid + .select2 .select2-selection{
   border-color: #28a745!important;
}

.fondo-1 {
  background-image: url('../img/cuadros.png');
  background-position: center;
  background-attachment: fixed;
  background-repeat: repeat;
  min-height: 100vh;
}

.fondo-2 {
  background-image: url('../img/cubos.png');
  background-position: center;
  background-attachment: fixed;
  background-repeat: repeat;
  min-height: 100vh;
}

.fondo-3 {
  /* background-image: url('../img/favicon.ico'); */
  background-image: url('../img/favicon_blanco.jpg'); /* Para veda electoral */
  background-position: center;
  background-attachment: fixed;
  background-repeat: repeat;
  min-height: 100vh;
}

.tooltip > .tooltip-inner {
  background-color: #9D2449;
}

.bs-tooltip-left .arrow::before{
  border-left-color: #fff;
}

.bs-tooltip-right .arrow::before{
  border-right-color: #fff;
}

.bs-tooltip-bottom .arrow::before{
  border-bottom-color: #fff;
}

.bs-tooltip-top .arrow::before{
  border-top-color: #fff;
}

/* Imagen de perfil */
.picture-container{
  cursor: pointer;
}

.picture-src {
  border-radius: 10px;
  transition: all 0.1s;
  -webkit-transition: all 0.1s;
}

.picture-src {
  width: 100%;
}

.sticky-top{
  margin: 0 !important;
  top: 0;
  left: 20%;
  position: fixed;
  text-align: center;
  background-color: rgba(5,5,5,0.5);
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  width: 68%;
}

@media screen and (min-width: 768px) {
  .page-wrapper.toggled .page-content .sticky-top {
    left:20%;
  }
}

@media screen and (max-width: 1050px) {
  .page-wrapper.toggled .page-content .sticky-top {
    left: auto;
    width: 50%;
    right: 0;
  }
}

.dropdown-item.active, .dropdown-item:active{
  background-color: #B38E5D;
}

.dropdown-item.active {
  background-color: #9D2449;
}

select[multiple]:not(:focus) option:checked {
  background: linear-gradient(#c7b295, #c7b295);
}

select:focus option:checked {
  background-color: #9D2449;
  color: #FFFFFF;
}

select[multiple]:focus option:checked {
  background: linear-gradient(#9D2449, #9D2449);
  color: #FFFFFF;
}

select:focus option:hover {
  background-color: #c7b295;
}

select[multiple]:focus option:hover{
  background-color: #c7b295;
  background: linear-gradient(#c7b295, #c7b295);
}

.page-link{
  color: #9D2449;
}

.page-link:hover{
  color: #B38E5D;
}

.page-item.active .page-link{
  background-color: #c7b295;
  border-color: #c7b295;
}

.estadisticas{
  cursor: pointer;
}

.estadisticas:hover {  
   box-shadow: inset 0 0 10px #BF2C59, 0 0 10px #BF2C59 !important;
}

td.titulos-lote {
  vertical-align: middle;
  cursor: pointer;
  color: #9D2449;
  font-weight: 600;
  font-size: 18px;
}

td.titulos-lote > i:before {
  font-family: "Font Awesome 5 Free";
  content: "\f055";
}

tr.shown td.titulos-lote > i:before {
  color: #B38E5D;
  font-family: "Font Awesome 5 Free";
  content: "\f056";
}

.shown.dt-detalles{
  background-color: rgba(157, 36, 73, 0.35);
}

.shown.dt-detalles:hover{
  background-color: rgba(157, 36, 73, 0.50) !important;
  color: #FFF;
}

.shown.dt-detalles a:hover{
  color: #FFF;
  font-weight: 450;
}

.dt-contenido-detalle thead tr:hover{
  color: #FFF !important;
}

.dt-contenido-detalle tbody tr:hover{
  background-color: rgba(157, 36, 73, 0.35) !important;
  color: #FFF !important;
}

.dt-contenido-detalle tbody tr a:hover{
  color: #FFF !important;
  font-weight: 450;
}


.titulos-lote > i{
  transition: all 0.2s ease-in-out;
}

.titulos-lote > i:hover{
  transform: scale(1.2);
}

.form-control.cargando{
  border-color: #17a2b8 !important;
  padding-right: calc(1.5em + .75rem);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M440.65 12.57l4 82.77A247.16 247.16 0 0 0 255.83 8C134.73 8 33.91 94.92 12.29 209.82A12 12 0 0 0 24.09 224h49.05a12 12 0 0 0 11.67-9.26 175.91 175.91 0 0 1 317-56.94l-101.46-4.86a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12H500a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12h-47.37a12 12 0 0 0-11.98 12.57zM255.83 432a175.61 175.61 0 0 1-146-77.8l101.8 4.87a12 12 0 0 0 12.57-12v-47.4a12 12 0 0 0-12-12H12a12 12 0 0 0-12 12V500a12 12 0 0 0 12 12h47.35a12 12 0 0 0 12-12.6l-4.15-82.57A247.17 247.17 0 0 0 255.83 504c121.11 0 221.93-86.92 243.55-201.82a12 12 0 0 0-11.8-14.18h-49.05a12 12 0 0 0-11.67 9.26A175.86 175.86 0 0 1 255.83 432z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.form-control.observaciones{
  border-color: #ffc107!important;
  padding-right: calc(1.5em + .75rem);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.custom-control-label::before{
  border: rgb(148 117 127) solid 1px;
}

.custom-control-input:checked~.custom-control-label::before{
  color: #fff;
  border-color: #9d2449f0;
  background-color: #9d2449;
  border: rgb(148 117 127) solid 1px;
}

.custom-control-input:focus~.custom-control-label::before{
  box-shadow: 0 0 0 0.2rem #b38e5dd1;
}
.custom-control-input:not(:disabled):active~.custom-control-label::before{
  color: #fff;
  border-color: #9d2449f0;
  background-color: #9d2449;
}

#fondo-profesiones{
  background-color: #222;
  background-image: url('../img/fondo1_oficial.jpg');
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  width: 100%;
  height: 90%;
}

#fondo-titulos{
  background-color: #222;
  background-image: url('../img/fondo2.jpg');
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.list-group-item.active{
  border-color: #9d2449f0;
  background-color: #9d2449;
}

.list-group-item-action:hover{
  background-color: rgba(157, 36, 73, 0.65);
  color: white;
}

.list-group-item-action.active:hover{
  border-color: #9d2449f0;
  background-color: #9d2449;
}

.sticky-login{
  position: fixed !important;
  top: 50;
  right: 20;
}

#fondo-login{
  background-image: url('../img/bussinesspeople.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%; 
  height: 100%;
}

.menu-active{
  color: white;
  text-shadow:0px 0px 10px rgba(188, 150, 90, 0.65);
  background-color: rgba( 179, 142, 93, 0.9 );
}
.menu-active span, .menu-active i{
  color: white;
}

.btn-group-vertical>.btn.active, .btn-group-vertical>.btn:active, .btn-group-vertical>.btn:focus, .btn-group>.btn.active, .btn-group>.btn:active, .btn-group>.btn:focus{
  background-color: #B38E5D !important;
  border-color: #B38E5D !important;
  color:  white;
}

.breadcrumb-item.active{
  color: #B38E5D;
}

.breadcrumb-item+.breadcrumb-item::before{
  color: #333;
  content: "/";
}

.imagen-perfil{
  border: 3px solid rgb(33,33,33);
  border-radius: 20px;
}

.imagen-perfil-movil{
  border: 3px solid rgb(33,33,33);
  border-radius: 20px;
}
.txt_letraCafeAlto{
color: #B38E5D;
}

/* Para veda electoral */
/* html {
  filter: grayscale(100) !important;
} */