﻿/*Muli Italic*/
@font-face {
    font-family: muli, sans-serif;
    font-weight: 400;
    font-style: italic;
}

/*Muli Regular*/
@font-face {
    font-family: muli, sans-serif;
    font-weight: 400;
    font-style: normal;
}

/*Muli Bold Italic*/
@font-face {
    font-family: muli, sans-serif;
    font-weight: 700;
    font-style: italic;
}

/*Muli Bold*/
@font-face {
    font-family: muli, sans-serif;
    font-weight: 700;
    font-style: normal;
}

:root {
    /*** Base Colors ***/
    --Black: #000000;
    --LightBlack: #101010;
    --DarkGray: #555555;
    --MediumGray: #707074;
    --LightGray: #A6A8AB;
    --ExtraLightGray: #E2E5EA;
    /*** Primary Colors ***/
    --Primary: #3061AD; /*Blue*/
    --PrimaryLight: #688EDF; /*Light Blue*/
    --PrimaryDark: #00387d; /*Dark Blue*/
    /*** Secondary Color  ***/
    --White: #fff;
    --Red: #ED353F;
    --Yellow: #FFCE08;
    --Green: #84BF28;  
    --Orange: #FF5F37;
    --Blue: #0090D0;
}

/*  Icon Colors */
.white {
    color: var(--White);
}

.orange {
    color: var(--Orange);
}

.red {
    color: var(--Red);
}

.blue {
    color: var(--Blue);
}

.yellow {
    color: var(--Yellow);
}

.green {
    color: var(--Green);
}

.LightGray {
    color: var(--LightGray)
}
/* BackGround Colors */
.bg-green {
    background-color: var(--Green);
}

.bg-blue {
    background-color: var(--Blue);
}

.bg-white {
    background-color: var(--White);
}



.bg-light-grey {
    background-color: var(--LightGray);
}

.bg-light-grey2 {
    background-color: #dadada;
}

.bg-medium-grey {
    background-color: var(--MediumGray);
}

body {
    font-family: muli, sans-serif;
    background-color: #E8E8E8;
}

h1 {
    font-size: 34px;
    margin-bottom: 2rem !important;
}

h2 {
    font-size: 24px;
    margin-bottom: 1rem !important;
}

h3 { 
    font-size:20px; 
}

label {
    font-size: 15px;
}

.punchsText label {
    font-size: 20px;
}


.pointer {
    cursor: pointer;
}

.required:after {
    content: " *";
    color: var(--Red);
}

.required-before:before {
    content: " *";
    color: var(--Red);
}

.table {
    font-size: 14px;
}

.fa-1-5x {
    font-size: 1.5em;
}

.small {
    font-size: 12px;
    line-height: 1.0;
}

input[type=radio] {
    transform: scale(1.5);
}

.btn-imageonly {
    color: #6c757d !important;
    border-color: #ced4da;
}

.apps i {
    font-size: 30px;
    color: #707074;
}

.content {
    margin-left: 1.5rem !important;  // ml-4
}

.cbBig{
    height: 30px;
    width: 30px;
}

.chartLabel {
    font-size:24px;
}

