/* Minification failed. Returning unminified contents.
(168,63): run-time error CSS1039: Token not allowed after unary operator: '-color-white'
 */
#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;
    }

#tophat {
    background-color: #171818;
    line-height: 2.3rem;
    height: 40px;
    color: white !important;
    font-family: "Work Sans",Arial,Helvetica,sans-serif !important;
    font-size: 14px;
    font-weight: 400;
}

.tophatLink {
    color: white !important;
    text-decoration: none;
}

    .tophatLink:hover {
        color: white !important;
        -webkit-text-decoration: underline solid .125rem var(--color-white) !important;
        text-decoration: underline solid 0.125rem white !important;
        text-underline-offset: 0.25rem !important;
        transition: color .12s ease-in,text-decoration-color .12s ease-in !important;
    }

.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;
}
/* Site.css for ADBNet-specific styles */
.segmentHeaderLink {
    color: royalblue;
}
.panel-waternetwork {
    background-color: #476A6F;
}
.panel-waternetwork > .fa-stack > .fa-inverse {
    color: #476A6F;
}
.labelDefine {
    font-weight: bold;
}
.sectionWmn .card-title{
    font-size:1rem;
    font-weight:bold;
}
.altNameText {
    font-size: 12px;
    margin-left: 30px;
    font-weight: normal;
}

@media (max-width: 767px) {
    p.segment-subtitle {
        color: rgba(128, 128, 128, 0.9);
        font-family: "Lato",sans-serif;
        font-size: 12px;
        letter-spacing: 1px;
        margin-top: 10px;
        text-transform: uppercase;
    }
    #asmExplanation {
        overflow-x:scroll;
    }
}

@media (min-width: 768px) {
    p.segment-subtitle {
        color: rgba(128, 128, 128, 0.9);
        font-family: "Lato",sans-serif;
        font-size: 12px;
        letter-spacing: 1px;
        margin-top: 14px;
        padding: 0 50px;
        text-align: center;
        text-transform: uppercase;
    }
    p.segment-altnames-subtitle {
        color: rgba(128, 128, 128, 0.9);
        font-family: "Lato",sans-serif;
        font-size: 14px;
        letter-spacing: 1px;
        padding: 0 50px;
        text-align: center;
    }
}

@media only screen and (max-width: 767px) and (min-aspect-ratio: 13/9) {
    /* landscape */
    .mobilePortraitOnly {
        display: none !important;
    }
}

@media only screen and (max-width: 767px) and (max-aspect-ratio: 13/9) {
    /* portrait */
    .segmentHeaderLink small {
        display: block;
    }
    .segmentHeaderLink small.ps-2 {
        padding-left:0 !important;
    }

    p.segment-subtitle.ps-2 {
        padding-left: 0;
    }
    p.segment-altnames-subtitle.text-center {
        text-align:left !important;
        padding-bottom:5px;
    }
}

/* Assessment Page */
.border-left-primary {
    border-left: 0.25rem solid #4e73df !important;
}

.border-left-success {
    border-left: 0.25rem solid #1cc88a !important;
}

.border-left-info {
    border-left: 0.25rem solid #36b9cc !important;
}

.border-left-warning {
    border-left: 0.25rem solid #f6c23e !important;
}

.border-left-danger {
    border-left: 0.25rem solid #e74a3b !important;
}

.border-bottom-primary {
    border-bottom: 0.25rem solid #4e73df !important;
}

.border-bottom-success {
    border-bottom: 0.25rem solid #1cc88a !important;
}

.border-bottom-info {
    border-bottom: 0.25rem solid #36b9cc !important;
}

.border-bottom-warning {
    border-bottom: 0.25rem solid #f6c23e !important;
}

.border-bottom-danger {
    border-bottom: 0.25rem solid #e74a3b !important;
}
.text-xs {
    font-size: .9rem;
}

.altRowColor:nth-child(odd) {
    background-color: #f8f5f0;
}
