.footerNoticiasSlideOverlay{
    position: absolute;
    width: 100%;
    min-height: 0%;
    bottom: 0;
    left: 0;

    padding: 25px;
    transition: all 0.6s ease-in-out;
}

.footerNoticiasSlideOverlayMoreInfo{
    transition: all 0.3s ease-in-out;
    transition-delay: 0s;
    
    max-height: 0px;
    overflow: hidden;
}

.footerNoticiasSlideWrapper:hover .footerNoticiasSlideOverlay{
    min-height: 100%;
}
.footerNoticiasSlideWrapper:hover .footerNoticiasSlideOverlayMoreInfo{
    max-height: 500px;
    transition-delay: 0.3s;
}

.footerNoticiasSlideDarkTint{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--colorfirst);

    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.footerNoticiasSlideGradient{
    position: absolute;
    height: 100%;
    width: 100%;
    background: var(--colorfirst);
    background: linear-gradient(0deg, var(--colorfirst) 0%, transparent 100%);
    opacity: 1;
}

.footerNoticiasSlideOverlayBg{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--colorfirst);

    opacity: 0;
}
.footerNoticiasSlideWrapper:hover .footerNoticiasSlideDarkTint{
    opacity: 0.4;
}


#footerNoticiasWrapper .SliderArrows{
    transform: scale(0.7);
    color: var(--colorfirst);
}