html {
    overflow-y: scroll;
}

body {
    margin: 0px;
    color: #ffffff;
    background-image: url('../images/backgrounds/bg-0.png');
    background-color: #2c73a3;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

input,
button {
    color: #000000;
    display: block;
}

input[type='color'] {
    width: 100%;
    height: 26px;
}

span#display-name {
    font-size: 1.3em;
}

span.editable {
    cursor: pointer;
}

span.editable[contenteditable='true'] {
    color: black !important;
    background-color: white  !important;
    cursor: text  !important;
    max-width: 260px;
    margin: 0 auto;
}

span.editable.edit-lg {
    text-align: left;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 6px;
    padding: 5px;
    width: auto;
    max-width: 100%;
    min-height: 36px;
    height: auto;
}

.panel-list {
    display: grid;
    grid-gap: 5px;
}

button span.name {
    font-weight: bold;
}

button span.description {
    font-style: italic;
    font-size: 0.9em;
    font-weight: 300;
}

button>* {
    pointer-events: none;
}

img.icon-md {
    width: 32px;
    height: 32px;
}

div.modal {
    color: white;
    text-align: center;
}

div.modal div.modal-content {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.75);
}

div.modal-backdrop
{
    opacity: 0.75 !important;
}

nav > div {
    border-radius: 0;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 50px;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.75);
    border-color: rgba(255, 255, 255, 0.25);
    border-width: 0 0 4px 0;
}

nav > div .breadcrumb {
    width: 50%;
    border: 0px;
    background-color: transparent;
    float: left;
}

nav #logo {
    width: 300px;
    height: auto;
    margin-left: -150px;
    -webkit-filter: drop-shadow(0px 2px 0px rgba(255, 255, 255, 0.45)) hue-rotate(196deg) brightness(125%);
    filter: drop-shadow(0px 2px 0px rgba(255, 255, 255, 0.45)) hue-rotate(196deg) brightness(125%);
}

div.breadcrumb-pad {
    width: 100%;
    height: 1px;
    margin-bottom: 65px;
}


@media (max-width: 800px) {


    nav > div .breadcrumb {
        display: none;
    }

    nav #logo {
        margin: 0 auto;
        float: none;
        display: block;
    }
}