@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

root {
    --blue: #1e90ff;
    --darkblue: #0f4070;
    --main-color: #008678;
    --first-color: #6C8881;
    --first-color-light: #b4c6c1;
    --secondary-color: #666666;
    --white-color: #F7F6FB;
}


/* Neuropol */

@font-face {
    font-family: 'Neuropol';
    src: url('/font/Neuropol/Neuropol.ttf');
}


/* Roboto regular */

@font-face {
    font-family: "Roboto";
    src: url("/fonts/Roboto/Roboto-Regular.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Roboto italic */

@font-face {
    font-family: "Roboto";
    src: url("/fonts/Roboto/Roboto-Italic.ttf") format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* Roboto bold */

@font-face {
    font-family: "Roboto";
    src: url("/fonts/Roboto/Roboto-Bold.ttf") format('truetype');
    font-weight: 700;
    font-style: normal;
}


html, body {
    font-family: Roboto, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    background-color: #E0F8DE;
}

a, .btn-link {
    color: #0366d6;
}

body {
    padding-top: 50px;
    padding-bottom: 20px;
}


.btn-primary {
    color: var(--white-color);
    background-color: var(--first-color);
    border-color: var(--first-color);
}

.btn-default {
    background-color: var(--first-color);
    color: var(--white-color);
    border-color: var(--first-color);
}

.text-primary {
    color: var(--first-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}



.content {
    padding-top: 1.1rem;
}

/*.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;
    }

.bottom {
    position: absolute;
    bottom: 0px;
}


.title {
    color: var(--main-color) !important;
    font-family: Neuropol;
    font-size: 40px;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {

    body {
        margin-top: 2rem;
    }

    .title {
        color: var(--main-color) !important;
        font-family: Neuropol;
        font-size: 28px;
        white-space: nowrap;
    }
}