html{
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}
body{
  margin: 0;
}
input, select, textarea{
  position: relative;
  color: white;
  font-size: 15px;
  width: 100%;
  outline: none;
  background: rgb(26,27,27,0.8);
  border: 1px solid rgb(38,37,37);
  padding: 13px;
  transition-duration: 0.25s;
  transition-property: border-color;
}
input:focus{
  border: 1px solid rgb(48,47,47);
}
select:focus{
  border: 1px solid rgb(150,157,157);
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px rgb(26,27,27) inset !important;
  box-shadow: 0 0 0px 1000px rgb(26,27,27) inset !important;
  border: 1px solid rgb(38,37,37) !important;
  -webkit-text-fill-color: white !important;
}

a{
  text-decoration: none;
}

input[type="date"]::-webkit-calendar-picker-indicator{
    bottom: 0;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    opacity: 0;
    -webkit-appearance: none;
    /* Esto hace que todo el input sea clickeable y no solo el icono */
}

textarea{
  resize: none;
}

button{
  outline: none !important;
}
/* carrucel de imagenes -----------------------------*/
/* ── Carrusel ── */
.carrucel-wrapper {
  width: 100%;
  max-width: 600px;
  position: relative;
}
.carrucel {
  overflow: hidden;
  border-radius: 0px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.carrucel:active { 
  cursor: grabbing; 
}
.carrucel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.carrucel-track.carrucel-no-transition { 
  transition: none; 
}

.carrucel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.carrucel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
/* ── Puntos ── */
.carrucel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
}

.carrucel-dot {
  width: 5px !important;
  height: 5px !important;
  min-width: 5px !important;
  border-radius: 50%;
  background: rgb(255,255,255,0.4);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}

.carrucel-dot.active {
  background: rgb(255,255,255,0.8);
  transform: scale(1.4);
}
/* animacion cargando --------------------------------*/
.spinner {
  position: relative;
  width: 40px;
  height: 40px;
  animation: spin 1.38s linear infinite;
}

.spinner span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  left: 50%;
  top: 50%;
  transform-origin: 0 0;
}

/* El punto 1 es el más opaco (cabeza), el 12 el más transparente (cola) */
.spinner span:nth-child(1)  { transform: rotate(0deg)   translateX(15px) translateY(-50%); opacity: 0.04; }
.spinner span:nth-child(2)  { transform: rotate(30deg)  translateX(15px) translateY(-50%); opacity: 0.08; }
.spinner span:nth-child(3)  { transform: rotate(60deg)  translateX(15px) translateY(-50%); opacity: 0.13; }
.spinner span:nth-child(4)  { transform: rotate(90deg)  translateX(15px) translateY(-50%); opacity: 0.18; }
.spinner span:nth-child(5)  { transform: rotate(120deg) translateX(15px) translateY(-50%); opacity: 0.25; }
.spinner span:nth-child(6)  { transform: rotate(150deg) translateX(15px) translateY(-50%); opacity: 0.33; }
.spinner span:nth-child(7)  { transform: rotate(180deg) translateX(15px) translateY(-50%); opacity: 0.42; }
.spinner span:nth-child(8)  { transform: rotate(210deg) translateX(15px) translateY(-50%); opacity: 0.58; }
.spinner span:nth-child(9)  { transform: rotate(240deg) translateX(15px) translateY(-50%); opacity: 0.67; }
.spinner span:nth-child(10) { transform: rotate(270deg) translateX(15px) translateY(-50%); opacity: 0.75; }
.spinner span:nth-child(11) { transform: rotate(300deg) translateX(15px) translateY(-50%); opacity: 0.92; }
.spinner span:nth-child(12) { transform: rotate(330deg) translateX(15px) translateY(-50%); opacity: 1;    }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
  /*--- fin animacion ------------------------------------*/
.efecto-click-1{
  transform: scale(1);
  transition: 0.2s;
}
.efecto-click-1:active{
  transform: scale(0.93);
  transition: 0.1s;
}
/* Estilo 3: Checkbox con animación de rebote */
.card {
  background: #1a1d24;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 280px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.card-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
/* Checkbox personalizado */
.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}

