body {
    background-color: #e7ebee;
}

#brand {
    font-size: 22px;
    font-family: 'Arial';
    font-weight: bold;
}

.slider {
    position: absolute;
    height: 100%;
}

.slider .slide {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -9999;
    top: 0;
    left: 0;
    background-color: #000;
}

.slide.ng-hide-add,
.slide.ng-hide-remove {
    -webkit-transition: all linear 1.2s;
    -moz-transition: all linear 1.2s;
    -ms-transition: all linear 1.2s;
    -o-transition: all linear 1.2s;
    transition: all linear 1.2s;
    display: block!important;
}

    .slide.ng-hide-add.ng-hide-add-active,
    .slide.ng-hide-remove {
        -ms-opacity: 0;
        opacity: 0;
    }

        .slide.ng-hide-add,
        .slide.ng-hide-remove.ng-hide-remove-active {
            -ms-opacity: 1;
            opacity: 1;
        }

