﻿/**************************************************** header transition *********************************************/
.headerTransition.ng-enter {
    -webkit-transition: 1.5s linear all;
    -moz-transition: 1.5s linear all;
    -ms-transition: 1.5s linear all;
    -o-transition: 1.5s linear all;
    max-height: 0;
    opacity: 1;
    transition: 1.5s linear all;
}


    .headerTransition.ng-enter.ng-enter-active {
        max-height: 999px;
        opacity: 1;
    }

/**************************************************** Carousel transition *********************************************/

.fadein,
.fadeout {
    -webkit-transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 3.0s;
    -moz-transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 3.0s;
    -o-transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 3.0s;
    transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 3.0s;
    z-index: -10;
}



    .fadein.ng-hide-remove,
    .fadeout.ng-hide-add.ng-hide-add-active {
        opacity: 0;
        display: block !important;
    }



        .fadeout.ng-hide-add,
        .fadein.ng-hide-remove.ng-hide-remove-active {
            opacity: 1;
            display: block !important;
        }



/**************************************************** channels transition *********************************************/

.animate-switch.ng-enter {
    -webkit-transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 2.0s;
    -moz-transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 2.0s;
    -o-transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 2.0s;
    transition: all cubic-bezier(0.250, 0.460, 0.450, 0.940) 2.0s;
    opacity: 0;
}

    .animate-switch.ng-enter.ng-enter-active {
        opacity: 1;
    }

.animate-switch.ng-leave.ng-leave-active {
    opacity: 0;
}



/**************************************************** Messages transition *********************************************/

.animate-if.ng-enter {
    -webkit-transition: 1s linear all;
    -moz-transition: 1s linear all;
    -ms-transition: 1s linear all;
    -o-transition: 1s linear all;
    transition: 1s linear all;
}



.animate-if.ng-enter {
    max-height: 0;
    opacity: 0;
}

    .animate-if.ng-enter.ng-enter-active {
        max-height: 999px;
        opacity: 1;
    }

/**************************************************** Main transition *********************************************/


.animate-view.ng-enter {
    -webkit-transition: 1500ms cubic-bezier(0.420, 0.000, 1.000, 1.000) all;
    -moz-transition: 1500ms cubic-bezier(0.420, 0.000, 1.000, 1.000) all;
    -ms-transition: 1500ms cubic-bezier(0.420, 0.000, 1.000, 1.000) all;
    -o-transition: 1500ms cubic-bezier(0.420, 0.000, 1.000, 1.000) all;
    transition: 1500ms cubic-bezier(0.420, 0.000, 1.000, 1.000) all;
    position: relative;
    display: block;
}


.animate-view.ng-enter {
    height: 0;
    opacity: 0;
}


    .animate-view.ng-enter.ng-enter-active {
        height: 100%;
        opacity: 1;
    }
