/*
Para mantener las clases que pueden utilizar las tablas paginas
*/
/*
    Created on : 28-nov-2015, 7:32:51
    Author     : Nestor Flores <nestorflores87@gmail.com>
*/

.shadow_up
{
    box-shadow: black 0px -3px 61px 0px;
    z-index: 2;
    position: relative;
}

.shadow_bottom
{
    box-shadow: black 0px 3px 61px 0px;
    z-index: 2;
    position: relative;
}

.background_width
{
    background-position: center center;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.background_height
{
    background-position: center center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.border_radius_10
{
    border-radius: 10px;
}
.border_radius_20
{
    border-radius: 20px;
}
.border_radius_30
{
    border-radius: 30px;
}
.border_radius_40
{
    border-radius: 40px;
}

.acordeon-gradiente{
    border: 1px solid #dfdfdf !important;
    background: #f7f7f7;
    border-radius: 10px;
    margin-bottom: 5px;
}

.centrar-vertical{
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagen-carrusel{
    height: 100%;
    width: 100%;
    object-fit: cover !important; /* Recorta y adapta la imagen al contenedor */
}


.imagen-carrusel-more {
    height: 500px !important; /* Altura fija para todas las imágenes */
    width: 100%; /* Ancho completo del contenedor */
    object-fit: cover; /* Ajusta la imagen sin distorsión */
    object-position: center; /* Centra la imagen dentro del contenedor */
    display: block; /* Asegura un comportamiento consistente */
}

.uploaded-image {
    max-width: 100px;
    max-height: 100px;
    margin: 10px;
    border-radius: 10px;
}

.carousel-caption .ver-mas-link {
    display: none; /* Oculta el botón inicialmente */
    color: #fff; /* Color del texto */
    padding: 10px 20px; /* Espaciado interior */
    border-radius: 5px; /* Bordes redondeados */
    position: absolute;
    top: -35%; /* Centra verticalmente */
    left: 50%; /* Centra horizontalmente */
    transform: translate(-50%, -50%); /* Centra el botón */
    z-index: 2; /* Asegura que esté encima de la imagen */
}

.carousel:hover .carousel-caption .ver-mas-link {
    display: block; /* Muestra el botón al pasar el ratón sobre el slider */
}

.carousel:hover .item .imagen-carrusel-more {
    filter: brightness(55%); /* Reduce el brillo al 70% para oscurecer */
    transition: filter 0.3s; /* Agrega una transición para suavizar el efecto */
}

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border-radius: 5px 5px 0px 0px;
}

.active1, .accordion:hover {
    background-color: #ccc;
}

.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active1:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-radius: 0px 0px 5px 5px;
}
