html, body {
    background: #212B36;
    color: #FFF;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

a, a:hover, a:visited, a:focus {
    color: #FFF;
    cursor: pointer;
    text-decoration: none;
}

ul {
    list-style: none;
}

/********************
    * TRANSITIONS
    *********************/
.fade-enter-active, .fade-leave-active {
    transition: opacity .5s;
}

.fade-enter, .fade-leave-to {
    opacity: 0;
}
.sidebar-slide-enter,
.sidebar-slide-leave-to {
    margin-left:-50%;
}

.sidebar-slide-enter-active,
.sidebar-slide-leave-active {
    transition: all 0.5s ease-in-out;
}

.overlay-slide-enter,
.overlay-slide-leave-to {
    margin-top:-100%;
}

.overlay-slide-enter-active,
.overlay-slide-leave-active {
    transition: all 0.5s ease-in-out;
}

@media (min-width: 768px) {
    .navbar-collapse.collapse {
        display: block !important;
    }
}

.container-fluid #content > .full-height {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}
