/* ============================================================
  Styles for components that are shared across the whole site. Individual SCSS files in this directory are separate libraries that are added in templates, etc.
  ============================================================ */
/* ============================================================
  Preprocessors, fonts, variables.
  These ITCSS naming conventions and structure are inspired by Lindsay Grizzard's article on Medium: https://medium.com/gusto-design/creating-the-perfect-css-system-fa38f5bcdd9e
  ============================================================ */
/* ============================================================
  Vendor-specific styles.
  ============================================================ */
/* ============================================================
  Breakpoints
  ============================================================ */
/* ============================================================
  Colors
  ============================================================ */
/* ============================================================
  Styles for fonts/typefaces.
  ============================================================ */
/* ============================================================
  Placeholders for repeat styles.
  ============================================================ */
.nomargin {
  margin: 0 !important;
}

.nopadding {
  padding: 0 !important;
}

.nospacing {
  margin: 0 !important;
  padding: 0 !important;
}

.search-trigger {
  padding: 0.75em 0;
}
@media (min-width: 1280px) {
  .search-trigger {
    padding: 0.5em 0;
  }
}

/* ============================================================
  Styles for accordions and the image + text paragraph.
  ============================================================ */
/* Accordion-specific styles */
.accordion-container .accordion-item {
  margin: 0 0 0.75em;
}
.accordion-container .accordion-item .anchor {
  visibility: hidden;
  position: relative;
  display: block;
  top: -120px;
}
.paragraph--type--advanced-accordion-group .accordion-container .accordion-item {
  margin: 0 auto 0.75em;
  width: 100%;
}
@media (min-width: 1025px) {
  .paragraph--type--advanced-accordion-group .accordion-container .accordion-item {
    width: 80%;
  }
}
.paragraph--type--advanced-accordion-group .accordion-container .accordion-item .advanced-title {
  font-size: 2.125rem;
  margin: 0;
  text-align: center;
}
.paragraph--type--advanced-accordion-group .accordion-container .accordion-item h2 {
  font-size: 1.875rem;
  text-align: center;
  margin: 0 0 0.5em;
}
.paragraph--type--advanced-accordion-group .accordion-container .accordion-item h2::after {
  display: none;
}
.paragraph--type--advanced-accordion-group .accordion-container .accordion-item .paragraph--type--text,
.paragraph--type--advanced-accordion-group .accordion-container .accordion-item .paragraph--type--image-text {
  margin: 1em auto;
  width: 100%;
}
@media (min-width: 1025px) {
  .paragraph--type--advanced-accordion-group .accordion-container .accordion-item .paragraph--type--text,
.paragraph--type--advanced-accordion-group .accordion-container .accordion-item .paragraph--type--image-text {
    width: 68%;
  }
}
.paragraph--type--advanced-accordion-group .accordion-container .accordion-item .paragraph--type--text p,
.paragraph--type--advanced-accordion-group .accordion-container .accordion-item .paragraph--type--image-text p {
  margin: 0;
}
.accordion-container .ui-state-default,
.accordion-container .ui-accordion-content {
  border: 0;
  background: transparent;
}
.accordion-container .title {
  font-size: 1.125em;
  font-family: "Proxima N W01 Bold", sans-serif;
  color: #214183;
  background: #f2f5f7;
  padding: 0.5em 1.5em 0.5em 0.75em;
  border: 0;
  position: relative;
}
.accordion-container .title span {
  display: block;
  max-width: 90%;
}
.accordion-container .title svg {
  font-size: 1em;
  position: absolute;
  right: 0.6em;
  top: 0.6em;
}
.accordion-container .title .fa-minus {
  display: none;
}
.accordion-container .title.ui-state-active .fa-plus {
  display: none;
}
.accordion-container .title.ui-state-active .fa-minus {
  display: block;
}
.accordion-container .body {
  font-family: "Proxima N W01 Reg", sans-serif;
  padding: 1em 0;
  line-height: 1.7;
}
.accordion-container .body p {
  margin: 0.5em 0;
}
.accordion-container .body .img-wrap {
  margin: 0 0 1em;
  width: auto;
}
@media (min-width: 666px) {
  .accordion-container .body .img-wrap {
    width: 50%;
  }
  .accordion-container .body .img-wrap.left {
    float: left;
    margin: 1em 1em 0 0;
    max-width: 50%;
  }
  .accordion-container .body .img-wrap.right {
    float: right;
    margin: 1em 0 0 1em;
    max-width: 50%;
  }
  .accordion-container .body .img-wrap.center {
    margin: auto;
    max-width: 50%;
  }
  .accordion-container .body .img-wrap.center img {
    object-fit: cover;
    width: auto;
  }
}
@media (min-width: 768px) {
  .accordion-container .body .img-wrap {
    display: block;
    width: auto;
  }
  .accordion-container .body .img-wrap.small {
    max-width: 20%;
  }
  .accordion-container .body .img-wrap.small.center {
    max-width: 30%;
  }
  .accordion-container .body .img-wrap.medium {
    max-width: 35%;
  }
  .accordion-container .body .img-wrap.medium.center {
    max-width: 50%;
    margin: auto;
  }
  .accordion-container .body .img-wrap.large {
    max-width: 100%;
  }
  .accordion-container .body .img-wrap.large.center {
    max-width: 50%;
    margin: auto;
  }
}
.accordion-container .body .txt {
  overflow: hidden;
}
.accordion-container .body .txt ul,
.accordion-container .body .txt ol {
  margin: 1em;
}
.accordion-container .body .caption {
  display: inline-block;
  font-style: italic;
  margin: 0.5em 0 0;
}

