/* Minification failed. Returning unminified contents.
(344,24): run-time error CSS1034: Expected closing parenthesis, found ','
(344,24): run-time error CSS1042: Expected function, found ','
(344,29): 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%;
}

.mobileMapHelp {
    font-weight: 300;
    font-style: italic;
}

.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;
    }

/* 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;
}

/* 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;
}
.list-group > .list-group-item.disabled {
    color: rgb(97,99,92) !important;
}
.nav-tabs > .nav-item > .nav-link {
    color: rgb(62,63,58,0.75);
}
.modal-header{
    font-weight:bold;
}

.navbar-dark .navbar-nav .nav-link {
    color: white;
}

.navbar-dark .navbar-text {
    color: white;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: white;
    transform: scale(1.1);
}
/* Not accessibility, just for good looks */
.fs-45 {
    font-size: 18px;
    font-weight: 600;
}

/* End accessibility overrides*/
#editorBody {
    background-color: #405568;
}

#editorBody main {
    background-color: white;
    padding-bottom: 2rem;
}
p.event-location-subtitle {
    color: rgba(100, 100, 100);
    font-family: "Lato",sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 14px;
    padding: 0 50px;
    text-align: center;
    text-transform: uppercase;
}
