<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Set theme colors up here and get a nice retheming of the PIM interface.
 */

:root {
    --primary: #4b8492;
    --primary-foreground: white;
    --secondary: #417890;
    --secondary-foreground: white;
    --accent: #ccac3d;
    --accent-foreground: #111111;
    --success: #1d611d;
    --warning: #C04947;
    --error: #e91e63;
    --warning-foreground: white;
    --light: #eee;
    --form-background: white;
    --form-border: #43553a;
    --form-foreground: #222;
}

p.copyright {
  margin: 0 auto;
  text-align: right;
  opacity: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: .7em;
  background-color: var(--form-background);
  opacity: .85;
  color: var(--form-foreground);
  padding: 5px;
  backdrop-filter: blur(5px);
}

p.copyright a {
  color: #0078A8 !important;
  text-decoration: none !important;
}

br {
  margin: 0 !important;
}

a {
    transition: all .25s;
}

hr {
    margin: 1rem 0;
    padding: 0;
    border-top: 2px solid var(--light);
}

/* background */

#bg-vid {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

/* LAYOUT COLORS
 *
 */

.large.inline-block.text-left, .content-arrow, .content-close, .content-root.animated.fadeInLeft {
  background: white !important;
  color: #222;
}

.content-root,
.content-arrow,
.content-close {
  border: 0;
}

.content-arrow a img,
.content-close a img {
  filter: invert(100%);
  opacity: 0.4;
}

.content-edit.edit-tutorial {
  background-color: var(--primary) !important;
}

.content-edit.edit-cancel {
  background-color: var(--secondary) !important;
}

/* BUTTONS
 *
 */

.controls .menu-toggle {
  background-color: var(--secondary) !important;
}

.home-inline-buttons a.btn-primary {
  margin-bottom: 0;
}

.btn-primary,
.btn-primary.full,
input[type='submit'] {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: 2px solid var(--primary);
  padding: 1rem 1.25rem;
  text-align: center;
}

input[type='submit'] {
  width: auto !important;
}

.controls .control {
  background-color: var(--primary);
}

.controls .control:hover {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.controls .control.active {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-primary.content-close-btn,
.btn-primary[data-navigate='previous'] {
  background-color: var(--light);
  color: var(--form-foreground);
  border: 2px solid var(--light);
}

#content-root a:not(.btn-primary) {
  color: var(--primary);
}

#content-root p a:not(.btn-primary) {
  color: var(--primary);
  text-decoration: underline;
}

a.btn-primary:hover {
  background-color: transparent !important;
  border: 2px solid var(--primary) !important;
  color: var(--primary) !important;
}

.btn-primary[data-navigate='previous']:hover {
  color: var(--warning) !important;
  background-color: transparent !important;
  border-color: var(--warning) !important;
}

.form-control {
  background-color: var(--form-background);
  border-color: var(--form-border);
  color: var(--form-foreground);
}

.form-control.user-success {
  border-color: var(--success);
}

.form-control.user-error {
  border-color: var(--error);
}

.ws-errorbox p {
  border-color: var(--error);
  background-color: var(--error);
}

.required-icon:before {
  color: var(--error);
}

input.save {
  background-color: var(--primary);
}

select.form-control {
  color: var(--primary);
  font-weight: bold;
}

.form-group {
  margin: 0 0 2rem 0;
}

.form-group .radio-inline,
.form-group .checkbox-inline {
  display: block;
}

.form-group &gt; label,
.form-group .form-label {
  margin: 0 0 1rem 0;
  line-height: 1.4;
  font-size: 1.1rem;
  font-weight: bold;
}

.form-group &gt; label.checkbox-inline,
.form-group &gt; label.radio-inline {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: normal;
}

.form-group.hidden-label &gt; label {
  display: none;
}

.center {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}


/* TEXT
 *
 */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--secondary) !important;
}

/* LEGEND
 *
 */

.legend-category {
  background-color: var(--light);
  color: #222;
  border: none;
  margin-bottom: 0.5em;
}

.legend-image svg {
  background-color: white;
  border: 4px solid white;
}

.legend-category h2 {
  color: #222 !important;
}