/* Image-text paragraph specific styles */
.paragraph--type--image-text .accordion-item {
  margin: 0 0 0.75em;
}
.paragraph--type--image-text .accordion-item .anchor {
  visibility: hidden;
  position: relative;
  display: block;
  top: -120px;
}
.paragraph--type--image-text .body {
  font-family: "Proxima N W01 Reg", sans-serif;
  padding: 1em 0;
  line-height: 1.7;
}
.paragraph--type--image-text .body p {
  margin: 0.5em 0;
}
.paragraph--type--image-text .body .img-wrap {
  margin: 0 0 1em;
  width: 100%;
}
.paragraph--type--image-text .body .img-wrap.large {
  width: 100%;
}
.paragraph--type--image-text .body .img-wrap.large.center {
  margin: auto;
  display: block;
}
@media (min-width: 666px) {
  .paragraph--type--image-text .body .img-wrap.large.left {
    float: left;
    margin: 1em 1em 0 0;
    max-width: 100%;
  }
  .paragraph--type--image-text .body .img-wrap.medium.center {
    max-width: 50%;
  }
  .paragraph--type--image-text .body .img-wrap.large.center {
    width: 100%;
  }
  .paragraph--type--image-text .body .img-wrap.large.center img {
    object-fit: cover;
    margin: auto;
  }
  .paragraph--type--image-text .body .img-wrap.left {
    float: left;
    margin: 1em 1em 0 0;
    max-width: 50%;
  }
  .paragraph--type--image-text .body .img-wrap.right {
    float: right;
    margin: 1em 0 0 1em;
    max-width: 50%;
  }
  .paragraph--type--image-text .body .img-wrap.center {
    margin: auto;
  }
  .paragraph--type--image-text .body .img-wrap.center img {
    object-fit: cover;
    width: auto;
  }
}
@media (min-width: 768px) {
  .paragraph--type--image-text .body .img-wrap {
    display: block;
  }
  .paragraph--type--image-text .body .img-wrap.small {
    max-width: 20%;
  }
  .paragraph--type--image-text .body .img-wrap.small.center {
    max-width: 30%;
  }
  .paragraph--type--image-text .body .img-wrap.medium.center {
    max-width: 50%;
  }
  .paragraph--type--image-text .body .img-wrap.large {
    max-width: 100%;
  }
  .paragraph--type--image-text .body .img-wrap.large.center {
    max-width: 100%;
  }
}
.paragraph--type--image-text .body .txt {
  overflow: hidden;
}
.paragraph--type--image-text .body .txt ul,
.paragraph--type--image-text .body .txt ol {
  margin: 1em;
}
.paragraph--type--image-text .body .caption {
  display: inline-block;
  font-style: italic;
  margin: 0.5em 0 0;
}

.img-wrap.medium.left img,
.img-wrap.medium.right img,
.img-wrap.large.left img,
.img-wrap.large.right img {
  width: auto;
  max-width: 100%;
}

/* ============================================================
  Styles for alerts.
  ============================================================ */
.alert .views-row {
  display: none;
  position: relative;
  background-color: #515456;
  flex-direction: column;
  border-bottom: solid 1px #fff;
}
@media (min-width: 1025px) {
  .alert .views-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
  }
}
.alert .views-row .views-field .alert-header {
  flex-basis: 100%;
  position: relative;
  color: #fff;
  font-size: 0.9em;
  background: #cf142b;
  padding: 1em 2em;
  display: flex;
  width: 177px;
}
@media (min-width: 1025px) {
  .alert .views-row .views-field .alert-header {
    flex-basis: 17%;
    flex-direction: column;
    text-align: center;
  }
}
.alert .views-row .views-field .alert-header .icon {
  font-size: 2.25em;
}
.alert .views-row .views-field .alert-header h4 {
  font-family: "Proxima N W01 Bold", sans-serif;
  font-size: 1.625em;
  padding: 0.25em 0 0 0.25em;
}
@media (min-width: 1025px) {
  .alert .views-row .views-field .alert-header h4 {
    font-size: 1.75em;
    padding: 0;
  }
}
.alert .views-row .views-field .alert-header .txt {
  margin: 0 1.5em;
  position: relative;
  top: -0.25em;
}
.alert .views-row .views-field-body {
  color: #fff;
  flex-basis: 100%;
  padding: 2em;
}
@media (min-width: 1025px) {
  .alert .views-row .views-field-body {
    flex-basis: 50%;
    padding: 0 1em;
  }
}
@media (min-width: 1280px) {
  .alert .views-row .views-field-body {
    flex-basis: 55%;
    padding: 0 2em;
  }
}
@media (min-width: 1440px) {
  .alert .views-row .views-field-body {
    flex-basis: 65%;
    padding: 0 2em;
  }
}
.alert .views-row .views-field-body p {
  font-size: 1.25em;
  margin: 0;
}
@media (min-width: 1025px) {
  .alert .views-row .views-field-body p {
    font-size: 1.5em;
  }
}
.alert .views-row .views-field-field-link {
  margin: 1em auto;
}
@media (min-width: 1025px) {
  .alert .views-row .views-field-field-link {
    margin: 0;
    position: absolute;
    right: 8em;
  }
}
@media (min-width: 1280px) {
  .alert .views-row .views-field-field-link {
    right: 11em;
  }
}
.alert .views-row .views-field-field-link a {
  background-color: #fff;
  border-radius: 3px;
  padding: 16px 28px;
  text-decoration: none;
  color: #214183;
  font-size: 1.25em;
  font-weight: bold;
  display: inline-block;
  width: 100%;
}
@media (min-width: 1025px) {
  .alert .views-row .views-field-field-link a {
    display: block;
    width: unset;
  }
}
.alert .views-row.non-emergency.views-row {
  background-color: #5b5e60;
}
.alert .views-row.non-emergency .alert-header {
  background: #214183;
}
.alert .views-row.non-emergency .alert-header::after {
  border-left-color: #214183;
}
.alert .views-row.non-emergency .alert-header__content {
  margin-left: 1.5em;
}
.alert .views-row .close {
  color: #fff;
  position: absolute;
  top: 0.25em;
  right: 1em;
}
@media (min-width: 1280px) {
  .alert .views-row .close {
    display: block;
    text-align: center;
    flex-basis: 5%;
    right: 1.5em;
    top: 0.25em;
  }
}
.alert .views-row .close p {
  font-family: "Proxima N W01 Reg", sans-serif;
  font-size: 1.188em;
}

