/* Minification failed. Returning unminified contents.
(388,24): run-time error CSS1034: Expected closing parenthesis, found ','
(388,24): run-time error CSS1042: Expected function, found ','
(388,29): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
(411,43): run-time error CSS1019: Unexpected token, found ' '
(411,43): run-time error CSS1019: Unexpected token, found ' '
(411,43): run-time error CSS1042: Expected function, found ' '
(411,43): run-time error CSS1062: Expected semicolon or closing curly-brace, found ' '
(414,45): run-time error CSS1019: Unexpected token, found ' '
(414,45): run-time error CSS1019: Unexpected token, found ' '
(414,45): run-time error CSS1042: Expected function, found ' '
(414,45): run-time error CSS1062: Expected semicolon or closing curly-brace, found ' '
(418,45): run-time error CSS1019: Unexpected token, found ' '
(418,45): run-time error CSS1019: Unexpected token, found ' '
(418,45): run-time error CSS1042: Expected function, found ' '
(418,45): run-time error CSS1062: Expected semicolon or closing curly-brace, found ' '
(422,39): run-time error CSS1019: Unexpected token, found ' '
(422,39): run-time error CSS1019: Unexpected token, found ' '
(422,39): run-time error CSS1042: Expected function, found ' '
(422,39): run-time error CSS1062: Expected semicolon or closing curly-brace, found ' '
(425,41): run-time error CSS1019: Unexpected token, found ' '
(425,41): run-time error CSS1019: Unexpected token, found ' '
(425,41): run-time error CSS1042: Expected function, found ' '
(425,41): run-time error CSS1062: Expected semicolon or closing curly-brace, found ' '
(430,44): run-time error CSS1019: Unexpected token, found ' '
(430,44): run-time error CSS1019: Unexpected token, found ' '
(430,44): run-time error CSS1042: Expected function, found ' '
(430,44): run-time error CSS1062: Expected semicolon or closing curly-brace, found ' '
 */
#vanillatoasts-container {
  position: fixed;
  width: 320px;
  font-family: 'Helvetica';
  pointer-events: none;
}
.toasts-top-right{
  top: 0;
  right: 0;
}
.toasts-top-left{
  left:0;
  top:0;
}
.toasts-bottom-left{
  left: 0;
  bottom:0;
}
.toasts-bottom-right{
  bottom:0;
  right: 0;
}
.toasts-top-center{
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.toasts-bottom-center{
  bottom:0;
  left: 50%;
  transform: translateX(-50%);
}
.vanillatoasts-toast {
  position: relative;
  padding: 20px 17px;
  margin: 20px;
  border-radius: 10px;
  background: #F5F5F5;
  cursor: pointer;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  animation-duration:  .3s;
  animation-name: VanillaToasts;
  animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  pointer-events: all;
}

.vanillatoasts-fadeOut {
  animation-name: VanillaToastsFadeOut;
  animation-duration: .3s;
  animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  animation-fill-mode: forwards;
}

#vanillatoasts-container p,
#vanillatoasts-container h4 {
  margin: 3px 0!important;
}

.vanillatoasts-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}

.vanillatoasts-text {
  font-size: 14px;
  color: #777;
}

.vanillatoasts-icon {
  position: absolute;
  top: 5px;
  left: -40px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  background: #FFF;
}

.vanillatoasts-toast a, .vanillatoasts-toast a:hover {
  color: #549EDB !important;
  text-decoration: none !important;
}

/** toast types */
.vanillatoasts-success {
  border-bottom: 2px solid #51C625;
}

.vanillatoasts-warning {
  border-bottom: 2px solid #DB9215;
}

.vanillatoasts-error {
  border-bottom: 2px solid #DB2B1D;
}

.vanillatoasts-info {
  border-bottom: 2px solid #27ABDB;
}

@keyframes VanillaToasts {
  from {
    transform: translate3d(400px, 0, 0);;
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes VanillaToastsFadeOut {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(400px, 0, 0);
    opacity: 0;
  }
}

/* 
    dnr-bootstrap-override.css - Override behaviors of bootstrap.css or bootstrap-theme.css to make it more the way we need it. 
    The first section is DNR-WMAS general behaviors, not necessarily from bootstrap.
*/
#appName {
    font-family: 'Work Sans', sans-serif;
    font-size: 3.2em;
    font-weight:600;
}

#appDesc {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2em;
    height: 60px;
    vertical-align: middle;
}
    #appDesc h4, h5 {
        line-height: .75;
    }

    #appDesc h5 {
        font-weight: 400;
    }

.view-label {
    font-weight: 700 !important;
}

    .view-label:after {
        content: ":";
    }

.view-label-no-colon {
    font-weight: 700 !important;
}

.codexSnipPopoverContainer {
    max-width: 33%;
}

.body-content {
    min-height: 650px;
}

.header-content {
    margin-top: .5rem;
    line-height: normal;
}

.navbar {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}

.breadcrumb {
    padding-top: 0.5rem;
    padding-bottom: 0.125rem;
}

a {
    color: #1b3dd3;
}

.tooltip {
    text-transform: none;
}

.fs-5 {
    font-size: 0.875rem !important;
}

.fs-6 {
    font-size: 0.625rem !important;
}

@media (max-width: 576px) {
    .fs-xs-5 {
        font-size: 0.875rem !important;
    }
}

.callout {
    padding: 10px 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
}

    .callout h4 {
        margin-top: 0;
        margin-bottom: 5px;
    }

    .callout p:last-child {
        margin-bottom: 0;
    }

    .callout code {
        border-radius: 3px;
    }

    .callout + .bs-callout {
        margin-top: -5px;
    }

.callout-default {
    border-left-color: #777;
}

    .callout-default h4 {
        color: #777;
    }

