/*BUSQUEDA*/
#portal-searchbox {
    display: none !important;
}

/* COLOR BARRA NAVEGACIÓN */
.navbar {
    background-color: #CD171E !important;
}

.navbar li{
    background-color: #CD171E !important;
}

aside div div nav ul li a{
  color:#CD171E !important;
}

div div nav ol li a{
  font-weight:bold;  
  color:#CD171E !important;
}

/* CARRUSEL */

.carousel-inner{
  right: -250px;
}

.carousel-item img {
  margin: auto;
  width: 700px !important; /* 700 px*/ 
  height: 650px; /* Ajusta la altura según tu diseño */
}

/* Estilo de los indicadores (puntos) */
.carousel-indicators button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #474B4E !important;  /*Color de los indicadores */
  position: relative;
  bottom: -50px;
  right: -250px;
}

/* Resaltar el indicador activo */
.carousel-indicators .active {
  background-color: #CD171E !important; /* Color */
  position: relative;
  bottom: -50px;
  right: -250px;
}

/* Asegura que los controles sean visibles */
.carousel-control-prev {
  width: 10%; /* Ajusta el ancho para mejor visibilidad */
  opacity: 1; /* Asegura que no estén transparentes */
  
}

.carousel-control-next {
  width: 10%; /* Ajusta el ancho para mejor visibilidad */
  opacity: 1; /* Asegura que no estén transparentes */
 
}


/* TAMAÑO FOTOS */
.perfil {
    width: 150px;
    height: 150px;
}

/* MODAL */
.modalmask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}

.modalmask:target {
    opacity:1;
    pointer-events: auto;
}

/* FORMATO VENTANA MODAL */
.modalbox{
    width: 400px;
    position: relative;
    padding: 5px 20px 13px 20px;
    background: #fff;
    border-radius:3px;
    -webkit-transition: all 500ms ease-in;
    -moz-transition: all 500ms ease-in;
    transition: all 500ms ease-in; 
}

/* MOVIMIENTOS MODAL */
/*.movedown {
    margin: 0 auto;
}

.rotate {
    margin: 10% auto;
    -webkit-transform: scale(-5,-5);
    transform: scale(-5,-5);
}*/

.resize {
    margin: 10% auto;
    width:0;
    height:0;
}

/*.modalmask:target .movedown{
    margin:10% auto;
}

.modalmask:target .rotate{     
    transform: rotate(360deg) scale(1,1);
       -webkit-transform: rotate(360deg) scale(1,1);
}*/
 
/*.modalmask:target .resize{
    position: relative;
    padding: 20px 15px 20px 2em;
    top: -4%;
    width:600px;
    height:600px;
}*/

/* BOTON CERRAR MODAL */
.close {
    background:#BA372A;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: 1px;
    text-align: center;
    top: 1px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius:3px;
}
 
.close:hover {
    background: #606061;
    color:#222;
}

/* RESPONSIVE */
@media only screen and (min-width: 480px) {
	.slide {
		width: 480px;
	}
	
	.modalmask:target .resize{
    position: relative;
    padding: 20px 15px 20px 2em;
    width:600px;
    height:600px;
    }
}