.card, .path-projects-maintenance-search-all-projects .block-facets-ajax,
.path-projects-maintenance-search-all-projects .block-facet--checkbox,
.path-news-events-events-meetings .block-facets-ajax,
.path-news-events-events-meetings .block-facet--checkbox {
  display: block;
  padding: 0 0 1em;
  margin: 0 0 1.5em;
  position: relative;
  text-decoration: none;
  border-radius: 3px;
  overflow: hidden;
}
.card.blue, .path-projects-maintenance-search-all-projects .blue.block-facets-ajax,
.path-projects-maintenance-search-all-projects .blue.block-facet--checkbox,
.path-news-events-events-meetings .blue.block-facets-ajax,
.path-news-events-events-meetings .blue.block-facet--checkbox {
  background: #214183;
}
.card.blue::after, .path-projects-maintenance-search-all-projects .blue.block-facets-ajax::after,
.path-projects-maintenance-search-all-projects .blue.block-facet--checkbox::after,
.path-news-events-events-meetings .blue.block-facets-ajax::after,
.path-news-events-events-meetings .blue.block-facet--checkbox::after {
  border-style: solid;
  border-width: 0 0 30px 30px;
  border-color: transparent transparent #0095c8;
}
.card.sidebar, .path-projects-maintenance-search-all-projects .block-facets-ajax,
.path-projects-maintenance-search-all-projects .block-facet--checkbox,
.path-news-events-events-meetings .block-facets-ajax,
.path-news-events-events-meetings .block-facet--checkbox {
  background: #f2f5f7;
  padding: 1.5em;
}
.card.sidebar::after, .path-projects-maintenance-search-all-projects .block-facets-ajax::after,
.path-projects-maintenance-search-all-projects .block-facet--checkbox::after,
.path-news-events-events-meetings .block-facets-ajax::after,
.path-news-events-events-meetings .block-facet--checkbox::after {
  border-style: solid;
  border-width: 0 0 30px 30px;
  border-color: transparent transparent #4CBB17;
}
.card.sidebar h3, .path-projects-maintenance-search-all-projects .block-facets-ajax h3,
.path-projects-maintenance-search-all-projects .block-facet--checkbox h3,
.path-news-events-events-meetings .block-facets-ajax h3,
.path-news-events-events-meetings .block-facet--checkbox h3 {
  color: #515456;
  font-size: 1.75em;
  margin: 0 0 0.5em;
}
.card.sidebar a, .path-projects-maintenance-search-all-projects .block-facets-ajax a,
.path-projects-maintenance-search-all-projects .block-facet--checkbox a,
.path-news-events-events-meetings .block-facets-ajax a,
.path-news-events-events-meetings .block-facet--checkbox a {
  color: #214183;
  text-decoration: none;
}
.card.sidebar a:hover, .path-projects-maintenance-search-all-projects .block-facets-ajax a:hover,
.path-projects-maintenance-search-all-projects .block-facet--checkbox a:hover,
.path-news-events-events-meetings .block-facets-ajax a:hover,
.path-news-events-events-meetings .block-facet--checkbox a:hover {
  text-decoration: underline;
}
.card.sidebar p, .path-projects-maintenance-search-all-projects .block-facets-ajax p,
.path-projects-maintenance-search-all-projects .block-facet--checkbox p,
.path-news-events-events-meetings .block-facets-ajax p,
.path-news-events-events-meetings .block-facet--checkbox p {
  line-height: 1.75;
}
.card.off-white, .path-projects-maintenance-search-all-projects .off-white.block-facets-ajax,
.path-projects-maintenance-search-all-projects .off-white.block-facet--checkbox,
.path-news-events-events-meetings .off-white.block-facets-ajax,
.path-news-events-events-meetings .off-white.block-facet--checkbox {
  background: #f2f5f7;
}
.card:hover, .path-projects-maintenance-search-all-projects .block-facets-ajax:hover,
.path-projects-maintenance-search-all-projects .block-facet--checkbox:hover,
.path-news-events-events-meetings .block-facets-ajax:hover,
.path-news-events-events-meetings .block-facet--checkbox:hover {
  text-decoration: none;
}
.card::after, .path-projects-maintenance-search-all-projects .block-facets-ajax::after,
.path-projects-maintenance-search-all-projects .block-facet--checkbox::after,
.path-news-events-events-meetings .block-facets-ajax::after,
.path-news-events-events-meetings .block-facet--checkbox::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
}
.card__type {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  opacity: 0.9;
  padding: 0.75em;
}
.card__type p {
  margin: 0;
  font-family: "Proxima N W01 Bold", sans-serif;
  border-left: 2px solid #4CBB17;
  color: #515456;
  padding: 0 0 0 0.25em;
  font-size: 0.9em;
  line-height: 1;
}
.card h3, .path-projects-maintenance-search-all-projects .block-facets-ajax h3,
.path-projects-maintenance-search-all-projects .block-facet--checkbox h3,
.path-news-events-events-meetings .block-facets-ajax h3,
.path-news-events-events-meetings .block-facet--checkbox h3 {
  color: #fff;
  font-family: "Proxima N W01 Bold", sans-serif;
  font-size: 1.25em;
  margin: 1em;
}

@media (min-width: 1025px) {
  .path-projects-maintenance-search-all-projects .card.outages, .path-projects-maintenance-search-all-projects .outages.block-facets-ajax,
.path-projects-maintenance-search-all-projects .outages.block-facet--checkbox {
    margin-top: 3.75em;
  }
}
/* ============================================================
  Additional styles for Constant Contact forms.
  ============================================================ */
.g-recaptcha {
  display: none;
}

.ctct-form-embed .ctct-form-defaults {
  background: none !important;
  padding: 0 !important;
}
.ctct-form-embed .ctct-form-defaults .ctct-form-custom #gdpr_text {
  display: none !important;
}
.ctct-form-embed .ctct-form-defaults .ctct-form-footer {
  display: none !important;
}