.check-item input[type="checkbox"] {
  display: none;
}

.check-box {
  width: 25px;
  height: 25px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.check-box svg {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Checked state */
.check-item input:checked + .check-box {
  background: rgb(0,134,191);
  border-color: rgb(0,134,191);
}

.check-item input:checked + .check-box svg {
  opacity: 1;
  transform: scale(1.2);
}

/* Hover */
.check-item:hover .check-box {
  border-color: rgba(255,255,255,0.3);
}

.check-item input:checked ~ .check-label {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.check-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}

.check-item:hover .check-label {
  color: rgba(255,255,255,0.75);
}

/* -------------------- fin checkbox ------------------*/
.elemento-slow-show{
  opacity: 1;
  transition-duration: 0.3s;
  transition-property: opacity;
}
.elemento-slow-hidden{
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: opacity;
}

.opaco-gradual-0{
  opacity: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}
.opaco-gradual-1{
  opacity: 1;
  transition-duration: 0.2s;
  transition-property: opacity;
}

.iconos{
  margin-top: -2px;
}

.alerta-emergente{
  z-index: 7;
  position: absolute; 
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 15px 10px 15px;
  box-shadow: 0px 1px 16px -2px rgba(0,0,0,0.79);
  -webkit-box-shadow: 0px 1px 16px -2px rgba(0,0,0,0.79);
  -moz-box-shadow: 0px 1px 16px -2px rgba(0,0,0,0.79);
}
.alerta-hidden{
  visibility: hidden;
  opacity: 0;
  top: 10px;
  transition-duration: 0.5s;
  transition-property: all;
}
.alerta-show{
  z-index: 5;
  visibility: visible;
  opacity: 1;
  top: 30px;
  transition-duration: 0.2s;
  transition-property: opacity, top;
}
.alerta-roja{
  background: rgb(239,58,68,0.6);
  backdrop-filter: blur(10px);
}

.gradiante-1{
  background: rgba(250,250,250,1);
background: -moz-linear-gradient(top, rgba(250,250,250,1) 0%, rgba(254,254,254,1) 41%, rgba(255,255,255,0.98) 46%, rgba(247,247,247,0.87) 80%, rgba(242,242,242,0.87) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(250,250,250,1)), color-stop(41%, rgba(254,254,254,1)), color-stop(46%, rgba(255,255,255,0.98)), color-stop(80%, rgba(247,247,247,0.87)), color-stop(100%, rgba(242,242,242,0.87)));
background: -webkit-linear-gradient(top, rgba(250,250,250,1) 0%, rgba(254,254,254,1) 41%, rgba(255,255,255,0.98) 46%, rgba(247,247,247,0.87) 80%, rgba(242,242,242,0.87) 100%);
background: -o-linear-gradient(top, rgba(250,250,250,1) 0%, rgba(254,254,254,1) 41%, rgba(255,255,255,0.98) 46%, rgba(247,247,247,0.87) 80%, rgba(242,242,242,0.87) 100%);
background: -ms-linear-gradient(top, rgba(250,250,250,1) 0%, rgba(254,254,254,1) 41%, rgba(255,255,255,0.98) 46%, rgba(247,247,247,0.87) 80%, rgba(242,242,242,0.87) 100%);
background: linear-gradient(to bottom, rgba(250,250,250,1) 0%, rgba(254,254,254,1) 41%, rgba(255,255,255,0.98) 46%, rgba(247,247,247,0.87) 80%, rgba(242,242,242,0.87) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#f2f2f2', GradientType=0 );
}
.panel-shw-1{
  -webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.1);
}
.panel-shw-2{
  -webkit-box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.15);
  box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.1);
}
.panel-shw-3{
  -webkit-box-shadow: 0px 1px 4px 1px rgba(0,0,0,0.22);
-moz-box-shadow: 0px 1px 4px 1px rgba(0,0,0,0.22);
box-shadow: 0px 1px 4px 1px rgba(0,0,0,0.22);
}
.panel-shw-4{
  -webkit-box-shadow: 0px 2px 7px 1px rgba(0,0,0,0.18) !important;
-moz-box-shadow: 0px 2px 7px 1px rgba(0,0,0,0.18) !important;
box-shadow: 0px 2px 7px 1px rgba(0,0,0,0.18) !important;
}
.panel-shw-fondos-black{
  box-shadow: 0px 2px 17px 2px rgba(0,0,0,0.30);
-webkit-box-shadow: 0px 2px 17px 2px rgba(0,0,0,0.30);
-moz-box-shadow: 0px 2px 17px 2px rgba(0,0,0,0.30);
}
.panel-shw-fondos-black-2{
  box-shadow: 0px 4px 8px 1px rgba(0,0,0,0.75);
-webkit-box-shadow: 0px 4px 8px 1px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 4px 8px 1px rgba(0,0,0,0.75);
}