/* MODALS
 *
 */

.modal h1,
.modal h2 {
  color: var(--light) !important;
}

.modal,
.modal a.close-modal {
  background-color: var(--primary) !important;
}

.modal a.btn-primary {
  background-color: var(--secondary) !important;
  border: 2px solid var(--secondary) !important;
}

.modal a.btn-primary:hover {
  background-color: var(--accent) !important;
  border: 2px solid var(--accent) !important;
}

/* Device-specific
 *
 */

@media (min-width: 600px) {
  .home-inline-buttons {
    margin: 1.4rem 0 0 0;
    align-items: center;
  }

  .home-inline-buttons-item {
    margin-right: 1rem !important;
  }
}

@media only screen and (min-width: 768px) {
  .content-arrow,
  .content-close {
    /* border-bottom: 2px solid var(--secondary);
    border-top: 2px solid var(--secondary);
    border-right: 2px solid var(--secondary);
    margin-right: -71px !important; */
  }

  .control {
    background-color: var(--primary);
  }

  .control:hover {
    color: #222;
    background-color: var(--accent);
  }
}

a.delete-confirm,
#content-root .comments a.tiny-btn {
  background-color: var(--primary-foreground);
  color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  border-radius: 3px;
  padding: 3px 6px;
  margin: 0 4px 0 0;
  font-size: 0.9rem;
  text-decoration: none;
}

.comments p .comment-buttons {
  display: block;
  margin-top: 0.5em;
}

/*
 *  Basic form styles
 *
 */

.form-group:not(.matrix-item) {
  margin: 0 0 2rem 0;
}

.form-group select {
  border: 1px solid #bbb;
}

.form-group input[type='text'],
.form-group input[type='email'],
.form-group textarea {
  border: 1px solid #bbb;
}

.form-group:not(.matrix-item) label.radio-inline,
.form-group:not(.matrix-item) label.checkbox-inline {
  margin: 0 0 0.5rem 0;
}

.form-group label:not(.btn-block) {
  margin: 0 0 0.5rem 0;
}

.form-group:not(.matrix-item) label.radio-inline input,
.form-group:not(.matrix-item) label.checkbox-inline input {
  margin-top: 0;
}

.form-group label {
  display: block;
}

.form-group:not(.matrix-item) label.btn-block {
  margin: 0 0 0.75rem 0;
}

.form-group .help-block {
  margin: 0.5rem 0 0 0;
  font-size: 0.85rem;
}

.form-group-required &gt; label[for]:after {
  content: ' *';
  color: var(--error);
}

.alert-success {
  display: none;
}

/* matrix */

.matrix {
  margin: 0 0 2rem 0;
  padding: 0.5rem 0 0 0;
  border: 1px solid #bbb;
  border-radius: 4px;
}

.matrix .matrix-item {
  margin: 0;
  padding: 0.75rem;
}

.matrix .matrix-item:nth-child(odd) {
  background: #eee;
}

.matrix label {
  display: inline-block;
}

.matrix .labels label:first-child {
  margin-left: 50%;
}

.matrix label.btn-block {
  width: 50%;
  margin: 0;
  padding: 0 3rem 0 0;
}

.matrix .labels {
  display: none;
}

html[lang='en'] .matrix .labels.en {
  display: block;
}

html[lang='es'] .matrix .labels.es {
  display: block;
}

.matrix .labels label {
  margin-bottom: 0.5rem;
}

.matrix .labels label,
.matrix .matrix-item .radio-inline {
  width: 15%;
  text-align: center;
}

.matrix .matrix-item label.radio-inline {
  margin: -2.5rem 0 0 0;
}

button.inline-block.like-btn.btn-liked {
  border: var(--success) 2px solid;
  color: var(--light);
  background-color: var(--success);
}

/* Contact page submit button hover */
.btn-primary:hover, input[type=submit]:hover {
  background-color: #fff;
  text-decoration: none;
  color: var(--primary);
}

/* Change pop-up background colors to neutrals */
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: var(--primary-foreground) !important;
	color: var(--form-foreground) !important;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
  border-radius: .25rem;
	}
