body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Arial", sans-serif;
}

* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-text-size-adjust: 100%;
}
*:focus {
  outline: solid 1px #0a55a0;
}
*:focus-visible {
  box-shadow: 0 0 2px 2px #2699d5;
}
*:active {
  outline: 0 !important;
}

h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
}

a.button, button, input {
  line-height: 40px !important;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  font-family: "Arial", sans-serif;
  padding: 0 8px;
  font-size: 16px;
}

a.button, button {
  color: #404040;
  background-color: #ff960f;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0 8px;
  cursor: pointer;
  border-radius: 3px;
  border: none;
}
a.button:focus, a.button:active, button:focus, button:active {
  outline: none;
  background-color: #dd9933;
}
a.button:disabled, button:disabled {
  background-color: #808080;
}

a.button {
  text-decoration: none;
}

input {
  font-size: 1em;
  border: solid 1px #c0c0c0;
}

.loader {
  position: absolute;
  z-index: 3;
  background: white;
  top: 60px;
  bottom: 45px;
  left: 0;
  right: 0;
}
@media (max-width: 1023px) {
  .loader {
    bottom: 45px;
  }
}
.loader.hidden {
  display: none;
}
.loader.archive {
  top: 137px;
}
.loader > div {
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: solid 2px #0a55a0;
  border-right-color: transparent;
  animation: 700ms linear infinite spin;
}

.clearfix {
  float: none;
  clear: both;
}

/* Screen-reader only content */
.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.root {
  position: absolute;
  transform: translateX(-100%) scale(0, 0);
  width: 100%;
  background-color: white;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.root.selected {
  transform: none;
}

.alerts > h2 {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 1em;
  color: #0a55a0;
  font-weight: normal;
}

.map-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
}
.map-image img {
  max-width: 100%;
  max-height: 100%;
}