.panel-transition-show-1{
  z-index: 2;
  position: absolute;
  opacity: 1;
  top: 0;
  visibility: visible;
  transform: scale(1);
  transition: 0.1s;
}

.panel-transition-hidden-1{
  z-index: 1;
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: 0.2s;
}

.cursor-mano{
  cursor: pointer;
}

.gira-0{
  transform: rotate(0deg);
  transition: all 0.2s linear;
}
.gira-180{
  transform: rotate(180deg);
  transition: all 0.2s linear;
}

.eje-z-1{
  z-index: 1;
}
.eje-z-2{
  z-index: 2;
}
.eje-z-3{
  z-index: 3;
}
.eje-z-4{
  z-index: 4;
}

.elemento-show{
  display: block !important;
}
.elemento-show-line{
  display: inline-block !important;
}
.elemento-hidden{
  display: none !important;
}

.posicion-re{
  position: relative;
}
.posicion-ab{
  position: absolute;
}

.mg-0 {
  margin: 0 !important;
}

.mg-t-0{
  margin-top: 0 !important;
}
.mg-t-2{
  margin-top: 2px !important;
}
.mg-t-5{
  margin-top: 5px !important;
}
.mg-t-10{
  margin-top: 10px !important;
}
.mg-t-15{
  margin-top: 15px !important;
}
.mg-t-20{
  margin-top: 20px !important;
}
.mg-t-25{
  margin-top: 25px !important;
}
.mg-t-30{
  margin-top: 30px !important;
}

.mg-r-0{
  margin-right: 0 !important;
}
.mg-r-5{
  margin-right: 5px !important;
}
.mg-r-10{
  margin-right: 10px !important;
}
.mg-r-15{
  margin-right: 15px !important;
}

.mg-b-0{
  margin-bottom: 0 !important;
}
.mg-b-2{
  margin-bottom: 2px !important;
}
.mg-b-5{
  margin-bottom: 5px !important;
}
.mg-b-10{
  margin-bottom: 10px !important;
}
.mg-b-15{
  margin-bottom: 15px !important;
}
.mg-b-20{
  margin-bottom: 20px !important;
}
.mg-b-25{
  margin-bottom: 25px !important;
}
.mg-b-30{
  margin-bottom: 30px !important;
}

.mg-l-0{
  margin-left: 0 !important;
}
.mg-l-5{
  margin-left: 5px !important;
}
.mg-l-10{
  margin-left: 10px !important;
}
.mg-l-15{
  margin-left: 15px !important;
}
.mg-l-20{
  margin-left: 20px !important;
}

.mg-10 {
  margin: 10px !important;
}

.pd-0 {
  padding: 0 !important;
}
.pd-2 {
  padding: 2px !important;
}
.pd-4 {
  padding: 4px !important;
}
.pd-5 {
  padding: 5px !important;
}
.pd-10 {
  padding: 10px !important;
}
.pd-15 {
  padding: 15px !important;
}
.pd-20 {
  padding: 20px !important;
}
.pd-30 {
  padding: 30px !important;
}
.pd-40 {
  padding: 40px !important;
}
.pd-50 {
  padding: 50px !important;
}

