﻿/* input(100,14): run-time error CSS1034: Expected closing parenthesis, found 'screen'
input(106,14): run-time error CSS1034: Expected closing parenthesis, found 'screen'
input(116,14): run-time error CSS1034: Expected closing parenthesis, found 'screen'
input(122,14): run-time error CSS1034: Expected closing parenthesis, found 'screen' */
html, body {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
}

/* main app container creates column pile */
app {
    position: relative;
    display: flex;
    flex-direction: column;
}

header {
    flex: 1;
}

.main {
    color: #333;
    flex: 1;
    margin-top: 14px;
    padding: 0px 15px;
}

@media screen and (max-width: 767px) {
    .main {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px;
    }
}

footer {
    color: #888;
    font-size-adjust: 0.8;
    flex: 1;
    padding: 15px;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* Bootstrap breakpoints */
.main-menu {
    font-size: 14px;
}

    .main-menu .dropdown-item {
        font-size: 14px;
    }

.safemode {
    color: white;
    background-color: #3ea42e;
    background-image: -webkit-linear-gradient(top, #71d929 0%, #3ea42e 100%);
    background-image: -o-linear-gradient(top, #71d929 0%, #3ea42e 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#71d929), to(#3ea42e));
    background-image: linear-gradient(to bottom, #71d929 0%, #3ea42e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff71d929", endColorstr="#ff3ea42e", GradientType=0);
    background-repeat: repeat-x;
}

a .safemode {
    color: white !important;
}

.searchItem {
    font-size: 10pt;
}

/* show logo on large screens */
.logo {
    height: 75px;
}

@media (only screen and (max-width: 575px)) {
    .logo {
        height: 50px;
        text-align: center;
    }
}

@media (only screen and (min-width: 576px) and (max-width: 991px)) {
    .logo {
        height: 70px;
    }
}

/* control sizes of partner logos */
.plogo {
    height: 80px;
}

@media (only screen and (max-width: 575px)) {
    .plogo {
        height: 40px;
        text-align: center;
    }
}

@media (only screen and (min-width: 576px) and (max-width: 991px)) {
    .plogo {
        height: 60px;
    }
}

.mpan {
    width: 320px;
    font-size: 18px;
    font-weight: bold;
    border: 1.5px solid #aaa;
    border-radius: 5px;
    padding: 1px;
}

.mpan-s {
    font-size: 30px;
    color: #666;
}

.mpan input {
    width: 100%;
    border-left: 1px solid #aaa;
    border-right: none;
    text-align: center;
    font-weight: bold;
    color: #222;
}

    .mpan input:focus {
        background-color: yellow;
    }

    .mpan input.top {
        border-top: none;
        border-bottom: 1px solid #aaa;
    }

    .mpan input.bottom {
        border-top: 1px solid #aaa;
        border-bottom: none;
    }

/* hovertip and speech-bubble styles are in site.css */

.form-group {
    margin-bottom: 5px;
}

    .form-group label {
        color: #00aeb8;
    }