.newsletter-preview {
  position: relative;
  margin: 0 0 1em;
  width: 100%;
  max-width: 300px;
}
@media (min-width: 666px) {
  .newsletter-preview {
    min-width: 200px;
  }
}
.newsletter-preview .ctct-form-embed .ctct-form-defaults .ctct-form-custom {
  align-items: flex-end;
  display: flex;
  min-height: inherit;
}
.newsletter-preview .ctct-form-embed .ctct-form-defaults .ctct-form-custom .ctct-form-header,
.newsletter-preview .ctct-form-embed .ctct-form-defaults .ctct-form-custom .ctct-form-text,
.newsletter-preview .ctct-form-embed .ctct-form-defaults .ctct-form-custom .ctct-form-label {
  display: none !important;
}
.newsletter-preview .ctct-form-embed .ctct-form-defaults .ctct-form-field {
  margin: 0;
}
.newsletter-preview .ctct-form-embed .ctct-form-defaults input#email_address_8 {
  border: 2px solid #9fa6ab;
  border-right: 0;
  border-radius: 3px 0 0 3px;
  padding: 0.6em 0 0.6em 0.6em;
  font-size: 1em;
  height: 2.95em;
  margin-right: 0;
}
.newsletter-preview .ctct-form-embed .ctct-form-defaults input#email_address_8:focus {
  outline-offset: -2px;
  outline: -webkit-focus-ring-color auto 5px;
}
.newsletter-preview .ctct-form-embed .ctct-form-defaults .ctct-form-button {
  border-radius: 0 3px 3px 0;
  height: 2.95em;
  margin-left: 0;
  padding: 0.6em 1em;
  width: auto;
}
.newsletter-preview .ctct-form-embed .ctct-form-defaults .ctct-form-button:hover {
  background: linear-gradient(45deg, #214183 0%, #0095c8 100%);
}

.newsletter-sidebar {
  background-color: #f2f5f7;
  margin-bottom: 2em;
  padding: 1em;
  position: relative;
  width: 100%;
}
@media (min-width: 666px) {
  .newsletter-sidebar {
    min-width: 200px;
  }
}
.newsletter-sidebar h2 {
  color: #515456;
  font-family: "Proxima N W01 Bold", sans-serif;
  font-size: 1.438em;
  margin: 0 0 0.625em 0;
}
.newsletter-sidebar h2::after {
  border-bottom: 0;
}
.newsletter-sidebar .ctct-form-embed .ctct-form-defaults .ctct-form-custom {
  align-items: center;
  display: block;
  min-height: inherit;
}
.newsletter-sidebar .ctct-form-embed .ctct-form-defaults .ctct-form-custom .ctct-form-header,
.newsletter-sidebar .ctct-form-embed .ctct-form-defaults .ctct-form-custom .ctct-form-text,
.newsletter-sidebar .ctct-form-embed .ctct-form-defaults .ctct-form-custom .ctct-form-label {
  display: none !important;
}
.newsletter-sidebar .ctct-form-embed .ctct-form-defaults .ctct-form-field {
  margin: 0;
}
.newsletter-sidebar .ctct-form-embed .ctct-form-defaults input#email_address_2 {
  border: 2px solid #9fa6ab;
  border-radius: 3px;
  padding: 0.6em 0 0.6em 0.6em;
  font-size: 1em;
  height: 2.95em;
}
.newsletter-sidebar .ctct-form-embed .ctct-form-defaults input#email_address_2:focus {
  outline-offset: -2px;
  outline: -webkit-focus-ring-color auto 5px;
}
.newsletter-sidebar .ctct-form-embed .ctct-form-defaults .ctct-form-button {
  border-radius: 3px;
  height: 2.95em;
  margin-top: 1em;
  padding: 0.6em 1em;
  width: 100%;
}
.newsletter-sidebar .ctct-form-embed .ctct-form-defaults .ctct-form-button:hover {
  background: linear-gradient(45deg, #214183 0%, #0095c8 100%);
}

.donut-chart {
  display: block;
  margin: 0;
  width: 100%;
  max-width: 100%;
  max-height: 250px;
}
.donut-chart .circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3.8;
}
.donut-chart .circle {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  animation: progress 1s ease-out forwards;
  stroke: #4CBB17;
}
.donut-chart .percentage {
  fill: #515456;
  font-family: "Proxima N W01 Bold", sans-serif;
  font-size: 0.5em;
  text-anchor: middle;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}
.progress {
  position: relative;
  top: 0.75em;
  left: 0.5em;
}

/* ============================================================
  Styles for exposed filters.
  ============================================================ */
/* ============================================================
  Styles for the iframe paragraph
  ============================================================ */
.paragraph--type--embed {
  margin: 2em 0;
  width: 100%;
}
.paragraph--type--embed .fullscreen {
  float: right;
  margin: 0.5em 0;
}
.paragraph--type--embed embed {
  border: 1px solid #9fa6ab;
  width: 100%;
}

.block-facet--checkbox h2 {
  font-size: 1.5em;
  margin: 0;
}
.block-facet--checkbox h2::after {
  display: none;
}
.block-facet--checkbox::after {
  display: none;
}

.fact-figure {
  display: flex;
  margin: 0 0 1em;
  text-decoration: none;
  align-items: center;
}
.fact-figure__figure {
  background: #214183;
  border: 3px solid rgba(242, 245, 247, 0.5);
  border-radius: 80px;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: "Proxima N W01 Bold", sans-serif;
  font-size: 1.5em;
  align-items: center;
  justify-content: center;
  margin: 0 0.5em 0 0;
  min-width: 100px;
  width: 100px;
  height: 100px;
  text-align: center;
}
@media (min-width: 444px) {
  .fact-figure__figure {
    font-size: 2.5em;
    min-width: 150px;
    width: 150px;
    height: 150px;
  }
}
.fact-figure__figure div:last-child {
  font-size: 0.6em;
  line-height: 1em;
}
.fact-figure:nth-child(even) .fact-figure__figure {
  background: rgba(76, 187, 23, 0.1);
  border: 3px solid #4CBB17;
  color: #355e3b;
}
.fact-figure h2 {
  color: #214183;
  font-size: 1.275rem;
  margin: 0;
  padding: 0 !important;
  text-align: left !important;
}
@media (min-width: 444px) {
  .fact-figure h2 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1025px) {
  .fact-figure h2 {
    font-size: 2.125rem;
  }
}
.fact-figure h2::after {
  border: 0;
}

