﻿/*  GAGE Default CSS Colors
:root {
    --blue: #2C3E50;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #E74C3C;
    --orange: #fd7e14;
    --yellow: #F39C12;
    --green: #18BC9C;
    --teal: #20c997;
    --cyan: #3498DB;
    --white: #fff;
    --gray: #95a5a6;
    --gray-dark: #343a40;
    --primary: #2C3E50;
    --secondary: #95a5a6;
    --success: #18BC9C;
    --info: #3498DB;
    --warning: #F39C12;
    --danger: #E74C3C;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
 */

/* -------------------------------------------------------------------------------------------------------------------- */
/* 2022-01-30 [STEVE] Adding Style Settings for Dashboard Widgets                                                       */
/* -------------------------------------------------------------------------------------------------------------------- */
.dashboardWidget {
    border: 1px solid lightgrey;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-right: 10px;
    padding-left: 10px;
}

.activeDasboard {
    min-height: 500px;
    /*border: 1px solid lightgrey;
    border-radius: 5px;*/
    padding: 15px 15px 15px 15px;
    float: left;
}

.highlightDashboard {
    background-color: #f5f5f5;
}
/* -------------------------------------------------------------------------------------------------------------------- */
/* End of Widget style settings                                                                                         */
/* -------------------------------------------------------------------------------------------------------------------- */

.gage-textarea {
    height: 100%;
    width: 100%;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
    max-width: 100%;
}

.gage-link {
    color: #3498DB !important;
    text-decoration: none;
}

    .gage-link:hover {
        color: #3498DB !important;
        text-decoration: underline;
    }

    .gage-link:focus {
        color: #3498DB !important;
        text-decoration: underline;
    }

body {
    padding-top: 10px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

.label-primary {
    background-color: #2C3E50;
    color: #fff;
}

.label-warning {
    background-color: #F39C12;
    color: #212529;
}

.label-default {
    background-color: #3498DB;
    color: #fff;
}

.label-danger {
    background-color: #E74C3C;
    color: #fff;
}

.label-success {
    background-color: #18BC9C;
    color: #fff;
}

.label-yellow {
    background-color: #efbc00;
    color: #fff;
}

.label-gray {
    background-color: #999999;
    color: #fff;
}

.label-120 {
    display: block;
    width: 120px;
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    color: #fff;
    border-radius: .25em;
}

.badge, .label {
    font-weight: 700;
    line-height: 1;
    vertical-align: baseline;
    white-space: nowrap;
    text-align: center;
}

.btn {
    line-height: 1.0 !important;
}

.modal-loading {
    position: absolute !important;
    float: left !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
}

/*.loading-modal {
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    z-index: 99;
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    min-height: 100%;
    width: 100%;
}

.loading {
    font-family: Arial;
    font-size: 10pt;
    border: none;
    width: 200px;
    height: 100px;
    display: none;
    position: fixed;
    background-color: white;
    z-index: 999;
}*/

/* list-group-item style hover/focus backgrounds */
.list-group-item:hover,
.list-group-item:focus {
    color: #555;
    background-color: #f5f5f5;
}

.list-group-item-info:hover,
.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3;
}

.list-group-item-danger:hover,
.list-group-item-danger:focus {
    color: #a94442;
    background-color: #ebcccc;
}

.list-group-item-warning:hover,
.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc;
}

.list-group-item-success:hover,
.list-group-item-success:focus {
    color: #3c763d;
    background-color: #d0e9c6;
}

/* menu-anchor style hover/focus backgrounds */
.menu-anchor:hover,
.menu-anchor:focus {
    color: #555;
    background-color: #f5f5f5;
    text-decoration: none;
}

.menu-anchor-info:hover,
.menu-anchor-info:focus {
    color: #31708f;
    background-color: #c4e3f3;
    text-decoration: none;
}

.menu-anchor-danger:hover,
.menu-anchor-danger:focus {
    color: #a94442;
    background-color: #ebcccc;
    text-decoration: none;
}

.menu-anchor-warning:hover,
.menu-anchor-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc;
    text-decoration: none;
}

.menu-anchor-success:hover,
.menu-anchor-success:focus {
    color: #3c763d;
    background-color: #d0e9c6;
    text-decoration: none;
}