.pd-b-2 {
  padding-bottom: 2px !important;
}
.pd-b-3 {
  padding-bottom: 3px !important;
}
.pd-b-5 {
  padding-bottom: 5px !important;
}
.pd-b-10 {
  padding-bottom: 10px !important;
}
.pd-b-15 {
  padding-bottom: 15px !important;
}
.pd-b-20 {
  padding-bottom: 20px !important;
}
.pd-b-25 {
  padding-bottom: 25px !important;
}
.pd-b-30 {
  padding-bottom: 30px !important;
}
.pd-b-35 {
  padding-bottom: 35px !important;
}
.pd-b-40 {
  padding-bottom: 40px !important;
}
.pd-b-45 {
  padding-bottom: 45px !important;
}
.pd-b-50 {
  padding-bottom: 50px !important;
}
.pd-b-55 {
  padding-bottom: 55px !important;
}

.pd-t-0 {
  padding-top: 0px !important;
}
.pd-t-2 {
  padding-top: 2px !important;
}
.pd-t-3 {
  padding-top: 3px !important;
}
.pd-t-5 {
  padding-top: 5px !important;
}
.pd-t-10 {
  padding-top: 10px !important;
}
.pd-t-15 {
  padding-top: 15px !important;
}
.pd-t-20 {
  padding-top: 20px !important;
}
.pd-t-25 {
  padding-top: 25px !important;
}
.pd-t-30 {
  padding-top: 30px !important;
}
.pd-t-35 {
  padding-top: 35px !important;
}
.pd-t-40 {
  padding-top: 40px !important;
}
.pd-t-45 {
  padding-top: 45px !important;
}
.pd-t-50 {
  padding-top: 50px !important;
}
.pd-t-55 {
  padding-top: 55px !important;
}

.pd-r-0 {
  padding-right: 0px !important;
}
.pd-r-5 {
  padding-right: 5px !important;
}
.pd-r-10 {
  padding-right: 10px !important;
}
.pd-r-15 {
  padding-right: 15px !important;
}
.pd-r-20 {
  padding-right: 20px !important;
}
.pd-r-50 {
  padding-right: 50px !important;
}

.pd-l-0 {
  padding-left: 0px !important;
}
.pd-l-5 {
  padding-left: 5px !important;
}
.pd-l-10 {
  padding-left: 10px !important;
}
.pd-l-15 {
  padding-left: 15px !important;
}
.pd-l-20 {
  padding-left: 20px !important;
}

.borde-rad-3{
  border-radius: 3px;
}
.borde-rad-5{
  border-radius: 5px;
}
.borde-rad-10{
  border-radius: 10px;
}
.borde-rad-15{
  border-radius: 15px;
}
.borde-rad-20{
  border-radius: 20px;
}
.borde-rad-30{
  border-radius: 30px;
}
.borde-rad{
  border-radius: 100%;
}

.borde-color-gray{
  border: 1px solid rgb(230,230,230);
}
.borde-color-gray-2{
  border: 1px solid rgb(33,33,33);
}
.borde-color-blue{
  border: 1px solid rgb(0,145,202);
}

.alto-100{
  height: 100%;
}
.ancho-100{
  width: 100%;
}

.fondo-color-white{
  background: white;
}
.fondo-color-gray{
  background: rgb(230,235,235);
}
.fondo-color-gray-2{
  background: rgb(244,250,250);
}
.fondo-color-gray-transparent{
  background: rgb(230,235,235,0.5);
}