.icon-link {
  display: flex;
  flex-direction: row;
  margin: 0.5em 0.5em 0.5em 0;
  text-decoration: none;
  width: 100%;
}
@media (min-width: 888px) {
  .icon-link {
    align-items: center;
    flex-direction: column;
    margin: 1em 1em 1em 0;
    text-align: center;
    width: 18%;
  }
  .two-column-75-25 .left-region .icon-link {
    width: 23%;
  }
  .icon-link:first-child:nth-last-child(1), .icon-link:first-child:nth-last-child(1) ~ .icon-link {
    width: 100%;
  }
  .icon-link:first-child:nth-last-child(2), .icon-link:first-child:nth-last-child(2) ~ .icon-link {
    width: 48%;
  }
  .icon-link:first-child:nth-last-child(3), .icon-link:first-child:nth-last-child(3) ~ .icon-link {
    width: 30%;
  }
  .icon-link:first-child:nth-last-child(4), .icon-link:first-child:nth-last-child(4) ~ .icon-link {
    width: 23%;
  }
  .icon-link:last-child {
    margin-right: 0;
  }
}
.icon-link:hover {
  text-decoration: none;
}
.icon-link:hover .icon-link__icon {
  background: linear-gradient(45deg, #214183 0%, #0095c8 100%);
}
.icon-link:hover h5 {
  color: #015182;
  text-decoration: underline;
}
.icon-link__icon {
  background: #0095c8;
  border-radius: 50%;
  color: #fff;
  display: block;
  font-size: 1.5em;
  line-height: 48px;
  margin: 0 0.5em 0 0;
  text-align: center;
  width: 48px;
  height: 48px;
}
@media (min-width: 888px) {
  .icon-link__icon {
    font-size: 2.5em;
    line-height: 85px;
    margin: initial;
    width: 85px;
    height: 85px;
  }
  .path-news-events.node-type-landing-page .icon-link__icon {
    margin: 0 0.5em 0 0;
  }
}
.icon-link__icon svg {
  margin: 0.5em 0 0;
}
.icon-link .title-text {
  width: 70%;
}
@media (min-width: 888px) {
  .icon-link .title-text {
    width: 100%;
  }
  .path-news-events.node-type-landing-page .icon-link .title-text {
    width: 70%;
  }
}
.icon-link h4,
.icon-link h5 {
  color: #214183;
  font-size: 1.125em;
  margin: 0;
  width: 100%;
}
@media (min-width: 888px) {
  .icon-link h4,
.icon-link h5 {
    font-size: 1.25em;
  }
}
.icon-link p {
  color: #515456;
  font-size: 1em;
  margin: 0;
  width: 100%;
}

.paragraph--type--info-box {
  padding: 1em;
  margin: 2em 0;
}
.paragraph--type--info-box h5.title {
  border-bottom: 2px solid #e4e9ee;
  margin: 0 0 1em;
  padding: 0 0 0.5em;
}
.paragraph--type--info-box h5 {
  margin: 0;
}
.paragraph--type--info-box a {
  font-family: "Proxima N W01 Bold", sans-serif;
  text-decoration: underline;
}
.paragraph--type--info-box button,
.paragraph--type--info-box .button {
  padding: 0.25em 0.5em;
  text-align: center;
  width: 100%;
}

/* ============================================================
  Styles for the iframe & video paragraphs
  ============================================================ */
.paragraph--type--iframe,
.paragraph--type--video {
  margin: 2em 0;
  width: 100%;
}

.path-projects-maintenance-search-all-projects .paragraph--type--iframe {
  border-bottom: solid 5px #f2f5f7;
  padding-bottom: 2em;
}

.paragraph.paragraph--type--video.width-small.paragraph--view-mode--default {
  max-width: 50%;
}

.paragraph.paragraph--type--video.width-medium.paragraph--view-mode--default {
  max-width: 75%;
}

.paragraph.paragraph--type--video.width-large.paragraph--view-mode--default {
  max-width: 100%;
}

.paragraph.paragraph--type--video.width-center-small.paragraph--view-mode--default {
  max-width: 50%;
  margin: auto;
}

.paragraph.paragraph--type--video.width-center-medium.paragraph--view-mode--default {
  max-width: 75%;
  margin: auto;
}

.paragraph--type--links h2 {
  font-size: 1.75em;
}
@media (min-width: 768px) {
  .paragraph--type--links .link-wrap {
    columns: 2;
  }
}
.paragraph--type--links .link-wrap a {
  display: block;
  font-size: 1.4em;
  line-height: 1.5;
  padding-bottom: 0.5em;
}
@media (min-width: 444px) {
  .paragraph--type--links .link-wrap a {
    line-height: 2;
  }
}

#block-newsmediakitcontacts {
  background-color: #214183;
  color: white;
  margin-bottom: 2em;
  padding: 1em;
}
#block-newsmediakitcontacts h2 {
  color: white;
  font-family: "Proxima N W01 Bold", sans-serif;
  font-size: 1.438em;
  margin: 0 0 0.625em;
}
#block-newsmediakitcontacts h2::after {
  border-bottom: 0;
}
#block-newsmediakitcontacts .button {
  display: block;
  font-family: "Proxima N W01 Bold", sans-serif;
  font-size: 1.25em;
  margin: 1em 0;
  text-align: center;
  width: 100%;
}
#block-newsmediakitcontacts .button[href$=".pdf"] {
  padding: 0;
}
#block-newsmediakitcontacts p:nth-child(3) {
  border-left: solid 5px #4CBB17;
  font-size: 1.25em;
  padding-left: 0.5em;
}

.card__menu {
  width: 100%;
  padding: 1.5em;
  font-size: 1em;
}
@media (min-width: 888px) {
  .card__menu {
    font-size: 0.9em;
  }
}
@media (min-width: 1280px) {
  .card__menu {
    font-size: 1em;
  }
}
.card__menu h4 {
  font-size: 1.5em;
  line-height: 1.3;
}
.card__menu .menu li {
  margin: 0 0 0.8em;
}
.card__menu .menu li a {
  font-family: "Proxima N W01 Bold", sans-serif;
  text-decoration: none;
  display: block;
  font-size: 1.125em;
  padding: 0 0 0 0.5em;
  margin: 0 0 0 -0.5em;
  border-left: 4px solid transparent;
  color: #214183;
}
.card__menu .menu li a:hover {
  text-decoration: underline;
}
.card__menu .menu li a svg {
  display: none;
}
.card__menu .menu li.is-active > a {
  color: #515456;
  border-left: 4px solid #4CBB17;
}
.card__menu .menu li.is-active > a svg {
  display: inline-block;
  position: relative;
  left: 0.5em;
  top: 0.1em;
}
.card__menu .menu li ul {
  margin: 0.5em 0 0 1em;
}

