div.alert {
    margin: 15px 0px 15px 0px;
    padding: 20px 15px 20px 15px;
    border: 1px solid #ddd;
    box-shadow: 0 3px 2px 1px rgba(0, 0, 0, 0.05), 0 1px 2px 2px rgba(0, 0, 0, 0.075), 0 3px 1px -2px rgba(0, 0, 0, 0.075);
    border-left: 5px solid #aaa;
    border-radius: 2px;
}

div.alert.alert-note {
    border-left-color: #8CC238;
}

div.alert.alert-warning {
    border-left-color: #eea345;
}

div.alert.alert-danger {
    border-left-color: #ee4545;
}

div.alert p {
    margin: 0;
}


/*NAVBAR*/

#navbar {
    display: block;
    background-color: #0478BA;
    width: 100%;
}

#navbar, .nav-item, #navbar .items {
    height: 100px;
}

#navbar ul {
    list-style-type: none;
    margin: 0;
}

#navbar .items {
    color: white;
}

#navbar .items a {
    color: #d7d7d7;
    font-weight: 500;
}

#navbar .items a:hover {
    color: #ffffff;
    text-decoration: none;
}

#navbar .items a:active {
    color: #b9b9b9;
    text-decoration: none;
}

#navbar .items .nav-item.active a {
    color: #fff;
}

.items.right {
    margin-right: 25px !important;
}

.items.left {
    margin-left: 25px;
}

.nav-item {
    display: inline-block;
    margin-top: 0px;
    line-height: 100px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 1.15em;
}

.nav-item.feature {
    margin-left: 0;
    margin-right: 10px;
    font-size: 1.5em;
}

/*BUTTONS*/

.btn {
    padding: 10px 14px 10px 14px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    -webkit-box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(.25, .8, .25, 1);
}

.btn:hover {
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.175);
    -webkit-box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.175);
    -moz-box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.175);
}

.btn:active {
    box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.2);
}

/*FOOTER*/

#footer {
    min-height: 250px;
    position: relative;
    padding-top: 25px;
    padding-bottom: 10px;
    border-top: 1px solid #ddd;
    background: #124076;
}

#footer-container {
    display: flex;
    flex-flow: row wrap;
    /*flex-direction: row;*/
    justify-content: center;
    align-items: center;
}

#wave-ortho-link {
    text-align: center;
    width: 100%;
    bottom: 10px;
    font-size: 1.25em;
}

#footer .section {
    /*width: 45%;*/
    height: 200px;
}

#footer .section .box {
    width: 95%;
    margin: 0 auto;
}

#footer .section .box h3 {
    font-weight: 500;
    color: #9ca0b4;
    font-size: .9em;
}

#footer .section ul {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

#footer .section li {
    line-height: 140%;
    font-size: 1.1em;
    margin-bottom: 15px;
}

#footer .section.clear-mobile {
    clear: none;
}

#footer a {
    color: #f5f5f5;
}

#footer a:hover {
    color: #6CC3EA;
    text-decoration: none;
}

#footer-branding {
    width: 30%;
    display: inline-block;
    order: 1;
    flex-grow: 2;
}

#footer-resources {
    width: 30%;
    display: inline-block;
    order: 2;
    flex-grow: 2;
}

#footer-docs {
    width: 30%;
    display: inline-block;
    order: 3;
    flex-grow: 1;
}

#footer-branding .box {
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
}

@media (max-width: 576px) {
    .nav-item {
        height: 40px;
        text-align: center;
        line-height: 50px;
        font-size: .85em;
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    #navbar .items.left {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
    }

    .nav-item.feature {
        clear: both;
        width: 100%;
        margin-right: 0;
        font-size: 1.25em;
    }

    #navbar .items.left {
        width: 100%;
        margin: 0;
        padding: 0px;
    }

    #footer-branding {
        width: 200%;
        display: block;
        order: 4;
    }

    #footer-resources {
        width: 45%;
    }

    #footer-docs {
        width: 45%;
    }


    @media (min-width: 576px) {
        .nav-item {
            height: 40px;
            text-align: center;
            line-height: 50px;
            font-size: 1em;
            margin-left: 20px;
            margin-right: 20px;
        }
    }

    .nav-item.demo {
        order: 2;
    }

    .nav-item.documentation {
        order: 3;
    }

    #navbar .items.right {
        display: none;
    }
}

@media (max-width: 992px) {

}

@media (max-width: 1200px) {

}

@media (min-width: 1200px) {

}