/* APPLICATION SETTINGS
===============================================*/
html, body {
    min-height: 100%;
    overflow-x: hidden;
}

/* NAVBAR CONTAINER
===============================================*/
@media (max-width: 544px) {
    .navbar .container {
        width: 100%
    }
}

/* MASKS
===============================================*/
/*.view {
    height: 100%;
}*/

/* STREAK
===============================================*/
.streak {
    height: 250px;
}
.streak.streak-sm {
    height: 150px;
}
.streak.streak-md {
    height: 200px;
}
.streak.streak-lg {
    height: 300px;
}
.streak.streak-xl {
    height: 350px;
}

/* DASHBOARD APP CONTROLS
===============================================*/
section.app {
    position: relative;
}
.dashboard-app-controls {
    background: rgb(62, 62, 62);
    color: rgb(255, 255, 255);
    left: 0px;
    opacity: 0;
    position: absolute;
    top: 0px;
    transition: all  0.4s ease-in-out;
    z-index: 1;
}
.dashboard-app-controls p {
    color: rgb(221, 221, 221) !important;
    margin-bottom: 0px;
}
.dashboard-app-controls a {
    color: rgb(255, 255, 255);
}
.dashboard-app-controls ul {
    margin: 0px;
    min-height: 46px;
    padding: 0px;
}
.dashboard-app-controls ul li {
    float: left;
    transition: all  0.4s ease-in-out;
}
.dashboard-app-controls ul li p,
.dashboard-app-controls ul li a {
    display: inline-block;
    padding: 10px 22px;
    text-transform: uppercase;
}
.dashboard-app-controls ul li a:hover {
    background-color: rgb(42, 42, 42);
}
.dashboard-app-controls .editbar {
    opacity: 0;
    width: 0px;
}
.dashboard-app-controls.editbar {
    opacity: 1;
    top: -46px;
    width: 100%;
}
.dashboard-app-controls.editbar .commandbar {
    opacity: 0;
}
.dashboard-app-controls.editbar .editbar {
    float: right;
    opacity: 1;
    width: auto;
}
section.app:hover .dashboard-app-controls {
    opacity: 1;
}