/* Cards */
.card-grey {
    background-color: #F7F7F7;
    border-top: 1px solid rgba(0,0,0,.125);
    border-left: 1px solid rgba(0,0,0,.125);
    border-right: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.card-white {
    background-color: #fff;
    border-top: 1px solid rgba(0,0,0,.125);
    border-left: 1px solid rgba(0,0,0,.125);
    border-right: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.card-header{
    min-height: 85px;
}

.card-text {
    margin-top:10px;
    font-size: 20px;
    font-weight: 500;
}

.card-footer {
    min-height: 240px;
}

.card-image {
    min-height: 148px;
}


.card-deck span {
    display: inline-block;
}

.card-deck {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.validation-summary-errors ul {
    list-style: none;
    color: red;
}

.dropshadow {
    box-shadow: 0px 3px 6px #00000029;
}

.flexrow{
    flex-direction:row;
}

.dthead {
    color: #fff;
    background-color: #767676;
}

.odd {
    background-color: #F7F7F7 !important;
}

a {
    text-decoration: none;
    color: #767676;
}

[data-component=messages] .MessageTime {
    font-size: 13px;
    color: #B1B1B1;
}

[data-component=messages] i {
    font-size: 18px;
}

a:hover {
    text-decoration: none;
    color: #767676;
}

.menu-text{
    font-size:14px;
}

.squish {
    line-height: 1em;
}

.modal-header {
    border-bottom: none !important;
}

.modal-footer {
    border-top: none !important;
}

.ui-datepicker{
    z-index: 100 !important;
}

.vertical-center {
    min-height: 100%;
    min-height: 100vh;
    /* Make it a flex container */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /* Align the bootstrap's container vertically */
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

/*Buttons*/
.btn-primary .btn-primary {
    color: var(--White);
    background-color: var(--Primary);
    border-color: var(--Primary);
    min-width: 126px;
    font-size: 14px;
}

    .btn-primary.focus, .btn-primary:focus, .btn-primary:hover {
        color: var(--White);
        background-color: var(--Primary);
        border-color: var(--Primary);
    }

.btn-primary2 {
    color: var(--White);
    background-color: var(--Primary);
    border-color: var(--Primary);
    min-width: 126px;
    font-size: 14px;
}
.btn-primary2.focus, .btn-primary2:focus, .btn-primary2:hover {
    color: var(--White);
    background-color: var(--Primary);
    border-color: var(--Primary);
}


.btn-outline-square {
    color: var(--Primary);
    background-color: var(--White);
    border-color: var(--Primary);
    font-size: 14px;
}


.btn-outline-primary {
    color: var(--Primary);
    background-color: var(--White);
    border-color: var(--Primary);
    min-width: 126px;
    font-size:14px;
}

    .btn-outline-primary.focus, .btn-outline-primary:focus, .btn-outline-primary:hover {
        color: var(--White);
        background-color: var(--Primary);
        border-color: var(--Primary);
    }

.btn-secondary {
    color: var(--White);
    background-color: #868e96;
    border-color: #868e96
}

    .btn-secondary.focus, .btn-secondary:focus, .btn-secondary:hover {
        color: #fff;
        background-color: #727b84;
        border-color: #6c757d
    }

    .btn-secondary.focus, .btn-secondary:focus {
        box-shadow: 0 0 0 .2rem rgba(152,159,166,.5)
    }

    .btn-secondary.disabled, .btn-secondary:disabled {
        color: #fff;
        background-color: #868e96;
        border-color: #868e96
    }

    .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show > .btn-secondary.dropdown-toggle {
        color: #fff;
        background-color: #6c757d;
        border-color: #666e76
    }

        .btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(152,159,166,.5)
        }

.btn-search {
    color: #fff;
    background-color: #0090D0;
    border-color: #0090D0
}

.noteHeading {
    padding: .375rem .75rem;
    font-size: 15px;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.btn-file input[type=file] {
    position: absolute;
    top: 0;
    font-size: 22px;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    cursor: inherit;
    display: block;
}

.float-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.col-1-5 {
    flex: 0 0 12.3%;
    max-width: 12.3%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.container {
    margin-top: 150px;
}



.container-xl {
    margin-top: 150px;
    margin-right: 30px;
    margin-left: 175px;
}

/*  Data tables */
.sorting_1 {
    background-color: #d9d9d9 !important;
}

.dataTables_paginate input {
    width: 40px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: #000000 !important;
    border: 1px solid #e8e8e8;
    background-color: #e8e8e8;
    background: none;
}

.dataTables_filter {
    white-space: nowrap;
}

    .dataTables_filter label, .dataTables_filter input, .dataTables_length select {
        display: inline-block;
        width: auto !important;
    }

    .dataTables_paginate input {
        display: inline-block;
    }



/* Panels */

.qccollapse {
    display: none;
}

    .qccollapse.in {
        display: block;
    }
   
.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.panel-body {
    padding: 15px;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

.panel-group {
    margin-bottom: 20px;
}

    .panel-group .panel {
        margin-bottom: 0;
        border-radius: 4px;
    }

        .panel-group .panel + .panel {
            margin-top: 5px;
        }

    .panel-group .panel-heading {
        border-bottom: 0;
    }

        .panel-group .panel-heading + .panel-collapse > .panel-body {
            border-top: 1px solid #ddd;
        }

.panel-default {
    border-color: #ddd;
}

    .panel-default > .panel-heading {
        color: #333;
        background-color: #f5f5f5;
        border-color: #ddd;
    }

        .panel-default > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #ddd;
        }

.panel-body:before, .panel-body:after {
    display: table;
}

.panel-body:after {
    clear: both;
}


/* 1024 x 768 - ipad*/
/* 1440 x 900 - labtop*/
/* 1680 x 1050 - desktop*/
/* 1920 x 1080 - desktop */
/* 2560 x 1440 - desktop*/




/* Medium devices (tablets, 768px and up)*/
@media (max-width: 768px) {
    .container-xl {
        margin-top: 125px;
        max-width: 738px;
    }
}

/* Medium devices (tablets, 768px and up)*/
@media (max-width: 900px) {
    .container-xl {
        margin-top: 125px;
        max-width: 870px;
    }
}


/* Large devices (desktops, 992px and up)*/
    @media (min-width: 1024px) {
        .container-xl {
            max-width: 870px;
            margin-left: 135px;
        }
}

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .container-xl {
        max-width: 1024px;
        margin-left: 150px;
    }
}



/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1400px) {
    .container-xl {
        max-width: 1024px;
        margin-left: 175px;
    }
}


/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1600px) {
    .container-xl {
        max-width: 1280px;
        margin-left: 175px;
    }
}

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1800px) {
    .container-xl {
        max-width: 1408px;
    }
}


@media print {
    body * {
        visibility: hidden;
    }

    .content, .content * {
        visibility: visible;
    }

    .content {
        position: absolute;
        left: 0;
        top: 0;
    }

    .noPrint, .noPrint * {
        visibility: hidden;
    }
}

@media screen {

    .noScreen, .noScreen * {
        visibility: hidden;
    }
    noScreen
}