.leaflet-popup-content h3 {
  color: var(--primary) !important;
}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 2px;
	right: 2px;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	text-decoration: none;
	font-weight: bold;
	background: transparent !important;
	color: var(--form-foreground) !important;
  opacity: .7;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: var(--primary) !important;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd !important;
	border-top: 1px solid #ddd !important;
	}
  
.leaflet-popup-content .likes, .leaflet-popup-content button.like-btn {
  color: var(--primary);
  }

.leaflet-popup-content button.like-btn, .leaflet-popup-content a.btn-novel {    
  border: 2px solid var(--primary);
  color: var(--primary);
  }

.leaflet-popup-content button.like-btn:hover, .leaflet-popup-content a.btn-novel:hover {    
  border: 2px solid var(--primary);
  background-color: var(--primary) !important;
  color: var(--light) !important;
  }


/*
 * Message displayed to user in suggestion popup when the suggestion type is
 * hidden from API
 */
p.hidden-note {
  padding: .5em 1em;
  margin: 0;
  width: 100%;
  border-bottom: 1px solid #ffff;
  font-size: .85rem;
}

p.hidden-note:not(.comment-form):not(.inline) {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--light);
  color: var(--light);
  background-color: var(--secondary) !important;
}

p.hidden-note.comment-form {
  padding: .5rem;
  border: 1px solid var(--warning);
  margin: 0 0 1rem 0;
  border-radius: 4px;
  background-color: var(--light);
}

p.hidden-note.inline {
  padding: .5rem;
  border: 1px solid var(--warning);
  border-radius: 4px;
  color: var(--warning);
}

.hidden-note + .hidden-from-api {
  padding-top: 2.5em;
}

.delete-confirmation button {
  color: var(--warning);
  border: 2px solid var(--warning) !important;
}

.delete-confirmation button:hover {
  background-color: var(--warning);
  color: var(--light);
  border: 2px solid var(--warning) !important;
}

.leaflet-container a {
  color: var(--secondary);
}

.fullscreen-icon { background-image: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjYgNTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTIwLjYgMzYuN0gxNmEuOS45IDAgMCAxLS44LS44di00LjVjMC0uMi4yLS40LjQtLjRoMS40Yy4zIDAgLjUuMi41LjR2M2gzYy4yIDAgLjQuMi40LjV2MS40YzAgLjItLjIuNC0uNC40em0tOS45LS44di00LjVjMC0uMi0uMi0uNC0uNC0uNEg4LjljLS4zIDAtLjUuMi0uNS40djNoLTNjLS4yIDAtLjQuMi0uNC41djEuNGMwIC4yLjIuNC40LjRIMTBjLjQgMCAuOC0uNC44LS44em0wIDEwLjdWNDJjMC0uNC0uNC0uOC0uOC0uOEg1LjRjLS4yIDAtLjQuMi0uNC40djEuNGMwIC4zLjIuNS40LjVoM3YzYzAgLjIuMi40LjUuNGgxLjRjLjIgMCAuNC0uMi40LS40em02LjkgMHYtM2gzYy4yIDAgLjQtLjIuNC0uNXYtMS40YzAtLjItLjItLjQtLjQtLjRIMTZjLS40IDAtLjguNC0uOC44djQuNWMwIC4yLjIuNC40LjRoMS40Yy4zIDAgLjUtLjIuNS0uNHpNNSAxMC4zVjUuOWMwLS41LjQtLjkuOS0uOWg0LjRjLjIgMCAuNC4yLjQuNFY3YzAgLjItLjIuNC0uNC40aC0zdjNjMCAuMi0uMi40LS40LjRINS40YS40LjQgMCAwIDEtLjQtLjR6bTEwLjMtNC45VjdjMCAuMi4yLjQuNC40aDN2M2MwIC4yLjIuNC40LjRoMS41Yy4yIDAgLjQtLjIuNC0uNFY1LjljMC0uNS0uNC0uOS0uOS0uOWgtNC40Yy0uMiAwLS40LjItLjQuNHptNS4zIDkuOUgxOWMtLjIgMC0uNC4yLS40LjR2M2gtM2MtLjIgMC0uNC4yLS40LjR2MS41YzAgLjIuMi40LjQuNGg0LjRjLjUgMCAuOS0uNC45LS45di00LjRjMC0uMi0uMi0uNC0uNC0uNHptLTkuOSA1LjNWMTljMC0uMi0uMi0uNC0uNC0uNGgtM3YtM2MwLS4yLS4yLS40LS40LS40SDUuNGMtLjIgMC0uNC4yLS40LjR2NC40YzAgLjUuNC45LjkuOWg0LjRjLjIgMCAuNC0uMi40LS40eiIgZmlsbD0iY3VycmVudENvbG9yIi8+PC9zdmc+'); background-size:26px 52px; }

.streetview-container {
  display: block;
  width: 300px;
  height: 200px;
  margin-bottom: 15px;
  background-color: #ccc;
  margin-top: 15px;
}

@media only screen and (min-width: 500px) {
    .slider-row {
        display: flex;
        flex-direction: row;
    }

    .slider-row .intro {
        width: 45%;
        margin-right: 5%;
    }

    .slider-row .input-range {
        width: 45%;
        margin-left: 5%;
    }    
}


.form-group.group.text-paragraph p {
    margin-bottom: 0px;
}


.form-section {
    margin-top: 2em;
    margin-bottom: 2em;
    border-bottom: 1px solid #c7c7c7;
    padding-bottom: 2em;
    padding-top: 0em;
}

.form-section:first-child {
    border-top: 0;
}

.form-section:last-child {
    border-bottom: 0;
}

.form-section .form-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-group.other-goal {
    margin-top: -1em;
    margin-bottom: 1em !important;
}


html .labels {
    display: none;
}

/*fix survey warning*/
.help-block {
    display: block;
    margin-top: 15px !important;
    margin-bottom: 10px;
    color: black;
    font-size: 1em;
    font-weight: 600;
}

/*make map bigger*/
.modal-target {
    width: 100%;
}

    
div#welcomeback {
	position: unset;left: unset;top: unset;height: unset;
	margin-top: unset;
	padding-top: 15px;
}


