/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

:root {
    --os-white: rgb(255, 255, 255);
    --os-black: rgb(0, 0, 0);
    --os-orange: rgb(255, 164, 0);
    --os-orange-dark: rgb(255, 134, 0);
    --os-orange-blur: rgba(255, 164, 0, .20);
    --os-orange-blur-light: rgba(255, 164, 0, .10);
    --os-grey: rgb(239, 239, 239);
    --os-grey-light: rgb(246, 246, 246);
}


/* Bootstrap custom configuration
-------------------------------------------------- */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: var(--os-black);
    background-color: var(--os-orange);
    border-color: var(--os-orange);
}

    .btn-primary:hover, .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:focus {
        /*color: var(--os-white);*/
        background-color: var(--os-orange-dark);
        border-color: var(--os-orange-dark);
        -webkit-box-shadow: 0 0 0 0.2rem var(--os-orange-blur);
        box-shadow: 0 0 0 0.2rem var(--os-orange-blur);
    }


.form-control:focus {
    border-color: var(--os-orange-blur);
    -webkit-box-shadow: 0 0 0 0.2rem var(--os-orange-blur-light);
    box-shadow: 0 0 0 0.2rem var(--os-orange-blur-light);
}

.btn.focus, .btn:focus {
    -webkit-box-shadow: 0 0 0 0.2rem var(--os-orange-blur);
    box-shadow: 0 0 0 0.2rem var(--os-orange-blur);
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: var(--os-black);
    background-color: var(--os-orange);
    border-color: var(--os-orange);
}



/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    -webkit-box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    /*Include BrownStd font*/
    font-family: 'BrownStd', sans-serif;
    background-color: #ede9e9;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}



/****************/
