﻿/* fallback */
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/MaterialIcons-Regular.woff2) format('woff2');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    color: #05253e;
    cursor: default;
}

    /* Rules for sizing the icon. */
    .material-icons.md-18 {
        font-size: 18px;
    }

    .material-icons.md-24 {
        font-size: 24px;
    }

    .material-icons.md-36 {
        font-size: 36px;
    }

    .material-icons.md-48 {
        font-size: 48px;
    }

    /* Rules for using icons as black on a light background. */
    .material-icons.md-dark {
        color: rgba(5, 37, 62, 0.74);
    }

        .material-icons.md-dark:hover {
            color: rgb(5, 37, 62);
        }

        .material-icons.md-dark.md-inactive {
            color: rgba(5, 37, 62, 0.26);
        }

    /* Rules for using icons as white on a dark background. */
    .material-icons.md-light {
        color: rgba(255, 255, 255, 1);
    }

        .material-icons.md-light.md-inactive {
            color: rgba(255, 255, 255, 0.3);
        }

nav {
    height: 60px;
}
nav h1 {
    color: whitesmoke;
}

    nav a,
    nav a:hover {
        color: aliceblue;
        text-decoration: none;
    }

html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    /*margin-bottom: 60px;*/
    color: #05253e;
    height: 100%;
}

    body > .container {
        padding: 60px 15px 0;
    }

h1, th {
    color: #05253e;
}

code {
    font-size: 80%;
}

input.form-control {
    font-weight: bolder;
    color: rgba(5, 37, 62, 0.74);
}

    input.form-control:focus {
        color: rgb(5, 37, 62);
    }

.form-control:focus {
    border-color: #05253e;
    -webkit-box-shadow: none;
}

.btn:focus {
    -webkit-box-shadow: none;
}

.btn-outline-secondary:focus {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}


.btn-primary {
    background-color: #05253e;
    border-color: #064b82;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-sample:active {
        background-color: #033358 !important;
        border-color: #064b82;
    }

.input-group-append button {
    min-width: 6em;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
}

    .footer > .container {
        padding-right: 15px;
        padding-left: 15px;
    }

.bg-dark {
    color: whitesmoke;
    background-color: #05253e !important;
}

.form-signin {
    width: 100%;
    max-width: 380px;
    padding: 15px;
    margin: 0 auto;
}

    .form-signin .checkbox {
        font-weight: 400;
    }

    .form-signin .form-control {
        position: relative;
        box-sizing: border-box;
        height: auto;
        padding: 10px;
        font-size: 16px;
    }

        .form-signin .form-control:focus {
            z-index: 2;
        }

    .form-signin input[type="email"] {
        margin-bottom: -1px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .form-signin input[type="password"] {
        margin-bottom: 10px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

.vertical-center {
    min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh; /* These two lines are counted as one :-)       */

    display: flex;
    align-items: center;
}