/* intersection layout */

.intersection-sidebar dl dt {
  font-weight: bold;
}


/* CUSTOM STUFF */


body[data-page="landing"] .leaflet-bottom.leaflet-right,
body[data-page="intro-survey"] .leaflet-bottom.leaflet-right {
  display: none;
}

/* body[data-page="landing"] .map-container {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 200px;
} */

/* body[data-page="landing"] .map-container #map {
  height: 200px !important;
} */

body[data-page*="step-one"] .map-instructions {
    width: 30%;
    z-index: 9000;
}

body[data-page="landing"] #content-root,
body[data-page="landing"] .large {
  max-width: 100% !important;
  margin: 0 auto;
}

body[data-page="landing"] .container {
  max-width: unset;
  width: 100%;
}


/* body[data-page="landing"] #map {
  left: 0px !important;
  top: 0px !important;
  position: absolute !important;
  width: 100% !important;
} */

@media only screen and (max-width: 600px) {
  .map-instructions {
      display: none;
      position: relative;
      top: 0px;
      width: 100% !important;
      min-height: 2em;
      height: auto;
      max-height: 4em;
  }

      
  div#content-root {
      bottom: 0px;
  }
}

@media only screen and (min-width: 768px) {
  #map.swipe {
    left: 0 !important;
    height: 100% !important;
  }
}

@media (max-width: 767px) {
  #map {
    top: 0;
    /* height: 100% !important; */
    /* width: 100% !important; */
    left: 0;
  }

  #map.swipe {
    height: 100% !important;
  }

  #map.noswipe {
    top: 45px;
    height: 100% !important;
    width: 100% !important;
    left: 0;
  }
}

.intersection-sidebar img {
  width: 100%;
}



@media only screen and (min-width: 550px) {
  .glossary-thumbs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}

div#glossary-main {
  display: block;
  position: relative;
}

.glossary-item img {
  width: 100%;
  overflow: hidden;
  padding: 5px;
}

.leaflet-popup-content .btn-section {
  display: none;
}

[data-lightbox] + p.note {
  text-align: right;
  font-size: 14px;
  font-style: italic;
  margin-top: 0;
}