.outages,
.active-outages {
  position: relative;
}
.outages h3,
.active-outages h3 {
  margin: 1em 0 0.5em;
}
.outages h3:first-child,
.active-outages h3:first-child {
  display: none;
}
.outages h3.no-result,
.active-outages h3.no-result {
  display: block;
}
@media (min-width: 768px) {
  .outages .views-row,
.active-outages .views-row {
    margin: 0 0 2em;
  }
}
.outages h4,
.active-outages h4 {
  margin: 0;
}
.outages__block,
.active-outages__block {
  padding: 1.5em;
}
.outages__block h4,
.active-outages__block h4 {
  color: #515456;
  margin: 0;
  border-bottom: 2px solid #e4e9ee;
  padding: 0 0 0.25em;
}
.outages__block h4 svg,
.active-outages__block h4 svg {
  color: #4CBB17;
  margin: 0.25em 0.25em 0 0;
}
.outages__block .cta,
.active-outages__block .cta {
  text-align: right;
  display: block;
  margin: 1em 0 0;
}
.outages__block .views-row .views-field-title h5,
.active-outages__block .views-row .views-field-title h5 {
  margin: 0.5rem 0;
}
.outages__outage,
.active-outages__outage {
  text-decoration: none;
  margin: 0 0 1em;
  display: block;
  color: #515456;
}
.outages__outage:hover,
.active-outages__outage:hover {
  text-decoration: none;
  color: #515456;
}
.outages__outage:hover h5,
.active-outages__outage:hover h5 {
  text-decoration: underline;
  color: #015182;
}
.outages__outage a,
.active-outages__outage a {
  color: #0095C8;
}
.outages__outage h5,
.active-outages__outage h5 {
  margin: 0.5em 0;
  color: #0095C8;
  font-size: 1.25em;
}
.outages__outage p,
.active-outages__outage p {
  color: #000;
}
.outages .views-view-grid .views-row,
.active-outages .views-view-grid .views-row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .outages .views-view-grid .views-row,
.active-outages .views-view-grid .views-row {
    flex-direction: row;
  }
  .outages .views-view-grid .views-row .views-col,
.active-outages .views-view-grid .views-row .views-col {
    max-width: 100%;
  }
}
.outages .views-view-grid .views-row .views-col,
.active-outages .views-view-grid .views-row .views-col {
  float: left;
  margin-right: 1.25rem;
  max-width: 100%;
}
@media (min-width: 768px) {
  .outages .views-view-grid .views-row .views-col,
.active-outages .views-view-grid .views-row .views-col {
    min-width: 48%;
  }
}
.outages .views-view-grid .views-row .views-col .views-field h4,
.active-outages .views-view-grid .views-row .views-col .views-field h4 {
  font-size: 1.15rem;
}
.outages .views-view-grid .views-row .views-col .views-field h4 a,
.active-outages .views-view-grid .views-row .views-col .views-field h4 a {
  text-decoration: none;
}
.outages .views-view-grid .views-row .views-col .views-field h4 a:hover,
.active-outages .views-view-grid .views-row .views-col .views-field h4 a:hover {
  text-decoration: underline;
}
.outages .views-view-grid .views-row .views-col .views-field p,
.active-outages .views-view-grid .views-row .views-col .views-field p {
  margin: 0;
}
.outages h3:after,
.active-outages h3:after {
  content: " ";
  width: 100px;
  border-bottom: 5px solid #78be20;
  position: absolute;
  left: 0.15em;
  margin-top: 2.75rem;
}

#views-exposed-form-service-outages-page-1 {
  margin: 1.5rem 0.5rem -8rem 0;
  position: relative;
  z-index: 2;
  width: fit-content;
  float: right;
}

.leaflet-marker-icon {
  color: #4CBB17;
}

[id*=edit-field-upcoming-outage-value].form-composite {
  width: fit-content;
}
[id*=edit-field-upcoming-outage-value] .form-radios {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  width: fit-content;
  margin: auto;
}
[id*=edit-field-upcoming-outage-value] .form-radios .form-item input[type=radio] {
  display: none;
}
[id*=edit-field-upcoming-outage-value] .form-radios .form-item input[type=radio]:checked + label {
  color: #fff;
  background: #214183;
}
[id*=edit-field-upcoming-outage-value] .form-radios .form-item label {
  color: #214183;
  background: #fff;
  border: 2px solid #9fa6ab;
  cursor: pointer;
  font-weight: 600;
  padding: 0.5em;
  width: fit-content;
  min-width: 100px;
  text-align: center;
  border-radius: 10px;
}

.leaflet-popup-content {
  min-width: 305px;
}
.leaflet-popup-content h4 {
  font-weight: 600;
}
.leaflet-popup-content h4,
.leaflet-popup-content p {
  font-size: 0.85rem;
  margin: 0;
}

/* ============================================================
  Styles for the search bar (in the menu).
  ============================================================ */
.search-trigger {
  text-align: left;
  display: none !important;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Proxima N W01 Bold", sans-serif;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .search-trigger {
    display: inline-block !important;
  }
  .search-trigger:hover {
    text-decoration: underline;
  }
}
.search-trigger.active::after {
  content: "";
  width: 100%;
  border-bottom: 0.313em solid #4CBB17;
  position: absolute;
  bottom: -0.313em;
  left: 0;
  z-index: 1;
}
.search-trigger svg {
  position: relative;
  top: 0.1em;
}

