
/**********************************************************/
/**********************************************************/
/************************** ANIMATION  ********************/
/**********************************************************/
/**********************************************************/


@-webkit-keyframes F_HeightToBottom {
    0% {
        max-height: 0px;
        opacity: 1;
    }

    100% {
        max-height: 150px;
        opacity: 1;
    }
}

@keyframes F_HeightToBottom {
    0% {
        height: 0px;
        opacity: 1;
    }

    100% {
        max-height: 150px;
        opacity: 1;
    }
}

/**********************************************************/
/**********************************************************/
/************************** ACTIVATION ********************/
/**********************************************************/
/**********************************************************/

.__animBlock.footer_v2 .footer_deb .footer_col + hr.__animBlock {
    -webkit-animation: F_HeightToBottom 1s;
    animation: F_HeightToBottom 1s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