.child-content ul {
  padding-left: 0;
}

.child-content ul li {
  margin-left: 1.25em;
}

@media only screen and (min-width: 768px) {
  .screenreader-instructions {
    display: block;
    position: absolute;
    top: -9000px;
    left: -9000px;
  }
}

img[data-lightbox] {
  cursor: pointer;
}

body[data-page="landing"] p.copyright {
  margin-top: 2em;
  position: relative;
  background-color: transparent;
  text-align: center;
  color: white;
}

body[data-page="landing"] p.copyright a {
  color: white !important;
  text-decoration: underline !important;
}

dl {
	display: grid;
	grid-template: auto / 15em 1fr;
}

dt {
	background: #fff;
    grid-column: 1;
}

dt:after {
    content: ":"
}

dd, .field {
  grid-column: 2;
}

dt, dd, .field {
	padding: .5em .75em .5em 0;
}

dl, dd, dt {
  margin: 0;
}

.glossary-item {
    padding-bottom: 1.5em;
}
.glossary-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.glossary-item a .label {
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4em;
  color: white;
}


.home-logo-bar {
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow: hidden;
  object-fit: contain;
  justify-content: space-between;
  flex-wrap: no-wrap;
  max-width: 560px;
}

.home-logo-bar img {
  object-fit: contain;
  max-height: 200px;
  flex-shrink: 1;
  flex-grow: 1;
  flex-basis: 100px;
}

body[data-page="landing"] .large.inline-block.text-left {
  width: 100%;
}

@media only screen and (max-width: 550px) {
  .home-logo-bar img {
      max-height: 125px;
  }
  

  .home-logo-bar img:first-child {
    width: 60%;
  }


  .home-logo-bar img:last-child {
    width: 40%;
  }
}


ol#treatments, ol {
  margin-left: 0;
  padding-left: 1.75rem;
  list-style-type: number;
  margin-bottom: 0;
  padding-bottom: 0;
}

ol li,
ol#treatments li {
  margin-bottom: 1rem;
}

.content-root.animated.intersection-sidebar .child-content p.small, 
.content-root.animated.intersection-sidebar .child-content p.small em {
  max-width:  unset !important;
  font-size: .8rem;
  line-height: 1rem;
}

.intersection-sidebar h3 {
  line-height: 1.4em;
}

.mini-legend.visible {
  z-index: 900;
}

.mini-legend button img {
  transform: scale(1.5) translateY(-5px);
}

.mini-legend button[data-legend-item="41"] img {
  transform: scale(1.5) translateY(-7px);
}

body[data-page="landing"] a.btn-primary.center {
  min-height: 50px;
  height: unset;
    line-height: 1.4em;
}

@media only screen and (max-width: 767px) {
    
    
  #map:not(.swipe) .leaflet-control-attribution.leaflet-control {
      display: none;
  }
  
  #map.swipe .leaflet-control-attribution.leaflet-control {
      bottom: 0px !important;
  }
  
  #map.swipe .leaflet-bottom.leaflet-right {
      bottom: 0px !important;
  }
  
      

}

[data-page="landing"] .mini-legend.visible {
  display: none;
}

.streetview-container {
  display: block;
  width: 300px;
  height: 200px;
  margin-bottom: 15px;
  background-color: #ccc;
  margin-top: 15px;
}

.modal a[href="#"]:not([data-toggle="side"]), 
#content-root a[href="#"]:not([data-toggle="side"]):not(.btn-primary) {
  border: 2px solid magenta;
  padding: 3px;
  position: relative;
}

.modal a[href="#"]:before:not([data-toggle="side"]),
#content-root a[href="#"]:before:not([data-toggle="side"]) {
  content: "missing";
  font-size: 8px;
  position: absolute;
  top: -14px;
  left: -2px;
  color: magenta;
}

.titlecase {
  text-transform: capitalize;
}

a.btn.back-btn {
  float: right;
  margin-left: .75rem;
  margin-bottom: .75rem;
  margin-top: 1rem;
  border: 2px solid;
  background: white;
  color: var(--primary);
}</pre></body></html>