.label-cell {
    background-color: #eeeeee;
    padding: 4px 10px 4px 10px;
    white-space: nowrap;
    border: 1px solid #cccccc;
    vertical-align: top;
}

.data-cell {
    background-color: #ffffff;
    padding: 4px 10px 4px 10px;
    white-space: nowrap;
    border: 1px solid #cccccc;
    vertical-align: top;
}

.label-cell-noborder {
    background-color: #eeeeee;
    padding: 4px 10px 4px 10px;
    white-space: nowrap;
    border: none;
    vertical-align: middle;
}

.data-cell-noborder {
    background-color: #ffffff;
    padding: 4px 10px 4px 10px;
    white-space: nowrap;
    border: none;
    vertical-align: middle;
}

.width30 {
    width: 30%;
}
.width70 {
    width: 70%;
}

.success-header-cell {
    /*background-color: #58fCdC !important;*/
    /*background-color: #18BC9C !important;*/
    background-color: #08AC8C !important;
    color: #ffffff;
}

.primary-header-cell {
    /*background-color: #58fCdC !important;*/
    /*background-color: #18BC9C !important;*/
    background-color: darkslateblue !important;
    color: #ffffff;
}

.cyan-header-cell {
    /*background-color: #58fCdC !important;*/
    /*background-color: #18BC9C !important;*/
    background-color: #3498DB !important;
    color: #ffffff;
}

.light-header-cell {
    /*background-color: #58fCdC !important;*/
    /*background-color: #18BC9C !important;*/
    background-color: #f0f0f0 !important;
    color: #404040;
}

.red-header-cell {
    /*background-color: #58fCdC !important;*/
    /*background-color: #18BC9C !important;*/
    background-color: #7d3636 !important;
    color: #404040;
}

.subtotal-data-cell {
    /*background-color: #58fCdC !important;*/
    /*background-color: #18BC9C !important;*/
    background-color: #faf2cc !important;
    font-weight: bold;
    color: #000000;
}