.callout-primary {
    border-left-color: #428bca;
}

    .callout-primary h4 {
        color: #428bca;
    }

.callout-success {
    border-left-color: #5cb85c;
}

    .callout-success h4 {
        color: #5cb85c;
    }

.callout-danger {
    border-left-color: #d9534f;
}

    .callout-danger h4 {
        color: #d9534f;
    }

.callout-warning {
    border-left-color: #f0ad4e;
}

    .callout-warning h4 {
        color: #f0ad4e;
    }

.callout-info {
    border-left-color: #5bc0de;
}

    .callout-info h4 {
        color: #5bc0de;
    }

.callout-bdc {
    border-left-color: #29527a;
}

    .callout-bdc h4 {
        color: #29527a;
    }

/* iowa.gov sliver */
@media print {
    #iowa_sliver, #iowa_sliver_spacer * {
        display: none !important;
    }

    .header-content {
        padding: 0;
    }
}
/* bootstrap table */
/* there's something goofy with bootswatch 5x and bs-table search. it wants the line height as 24px, but the icons in the #toolbar are 22px. just force it for now. */
.search-input {
    line-height: 22px;
}

/* building on bootstrap classes */
/* makes the definition list a little closer together when desired.*/
.dl-compact dd {
    margin-bottom: 0.1rem;
}
/* HTML DIFF */
ins {
    background-color: #cfc;
    text-decoration: inherit;
}

del {
    color: #999;
    background-color: #FEC8C8;
}

ins.mod {
    background-color: #FFE1AC;
}
/* Adding all this for proper styling of form error validation. bootstrap 4 not working properly for some reason*/
.input-validation-error {
    border-color: #d9534f;
    background-color: #f8d7da;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .help-block,
.has-error .col-form-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
    color: #d9534f;
}

.has-error .form-control {
    border-color: #d9534f;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

    .has-error .form-control:focus {
        border-color: #c9302c;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #eba5a3;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #eba5a3;
    }

.has-error .input-group-addon {
    color: #d9534f;
    border-color: #d9534f;
    background-color: #f2dede;
}

.has-error .form-control-feedback {
    color: #d9534f;
}

/* Begin accessibility overrides */
/* for Sandstone theme */
.page-link {
    background-color: white;
    color: rgb(97,99,92);
}

.page-item.active > .page-link {
    background-color: rgb(44,82,120);
    color: white;
}

.page-item.page-last-separator.disabled > .page-link {
    color: rgb(97,99,92);
}

.page-list > .btn-group.dropdown.dropup > .btn-secondary {
    background-color: rgb(44,82,120);
    color: white;
}

.nav-tabs > .nav-item > .nav-link {
    color: rgb(62,63,58,0.75);
}
/* Not accessibility, just for good looks */
.fs-45 {
    font-size: 18px;
    font-weight: 600;
}

/* End accessibility overrides*/
.site-name-header {
    margin-bottom:0.75rem;
}
.site-name-header a {
    color: black;
    text-decoration:none;
}

#appDescBio {
    font-family: 'Roboto', serif;
    vertical-align: middle;
}
/* clamp viewports min/max = 992/1920 */
    #appDescBio .desc1 {
        font-size: clamp(1rem, 0.7328rem + 0.4310vw, 1.25rem);
    }
    #appDescBio .desc2 {
        font-size: clamp(0.9rem, 0.7931rem + 0.1724vw, 1rem);
    }

    #appDescBio .desc3 {
        font-size: clamp(0.8rem, 0.5862rem + 0.3448vw, 1rem);
    }

#calloutPropertyAccess h4 {
    font-size: clamp(1rem, 0.7328rem + 0.4310vw, 1.25rem);
}
#calloutPropertyAccess {
    font-size: clamp(0.9rem, 0.7931rem + 0.1724vw, 1rem);
    border-color: #5bc0de;
}

.text-samps {
    font-size: clamp(0.875rem, -6.5000rem + 8.0000vw, 1rem);
}

#editorBody {
    background-color: #405568;
}
#editorBody main{
    background-color: white;
    padding-bottom:2rem;
}
.bg-excellentIBI {
    background-color: #2267d6 !important;
}
.resultRow:nth-child(odd) {
    background: #F2F2F2;
}

.resultRow:nth-child(even) {
    background: #D3D0C2;
}
.commentsIcon {
    padding-right: 5px;
}
.ctlDatePicker{
    width:120px;
}
.text-help {
    font-size: .75rem !important;
}
.fishnet-card {
    border-color: #696945;
    background-color: #edf5f0;
}
    .fishnet-card a {
        color: #4E6151;
    }

.editor-field-number {
    width: 75px;
}

.editor-field-number-ddl {
    width: 60px;
}

.bn-cardheader {
    font-size: 1.1rem;
    font-weight: bold;
}
.scorecardValue {
    font-size: 50px;
    font-weight: bold;
}

/* Summary Pages */
.panel-icon {
    background: rgba(255,255,255,0.9);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 50%;
    width: 7vmin;
    height: 7vmin;
    float: left;
    margin-right: 15px;
    text-align: center;
}

.panel-icon.icon-total {
    background-color: #FA8564;
}

.panel-icon.icon-unique {
    background-color: #1FB5AD;
}

.panel-icon.icon-sessions {
    background-color: #A48AD4;
}

.panel-icon.icon-analysis {
    background-color: #AEC785;
}

.panel-icon .fa-solid {
    color: #fff;
    font-size: 4vmin;
    padding: 1.5vmin 0;
}

.panel-icon .bi {
    color: #fff;
    font-size: 4vmin;
    padding: 1.5vmin 0;
}
/* End summary pages*/
/* hab */
.efhiFormula {
    font-size: 20px;
}