.barra-toggle{
  border-radius: 10px;
  width: 35px; 
  height: 14px; 
  border: none; 
  outline: none !important; 
  position: relative; 
}
.barra-toggle-no-activa{
  background: rgb(200,200,200);
  transition-duration: 0.2s;
  transition-property: background-color;
}
.barra-toggle-activa{
  background: rgb(33,171,74);
  transition-duration: 0.2s;
  transition-property: background-color;
}
.indicador-toggle{
  background: white; 
  border-radius: 100%; 
  position: absolute; 
  height: 18px; 
  width: 18px; 
  top: -2px; 
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.41);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.41);
  box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.41);
}
.indicador-toggle-no-activo{ 
  left: -1px;
  transition-duration: 0.2s;
  transition-property: left;
}
.indicador-toggle-activo{ 
  left: calc(100% - 17px);
  transition-duration: 0.2s;
  transition-property: left;
}

.fondo-color-red{
  background: rgb(237,32,43);
}

.font-color-black {
  color: black !important;
}
.font-color-yell{
  color: rgb(240,186,0) !important;
}
.font-color-white {
  color: white !important;
}
.font-color-hueso {
  color: rgb(210,210,205) !important;
}
.font-color-blue{
  color: rgb(10,144,240) !important;
}
.font-color-darkblue{
  color: rgb(0,87,108);
}
.font-color-red {
  color: rgb(240,65,74,1) !important;
}
.font-color-gray {
  color: gray !important;
}
.font-color-gray-2 {
  color: rgb(170,170,170) !important;
}
.font-color-green {
  color: rgb(33,171,74) !important;
}
.negrita {
  font-weight: bold;
}
.font-sz-8 {
  font-size: 8px !important;
}
.font-sz-10 {
  font-size: 10px !important;
}
.font-sz-12 {
  font-size: 12px !important;
}
.font-sz-14 {
  font-size: 14px !important;
}
.font-sz-16 {
  font-size: 16px !important;
}
.font-sz-18 {
  font-size: 18px !important;
}
.font-sz-20 {
  font-size: 20px !important;
}
.font-sz-22 {
  font-size: 22px !important;
}
.font-sz-24 {
  font-size: 24px !important;
}
.font-sz-26 {
  font-size: 26px !important;
}
.font-sz-28 {
  font-size: 28px !important;
}
.font-sz-30 {
  font-size: 30px !important;
}
.font-sz-40 {
  font-size: 40px !important;
}

.sangria-5{
  margin-left: 5px;
}
.sangria-7{
  margin-left: 7px;
}
.sangria-10{
  margin-left: 10px;
}
.sangria-15{
  margin-left: 15px;
}
.sangria-20{
  margin-left: 20px;
}

.font-shw-1 {
  text-shadow: 1px 1px 6px rgba(120, 120, 120, 1) !important;
}
.font-shw-2 {
  text-shadow: 1px 0px 5px rgba(0, 0, 0, 1) !important;
}
.font-shw-3 {
  text-shadow: 1px 0px 5px rgba(0, 0, 0, 0.5) !important;
}

.scroll-transparent::-webkit-scrollbar{
  width: 8px;
  border-radius: 10px;
  background: rgb(180,180,185,0.2);
}
.scroll-transparent::-webkit-scrollbar-thumb{
  background: rgb(180,180,185,0.3);
  border-radius: 10px;
}
.scroll-transparent::-webkit-scrollbar-thumb:hover{
  background: rgb(180,180,185,0.5);
}
.scroll-transparent::-webkit-scrollbar-thumb:active{
  background: rgb(180,180,185,0.7);
}

.btn-blue{
  outline: none  !important;
  border: none;
  background: rgb(0,107,148);
  color: white;
  border-radius: 15px;
  padding: 11px;
  transition-duration: 0.5s;
  transition-property: background-color;
}
.btn-blue:active{
  background: rgb(0,60,108);
  transition-duration: 0s;
  transition-property: background-color;
}
.btn-blue:disabled{
  background: rgb(10,117,158);
  opacity: 0.4;
  transition-duration: 0.2s;
  transition-property: opacity;
}
.btn-borde{
  transform: scale(1);
  padding: 11px;
  border-radius: 15px;
  background: rgb(25,25,25);
  background: transparent;
  border: 1px solid rgb(55,55,55);
  transition-duration: 0.3s;
  transition-property: background-color, transform;
}
.btn-borde:active{
  transform: scale(0.95);
  background: rgb(45,45,45);
  transition-duration: 0.1s;
  transition-property: background-color, transform;
}