/* Bootstrap 4 text input with search icon */
    .has-search .form-control {
    padding-left: 2.375rem;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.border-light-gage {
    outline-color: #cccccc;
    border-color: #cccccc;
}


/* Testing a File Upload Package */
/*body {
    background-color: #f2f7fb;
}

.mt-100 {
    margin-top: 100px;
}

.card {
    border-radius: 5px;
    -webkit-box-shadow: 0 0 5px 0 rgba(43, 43, 43, .1), 0 11px 6px -7px rgba(43, 43, 43, .1);
    box-shadow: 0 0 5px 0 rgba(43, 43, 43, .1), 0 11px 6px -7px rgba(43, 43, 43, .1);
    border: none;
    margin-bottom: 30px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.card .card-header {
    background-color: transparent;
    border-bottom: none;
    padding: 20px;
    position: relative
}

.card .card-header h5:after {
    content: "";
    background-color: #d2d2d2;
    width: 101px;
    height: 1px;
    position: absolute;
    bottom: 6px;
    left: 20px
}

.card .card-block {
    padding: 1.25rem;
}

.dropzone.dz-clickable {
    cursor: pointer;
}

.dropzone {
    min-height: 150px;
    border: 1px solid rgba(42, 42, 42, 0.05);
    background: rgba(204, 204, 204, 0.15);
    padding: 20px;
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px 0 rgba(43, 43, 43, 0.1);
    box-shadow: inset 0 0 5px 0 rgba(43, 43, 43, 0.1);
}

.m-t-20 {
    margin-top: 20px;
}

.btn-primary,
.sweet-alert button.confirm,
.wizard > .actions a {
    background-color: #4099ff;
    border-color: #4099ff;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all ease-in .3s;
    transition: all ease-in .3s;
}

.btn {
    border-radius: 2px;
    text-transform: capitalize;
    font-size: 15px;
    padding: 10px 19px;
    cursor: pointer;
}*/

.fileuploadgroup {
    border-radius: 2px;
    border: 2px solid rgba(42, 42, 42, 0.15);
    width: 550px;
}

.pricingHeader {
    /*background-color: rgb(84,130,53);*/
    background-color: rgb(230,230,230);
    color: #333333;
    padding: 5px 0 5px 0;
    line-height: normal;
}

.termHeader {
    background-color: #c4e3f3;
    color: #333333;
}

.startHeader {
    background-color: #c4e3f3;
    color: #333333;
}

.startMonth {
    background-color: #f0f0f0;
    color: #333333;
}

.pricingTerm {
    background-color: #ffffcc;
}

.pricingInputLabel {
    background-color: #c4e3f3;
    width: 50%;
    vertical-align: middle;
    font-weight: bold;
}

.pricingInputHeader {
    background-color: #c4e3f3;
    vertical-align: middle;
    font-weight: bold;
}

.pricingInputLabelEditable {
    background-color: #ffffcc;
    width: 50%;
    vertical-align: middle;
    font-weight: bold;
}

.temperature_100 {
    background-color: #FA696E;
}

.temperature_99 {
    background-color: #FA6E6E;
}

.temperature_98 {
    background-color: #FA706F;
}

.temperature_97 {
    background-color: #FA736F;
}

.temperature_96 {
    background-color: #FA7670;
}

.temperature_95 {
    background-color: #FA7870;
}

.temperature_94 {
    background-color: #FA7B70;
}

.temperature_93 {
    background-color: #FA7D71;
}

.temperature_92 {
    background-color: #FA8071;
}

.temperature_91 {
    background-color: #FB8372;
}

.temperature_90 {
    background-color: #FB8572;
}

.temperature_89 {
    background-color: #FB8872;
}

.temperature_88 {
    background-color: #FB8A73;
}

.temperature_87 {
    background-color: #FB8D73;
}

.temperature_86 {
    background-color: #FB9074;
}

.temperature_85 {
    background-color: #FB9274;
}

.temperature_84 {
    background-color: #FB9574;
}

.temperature_83 {
    background-color: #FB9775;
}

.temperature_82 {
    background-color: #FB9A75;
}

.temperature_81 {
    background-color: #FC9D76;
}

.temperature_80 {
    background-color: #FC9F76;
}

.temperature_79 {
    background-color: #FCA276;
}

.temperature_78 {
    background-color: #FCA477;
}

.temperature_77 {
    background-color: #FCA777;
}

.temperature_76 {
    background-color: #FCAA78;
}

.temperature_75 {
    background-color: #FCAC78;
}

.temperature_74 {
    background-color: #FCAF78;
}

.temperature_73 {
    background-color: #FCB179;
}

.temperature_72 {
    background-color: #FCB479;
}

.temperature_71 {
    background-color: #FDB77A;
}

.temperature_70 {
    background-color: #FDB97A;
}

.temperature_69 {
    background-color: #FDBC7A;
}

.temperature_68 {
    background-color: #FDBE7B;
}

.temperature_67 {
    background-color: #FDC17B;
}

.temperature_66 {
    background-color: #FDC47C;
}

.temperature_65 {
    background-color: #FDC67C;
}

.temperature_64 {
    background-color: #FDC97C;
}

.temperature_63 {
    background-color: #FDCB7D;
}

.temperature_62 {
    background-color: #FDCE7D;
}

.temperature_61 {
    background-color: #FED17E;
}

.temperature_60 {
    background-color: #FED37E;
}

.temperature_59 {
    background-color: #FED67E;
}

.temperature_58 {
    background-color: #FED87F;
}

.temperature_57 {
    background-color: #FEDB7F;
}

.temperature_56 {
    background-color: #FEDE80;
}

.temperature_55 {
    background-color: #FEE080;
}

.temperature_54 {
    background-color: #FEE380;
}

.temperature_53 {
    background-color: #FEE581;
}

.temperature_52 {
    background-color: #FEE881;
}

.temperature_51 {
    background-color: #FFEB82;
}

.temperature_50 {
    background-color: #FBE981;
}

.temperature_49 {
    background-color: #F8E981;
}

.temperature_48 {
    background-color: #F5E881;
}

.temperature_47 {
    background-color: #F2E781;
}

.temperature_46 {
    background-color: #EFE681;
}

.temperature_45 {
    background-color: #ECE581;
}

.temperature_44 {
    background-color: #E9E481;
}

.temperature_43 {
    background-color: #E6E381;
}

.temperature_42 {
    background-color: #E3E281;
}

.temperature_41 {
    background-color: #E0E281;
}

.temperature_40 {
    background-color: #DCE180;
}

.temperature_39 {
    background-color: #D9E080;
}

.temperature_38 {
    background-color: #D6DF80;
}

.temperature_37 {
    background-color: #D3DE80;
}

.temperature_36 {
    background-color: #D0DD80;
}

.temperature_35 {
    background-color: #CDDC80;
}

.temperature_34 {
    background-color: #CADB80;
}

.temperature_33 {
    background-color: #C7DA80;
}

.temperature_32 {
    background-color: #C4D980;
}

.temperature_31 {
    background-color: #C1D980;
}

.temperature_30 {
    background-color: #BDD87F;
}

.temperature_29 {
    background-color: #BAD77F;
}

.temperature_28 {
    background-color: #B7D67F;
}

.temperature_27 {
    background-color: #B4D57F;
}

.temperature_26 {
    background-color: #B1D47F;
}

.temperature_25 {
    background-color: #AED37F;
}

.temperature_24 {
    background-color: #ABD27F;
}

.temperature_23 {
    background-color: #A8D17F;
}

.temperature_22 {
    background-color: #A5D07F;
}

.temperature_21 {
    background-color: #A2D07F;
}

.temperature_20 {
    background-color: #9ECF7E;
}

.temperature_19 {
    background-color: #9BCE7E;
}

.temperature_18 {
    background-color: #98CD7E;
}

.temperature_17 {
    background-color: #95CC7E;
}

.temperature_16 {
    background-color: #92CB7E;
}

.temperature_15 {
    background-color: #8FCA7E;
}

.temperature_14 {
    background-color: #8CC97E;
}

.temperature_13 {
    background-color: #89C87E;
}

.temperature_12 {
    background-color: #86C77E;
}

.temperature_11 {
    background-color: #83C77E;
}

.temperature_10 {
    background-color: #7FC67D;
}

.temperature_9 {
    background-color: #7CC57D;
}

.temperature_8 {
    background-color: #79C47D;
}

.temperature_7 {
    background-color: #76C37D;
}

.temperature_6 {
    background-color: #73C27D;
}

.temperature_5 {
    background-color: #70C17D;
}

.temperature_4 {
    background-color: #6DC07D;
}

.temperature_3 {
    background-color: #6ABF7D;
}

.temperature_2 {
    background-color: #67BE7D;
}

.temperature_1 {
    background-color: #64BE7D;
}


/*
    Custom GAGE Button color btn-gage1
*/

.btn-gage1 {
    color: #ffffff;
    background-color: #8A43AD;
    border-color: #541863;
}

    .btn-gage1:hover,
    .btn-gage1:focus,
    .btn-gage1:active,
    .btn-gage1.active,
    .open .dropdown-toggle.btn-gage1 {
        color: #ffffff;
        background-color: #49247A;
        border-color: #541863;
    }

    .btn-gage1:active,
    .btn-gage1.active,
    .open .dropdown-toggle.btn-gage1 {
        background-image: none;
    }

    .btn-gage1.disabled,
    .btn-gage1[disabled],
    fieldset[disabled] .btn-gage1,
    .btn-gage1.disabled:hover,
    .btn-gage1[disabled]:hover,
    fieldset[disabled] .btn-gage1:hover,
    .btn-gage1.disabled:focus,
    .btn-gage1[disabled]:focus,
    fieldset[disabled] .btn-gage1:focus,
    .btn-gage1.disabled:active,
    .btn-gage1[disabled]:active,
    fieldset[disabled] .btn-gage1:active,
    .btn-gage1.disabled.active,
    .btn-gage1[disabled].active,
    fieldset[disabled] .btn-gage1.active {
        background-color: #8A43AD;
        border-color: #541863;
    }

    .btn-gage1 .badge {
        color: #8A43AD;
        background-color: #ffffff;
    }
    /*
        End custom GAGE button btn-gage1
    */