.search-box {
  padding: 0.75em;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  bottom: 0;
  transform: scaleY(0);
  z-index: 10;
}
@media (min-width: 768px) {
  .search-box {
    background: #e4e9ee;
    bottom: inherit;
    flex-wrap: nowrap;
    position: relative;
    transform: scaleY(1);
  }
}
@media (min-width: 1025px) {
  .search-box {
    background: #015182;
    text-align: left;
    justify-content: center;
    position: absolute;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s;
    width: 100vw;
    margin: 0 -50vw;
    left: 50%;
    right: 50%;
  }
}
@media (min-width: 1440px) {
  .search-box {
    width: 100%;
    max-width: 1376px;
    margin: 0.313em 0 0;
    left: auto;
    right: auto;
    padding: 0.75em 0 0.75em 13em;
  }
}
.menu-open .search-box {
  position: absolute;
  left: 0;
  top: 4.5em;
  height: 70px;
  transform: scaleY(1);
  z-index: 400;
}
@media (min-width: 768px) {
  .menu-open .search-box {
    display: none;
  }
}
.search-box.active {
  transform: scaleY(1);
}
.search-box h3 {
  color: #515456;
  font-size: 1em;
  margin: 0;
  padding: 0.5em 0;
  text-align: left;
}
@media (min-width: 768px) {
  .search-box h3 {
    margin-left: 18em;
    margin-right: 1em;
    white-space: nowrap;
  }
}
@media (min-width: 1025px) {
  .search-box h3 {
    color: #fff;
    font-size: 1.3em;
    margin: 0 1em;
    padding: 0;
    text-align: center;
  }
}
.translated-ltr .search-box h3, .translater-rtl .search-box h3 {
  font-size: 1em;
}
.search-box #block-search-form {
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
}
.search-box #block-search-form form {
  display: flex;
}
@media (min-width: 1280px) {
  .search-box #block-search-form form {
    margin-right: 10em;
  }
}
.search-box #block-search-form form .form-item-search-api-fulltext {
  width: 100%;
}
.search-box #block-search-form form label {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
}
.search-box #block-search-form form input {
  border: 2px solid #9fa6ab;
  border-right: 0;
  border-radius: 3px 0 0 3px;
}
@media (min-width: 1025px) {
  .search-box #block-search-form form input {
    border: 0;
    font-size: 1.2em;
    padding: 0.5em;
  }
}
.search-box #block-search-form form .form-submit {
  padding: 0.6em 1em;
  background: #214183;
  border: 0;
  border-radius: 0 3px 3px 0;
  color: #fff;
  font-family: "Proxima N W01 Reg", sans-serif;
}
@media (min-width: 1025px) {
  .search-box #block-search-form form .form-submit {
    padding: 0.4em 1em;
  }
}
.search-box #block-search-form form .form-submit:hover {
  background: linear-gradient(45deg, #214183 0%, #0095c8 100%);
}
.search-box .close {
  display: none;
}
@media (min-width: 1025px) {
  .search-box .close {
    display: block;
  }
  .search-box .close svg {
    font-size: 1.8em;
    margin: 0 auto;
    display: block;
    position: relative;
  }
}

ul.search-api-autocomplete-search {
  z-index: 1000;
}

.js input.form-autocomplete {
  background-image: none;
}

/* ============================================================
  Styles for spotlights
  ============================================================ */
.spotlight {
  display: block;
  text-decoration: none;
  margin: 1.5em 0 0;
  position: relative;
}
.spotlight:hover {
  font-weight: normal;
  text-decoration: none;
}
.spotlight__blue-bg {
  color: #fff;
}
.spotlight__blue-bg:hover {
  color: #fff;
}
.spotlight__blue-bg .txt {
  background: rgba(33, 65, 131, 0.95);
  padding: 1em;
  width: 100%;
}
.spotlight__blue-bg .txt h3 {
  border-left: 4px solid #4CBB17;
  color: #fff;
  font-size: 1.375rem;
  margin: 0;
  padding: 0 0 0 1rem;
}
.spotlight__blue-bg .txt p {
  border-left: 4px solid #4CBB17;
  padding: 0 0 0 1em;
}
.spotlight__blue-bg .txt .cta {
  font-family: "Proxima N W01 Bold", sans-serif;
  text-align: right;
  display: block;
  font-size: 1.25em;
}
@media (min-width: 444px) {
  .spotlight__blue-bg {
    max-height: 470px;
    overflow: hidden;
  }
  .spotlight__blue-bg .txt {
    position: absolute;
    bottom: 0;
  }
}
.spotlight__gray-bg {
  background: #f2f5f7;
  padding: 1.5em;
}
.spotlight__gray-bg.has-image {
  margin: 0;
  padding: 0;
}
.spotlight__gray-bg.has-image img {
  margin: 0;
  width: 100%;
}
.spotlight__gray-bg.has-image .txt {
  padding: 1em 1.5em;
}
@media (min-width: 888px) {
  .spotlight__gray-bg.has-image img {
    float: left;
    margin: 0 1.5em 0 0;
    width: auto;
  }
  .spotlight__gray-bg.has-image .txt {
    padding: 3em 1.5em 0;
  }
}
.spotlight__gray-bg.has-image h3 {
  color: #015182;
}
.spotlight__gray-bg h3 {
  font-size: 1.5em;
  line-height: 1;
  margin: 0 0 1em;
}
.spotlight__gray-bg h4,
.spotlight__gray-bg .cta {
  color: #015182;
}
.spotlight__gray-bg p {
  color: #515456;
}
.spotlight__gray-bg .cta {
  display: block;
  text-align: right;
  font-size: 1.25em;
}
.spotlight__gray-bg .cta:hover {
  text-decoration: underline;
}
.spotlight__hero {
  background: #214183;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 3em 0;
}
@media (min-width: 888px) {
  .spotlight__hero {
    flex-direction: row;
  }
}
.spotlight__hero:hover {
  color: #fff;
}
.spotlight__hero h3 {
  color: #fff;
}
.spotlight__hero img {
  order: 2;
}
@media (min-width: 888px) {
  .spotlight__hero img {
    width: 53.4%;
  }
}
.spotlight__hero .txt {
  margin: 1em;
  order: 1;
}
@media (min-width: 888px) {
  .spotlight__hero .txt {
    width: 35%;
  }
}
.spotlight__hero .txt p {
  font-size: 1.625em;
  line-height: 1.3;
  font-family: "Proxima N W01 Bold", sans-serif;
  position: relative;
}
@media (min-width: 1025px) {
  .spotlight__hero .txt p {
    font-size: 2.1em;
  }
}
.spotlight__hero .txt p::after {
  content: "";
  border-bottom: 4px solid #4CBB17;
  width: 80px;
  position: absolute;
  left: 0;
  bottom: -0.5em;
}

.tab-card {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.13);
  border-radius: 3px;
  padding: 0 0 1em;
  min-height: 315px;
}
.tab-card__tabs {
  background: #f2f5f7;
}
.tab-card__tabs .active {
  color: #515456;
  border-top: 2px solid #4CBB17;
  background: #fff;
}
.tab-card__tab {
  display: none;
  padding: 0 1em;
}
.tab-card__tab.active {
  background: #fff;
  display: block;
}
.tab-card__tab button,
.tab-card__tab a {
  display: block;
  width: 100%;
  margin: 1em 0;
  text-decoration: none;
}

/* ============================================================
  Styles for utilities (pay bill, account telephone molecule).
  ============================================================ */
