﻿/***************************************************
* Fonts
***************************************************/

@font-face {
    font-family: "Georgia";
    src: url("fonts/georgia.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Georgia";
    src: url("fonts/georgiab.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Georgia";
    src: url("fonts/georgiai.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Georgia";
    src: url("fonts/georgiaz.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "Droid Sans";
    src: url("fonts/DroidSans.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Droid Sans";
    src: url("fonts/DroidSans-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto-BoldItalic.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto-Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Gotham";
    src: url("fonts/GothamBook.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Gotham";
    src: url("fonts/GothamBookItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Gotham";
    src: url("fonts/GothamBold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Gotham-Light";
    src: url("fonts/Gotham-Light.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "GothamMedium";
    src: url("fonts/GothamMedium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "GothamMedium";
    src: url("fonts/GothamMediumItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "BrushScript";
    src: url("fonts/brushsci.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Skia";
    src: url("fonts/Skia.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/***************************************************
* General Styling
***************************************************/

.brandname {
    font-family: Skia, Helvetica, Arial, sans-serif !important;
    font-weight: normal !important;
    margin-left: 0.25em;
    font-size: 2rem;
}

a.brandname {
    text-decoration: none !important;
    color: initial !important;
}

.sitename {
    font-size: 1.75rem !important;
    text-align: center;
}

.page-title {
    font-weight: bold;
    font-size: 1.5em;
}

.text-bold {
    font-weight: bold;
}

a {
    color: #23592A;
}

    a:focus,
    a.focus,
    a:active,
    a.active,
    a:hover,
    a.hover {
        color: #659947
    }

.question-desc {
    margin-bottom: 2em;
}

    .question-desc li {
        margin-bottom: 1em;
    }

/* Stepper */

.stepper {
    margin: 1em 0;
    vertical-align: middle;
}

    .stepper > .dot {
        height: 20px;
        width: 20px;
        border-radius: 50%;
        border: solid 1px #bbb;
        display: inline-block;
        margin-right: 0.5em;
        margin-top: 0.125em;
        color: transparent;
        text-align: center;
    }

        .stepper > .dot > svg,
        .stepper > .dot > img {
            margin-top: 0.125em;
            vertical-align: initial;
        }

    .stepper.current {
        font-style: italic;
    }

        .stepper.current > .dot {
            background-color: #bbb;
            color: #bbb;
        }

    .stepper.completed > .dot {
        background-color: #659947;
        border-color: #659947;
        color: #FFFFFF;
    }

/***************************************************
* Bootstrap Overrides
***************************************************/

/* Options Radio List */

.radio-list-item {
    background-color: #F2F2F2;
    padding: 10px 20px;
}

    .radio-list-item.selected,
    .radio-list-item:hover {        
        background-color: #649747;
        color: #fff;
    }

.form-check {
    padding: 0.5em 0.5em 0.5em 2.5em;
}

.form-check-input:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
    border-color: #DEE2E6;
}

.form-check-input:checked {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
    background-color: #649747;
    border-color: #649747;
}

/* Button */

.btn-primary,
.btn-default {
    border-radius: 2rem;
    background-color: #659947;
    border-color: #659947;
    color: #fff;
    margin: 0;
    padding: 10px 30px;
    text-decoration: none;
}

    .btn-primary:focus,
    .btn-primary.focus,
    .btn-primary:active,
    .btn-primary.active,
    .btn-primary:hover,
    .btn-default:hover {
        background-color: #70B603 !important;
        border-color: #94E224 !important;
        color: #fff !important;
    }

.btn:disabled,
.btn.disabled {
    cursor: not-allowed;
    pointer-events: none;
    background-color: #89898B;
    border-color: #797979;
    opacity: 1;
}

.btn-outline-primary {
    border-color: #659947;
    color: #659947;
    border: none;
}

.btn-link {
    border-radius: 0 !important;
    text-decoration: none !important;
    color: #659947 !important;
}

    .btn-link:focus,
    .btn-link.focus,
    .btn-link:active,
    .btn-link.active,
    .btn-link:hover {
        border-bottom: solid 1px #659947 !important;
        background-color: transparent !important;
        color: #659947 !important;
    }

/* Table */

table.table-striped th {
    background-color: #659947;
    color: #fff;
}

/***************************************************
* Telerik Overrides
***************************************************/

.card-header-primary {
    background-color: #23592A;
    color: #fff;
}

.k-window {
    border-radius: 1rem;
}

.k-window-titlebar {
    border-start-start-radius: 1rem;
    border-start-end-radius: 1rem;
}

.k-button-solid-base,
.k-button-solid-primary {
    padding: 10px 30px;
    border-radius: 2rem;
    text-transform: uppercase;
}

.k-button-solid-primary {
    background-color: #659947;
    border-color: #659947;
    color: #fff;
}

    .k-button-solid-primary:focus,
    .k-button-solid-primary.focus,
    .k-button-solid-primary:active,
    .k-button-solid-primary.active,
    .k-button-solid-primary:hover {
        background-color: #70B603 !important;
        border-color: #94E224 !important;
        color: #fff !important;
    }

.k-input-spinner .k-spinner-increase, 
.k-input-spinner .k-spinner-decrease {    
    border-inline-start-width: 0;    
}

.k-input {
    background-color: #F5F5F5;
}

.k-dropdownlist > .k-input-inner,
.form-control > input.k-input-inner {
    padding: 0 !important;
}

.k-numerictextbox > input.k-input-inner {
    padding: .375em .75em;
}

/* TelerikDropDownList */

.k-input-value-text,
.k-list-item,
.k-list-optionlabel {
    font-size: 1rem;
}

    .k-list-item:hover,
    .k-list-item.k-selected:hover {
        background-color: #70B603 !important;
        color: #fff !important;
        box-shadow: none;
    }

    .k-list-optionlabel.k-selected,
    .k-list-item.k-selected {
        background-color: #659947 !important;
        box-shadow: none;
    }

/* Modal Popup */

.k-dialog-custom {
    width: 80% !important;
    height: auto !important;
    max-height: 80% !important;
    overflow-y: auto;
}

@media only screen and (min-width: 992px) {
    .k-dialog-custom {
        width: 50% !important;
    }
}

/***************************************************
* Workforce Management
***************************************************/

.result-text-title {
    font-family: "Droid Sans", sans-serif;
    font-size: 32pt;
    font-weight: bold;
    text-transform: uppercase;
}

.legend-box {
    font-size: 11pt;
    font-weight: bold;
}

    .legend-box div {
        padding: 5px 10px;
    }

/***************************************************
* Workforce Management - Background Colors
***************************************************/

.bg-fill-formative {
    background-color: #C00000;
    color: #FFFFFF !important;
}

.bg-fill-emerging {
    background-color: #FFC000;
    color: #000000 !important;
}

.bg-fill-established {
    background-color: #92D050;
    color: #000000 !important;
}

.bg-fill-integrated {
    background-color: #00B0F0;
    color: #FFFFFF !important;
}

/***************************************************
* Workforce Management - Text Colors
***************************************************/

.txt-formative {
    color: #C00000 !important;
}

.txt-emerging {
    color: #FFC000 !important;
}

.txt-established {
    color: #92D050 !important;
}

.txt-integrated {
    color: #00B0F0 !important;
}
