:root
{
    --mainFontColor: white;
    --mainBackdropColor: #25acdb;
}

*,html,body
{
    margin: 0;
    border: 0;
    font-family: 'Montserrat', sans-serif, FontAwesome;
}


*::-webkit-scrollbar
{
    width: 5px;
}

*::-webkit-scrollbar-track
{
    background: transparent;
}

*::-webkit-scrollbar-thumb
{
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover
{
    background-color: rgba(0, 0, 0, 0.6);
}

body
{
    height: 100vh;
    background-color: var(--mainBackdropColor);
    overflow: hidden;
    color: var(--mainFontColor);
}

div.gridContainer
{
    background: url('../assets/images/backdrop-blue.png') no-repeat;
    background-size: cover;

    display: none;
    height: 100vh;
    width: 100vw;
    grid-template-columns: 190px minmax(500px, min-content) minmax(200px, min-content) auto;
    grid-template-rows: 40px min-content auto 20px;
    grid-gap: 0;
    grid-template-areas:
        "header header  header  header"
        "nav    search  options info"
        "nav    main    main    main"
        "footer footer  footer  footer";
}

header
{
    grid-area: header;
    background: url("../assets/images/natterbox-logo.png") no-repeat right 10px center;
    background-size: 180px;
    font-size: 24px;
    font-weight: 700;

    padding: 8px;
    display: grid;
    align-items: center;
}

nav
{
    grid-area: nav;
    padding: 4px;
    border-radius: 1px;
    margin: 2px;
    font-size: 20px;
}

nav div
{
    position: fixed;
}

nav div a
{
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);
    margin: 2px 0;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.1);

    display: flex;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}

nav div a.active
{
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
}

nav div a:hover
{
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

nav div a:focus
{
    outline: 1px solid rgba(255, 255, 255, 0.5);
    outline-offset: -4px;
    -moz-outline-radius: 4px;
    color: white;
}

section.info
{
    grid-area: info;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 8px;
    border-radius: 4px;
    padding: 8px;
    font-size: 12px;

}

section.info::before
{
    color: rgba(33, 80, 97, 1);
    font-size: 15px;
    font-weight: 700;
    content: 'information';
}

footer
{
    grid-area: footer;
    background: rgba(0, 0, 0, 0.01);
    align-items: center;
    font-size: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas:
        "foot1 foot2 foot3";
}

footer div
{
    padding: 0px 8px;
}

footer div#foot1
{
    grid-area: foot1;
}

footer div#foot2
{
    grid-area: foot2;
    margin: 0 10px;
}

footer div#foot3
{
    grid-area: foot3;
    text-align: right;
}

footer div#foot3 i
{
    padding: 0 10px;
}

.left
{
    text-align: left;
}


select,
input,
button
{
    color: rgba(33, 80, 97, 1);
    border: 0;
    margin: 1px 4px;
    font-size: inherit;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    padding: 0 4px;
}

select.dataEntry,
input.dataEntry
{
    width: 100px;
}

select option
{
}

input[type=submit]:hover,
input[type=button]:hover,
button:hover
{
    transform: translate(0px, 0px);
    background-color: rgba(120, 160, 120, 0.5);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2), -2px -2px 2px rgba(255,255, 255, 0.2);

}

input[type=submit]:active,
input[type=button]:active,
button:active
{
    transform: translate(-1px, 1px);
    background-color: rgba(160, 120, 120, 0.8);
    box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.2), 2px 2px 2px rgba(255,255, 255, 0.02);
}

input[type=submit]
{
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 0px 16px;
    font-weight: 400;
}

button,
input[type=button]
{
    background: rgba(0, 0, 0, 0.3);
    color: white;
}

body > div.feedback
{
    color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 0, 0, 1);
    border-radius: 8px;
    font-weight: normal;
    padding: 12px;
    width: 30%;
    text-align: center;
    vertical-align: middle;
    margin: 0 auto;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 12px;
    display: none; /*grid*/
    place-items: center;
}
