noscript {
    display: block;

    width: 100%;
    height: 100%;

    overflow-y: auto;
}

noscript h3,
noscript p {
    display: block;

    color: #333;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

noscript h3 {
    margin: 60px 10% 20px 10%;

    font-size: 24px;
    font-weight: normal;
}

noscript p {
    margin: 10px 10% 0 10%;

    font-size: 18px;
}

noscript .btn {
    margin-left: 0;
}

.notification-bar {
    position: fixed;

    bottom: 0;
    left: 0;
    right: 0;

    max-height: 0;
    padding: 0;
    margin: 0;

    text-align: center;
    font-size: 1.5rem;

    background: #647f9f;
    color: #f7f7f7;

    overflow: hidden;
    transition: max-height 0.4s linear;

    z-index: 10000;
}

body.demo .notification-bar {
    bottom: 32px;
}

body.demo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 32px;
    height: auto;
}

.notification-bar.error {
    background: #ad2929;
}

.notification-bar.success {
    background: #58AD29;
}

.notification-bar.reveal {
    max-height: 120px;
}

#notification-content {
    margin: 20px 0;
}

.demo-bar {
    position: fixed;

    bottom: 0;
    left: 0;
    right: 0;

    max-height: 0;
    padding: 0;
    padding-right: 8px;
    margin: 0;

    text-align: right;
    font-style: italic;
    font-size: 1.4rem;

    background: #e77d3d;
    color: #f7f7f7;

    overflow: hidden;
    transition: max-height 0.4s linear, padding 0.4s linear;

    z-index: 10000;
}

body.demo .demo-bar {
    padding-top: 5px;
    padding-bottom: 5px;
    max-height: 120px;
}