.btn-gray{
  outline: none  !important;
  border: none;
  background: rgb(240,240,235);
  border-radius: 3px;
  padding: 6px 11px 6px 11px; 
  transition-duration: 0.5s;
  transition-property: background-color;
}
.btn-gray:active{
  transition-duration: 0s;
  transition-property: background-color;
  background: rgb(220,220,220);
}

.btn-transparente{
  transform: scale(1);
  outline: none  !important;
  border: none;
  background: transparent;
  transition-duration: 0.2s;
  transition-property: background-color, transform;
}

.btn-transparente:active{
  transform: scale(1.2);
  background: rgb(50,50,50, 0.15);
  transition-duration: 0.05s;
  transition-property: background-color, transform;
}

.btn-cerrar{
  position: absolute;
  top: 10px;
  right: 15px;
  opacity: 0.5;
  outline: none  !important;
  border: none;
  background: white;
  border-radius: 5px;
  padding: 0px; 
  transition-duration: 0.5s;
  transition-property: opacity;
}
.btn-cerrar:active{
  transition-duration: 0s;
  transition-property: opacity;
  opacity: 1;
}

.input-error-1{
  border: 1px solid rgb(250,120,129) !important;
  background: rgb(250,120,129, 0.1) !important;
  transition: 0s !important;
}

.align-c-c{
  display: flex;
  align-items: center;
  justify-content: center;
}
.align-c-l{
  display: flex;
  align-items: center;
}
.align-c-r{
  display: flex;
  align-items: center;
  justify-content: right;
}

.scroll-auto{
  overflow-y: auto;
}
.scroll{
  overflow-y: scroll !important;
}

.justificado{
  text-align: justify;
}

.fondo-ventana-emergente{
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  z-index: 4;
  width: 100%;
  height: 100vh;
  background: rgb(30,30,30,0.17);
}
.fondo-ventana-emergente-hidden{
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: opacity, visibility;
}
.fondo-ventana-emergente-show{
  visibility: visible !important;
  opacity: 1;
  transition-duration: 0.3s;
  transition-property: opacity;
}
.ventana-emergente{
  padding: 5px;
  height: 100%;
  width: 100%;
  position: relative;
  border-radius: 5px;
  background: white;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.23);
  -moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.23);
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.23);
}

.ventana-hidden{
  position: absolute;
  margin-top: -15px;
  visibility: hidden;
  transition-duration: 0.3s;
  transition-property: margin-top, visibility;
  transition-timing-function: ease-out;
}
.ventana-show{
  position: absolute;
  margin-top: 0px;
  visibility: visible !important;
  transition-duration: 0.3s;
  transition-property: visibility, margin-top;
  transition-timing-function: ease-out;
}
.ventana-show-2{
  transform: scale(1);
  position: absolute;
  visibility: visible !important;
  transition-duration: 0.2s;
  transition-property: visibility, transform;
  transition-timing-function: ease-out;
}
.ventana-hidden-2{
  position: absolute;
  transform: scale(0.9);
  visibility: hidden;
  transition-duration: 0.32s;
  transition-property: transform, visibility;
  transition-timing-function: ease-out;
}

.cabecera-ventana-emergente{
  margin: -5px;
  margin-bottom: 0;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.21);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.21);
  box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.21);
}
.solo-mayusculas{
  text-transform: uppercase;
}

.rectangulo {
  position: absolute;
  top: -5px;
  right: 15px;
     width: 25px; 
     height: 25px; 
     background: white;
     -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
     -ms-transform: rotate(45deg);
     -o-transform: rotate(45deg);
     transform: rotate(45deg);
}

@media screen and (max-width: 576px) {
  .elemento-hidden-menos-573{
    display: none;
  }
}

@media screen and (max-width: 768px) {

}

@media screen and (max-width: 992px) {

}

@media screen and (max-width: 1200px) {

}