#block-utilities {
  font-family: "Proxima N W01 Bold", sans-serif;
  width: 100vw;
}
@media (min-width: 1025px) {
  #block-utilities {
    padding: 1em;
    position: absolute;
    top: 0;
    right: 0;
    width: inherit;
  }
}
#block-utilities .languages {
  position: absolute;
  top: 7rem;
  width: auto;
  background: none;
  color: #214183;
  z-index: 500;
  padding: 1em;
}
@media (min-width: 444px) {
  #block-utilities .languages {
    right: 8rem;
    top: 5rem;
  }
}
@media (min-width: 666px) {
  #block-utilities .languages {
    top: 6rem;
  }
}
@media (min-width: 768px) {
  #block-utilities .languages {
    top: 9em;
  }
}
@media (min-width: 888px) {
  #block-utilities .languages {
    top: 1em;
  }
}
@media (min-width: 1025px) {
  #block-utilities .languages {
    position: relative;
    top: auto;
    right: auto;
    z-index: auto;
    display: inline-block;
    padding: 0 1em;
    width: inherit;
  }
}
#block-utilities .languages.active {
  display: none;
}
#block-utilities .languages svg {
  margin: 0 0.25em 0 0;
}
#block-utilities .languages button {
  color: #214183;
  padding: 0;
  text-decoration: none;
  text-align: right;
  width: 100%;
}
#block-utilities .languages a {
  color: #214183;
  text-decoration: none;
}
#block-utilities .languages .languages-container {
  background: #fff;
  border: 2px solid #214183;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
  display: none;
  margin: 1em 0;
}
@media (min-width: 1025px) {
  #block-utilities .languages .languages-container {
    background: #e4e9ee;
    margin: 0;
    position: absolute;
    z-index: 100;
    top: 1.75em;
    right: 1em;
    min-width: 130px;
  }
}
#block-utilities .languages .weglot-container {
  width: 100%;
}
#block-utilities .languages .weglot-container .country-selector {
  width: 100%;
}
#block-utilities .languages .weglot-container svg {
  color: #355e3b;
}
#block-utilities .languages .weglot-container .wgcurrent {
  font-size: 1rem;
}
#block-utilities .languages .weglot-container ul {
  display: block;
}
#block-utilities .languages .weglot-container li {
  display: block;
  font-size: 1rem;
}
#block-utilities .languages .weglot-container li a {
  display: block;
  padding: 0.25em 0.5em;
}
#block-utilities .utilities-links {
  background: #e4e9ee;
  display: flex;
  justify-content: center;
  padding: 1em 0;
  text-decoration: none;
  top: -6.1em;
  width: 35em;
}
@media (min-width: 768px) {
  #block-utilities .utilities-links {
    margin-top: 1em;
    background: none;
    top: -10em;
    right: 4.5em;
    z-index: 500;
    width: auto;
    font-size: 1em;
  }
}
@media (min-width: 1025px) {
  #block-utilities .utilities-links {
    border: 0;
    margin: 0;
    padding: 0;
    position: relative;
    top: auto;
    right: auto;
  }
}
#block-utilities .utilities-links .button {
  margin: 0 1em;
}
@media (min-width: 1025px) {
  #block-utilities .utilities-links .button {
    margin: 0;
  }
  #block-utilities .utilities-links .button:last-child {
    margin: 0 0 0 1em;
  }
}
.menu-open #block-utilities .utilities-links .button {
  display: none;
}

.utilities-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #e4e9ee;
  margin-top: -5em;
}
@media (min-width: 768px) {
  .utilities-container {
    height: 5em;
    padding-top: 0;
    margin-bottom: auto;
  }
}
@media (min-width: 1025px) {
  .utilities-container {
    background: none;
    height: auto;
    margin-top: auto;
  }
}

.utilities-link {
  text-decoration: none;
  max-width: 4em;
  line-height: 1;
  text-align: center;
  margin: 8px 1em auto 1em;
}
@media (min-width: 768px) {
  .utilities-link {
    margin: auto;
    padding-right: auto;
    padding-top: 8px;
    max-width: fit-content;
  }
}
@media (min-width: 1025px) {
  .utilities-link {
    padding-right: 1em;
    padding-top: 0;
  }
}

.utilities-vl {
  width: 1px;
  height: 2.5em;
  border: 1px #c0c8ce solid;
  background: #c0c8ce;
  margin-top: 7px;
}
@media (min-width: 768px) {
  .utilities-vl {
    margin: auto 10px;
  }
}
@media (min-width: 1025px) {
  .utilities-vl {
    display: none;
  }
}

.utilities-dropdown-container {
  background: #e4e9ee;
  border-radius: 3px;
  display: flex;
  flex-flow: row-reverse;
  width: 98%;
  margin-right: 1em;
}
@media (min-width: 768px) {
  .utilities-dropdown-container {
    margin-top: 1.5em;
  }
}
@media (min-width: 1025px) {
  .utilities-dropdown-container {
    width: auto;
    margin: auto;
  }
}
.utilities-dropdown-container .button {
  border-radius: 3px 3px 3px 3px;
  padding: 0.5em;
}
@media (min-width: 444px) {
  .utilities-dropdown-container .button {
    padding: 0.5em 0.75em;
  }
}

.dropdown-box-2 {
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.13);
  margin: auto;
  position: absolute;
  right: 1em;
  top: 129px;
  width: 92%;
  z-index: 999;
}
@media (min-width: 666px) {
  .dropdown-box-2 {
    top: 145px;
    width: 300px;
  }
}
@media (min-width: 768px) {
  .dropdown-box-2 {
    margin-top: 48px;
    top: 140px;
  }
}
@media (min-width: 1025px) {
  .dropdown-box-2 {
    right: auto;
    top: 22px;
  }
}
@media (min-width: 1440px) {
  .dropdown-box-2 {
    right: 1;
    top: 22px;
  }
}
.dropdown-box-2 .tab-card {
  min-height: fit-content;
  padding: 0 1em;
  border-radius: 0 0 3px 3px;
  border-top: 2px #355e3b solid;
  box-shadow: none;
}
@media (min-width: 1025px) {
  .dropdown-box-2 .tab-card {
    padding: 1em 0 1em;
    margin-top: -16px;
  }
}
/*# sourceMappingURL=molecules.css.map */
