@charset "utf-8";

@font-face {
    font-family: 'Open Sans', sans-serif;
    src: url('/lib/fonts//OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans Italic', sans-serif;
    src: url('/lib/fonts/OpenSans-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}


body {
    background-color: #35363a;
    color: #c2c2c5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}


.header {
    background-color: #171717;
    padding: 20px 0;

}


.header .logo-wrapper {
        width:100%;
        max-width: 1420px;
        margin: 0 auto;
        padding:0 17px;
    }

.logo img{
        height: 24px;
    }

label{
    font-size: 12px;
}
.control-label {

    font-size: 12px;
    padding: 2px 0px 5px;
    margin: unset;

}

.form-control {
    background-color: rgba(0, 0, 0, 0.1);
    font-size: 12px;
    padding: 7px 15px;
    border-color: #16beef;
    border-radius: unset;
    color: #aaa;
}

.form-control:focus {
        background-color: rgba(0,0,0,0.1);
        box-shadow: inset 0 1px 1px rgba(0,0,0,0.8), 0 0 8px rgba(102,175,233,0.6);
        border-color: #ffffff;
        color: #ddd;
    }

.form-check {
    display:flex;
    align-items: center;
}

.form-check-input {
    margin-top: 0;
}
.card-alternative .card-heading {
        border-top: 1px solid #444;
        border-bottom: 1px solid #444;
        padding: 5px 0;
        margin-bottom: 0.5rem;
    }

.btn {
    font-size: 12px;
    min-width: 240px;
    min-height: 40px;

    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-primary {
        background-color: #0d9bc5;
        border-color: #0d9bc5;
        color: #1f1f1f;
    }

.btn-primary:hover {
            background-color: #0d9bc5;
            border-color: transparent;
            color: #1f1f1f;
        }
.card {
    border-radius: 4px;
    background-color: rgba(0,0,0,0.2);
    padding: 15px;
    font-size: 12px;
}
.card-header {
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(235, 235, 236, 0.1);
        font-size: 20px;
    }
.card-header h2 {
            margin: unset;
            font-size: inherit;
        }
.card-body {
        padding: 15px;
    }
.card.alert-danger {
        border-color: transparent;
        background-color: rgba(255,255,255,0.1);
        color: #ff0000;
    }
.card.alert-danger .card-body ul {
                padding-left: 0;
            }

.alert {

    padding:7px;
}

.alert.alert-danger {
        color: #ffffff;
        background-color: #ff0000;
        border: none;
    }

.alert ul {
        padding-left:0;
        margin-bottom:0;
        list-style: none;
    }

.body-container {
    display: flex;
    flex-direction: column;
   flex-grow:1;

    align-items: center;
    justify-content: center;

}

.welcome-page li {
        list-style: none;
        padding: 4px;
    }

.logged-out-page iframe {
        display: none;
        width: 0;
        height: 0;
    }

.grants-page .card {
        margin-top: 20px;
        border-bottom: 1px solid lightgray;
    }

.grants-page .card .card-title img {
                width: 100px;
                height: 100px;
            }

.grants-page .card .card-title{

            font-size: 120%;
            font-weight: bold;
}

.grants-page .card label {
            font-weight: bold;
        }



.outh-login ul{
        padding: unset;
        margin: unset;
    }



.outh-login ul li{
            list-style: none;
        }



.outh-login ul li .btn{
                display: flex;
                justify-content: center;
                background-color: #000;
                border-color: transparent;
                margin-bottom: 0.5rem;
            }



.outh-login ul li .btn img{
                    height: 18px;
                }

.input-validation-error{
    border:thin solid red;
}


.error-page {
    font-family: monospace;
    color: #999;
}


.error-page h3{
        color: #ddd;
    }

.error-code {
    font-family: monospace;
    color: rgba(255,255,255,0.25);
    font-size: 7rem;
}

.hidden {
    display:none;
}


.back-link {
    position: absolute;
    top: 90px;
    left: 20px;
    padding: 0.5rem 0.75rem;
    color: #ddd;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all ease 0.1s;
    display: inline-flex;
    align-items: center;
}


.back-link:before {
        content: "";
        display: inline-block;
        width: 30px;
        height: 30px;
        background-image: url('../img/chevron-left-solid.svg');
        background-position: center center;
        background-repeat: no-repeat;
        margin-right: 10px;
    }


.back-link:hover,
    .back-link:focus,
    .back-link:active {
        color: #0d9bc5;
        text-decoration: none;
    }

.opacity-20 {
    opacity: 0.2;
}

.orange {
    color: #e37b40;
}

.kw-panel {
    background-color: #242527;
    padding: 30px;
    border-radius: 4px;
    height: 100%;
}

.kw-panel h2 {
        font-size: 20px;
        color: #ffffff;
    }

.kw-panel h4 {
        color: #fff;
        font-size: 16px;
    }

.kw-panel ul {
        list-style: none;
        padding-left: 0;
    }

.kw-panel ul li {
            margin-bottom: 8px;
        }

.kw-panel ul li a {
                color: #0d9bc5;
                text-decoration: none;
            }

.kw-panel ul li a:hover {
                    text-decoration: underline;
                }

.kw-panel kbd {
        background-color: #000;
        padding: 8px;
        margin-bottom: 20px;
        display: inline-block;
    }

.kw-panel #qrCode {
        aspect-ratio: 1/1;
        background-color: #f5f5f5;
        border-radius:4px;
        padding:20px;
        display:flex;
        align-items:center;
        justify-content:center;

    }

.kw-panel #qrCode canvas {
            width:100%;
            max-width:220px;
        }

.row.gap-30 {
        row-gap: 30px;
    }

#localLogin {
    max-width: 400px;
}

#localLogin a {
        color: #fff;
    }

.cookie-policy {
    position: fixed;
    background: #171717;
    color: #fff;
}

.cookie-policy.hide {
        display: none;
    }

@media (max-width: 990px) {

.cookie-policy {
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0.75rem;
        text-align: center
}
    }

@media (min-width: 990px) {

.cookie-policy {
        bottom: 1rem;
        left: 1rem;
        padding: 20px 30px;
        width: 40vw;
        max-width: 300px;
        border-radius: 5px
}
    }

.cookie-policy a {
        color: #fff;
    }


.modal-content {
    background: #171717;
    color: #fff;
}


.modal-content a {
        color: #fff;
    }


.modal-content .close {
        color: #fff;
        text-shadow: #000;
        opacity: 1;
    }


.modal-content .close:hover {
            color: #fff;
            text-decoration: none;
        }