@media (min-width: 1024px) {
  #map-link, #list-link {
    display: none;
  }

  .root {
    transform: none !important;
  }

  .list, .details {
    width: 40%;
  }

  .list .alert {
    margin: 12px 0;
  }

  .details .alert {
    margin: 8px 0;
  }

  .map {
    right: 0;
    width: 60%;
  }

  .loader {
    width: 40%;
  }
}
@media (min-width: 1792px) {
  .list, .details {
    width: 30%;
  }

  .map {
    width: 70%;
  }

  .loader {
    width: 30%;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.modal-close, .modal-reset {
  position: absolute;
  right: 5px;
  padding: 12px;
  cursor: pointer;
  color: #404040;
  z-index: 99;
}

.modal-reset {
  left: 5px;
}

.overlay-0-0 {
  padding: 1em !important;
}

/* since this hides an element maybe it's name should change */
.display-hidden {
  display: none;
}

.offscreen {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.left {
  float: left;
}

.right {
  float: right;
}

.expand-button {
  position: absolute;
  z-index: 11;
  right: 12px;
  top: 12px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .expand-button {
    right: 24px;
    top: 24px;
  }
}

.weather-radar-button, .weather-radar-loading {
  position: absolute;
  z-index: 2;
  right: 12px;
  top: 72px;
  width: 40px;
  height: 40px;
}

.weather-radar-button {
  cursor: pointer;
}
.weather-radar-button.hidden {
  display: none;
}

.weather-radar-loading {
  background-color: #739fc6;
  border-radius: 8px;
}
.weather-radar-loading:after {
  content: "";
  border-radius: 50%;
  border: solid 2px white;
  border-bottom-color: #b7ddff;
  width: 26px;
  height: 26px;
  display: inline-block;
  margin: 7px 0 0 7px;
  animation-name: spin;
  animation-duration: 600ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.alert {
  cursor: pointer;
  margin-top: 12px;
  background-color: #ebebeb;
  color: black;
  font-size: 1.125em;
  transition: background-color 87.5ms linear;
  display: flex;
}
.alert .description {
  display: inline-block;
  padding: 12px;
  width: calc(100% - 78px);
  position: relative;
}
.alert .description span, .alert .description h3 {
  font-size: 1em;
  display: block;
  width: 100%;
  margin-top: 2px;
  padding: 0;
}
.alert .description span.name, .alert .description h3.name {
  font-weight: bold;
}
.alert .description span.location, .alert .description h3.location {
  font-size: 0.825em;
}
.alert .description span.updated, .alert .description span.authour, .alert .description span.status-line, .alert .description h3.updated, .alert .description h3.authour, .alert .description h3.status-line {
  color: #666666;
  font-size: 0.75em;
}
.alert .description span.internal-label, .alert .description h3.internal-label {
  color: #0a55a0;
  font-size: 0.666em;
  font-weight: bold;
  text-transform: uppercase;
}
.alert .description h3 {
  margin-top: -2px;
  padding: 0 !important;
}
.alert .description .wireless-immediate-label {
  font-size: 14px;
  color: #EB0800;
  font-weight: bold;
}
.alert .description .badges {
  margin-left: 0;
  margin-top: 0;
}
.alert .description .summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  max-height: 2.5em;
  line-height: 1.25em;
  font-size: 0.8em;
}
.alert .description .feedback-icon {
  font-size: 0.8em;
  float: right;
}
.alert .type {
  flex: 0 0 78px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.alert .type .type-inner .name {
  display: block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.7em;
  word-break: normal;
}
.alert .type .type-inner .icon {
  display: block;
  width: 75%;
  margin: 13px auto auto auto;
}
.alert.critical .type {
  background-color: blue;
}
.alert.cancelled .type {
  background-color: #c0c0c0 !important;
}
.alert.cancelled.critical .type {
  background-color: #4C4C4C !important;
}
.alert.cancelled.advisory .type {
  background-color: #D6D6D6 !important;
}
.alert:focus {
  outline: none;
  background-color: #D0D0D0;
}

.badges {
  margin-left: 12px;
  margin-top: 9px;
}
.badges:has(*) {
  margin-bottom: 0.25em;
}
.badges span.badge {
  display: inline;
  font-size: 12px;
  padding: 0.25em;
  margin-right: 0.25em;
}
.badges span.badge.language {
  background-color: #D0D0D0;
  color: #555555;
}
.badges span.badge.alert-ready {
  background-color: #FDD0C7;
  color: #BD0600;
}
.badges span.badge.internal {
  background-color: #B3B1EC;
  color: #302EBD;
}
.list {
  margin-top: 60px;
  margin-bottom: 57px;
  background-color: white;
  position: relative;
}
@media (max-width: 1023px) {
  .list {
    margin-bottom: 57px;
  }
}
.list .alert-legend {
  padding-top: 12px;
}
.list .list-wrapper, .list .details {
  width: 100%;
  min-height: 100%;
}
.list .list-wrapper.hidden, .list .details.hidden {
  display: none;
}
.list .list-wrapper .filter-wrapper, .list .details .filter-wrapper {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: solid 1px #c0c0c0;
}
.list .list-wrapper .filter-wrapper .archive-wrapper.hidden, .list .list-wrapper .filter-wrapper .actions-wrapper.hidden, .list .details .filter-wrapper .archive-wrapper.hidden, .list .details .filter-wrapper .actions-wrapper.hidden {
  display: none;
}
.list .list-wrapper .filter-wrapper .archive-wrapper, .list .details .filter-wrapper .archive-wrapper {
  width: 100%;
  padding: 7px 12px 0 12px;
  position: relative;
  height: 60px;
}
.list .list-wrapper .filter-wrapper .archive-wrapper .back, .list .details .filter-wrapper .archive-wrapper .back {
  position: absolute;
  opacity: 0.6;
  top: 0;
  left: 0;
  height: 44px;
  padding: 6px 12px;
  margin-top: 13px;
  cursor: pointer;
}
.list .list-wrapper .filter-wrapper .archive-wrapper .back img, .list .details .filter-wrapper .archive-wrapper .back img {
  height: 100%;
}
.list .list-wrapper .filter-wrapper .archive-wrapper .back:focus, .list .details .filter-wrapper .archive-wrapper .back:focus {
  opacity: 1;
  outline: none;
}
.list .list-wrapper .filter-wrapper .archive-wrapper .date, .list .details .filter-wrapper .archive-wrapper .date {
  height: 50px;
  color: #0a55a0;
  margin: auto;
  float: right;
}
.list .list-wrapper .filter-wrapper .archive-wrapper .date .next-day, .list .details .filter-wrapper .archive-wrapper .date .next-day {
  line-height: 50px !important;
  height: 50px;
  display: inline-block;
  vertical-align: middle;
  float: left;
  font-size: 36px;
  width: 30px;
  text-align: center;
  cursor: pointer;
  transition: color 250ms linear;
  background-color: #ff960f;
  color: #0a55a0;
  margin-top: 3px;
  border: solid 1px #ff960f;
}
.list .list-wrapper .filter-wrapper .archive-wrapper .date .next-day:first-child, .list .details .filter-wrapper .archive-wrapper .date .next-day:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.list .list-wrapper .filter-wrapper .archive-wrapper .date .next-day:last-child, .list .details .filter-wrapper .archive-wrapper .date .next-day:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.list .list-wrapper .filter-wrapper .archive-wrapper .date .next-day.next-day-disabled, .list .details .filter-wrapper .archive-wrapper .date .next-day.next-day-disabled {
  color: #d38d23;
  cursor: default;
}
.list .list-wrapper .filter-wrapper .archive-wrapper .date .next-day > span, .list .details .filter-wrapper .archive-wrapper .date .next-day > span {
  float: left;
  width: 100%;
  text-align: center;
  margin-top: -4px;
}
.list .list-wrapper .filter-wrapper .archive-wrapper .date .datepicker-wrapper, .list .details .filter-wrapper .archive-wrapper .date .datepicker-wrapper {
  float: left;
  margin: 3px auto 0 auto;
  height: 50px;
  width: 160px;
  border: solid 1px #ff960f;
}
.list .list-wrapper .filter-wrapper .archive-wrapper .date .datepicker-wrapper .react-datepicker-wrapper, .list .list-wrapper .filter-wrapper .archive-wrapper .date .datepicker-wrapper .react-datepicker__input-container, .list .details .filter-wrapper .archive-wrapper .date .datepicker-wrapper .react-datepicker-wrapper, .list .details .filter-wrapper .archive-wrapper .date .datepicker-wrapper .react-datepicker__input-container {
  width: 100%;
}
.list .list-wrapper .filter-wrapper .archive-wrapper .date .datepicker-wrapper .react-datepicker__aria-live, .list .details .filter-wrapper .archive-wrapper .date .datepicker-wrapper .react-datepicker__aria-live {
  display: block;
  position: absolute;
}
.list .list-wrapper .filter-wrapper .archive-wrapper .date .datepicker-wrapper .date-input, .list .details .filter-wrapper .archive-wrapper .date .datepicker-wrapper .date-input {
  line-height: 50px !important;
  height: 48px;
  color: #0a55a0;
  width: 100%;
  border-radius: 0;
  border: none;
  background-color: white;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
.list .list-wrapper .filter-wrapper .archive-wrapper .date .datepicker-wrapper .date-input i, .list .details .filter-wrapper .archive-wrapper .date .datepicker-wrapper .date-input i {
  margin-right: 10px;
  font-size: 18px;
}
.list .list-wrapper .filter-wrapper .archive-wrapper .date .alerts-on-day:not(.react-datepicker__day--selected), .list .details .filter-wrapper .archive-wrapper .date .alerts-on-day:not(.react-datepicker__day--selected) {
  border-radius: 0.3rem;
  background-color: #ff960f;
  color: #404040;
}
.list .list-wrapper .filter-wrapper .filter-actions, .list .details .filter-wrapper .filter-actions {
  width: 100%;
  padding: 12px 12px 0 12px;
  display: none;
}
@media (min-width: 1301px) {
  .list .list-wrapper .filter-wrapper .filter-actions.desktop, .list .details .filter-wrapper .filter-actions.desktop {
    display: block;
  }
}
.list .list-wrapper .filter-wrapper .filter-actions.desktop button, .list .details .filter-wrapper .filter-actions.desktop button {
  width: 100%;
}
@media (max-width: 1300px) {
  .list .list-wrapper .filter-wrapper .filter-actions.mobile, .list .details .filter-wrapper .filter-actions.mobile {
    display: flex;
    justify-content: space-between;
  }
}
.list .list-wrapper .filter-wrapper .filter-actions.mobile .labelled-button, .list .details .filter-wrapper .filter-actions.mobile .labelled-button {
  width: 30%;
}
.list .list-wrapper .filter-wrapper .filter-actions.mobile button, .list .details .filter-wrapper .filter-actions.mobile button {
  line-height: 40px !important;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  display: block;
  margin: auto;
  text-align: center;
  line-height: normal;
  background-color: white;
  border: solid 1px #ff960f;
  transition: background-color 175ms linear;
  width: 100%;
  font-size: 0.875em;
  color: #0a55a0;
}
.list .list-wrapper .filter-wrapper .filter-actions.mobile button.highlighted, .list .details .filter-wrapper .filter-actions.mobile button.highlighted {
  background-color: #ff960f;
}
.list .list-wrapper .filter-wrapper .filter, .list .details .filter-wrapper .filter {
  padding: 12px 12px 0 12px;
  width: 100%;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper, .list .details .filter-wrapper .filter .search-results-wrapper {
  float: left;
  width: calc(100% - 12px - 100px);
  position: relative;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper {
  width: 100%;
  position: relative;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper label, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper label {
  width: 100%;
  font-size: 0.8em;
  color: #0a55a0;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: bold;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper input, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper input {
  width: 100%;
  padding-right: 35px;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper input::-ms-clear, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper input::-ms-clear {
  display: none;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .x, .list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .x, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location {
  visibility: hidden;
  right: 0;
  padding: 10px;
  position: absolute;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .x, .list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location, .list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .filter-link, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .x, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .filter-link {
  font-size: 26px;
  z-index: 2;
  width: 35px;
  text-align: center;
  cursor: pointer;
  color: #404040;
  box-sizing: content-box;
  margin: 0 !important;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .x.filter-link, .list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location.filter-link, .list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .filter-link.filter-link, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .x.filter-link, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location.filter-link, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .filter-link.filter-link {
  display: inline-flex;
  vertical-align: middle;
  color: #0a55a0;
  font-size: 22px;
  background-color: #ff960f;
  padding: 9px 0px 9px 7px;
  cursor: pointer;
  border-radius: 3px;
  margin-right: 9px !important;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .x.filter-link .fa-filter, .list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location.filter-link .fa-filter, .list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .filter-link.filter-link .fa-filter, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .x.filter-link .fa-filter, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location.filter-link .fa-filter, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .filter-link.filter-link .fa-filter {
  padding-left: 5px;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .x.inactive, .list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location.inactive, .list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .filter-link.inactive, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .x.inactive, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location.inactive, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .filter-link.inactive {
  color: #ffffff;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .x.visible, .list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location.visible, .list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .filter-link.visible, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .x.visible, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location.visible, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .filter-link.visible {
  visibility: visible;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .x:focus, .list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location:focus, .list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .filter-link:focus, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .x:focus, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location:focus, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .filter-link:focus {
  outline: none;
  background-color: #EAEAEA;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .x, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .x {
  line-height: 40px !important;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location {
  height: 40px;
  width: 40px;
  opacity: 0.7;
  z-index: 0;
  padding: 0;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location img, .list .details .filter-wrapper .filter .search-results-wrapper .input-wrapper .my-location img {
  float: right;
  width: 24px;
  height: 24px;
  margin: 8px;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .search-results, .list .details .filter-wrapper .filter .search-results-wrapper .search-results {
  top: 41px;
  position: absolute;
  z-index: 3;
  background-color: white;
  border-left: solid 1px #c0c0c0;
  border-right: solid 1px #c0c0c0;
  left: 0;
  width: 100%;
  display: none;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
  padding: 12px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .search-results.visible, .list .details .filter-wrapper .filter .search-results-wrapper .search-results.visible {
  display: block;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .search-results .search-results-section, .list .details .filter-wrapper .filter .search-results-wrapper .search-results .search-results-section {
  width: 100%;
  margin-top: 12px;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .search-results .search-results-section h2, .list .details .filter-wrapper .filter .search-results-wrapper .search-results .search-results-section h2 {
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  font-size: 0.85em;
  margin-bottom: 6px;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .search-results .search-results-section span, .list .details .filter-wrapper .filter .search-results-wrapper .search-results .search-results-section span {
  display: inline-block;
  width: 100%;
  padding: 8px;
  border-bottom: solid 1px #c0c0c0;
  color: #000000;
  font-size: 0.85em;
  cursor: pointer;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .search-results .search-results-section span.focused, .list .details .filter-wrapper .filter .search-results-wrapper .search-results .search-results-section span.focused {
  background-color: #f5f5f5;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .search-results .search-results-section span:last-child, .list .details .filter-wrapper .filter .search-results-wrapper .search-results .search-results-section span:last-child {
  border-bottom: none;
}
.list .list-wrapper .filter-wrapper .filter .search-results-wrapper .search-results .search-results-section:first-child, .list .details .filter-wrapper .filter .search-results-wrapper .search-results .search-results-section:first-child {
  margin-top: 0;
}
.list .list-wrapper .filter-wrapper .filter button, .list .details .filter-wrapper .filter button {
  float: right;
  width: 100px;
}
.list .list-wrapper .filter-wrapper .filter .search-error-input-highlight, .list .details .filter-wrapper .filter .search-error-input-highlight {
  border: 2px solid #cc0033;
}
.list .list-wrapper .filter-wrapper .filter .search-error, .list .details .filter-wrapper .filter .search-error {
  color: #cc0033;
  margin-top: 5px;
  font-size: 0.9em;
}
.list .empty-alerts {
  padding: 40px 45px;
  background-color: #ebebeb;
  margin: 15px 0;
  text-align: center;
  color: #404040;
}
.list .alerts.admin, .list .alerts.in-effect {
  margin-bottom: 36px;
}
.list .alerts h2 {
  padding: 0 12px;
  font-weight: bold;
}
.list .not-in-effect .alert .type, .list .alert.cancelled .type {
  background-color: #c0c0c0 !important;
}
.list .not-in-effect .alert.critical .type, .list .alert.cancelled.critical .type {
  background-color: #4C4C4C !important;
}
.list .not-in-effect .alert.advisory .type, .list .alert.cancelled.advisory .type {
  background-color: #D6D6D6 !important;
}
.list.embed .list-wrapper {
  padding-top: 1rem;
}
.list.embed .alerts.archive {
  padding: 28px;
}
.list.embed .alerts.archive a {
  display: block;
  text-align: center;
  text-decoration: none;
  background: none;
  color: #0a55a0;
}

.react-datepicker__portal {
  background-color: rgba(0, 0, 0, 0.75);
}

.react-datepicker .react-datepicker__day--selected {
  background-color: #0a55a0;
}
.react-datepicker button:focus {
  background-color: transparent !important;
}

/* Improve the colour contrast for these elements */
.react-datepicker .react-datepicker__day--disabled {
  color: #404040;
}
.react-datepicker .react-datepicker__navigation--previous {
  border-right-color: #404040;
}
.react-datepicker .react-datepicker__navigation--previous:hover {
  border-right-color: #000000;
}
.react-datepicker .react-datepicker__navigation--next {
  border-left-color: #404040;
}
.react-datepicker .react-datepicker__navigation--next:hover {
  border-left-color: #000000;
}
.react-datepicker .react-datepicker__day--keyboard-selected {
  border: 2px solid black;
}
.react-datepicker .react-datepicker__day--disabled {
  background-color: transparent;
}
.map {
  width: 100%;
  top: 0;
  padding-top: 60px;
  padding-bottom: 45px;
}
@media (max-width: 1023px) {
  .map {
    padding-bottom: 45px;
  }
}
.map .map-container {
  width: 100%;
  height: 100%;
}
.map .centre-map-button {
  position: absolute;
  z-index: 5;
  bottom: 68px;
  left: 12px;
  background-color: white;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
  border-radius: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  font-size: 0.75em;
}
@media (max-width: 1023px) {
  .map .centre-map-button {
    bottom: 68px;
  }
}
.map .centre-map-button:focus {
  outline: none;
  background: #EAEAEA !important;
}
.map.embed {
  padding-bottom: 0 !important;
}
.map.embed .centre-map-button {
  bottom: 24px;
}
.map:before, .map:after {
  content: "";
  position: absolute;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.map:after {
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
}

button[title="Zoom in"]:focus, button[title="Zoom out"]:focus {
  outline: none !important;
  background-color: #EAEAEA !important;
}

.alert-icon-marker {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  position: relative;
}
.alert-icon-marker.advisory {
  background-color: #FFE44B;
  border: solid 1px black;
}
.alert-icon-marker.critical {
  background-color: #EB0800;
  border: solid 1px white;
}
.alert-icon-marker.cancelled {
  background-color: #ebebeb !important;
  border: solid 1px black !important;
}
.alert-icon-marker img {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
}

.alert-marker {
  width: 30px;
  height: 30px;
}
.alert-marker img, .alert-marker span {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.alert-marker span {
  line-height: 30px !important;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  z-index: 3;
  color: white;
  font-weight: bold;
  text-align: center;
  margin-top: 1px;
}

.map-image-overlay {
  background: grey;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  z-index: 10;
  position: relative;
}
.map-image-overlay.hidden {
  display: none;
}
.map-image-overlay img {
  max-width: 100%;
  max-height: 100%;
}

.map-overlay-title {
  color: white;
  font-size: 2em;
}

@media (min-width: 1024px) {
  .map {
    width: 60%;
    position: fixed;
    z-index: 2;
  }
}
@media (min-width: 1792px) {
  .map {
    width: 70%;
    position: fixed;
    z-index: 2;
  }
}
.details-alerts .overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: black;
  opacity: 0.35;
}
.details-alerts .content {
  position: fixed;
  overflow-y: scroll;
  max-height: 300px;
  bottom: 0;
  width: 100%;
  background-color: white;
}

.details-alerts.visible .content {
  transform: translateY(0);
}
.details-alerts.visible .overlay {
  visibility: visible;
  opacity: 0.35;
  transition: opacity 175ms ease-out;
}
.details-alerts.hidden .content {
  transform: translateY(100%);
}
.details-alerts.hidden .overlay {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 175ms, opacity 175ms ease-out;
}
.details-alerts .overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: black;
  opacity: 0.35;
}
.details-alerts .content {
  position: fixed;
  transition: transform 175ms ease-out;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11;
  background-color: white;
  height: 200px;
  padding: 12px;
  overflow-y: scroll;
}
.details-alerts .content .alert:first-child {
  margin-top: 0;
}

.map.no-alerts {
  position: absolute;
  z-index: 5;
  top: 50%;
  background-color: #ffffffde;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
  border-radius: 5px;
  padding: 12px;
  height: 3.5rem;
  width: 80%;
  margin: 0 10%;
  text-align: center;
  color: #404040d4;
}
.map.no-alerts.hidden {
  display: none;
}
.hidden-share.visible .share-content {
  transform: translateY(0);
}
.hidden-share.visible .overlay {
  visibility: visible;
  opacity: 0.35;
  transition: opacity 175ms ease-out;
}
.hidden-share.hidden .share-content {
  transform: translateY(100%);
}
.hidden-share.hidden .overlay {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 175ms, opacity 175ms ease-out;
}
.hidden-share .overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: black;
  opacity: 0.35;
}
.hidden-share .share-content {
  position: fixed;
  transition: transform 175ms ease-out;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11;
  height: 72px;
  background-color: white;
}

.details-share {
  width: 100%;
}
.details-share .share-group {
  width: 80%;
}
.details-share .share-group > div > div {
  width: 36px;
  margin-left: 6px;
  margin-right: 6px;
}

.share-button {
  position: relative;
}
.share-button .focus-highlight {
  width: 36px;
  height: 36px;
  position: absolute;
  z-index: 2;
  background-color: white;
  opacity: 0;
  border-radius: 50%;
  pointer-events: none;
}
.share-button:focus {
  outline: none;
}
.share-button:focus .focus-highlight {
  opacity: 0.125;
}

.share-group {
  margin: auto;
  width: 75%;
}
.share-group > div > div {
  float: left;
  padding: 12px 0;
  cursor: pointer;
}
.share-group > div > div > div > div {
  display: block;
  margin: auto;
}
.translate-modal {
  color: white;
  font-weight: bold;
  max-width: 1000px !important;
  width: 1000px;
}
@media (max-width: 479px) {
  .translate-modal {
    padding: 10px 10px;
    max-width: 300px !important;
  }
}
.translate-modal .modal-close {
  color: #FFBF6B;
  text-transform: uppercase;
  font-size: 0.85em;
  padding-right: 12px;
  padding-top: 4px;
}
.translate-modal .modal-close:focus {
  outline: none !important;
  background-color: #0a55a0 !important;
}
.translate-modal .translation-header {
  margin: 0 auto 12px auto;
  display: block;
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  width: 65%;
}
.translate-modal .translation-disclaimer {
  width: 100%;
  margin: 0 auto 12px auto;
  padding: 12px;
  border: 0;
  height: 12vh;
  overflow-y: scroll;
  /* Repeated these to prevent browser setting its own values */
  text-align: left;
  font-weight: normal;
  color: black;
  background-color: white;
  font-size: 16px;
  font-family: "Arial", sans-serif;
}
@media all and (max-width: 767px) {
  .translate-modal .translation-disclaimer {
    height: 20vh;
  }
}
.translate-modal .translation-disclaimer-agree {
  text-align: center;
}
.translate-modal .translation-disclaimer-agree button {
  padding-left: 16px;
  padding-right: 16px;
}
.translate-modal .translation-wrapper {
  width: 100%;
}
.translate-modal .translation-wrapper .translation-container {
  width: 100%;
  margin-top: 12px;
  background-color: white;
  border-bottom: solid 1px #c0c0c0;
}
.translate-modal .translation-wrapper .translation-container .translation-filter {
  width: 100%;
  border-bottom: solid 1px #c0c0c0;
  height: 50px;
  position: relative;
}
.translate-modal .translation-wrapper .translation-container .translation-filter input {
  width: 100%;
  height: 100%;
  border: none !important;
  padding: 12px 42px 12px 12px;
}
.translate-modal .translation-wrapper .translation-container .translation-filter .translation-filter-clear {
  line-height: 49px !important;
  height: 49px;
  display: inline-block;
  vertical-align: middle;
  width: 42px;
  text-align: center;
  position: absolute;
  z-index: 2;
  right: 0;
  color: #404040;
  font-size: 28px;
  font-weight: normal;
  cursor: pointer;
  opacity: 1;
  transition: opacity 175ms linear;
}
.translate-modal .translation-wrapper .translation-container .translation-filter .translation-filter-clear:focus, .translate-modal .translation-wrapper .translation-container .translation-filter .translation-filter-clear:active {
  background-color: #eaeaea;
}
.translate-modal .translation-wrapper .translation-container .translation-filter .translation-filter-clear.translation-filter-clear-hidden {
  opacity: 0;
  pointer-events: none;
}
.translate-modal .translation-wrapper .translation-container .translation-languages {
  width: calc(100% - 24px);
  margin: 12px;
}
.translate-modal .translation-wrapper .translation-container .translation-languages .translation-label {
  display: inline-block;
  width: 100%;
  font-weight: bold;
  text-transform: uppercase;
  color: #0a55a0;
  font-size: 12px;
  margin-bottom: 12px;
}
.translate-modal .translation-wrapper .translation-container .translation-languages .translation-language {
  display: inline-block;
  margin-right: 1%;
}
@media all and (min-width: 992px) and (max-width: 1199px), all and (min-width: 1200px) {
  .translate-modal .translation-wrapper .translation-container .translation-languages .translation-language {
    width: 24.25%;
  }
  .translate-modal .translation-wrapper .translation-container .translation-languages .translation-language:nth-child(4n-4) {
    margin-right: 0;
  }
}
@media all and (max-width: 767px), all and (min-width: 768px) and (max-width: 991px) {
  .translate-modal .translation-wrapper .translation-container .translation-languages .translation-language {
    width: 49.5%;
  }
  .translate-modal .translation-wrapper .translation-container .translation-languages .translation-language:nth-child(2n-2) {
    margin-right: 0;
  }
}
.translate-modal .translation-wrapper .translation-container .translation-languages .translation-language > button {
  color: black;
  font-weight: normal;
  cursor: pointer;
  border-radius: 3px;
  text-align: left;
  text-transform: none;
  background-color: white;
  margin: 5px;
  width: calc(100% - 10px);
  transition: background-color 175ms linear;
}
.translate-modal .translation-wrapper .translation-container .translation-languages .translation-language > button:hover {
  background-color: #ebebeb;
}
.icon-button {
  padding: 0;
  background-color: transparent;
  border: solid 1px #ff960f;
}
.icon-button i, .icon-button span {
  float: left;
  background-color: transparent;
}
.icon-button i {
  line-height: 39px !important;
  height: 39px;
  display: inline-block;
  vertical-align: middle;
  border-right: solid 1px #ff960f;
  font-size: 1.125em;
  color: #0a55a0;
  width: 40px;
}
.icon-button span {
  line-height: 40px !important;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  color: #0a55a0;
  font-size: 0.875em;
  width: calc(100% - 40px);
  padding: 0 12px;
}
.icon-button.highlighted i {
  background-color: #ff960f;
}
.icon-button:active, .icon-button:focus {
  background-color: #f5f5f5;
}
.icon-button:active.highlighed i, .icon-button:focus.highlighed i {
  background-color: #ffa129;
}

.radio-group {
  width: 100%;
}
.radio-group .radio-group-option {
  line-height: 40px !important;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  font-size: 0.875em;
  font-weight: normal;
  cursor: pointer;
  color: black;
  font-weight: bold;
  position: relative;
}
.radio-group .radio-group-option:first-child {
  margin-top: 0;
}
.radio-group .radio-group-option > div {
  position: absolute;
  top: 14px;
  right: 2px;
  pointer-events: none;
  border: solid 2px #0a55a0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.radio-group .radio-group-option > div:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0a55a0;
  transition: transform 175ms linear;
  transform: scale(0, 0);
}
.radio-group .radio-group-option.selected > div:after {
  transform: scale(1, 1);
}

.switch-button {
  cursor: pointer;
}
.switch-button label {
  float: left;
}
.switch-button .wrapper {
  float: right;
  width: 48px;
  height: 24px;
  border: solid 2px #0a55a0;
  border-radius: 12px;
  position: relative;
  transition: border-color 175ms linear;
}
.switch-button .wrapper .circle {
  width: 16px;
  height: 16px;
  background-color: #c0c0c0;
  position: absolute;
  z-index: 99999;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  transition: transform 175ms linear, background-color 175ms linear;
}
.switch-button.switch-button-checked .circle {
  transform: translateX(24px);
  background-color: #0a55a0;
}
.switch-button:active .circle, .switch-button:focus .circle {
  background-color: #ff960f;
}
.switch-button:active .wrapper, .switch-button:focus .wrapper {
  border-color: #ff960f;
}
.switch-button.switch-button-disabled {
  cursor: default;
}
.switch-button.switch-button-disabled .circle {
  background-color: #c0c0c0;
}
.switch-button.switch-button-disabled .wrapper {
  border-color: #c0c0c0;
}

.loading-button {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.loading-button > div {
  transition: transform 175ms ease-in-out;
}
.loading-button .loading-button-display {
  padding: 0 8px;
}
.loading-button .loading-button-spinner {
  position: absolute;
  z-index: 2;
  transform: translateX(-100%);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.loading-button .loading-button-spinner::after {
  content: "";
  display: block;
  margin: auto;
  width: 22px;
  height: 22px;
  margin-top: 9px;
  border-radius: 50%;
  border: solid 1px #0a55a0;
  border-bottom-color: transparent;
  animation-name: spin;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 600ms;
}
.loading-button.loading-button-loading .loading-button-display {
  transform: translateX(100%);
}
.loading-button.loading-button-loading .loading-button-spinner {
  transform: translateX(0);
}
.loading-button.loading-button-highlighted {
  background-color: white;
  border: solid 1px transparent;
}
.loading-button .language-icon {
  height: 1.25em;
  vertical-align: text-bottom;
  fill: #0a55a0;
  stroke: #0a55a0;
  stroke-width: 0.5px;
}
.details {
  padding: 60px 0;
}
@media (max-width: 1023px) {
  .details {
    padding-bottom: 57px;
  }
}
.details .details-header {
  width: 100%;
}
.details .details-header .back-arrow-wrapper {
  opacity: 0.6;
  height: 42px;
  padding: 9px 2px 9px 12px;
  margin-top: 8px;
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
}
.details .details-header .back-arrow-wrapper div {
  display: inline-block;
  font-weight: bold;
  margin: 4px 0 0 2px;
}
.details .details-header .back-arrow-wrapper:focus {
  outline: none !important;
  opacity: 1;
}
.details .details-header .back-arrow-wrapper:focus img {
  background-color: #ebebeb;
}
.details .details-header .back-arrow-wrapper:focus-visible {
  margin-left: 6px;
  padding-left: 6px;
}
.details .details-header .translate-button, .details .details-header .share-button {
  float: right;
  margin: 12px 0 0 0;
}
.details .details-header .share-button {
  background-color: white;
  border: solid 1px transparent;
  min-width: 75px;
  margin-left: 8px;
  margin-right: 8px;
}
.details .details-header .details-share {
  float: right;
}
.details.hidden {
  display: none;
}
.details .alert {
  cursor: default !important;
}
.details .author {
  font-size: 0.8125em;
  margin-left: 12px;
  margin-top: 9px;
  display: block;
}
.details .translate-container, .details .details-description, .details .affected-areas, .details .safety-instructions, .details .criteria, .details .resources {
  margin-top: 12px;
  padding: 0 12px;
  cursor: pointer;
}
.details .translate-container .source, .details .details-description .source, .details .affected-areas .source, .details .safety-instructions .source, .details .criteria .source, .details .resources .source {
  font-size: 0.8125em;
  display: block;
  margin-bottom: 5px;
}
.details .translate-container .text, .details .details-description .text, .details .affected-areas .text, .details .safety-instructions .text, .details .criteria .text, .details .resources .text {
  margin-top: 12px;
  color: #404040;
  font-size: 15px !important;
}
.details .translate-container .text ul, .details .details-description .text ul, .details .affected-areas .text ul, .details .safety-instructions .text ul, .details .criteria .text ul, .details .resources .text ul {
  padding-left: 24px;
}
.details .translate-container .text ul ul, .details .details-description .text ul ul, .details .affected-areas .text ul ul, .details .safety-instructions .text ul ul, .details .criteria .text ul ul, .details .resources .text ul ul {
  margin-top: 8px;
}
.details .translate-container .text li, .details .details-description .text li, .details .affected-areas .text li, .details .safety-instructions .text li, .details .criteria .text li, .details .resources .text li {
  margin-bottom: 0.75em;
}
.details .translate-container .text li:last-child, .details .details-description .text li:last-child, .details .affected-areas .text li:last-child, .details .safety-instructions .text li:last-child, .details .criteria .text li:last-child, .details .resources .text li:last-child {
  margin-bottom: 0;
}
.details .translate-container .text a, .details .details-description .text a, .details .affected-areas .text a, .details .safety-instructions .text a, .details .criteria .text a, .details .resources .text a {
  color: #0a55a0;
}
.details .translate-container .text p, .details .details-description .text p, .details .affected-areas .text p, .details .safety-instructions .text p, .details .criteria .text p, .details .resources .text p {
  margin: 1em 0 0 0;
}
.details .translate-container .text p:first-child, .details .details-description .text p:first-child, .details .affected-areas .text p:first-child, .details .safety-instructions .text p:first-child, .details .criteria .text p:first-child, .details .resources .text p:first-child {
  margin-top: 0;
}
.details .translate-container .text.expanded p, .details .details-description .text.expanded p, .details .affected-areas .text.expanded p, .details .safety-instructions .text.expanded p, .details .criteria .text.expanded p, .details .resources .text.expanded p {
  display: block !important;
}
.details .translate-container .text.offset, .details .details-description .text.offset, .details .affected-areas .text.offset, .details .safety-instructions .text.offset, .details .criteria .text.offset, .details .resources .text.offset {
  position: absolute;
  z-index: 2;
  width: calc(100% - 24px);
  transform: translateX(-200%);
}
.details .translate-container .text.clamped, .details .details-description .text.clamped, .details .affected-areas .text.clamped, .details .safety-instructions .text.clamped, .details .criteria .text.clamped, .details .resources .text.clamped {
  max-height: 95px;
  overflow: hidden;
}
.details .translate-container .text.clamped.expanded, .details .details-description .text.clamped.expanded, .details .affected-areas .text.clamped.expanded, .details .safety-instructions .text.clamped.expanded, .details .criteria .text.clamped.expanded, .details .resources .text.clamped.expanded {
  max-height: unset;
}
.details .translate-container .text.offset p, .details .details-description .text.offset p, .details .affected-areas .text.offset p, .details .safety-instructions .text.offset p, .details .criteria .text.offset p, .details .resources .text.offset p {
  display: block;
}
.details .translate-container .more-link, .details .details-description .more-link, .details .affected-areas .more-link, .details .safety-instructions .more-link, .details .criteria .more-link, .details .resources .more-link {
  color: #0a55a0;
  font-weight: bold;
  pointer-events: none;
}
.details .translate-container.hidden, .details .details-description.hidden, .details .affected-areas.hidden, .details .safety-instructions.hidden, .details .criteria.hidden, .details .resources.hidden {
  display: none;
}
.details .translate-container .toggle, .details .details-description .toggle, .details .affected-areas .toggle, .details .safety-instructions .toggle, .details .criteria .toggle, .details .resources .toggle {
  width: 100%;
  text-align: center;
  color: black;
  display: none !important;
  color: #0a55a0;
  background-color: unset !important;
  text-transform: none !important;
  cursor: pointer;
}
.details .translate-container .toggle span, .details .details-description .toggle span, .details .affected-areas .toggle span, .details .safety-instructions .toggle span, .details .criteria .toggle span, .details .resources .toggle span {
  float: left;
  width: 100%;
  line-height: 1;
  margin-top: 15px;
  font-weight: bold;
  font-size: 12px;
}
.details .translate-container .toggle i, .details .details-description .toggle i, .details .affected-areas .toggle i, .details .safety-instructions .toggle i, .details .criteria .toggle i, .details .resources .toggle i {
  float: left;
  font-size: 18px;
  width: 100%;
  line-height: 1;
  margin-top: 1px;
}
.details .translate-container .toggle.visible, .details .details-description .toggle.visible, .details .affected-areas .toggle.visible, .details .safety-instructions .toggle.visible, .details .criteria .toggle.visible, .details .resources .toggle.visible {
  display: block !important;
}
@media (min-width: 1024px) {
  .details .translate-container .toggle, .details .details-description .toggle, .details .affected-areas .toggle, .details .safety-instructions .toggle, .details .criteria .toggle, .details .resources .toggle {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .details .translate-container, .details .details-description, .details .affected-areas, .details .safety-instructions, .details .criteria, .details .resources {
    cursor: default;
  }
}
.details .details-description .text a:hover, .details .safety-instructions .text a:hover, .details .criteria .text a:hover {
  font-weight: bold;
}
.details .criteria {
  background-color: #0A55A016;
  padding: 12px;
  margin: 12px;
  color: #666666;
}
@media (max-width: 1023px) {
  .details .criteria {
    margin-left: 0;
    margin-right: 0;
  }
}
.details .feedback-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background-color: #ff960f;
  border-radius: 15px 15px 0 0;
  padding: 12px;
  z-index: 2;
  /* Ensure panel appears over map radar button */
  transition: transform 0.5s ease;
  /* Smooth slide-up effect */
  transform: translateY(200px);
  /* Fully off-screen */
}
.details .feedback-panel.show {
  transform: translateY(0);
  /* Slide into view */
}
.details .feedback-panel i.fa {
  font-size: 0.875em;
  padding: 2px;
}
.details .feedback-panel .title {
  font-size: 0.875em;
  margin: 6px;
}
.details .feedback-panel .options {
  display: inline-block;
  min-width: 33%;
}
.details .feedback-panel .options button {
  text-transform: none;
  background-color: #0a55a0;
  color: white;
  font-weight: normal;
  display: block;
  margin: 6px auto;
  min-width: 100%;
  line-height: 2em !important;
  height: auto;
  padding: 0 24px;
}
.details .feedback-spacer {
  height: 120px;
  display: none;
}
.details .feedback-spacer.show {
  display: block;
}
.details .translate-container .translate-button {
  float: right;
  font-size: 0.875em;
}
.details .translate-container .translate-button:active, .details .translate-container .translate-button:focus {
  background-color: #f5f5f5;
}
.details .affected-areas ul {
  margin: 0;
}
.details .affected-areas .clamped {
  height: 19px !important;
}
.details .affected-areas .clamped.expanded {
  height: auto !important;
}
.details .details-description {
  position: relative;
}
.details .details-map-wrapper {
  padding: 12px;
  position: relative;
}
.details .details-map-wrapper .weather-radar-button, .details .details-map-wrapper .weather-radar-loading {
  top: 24px !important;
  right: 24px !important;
}
.details .details-map-wrapper.hidden {
  display: none !important;
}
.details .details-map {
  width: 100%;
  height: 250px;
  background: grey;
}
@media (min-width: 1024px) {
  .details .details-map-wrapper {
    display: none;
  }
}
.details .resource {
  margin-top: 12px;
}
.details .resource a {
  font-size: 14px;
  color: #0a55a0;
}
.details .resource img, .details .resource audio, .details .resource video {
  width: 100%;
}
.details .resource.resource-separator {
  padding-top: 36px;
  margin-top: 36px;
  border-top: solid 1px #c0c0c0;
}
.details .attachment-list {
  font-size: 14px;
  padding-left: 30px;
}
.details .image-resources {
  margin-top: 12px;
  background-color: black;
}
.details .safety-instructions-missing {
  font-style: italic;
}

.carousel .control-arrow {
  /*TODO: emulate the mobile app arrows and locations */
  /* Halfway down side
  top: 50% !important;
  transform: translateY(-50%);
  */
  /* On bottom bar */
  top: calc(100% - 40px) !important;
}
.carousel .control-dots {
  background-color: black;
  /* Override base CSS */
  margin-bottom: 0px !important;
  padding-bottom: 5px !important;
}
.carousel .slide .legend {
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /* Override base CSS */
  /*TODO: when there is just one image and the control dots are disabled
          with showIndicators, determine how to drop this down so it
          doesn't leave empty space */
  bottom: 10px !important;
  width: 100% !important;
  left: 0 !important;
  margin-left: 0 !important;
  border-radius: 0 !important;
  opacity: 1 !important;
  font-size: 14px !important;
  background: rgba(0, 0, 0, 0.5) !important;
}
.carousel .slide img {
  /* Accomodate different aspect ratios in a constrained height */
  height: 30vh;
  max-width: 100%;
  object-fit: contain;
  /* Override base CSS */
  width: auto !important;
}

.carousel:hover .slide .legend {
  /* Override base CSS */
  opacity: 1 !important;
}
.feedback-modal {
  max-width: 350px !important;
  width: 350px;
}
.feedback-modal .content span {
  display: block;
  text-align: center;
  font-weight: bold;
  color: white;
  width: 100%;
  margin-bottom: 12px;
}
.feedback-modal .content button {
  width: 100%;
  color: #0a55a0;
}
header.alertable, header.embed {
  position: fixed;
  z-index: 4;
  height: 60px;
  background-color: #0a55a0;
  width: 100%;
  color: #ffffff;
  top: 0;
  transform: translateZ(0);
}
header.alertable *:focus, header.embed *:focus {
  outline: none;
  background-color: #0c67c2;
}
header.alertable .actions, header.embed .actions {
  padding-right: 12px;
}
header.alertable .actions #sign-up-button, header.embed .actions #sign-up-button {
  float: right;
  margin-top: 10px;
}
header.alertable .language, header.embed .language {
  float: right;
  font-size: 0.8rem;
}
header.alertable .language a, header.embed .language a {
  line-height: 60px !important;
  height: 60px;
  display: inline-block;
  vertical-align: middle;
  padding: 0 12px;
  text-decoration: underline;
  cursor: pointer;
  color: #FFBF6B;
  text-transform: uppercase;
}
header.alertable .language a.selected, header.embed .language a.selected {
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 1023px) {
  header.alertable .language, header.embed .language {
    display: none;
  }
}
header.alertable img, header.alertable i, header.embed img, header.embed i {
  float: left;
  margin-top: 13px;
  margin-right: 12px;
  text-align: left;
}
header.alertable a, header.embed a {
  color: #FFBF6B;
  text-decoration: none;
}
header.alertable a i, header.embed a i {
  color: inherit;
  padding-right: 0;
  width: 40px;
}
header.alertable a span, header.embed a span {
  text-decoration: inherit;
}
header.alertable a .link, header.embed a .link {
  float: left;
  padding: 0;
}
header.alertable i, header.embed i {
  line-height: 60px !important;
  height: 60px;
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
  margin-right: 0;
  margin-left: -12px;
  padding-left: 12px;
  padding-right: 12px;
  cursor: pointer;
  text-decoration: none;
}
header.alertable .title, header.embed .title {
  line-height: 60px !important;
  height: 60px;
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  margin: 0;
  font-size: 1.25em !important;
}
header.alertable .title.details-title, header.embed .title.details-title {
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  text-align: center;
}
header.alertable .list-title, header.embed .list-title {
  float: left;
  cursor: pointer;
  padding: 0 12px;
  height: 60px;
}
header.alertable .list-title .title, header.embed .list-title .title {
  color: white;
}
header.alertable .list-title img, header.embed .list-title img {
  height: 29px;
}
header.alertable .link, header.embed .link {
  line-height: 60px !important;
  height: 60px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  color: #FFBF6B;
  font-size: 1em;
  float: right;
  padding: 0 15px;
}
header.alertable .link:first-child, header.embed .link:first-child {
  margin-right: -12px;
}
header.alertable .link.hidden, header.embed .link.hidden {
  display: none;
}

/* NWT Alert */
header.nwt {
  position: fixed;
  z-index: 4;
  color: #ffffff;
  top: 0;
  width: 100%;
  transform: translateZ(0);
}
header.nwt *:focus {
  outline: none;
  background-color: #0c67c2;
}
header.nwt .small-nwt-header {
  display: none;
  padding: 0 12px;
  color: #ffffff;
  font-size: 20px;
  position: relative;
  width: 100%;
  height: 46px;
  background-color: #0a55a0;
}
header.nwt .small-nwt-header .link {
  line-height: 46px !important;
  height: 46px;
  display: inline-block;
  vertical-align: middle;
  float: right;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 12px;
  margin-right: -12px;
}
header.nwt .small-nwt-header .link:focus, header.nwt .small-nwt-header .link:active, header.nwt .small-nwt-header .link:hover {
  background-color: #0c62b8;
}
header.nwt .small-nwt-header .link.hidden {
  display: none;
}
header.nwt .small-nwt-header .menu-trigger {
  float: left;
  width: 50%;
  height: 100%;
}
header.nwt .small-nwt-header .menu-trigger > span, header.nwt .small-nwt-header .menu-trigger > i {
  float: left;
  line-height: 46px !important;
  height: 46px;
  display: inline-block;
  vertical-align: middle;
}
header.nwt .small-nwt-header .menu-trigger i {
  margin: 1px 0 0 6px;
  padding: 0 6px;
  cursor: pointer;
}
header.nwt .small-nwt-header #sign-up-button-mobile {
  line-height: 34px !important;
  height: 34px;
  display: inline-block;
  vertical-align: middle;
  float: right;
  margin: 6px 0 0 12px;
}
header.nwt .small-nwt-header .small-nwt-header-menu {
  position: fixed;
  z-index: 5;
  background-color: #3E3E3E;
  width: 100%;
  top: 46px;
  left: 0;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms linear;
}
header.nwt .small-nwt-header .small-nwt-header-menu.shown {
  opacity: 1;
  pointer-events: auto;
}
header.nwt .small-nwt-header .small-nwt-header-menu a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #ffffff;
  border-bottom: solid 2px #279AD5;
  cursor: pointer;
  padding: 8px 12px;
  margin-top: 10px;
  transition: background-color 150ms linear;
}
header.nwt .small-nwt-header .small-nwt-header-menu a:first-child {
  margin-top: 0;
}
header.nwt .small-nwt-header .small-nwt-header-menu a:active, header.nwt .small-nwt-header .small-nwt-header-menu a:focus {
  background-color: #585858;
}
header.nwt .large-nwt-header {
  width: 100%;
  background-color: #e6e6e6;
  height: 40px;
}
header.nwt .large-nwt-header a {
  line-height: 40px !important;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  color: #000000;
  cursor: pointer;
  transition: background-color 150ms linear;
  text-decoration: none;
  padding: 0 12px;
  font-size: 13px;
}
header.nwt .large-nwt-header a:first-child {
  margin-left: -12px;
}
header.nwt .large-nwt-header a:hover, header.nwt .large-nwt-header a:active, header.nwt .large-nwt-header a:focus {
  background-color: #d9d9d9 !important;
}
header.nwt .large-nwt-header #sign-up-button {
  float: right;
  height: 100%;
  background-color: #0f599a;
  font-size: 16px;
  color: white;
  padding: 0 24px;
  font-weight: normal;
  text-transform: initial;
  border-radius: 0;
}
header.nwt .large-nwt-header #sign-up-button:hover, header.nwt .large-nwt-header #sign-up-button:active, header.nwt .large-nwt-header #sign-up-button:focus {
  background-color: #0a4273 !important;
}
header.nwt .large-nwt-header .menu-contents {
  float: left;
}
@media (max-width: 1023px) {
  header.nwt .small-nwt-header {
    display: block;
  }
  header.nwt .large-nwt-header {
    display: none;
  }
}
header.nwt .page-header {
  width: 100%;
  padding: 12px 0;
  border-bottom: solid #2699d5 5px;
  background-color: #ffffff;
}
header.nwt .page-header img {
  float: left;
  margin-top: 10px;
}
header.nwt .page-header span {
  line-height: 77px !important;
  height: 77px;
  display: inline-block;
  vertical-align: middle;
  float: right;
  font-size: 36px;
  color: #3e3e3e;
  font-weight: normal;
}
@media all and (max-width: 767px) {
  header.nwt .page-header img {
    margin-top: 0;
  }
  header.nwt .page-header span {
    line-height: 57px !important;
    height: 57px;
    display: inline-block;
    vertical-align: middle;
  }
}

.header-focus {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: black;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms linear;
}
.header-focus.shown {
  opacity: 0.2;
  pointer-events: auto;
}

.nwt-logo {
  cursor: pointer;
}

/* SaskAlert */
header.saskalert {
  position: fixed;
  z-index: 4;
  height: 90px;
  background-color: #ffffff;
  width: 100%;
  top: 0;
  transform: translateZ(0);
}
header.saskalert .primary-banner {
  height: 60px;
}
header.saskalert .primary-banner .gos-link {
  float: left;
  cursor: pointer;
  height: 40px;
}
header.saskalert .primary-banner .gos-link img {
  height: 40px;
  margin-top: 10px;
  margin-left: 10px;
}
@media (max-width: 600px) {
  header.saskalert .primary-banner .gos-large-logo {
    display: none;
  }
}
@media (min-width: 601px) {
  header.saskalert .primary-banner .gos-small-logo {
    display: none;
  }
}
header.saskalert .primary-banner h1 {
  margin-left: 20px;
  margin-top: 12px;
  font-size: 2em;
  color: #333333;
  display: inline-block;
}
@media (max-width: 400px) {
  header.saskalert .primary-banner h1 {
    margin-left: 2px;
  }
}
header.saskalert .primary-banner .header-right {
  float: right;
}
header.saskalert .primary-banner h2 {
  padding-right: 20px;
  font-size: 1.5em;
  color: #333333;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 1023px) {
  header.saskalert .primary-banner h2 {
    display: none;
  }
}
header.saskalert .primary-banner .actions {
  display: inline-block;
  padding-right: 12px;
  margin-top: 10px;
}
header.saskalert .primary-banner .link {
  line-height: 40px !important;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  color: #046a38;
  font-size: 1em;
  float: right;
  padding: 0 15px;
}
header.saskalert .primary-banner .link:first-child {
  margin-right: -12px;
}
header.saskalert .primary-banner .link.hidden {
  display: none;
}
header.saskalert .secondary-banner {
  background-color: #046a38;
  color: white;
  padding: 5px 5px 5px 10px;
  height: 30px;
}
header.saskalert .secondary-banner a {
  color: white;
  font-weight: bold;
}
@media (max-width: 600px) {
  header.saskalert .secondary-banner .learn-more-large {
    display: none;
  }
}
header.saskalert .secondary-banner .signup-cta {
  color: white;
  font-weight: bold;
  display: inline-block;
  float: right;
}
@media (min-width: 1023px) {
  header.saskalert .secondary-banner .signup-cta {
    display: none;
  }
}
.toast {
  position: fixed;
  z-index: 2;
  bottom: 57px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 3px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  color: white;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(30px);
  transition: opacity 150ms ease-out, transform 150ms ease-out;
}
.toast.toast-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.toast.toast-error {
  background-color: #aa0b0b;
}
