@charset 'UTF-8';
/*
   =HIGLIGHT ANIMATION
   ========================================================================== */
.highlight{
    background-color: #F9F0C1 !important;
}
.highlight_anim{
    background-color: transparent;
    -webkit-transition: all 800ms cubic-bezier(.39,0,.43,1);
       -moz-transition: all 800ms cubic-bezier(.39,0,.43,1);
        -ms-transition: all 800ms cubic-bezier(.39,0,.43,1);
         -o-transition: all 800ms cubic-bezier(.39,0,.43,1);
            transition: all 800ms cubic-bezier(.39,0,.43,1);
}
.highlight_anim:hover{
    background-color: #F9F0C1 !important;
}