/* ISHOWORLD_EMERGENCY_EVENTS_CSS_V1 */

#ishoEmergencyEvents {
  box-sizing: border-box;
  display: none;
  width: min(250px, calc(100vw - 24px));
  z-index: 120;
  font-family: inherit;
}

#ishoEmergencyEvents[data-visible="true"] { display: block; }
#ishoEmergencyEvents.emergency-floating { position: fixed; margin: 0; }
#ishoEmergencyEvents.emergency-inline { position: relative; margin: 8px auto 10px; }

.isho-emergency-card {
  box-sizing: border-box;
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(255, 86, 86, .78);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(36, 4, 7, .96), rgba(12, 12, 16, .96));
  box-shadow: 0 10px 30px rgba(0,0,0,.30), 0 0 0 1px rgba(255,255,255,.05) inset;
  color: #fff;
}

.isho-emergency-card[data-severity="warning"] { border-color: rgba(255,174,66,.88); }
.isho-emergency-card[data-severity="watch"] { border-color: rgba(255,218,92,.82); }
.isho-emergency-card[data-severity="info"] { border-color: rgba(112,186,255,.78); }

.isho-emergency-kicker {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.isho-emergency-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 999px;
  background: #ff3b48;
  box-shadow: 0 0 0 4px rgba(255,59,72,.15);
}

.isho-emergency-card[data-severity="warning"] .isho-emergency-dot { background: #ffad42; }
.isho-emergency-card[data-severity="watch"] .isho-emergency-dot { background: #ffda5c; }
.isho-emergency-card[data-severity="info"] .isho-emergency-dot { background: #70baff; }

.isho-emergency-link {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.isho-emergency-link:hover,
.isho-emergency-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.isho-emergency-title {
  display: block;
  font-size: .98rem;
  line-height: 1.25;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.isho-emergency-watch {
  display: inline-block;
  margin-top: 7px;
  color: #ff6b72;
  font-size: .80rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
  animation: ishoEmergencyBlink 1.15s steps(2,end) infinite;
}

.isho-emergency-card[data-severity="warning"] .isho-emergency-watch { color: #ffc16f; }
.isho-emergency-card[data-severity="watch"] .isho-emergency-watch { color: #ffe583; }
.isho-emergency-card[data-severity="info"] .isho-emergency-watch { color: #9ed0ff; }

.isho-emergency-location {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.72);
  font-size: .75rem;
  line-height: 1.25;
}

.isho-emergency-status {
  min-height: 1.1em;
  margin-top: 7px;
  color: rgba(255,255,255,.72);
  font-size: .72rem;
}

.isho-emergency-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  margin-top: 9px;
}

.isho-emergency-count { color: rgba(255,255,255,.62); font-size: .68rem; }
.isho-emergency-nav { display: flex; gap: 5px; }

.isho-emergency-nav button {
  min-width: 28px;
  min-height: 26px;
  padding: 2px 7px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}

@keyframes ishoEmergencyBlink {
  0%,48% { opacity: 1; }
  49%,100% { opacity: .30; }
}

@media (prefers-reduced-motion: reduce) {
  .isho-emergency-watch {
    animation: none;
    opacity: 1;
  }
}

@media (max-width: 899px) {
  #ishoEmergencyEvents,
  #ishoEmergencyEvents.emergency-floating,
  #ishoEmergencyEvents.emergency-inline {
    position: relative !important;
    inset: auto !important;
    width: min(680px, calc(100vw - 20px));
    margin: 8px auto 10px;
  }

  .isho-emergency-card { padding: 9px 11px; }
}


/* ISHOWORLD_EMERGENCY_SAFE_EMBED_CSS_V1 */

body.isho-emergency-modal-open {
  overflow: hidden;
}

.isho-emergency-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,.82);
}

.isho-emergency-modal-shell {
  width: min(1000px, 96vw);
  max-height: 94vh;
  overflow: hidden;
  border-radius: 14px;
  background: #101014;
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
}

.isho-emergency-modal-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
  padding: 11px 13px;
  color: #fff;
}

.isho-emergency-modal-heading {
  min-width: 0;
  font-size: .96rem;
  font-weight: 800;
  line-height: 1.25;
}

.isho-emergency-modal-provider {
  grid-column: 1;
  color: rgba(255,255,255,.67);
  font-size: .72rem;
}

.isho-emergency-modal-close {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.isho-emergency-modal-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: calc(94vh - 64px);
  border: 0;
  background: #000;
}

@media (max-width: 640px) {
  .isho-emergency-modal {
    padding: 8px;
  }

  .isho-emergency-modal-shell {
    width: 100%;
  }
}

/* ISHOWORLD_EMERGENCY_MOBILE_LAYOUT_CSS_V1 */

@media (max-width: 899px) {
  #ishoEmergencyEvents,
  #ishoEmergencyEvents.emergency-floating,
  #ishoEmergencyEvents.emergency-inline {
    position: relative !important;
    inset: auto !important;
    display: none;
    box-sizing: border-box;
    width: calc(100% - 20px);
    max-width: 680px;
    margin: 10px auto 12px !important;
    clear: both;
    z-index: 20;
    transform: none !important;
  }

  #ishoEmergencyEvents[data-visible="true"] {
    display: block;
  }

  .isho-emergency-card {
    width: 100%;
    max-width: none;
    padding: 10px 12px;
    border-radius: 12px;
    box-shadow:
      0 6px 18px rgba(0,0,0,.24),
      0 0 0 1px rgba(255,255,255,.04) inset;
  }

  .isho-emergency-kicker {
    margin-bottom: 4px;
    font-size: .66rem;
    line-height: 1.1;
  }

  .isho-emergency-title {
    font-size: .90rem;
    line-height: 1.18;
  }

  .isho-emergency-watch {
    margin-top: 4px;
    font-size: .71rem;
  }

  .isho-emergency-location {
    margin-top: 4px;
    font-size: .69rem;
    line-height: 1.15;
  }

  .isho-emergency-status {
    min-height: 0;
    margin-top: 4px;
    font-size: .68rem;
  }

  .isho-emergency-controls {
    margin-top: 6px;
  }

  .isho-emergency-nav button {
    min-width: 30px;
    min-height: 28px;
  }
}

@media (max-width: 480px) {
  #ishoEmergencyEvents,
  #ishoEmergencyEvents.emergency-floating,
  #ishoEmergencyEvents.emergency-inline {
    width: calc(100% - 16px);
    margin-top: 8px !important;
    margin-bottom: 10px !important;
  }

  .isho-emergency-card {
    padding: 9px 10px;
  }
}

/* ISHOWORLD_EMERGENCY_MOBILE_LAYOUT_CSS_V1_END */

/* ISHOWORLD_EMERGENCY_MINIMIZE_CSS_V1 */

.isho-emergency-minimize {
  margin-left: auto;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: 700 1.05rem/1 inherit;
  cursor: pointer;
}

.isho-emergency-minimize:hover,
.isho-emergency-minimize:focus-visible {
  background: rgba(255,255,255,.18);
}

#ishoEmergencyEvents[data-minimized="true"] {
  width: auto;
  min-width: 0;
}

.isho-emergency-restore {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  max-width: 100%;
  padding: 6px 11px;
  border: 1px solid rgba(255,174,66,.88);
  border-radius: 999px;
  background: linear-gradient(
    160deg,
    rgba(36,4,7,.97),
    rgba(12,12,16,.97)
  );
  box-shadow: 0 5px 18px rgba(0,0,0,.28);
  color: #fff;
  font: inherit;
  font-size: .74rem;
  font-weight: 800;
  cursor: pointer;
}

.isho-emergency-restore-icon {
  color: #ffad42;
  font-size: .9rem;
}

.isho-emergency-restore-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.isho-emergency-modal-native-video {
  display: block;
  width: 100%;
  max-height: calc(94vh - 64px);
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.isho-emergency-modal-notice {
  padding: 24px 18px 28px;
  color: #fff;
  text-align: center;
}

.isho-emergency-modal-notice strong {
  display: block;
  margin-bottom: 9px;
  font-size: 1rem;
}

.isho-emergency-modal-notice p {
  max-width: 620px;
  margin: 0 auto 16px;
  color: rgba(255,255,255,.76);
  line-height: 1.5;
}

.isho-emergency-modal-notice a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 13px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 9px;
  color: #fff;
  text-decoration: none;
}

.isho-emergency-modal-notice a:hover,
.isho-emergency-modal-notice a:focus-visible {
  background: rgba(255,255,255,.10);
}

@media (max-width: 899px) {
  #ishoEmergencyEvents[data-minimized="true"],
  #ishoEmergencyEvents[data-minimized="true"].emergency-inline,
  #ishoEmergencyEvents[data-minimized="true"].emergency-floating {
    width: calc(100% - 16px) !important;
    margin: 4px auto 6px !important;
  }

  .isho-emergency-restore {
    display: flex;
    width: 100%;
    min-height: 34px;
    justify-content: center;
    border-radius: 10px;
  }

  .isho-emergency-modal {
    padding: 8px;
  }

  .isho-emergency-modal-shell {
    width: 100%;
    max-height: 96vh;
  }

  .isho-emergency-modal-native-video {
    max-height: calc(96vh - 64px);
  }

  .isho-emergency-modal-notice {
    padding: 22px 14px 26px;
  }
}

/* ISHOWORLD_EMERGENCY_MINIMIZE_CSS_V1_END */

/* ISHOWORLD_EMERGENCY_MOBILE_SPLIT_CSS_V1 */

@media (max-width: 899px) {

  #ishoEmergencyMobileStage {
    box-sizing: border-box;
    display: grid;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    align-items: start;
    transition: grid-template-columns .22s ease;
  }

  #ishoEmergencyMobileStage.is-expanded {
    grid-template-columns:
      clamp(132px, 38vw, 168px)
      minmax(0, 1fr);
    column-gap: 6px;
  }

  #ishoEmergencyMobileStage.is-collapsed {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }

  #ishoEmergencyMobileStage.is-expanded
  > #ishoEmergencyEvents {
    grid-column: 1;
    grid-row: 1;
    position: sticky !important;
    top: 8px;
    inset-inline: auto !important;
    box-sizing: border-box;
    width: 100% !important;
    min-width: 0;
    margin: 8px 0 8px 6px !important;
    z-index: 25;
  }

  #ishoEmergencyMobileStage.is-expanded
  > #videoContainer {
    grid-column: 2;
    grid-row: 1;
    box-sizing: border-box;
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  #ishoEmergencyMobileStage.is-expanded
  .isho-emergency-card {
    padding: 8px;
    border-radius: 10px;
  }

  #ishoEmergencyMobileStage.is-expanded
  .isho-emergency-kicker {
    gap: 4px;
    margin-bottom: 5px;
    font-size: .58rem;
    letter-spacing: .035em;
  }

  #ishoEmergencyMobileStage.is-expanded
  .isho-emergency-dot {
    width: 7px;
    height: 7px;
    flex-basis: 7px;
  }

  #ishoEmergencyMobileStage.is-expanded
  .isho-emergency-title {
    font-size: .76rem;
    line-height: 1.15;
  }

  #ishoEmergencyMobileStage.is-expanded
  .isho-emergency-watch {
    margin-top: 4px;
    font-size: .60rem;
    line-height: 1.08;
  }

  #ishoEmergencyMobileStage.is-expanded
  .isho-emergency-location {
    margin-top: 5px;
    font-size: .61rem;
    line-height: 1.10;
  }

  #ishoEmergencyMobileStage.is-expanded
  .isho-emergency-status {
    margin-top: 4px;
    font-size: .58rem;
  }

  #ishoEmergencyMobileStage.is-expanded
  .isho-emergency-controls {
    gap: 4px;
    margin-top: 6px;
  }

  #ishoEmergencyMobileStage.is-expanded
  .isho-emergency-count {
    font-size: .55rem;
  }

  #ishoEmergencyMobileStage.is-expanded
  .isho-emergency-nav button {
    min-width: 24px;
    min-height: 23px;
    padding: 1px 5px;
  }

  #ishoEmergencyMobileStage.is-expanded
  .isho-emergency-minimize {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  #ishoEmergencyMobileStage.is-collapsed
  > #videoContainer {
    grid-column: 1;
    grid-row: 1;
    box-sizing: border-box;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  #ishoEmergencyMobileStage.is-collapsed
  > #ishoEmergencyEvents {
    grid-column: 1;
    grid-row: 1;
    position: sticky !important;
    top: 10px;
    align-self: start;
    justify-self: start;
    width: auto !important;
    max-width: min(190px, 60vw);
    margin: 8px 0 0 6px !important;
    z-index: 40;
    pointer-events: none;
  }

  #ishoEmergencyMobileStage.is-collapsed
  .isho-emergency-restore {
    width: auto;
    max-width: min(190px, 60vw);
    min-height: 34px;
    justify-content: flex-start;
    pointer-events: auto;
    border-radius: 999px;
  }

  #ishoEmergencyMobileStage.is-collapsed
  .isho-emergency-restore-text {
    max-width: 140px;
  }
}

@media (max-width: 520px) {
  #ishoEmergencyMobileStage.is-expanded {
    grid-template-columns:
      clamp(122px, 36vw, 148px)
      minmax(0, 1fr);
    column-gap: 4px;
  }

  #ishoEmergencyMobileStage.is-expanded
  > #ishoEmergencyEvents {
    margin-left: 4px !important;
  }
}

@media (max-width: 380px) {
  #ishoEmergencyMobileStage.is-expanded {
    grid-template-columns:
      118px
      minmax(0, 1fr);
  }
}

/* ISHOWORLD_EMERGENCY_MOBILE_SPLIT_CSS_V1_END */

/* ISHOWORLD_EMERGENCY_SHOW_ALL_MOBILE_CSS_V1 */

@media (max-width: 899px) {

  #ishoEmergencyMobileStage.is-expanded
  > #ishoEmergencyEvents {
    max-height: calc(100dvh - 132px);
    overflow: hidden;
  }

  .isho-emergency-mobile-all {
    box-sizing: border-box;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    width: 100%;
    max-height: calc(100dvh - 145px);
    border: 1px solid rgba(255,174,66,.88);
    border-radius: 11px;
    background:
      linear-gradient(
        160deg,
        rgba(39,5,9,.98),
        rgba(13,12,16,.98)
      );
    box-shadow:
      0 7px 22px rgba(0,0,0,.28);
    color: #fff;
    overflow: hidden;
  }

  .isho-emergency-mobile-all-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    padding: 7px 7px 6px;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }

  .isho-emergency-mobile-all-heading {
    min-width: 0;
    display: grid;
    gap: 1px;
  }

  .isho-emergency-mobile-all-heading strong {
    font-size: .70rem;
    line-height: 1.08;
  }

  .isho-emergency-mobile-all-heading span {
    color: rgba(255,255,255,.68);
    font-size: .55rem;
  }

  .isho-emergency-mobile-all-list {
    box-sizing: border-box;
    display: grid;
    align-content: start;
    gap: 6px;
    padding: 6px;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }

  .isho-emergency-mobile-item {
    box-sizing: border-box;
    display: grid;
    gap: 3px;
    width: 100%;
    min-width: 0;
    padding: 7px 6px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 8px;
    background: rgba(255,255,255,.055);
  }

  .isho-emergency-mobile-item[data-severity="critical"] {
    border-color: rgba(255,76,76,.66);
  }

  .isho-emergency-mobile-item[data-severity="warning"] {
    border-color: rgba(255,174,66,.55);
  }

  .isho-emergency-mobile-item-label {
    color: #ffb04a;
    font-size: .50rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .035em;
  }

  .isho-emergency-mobile-item-title {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: .68rem;
    font-weight: 800;
    line-height: 1.13;
    text-align: left;
    cursor: pointer;
    overflow-wrap: anywhere;
  }

  .isho-emergency-mobile-item-title:hover,
  .isho-emergency-mobile-item-title:focus-visible {
    text-decoration: underline;
  }

  .isho-emergency-mobile-item-location {
    color: rgba(255,255,255,.74);
    font-size: .55rem;
    line-height: 1.10;
    overflow-wrap: anywhere;
  }

  .isho-emergency-mobile-item-watch {
    color: #d59642;
    font-size: .53rem;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
  }
}

/* ISHOWORLD_EMERGENCY_SHOW_ALL_MOBILE_CSS_V1_END */

/* ISHOWORLD_EMERGENCY_INDEX_COVERAGE_GALLERY_CSS_V1 */

.isho-emergency-coverage-preview {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 54px minmax(0,1fr);
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: rgba(0,0,0,.22);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.isho-emergency-coverage-preview:hover,
.isho-emergency-coverage-preview:focus-visible {
  background: rgba(255,255,255,.09);
  outline: 2px solid rgba(255,255,255,.58);
  outline-offset: 1px;
}

.isho-emergency-coverage-preview-media,
.isho-emergency-coverage-gallery-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0,0,0,.4);
}

.isho-emergency-coverage-preview-media {
  width: 54px;
  height: 38px;
}

.isho-emergency-coverage-preview-media img,
.isho-emergency-coverage-gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.isho-emergency-coverage-provider-tile {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 32px;
  place-items: center;
  box-sizing: border-box;
  padding: 4px;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

.isho-emergency-coverage-preview-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.isho-emergency-coverage-preview-copy strong {
  font-size: .73rem;
  line-height: 1.1;
}

.isho-emergency-coverage-preview-copy span {
  min-width: 0;
  overflow: hidden;
  color: rgba(255,255,255,.78);
  font-size: .61rem;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.isho-emergency-coverage-gallery-intro {
  padding: 10px 14px 4px;
  color: rgba(255,255,255,.82);
  font-size: .84rem;
  line-height: 1.3;
}

.isho-emergency-coverage-gallery-list {
  max-height: min(62vh,540px);
  overflow: auto;
  display: grid;
  gap: 8px;
  padding: 10px 14px 16px;
}

.isho-emergency-coverage-gallery-item {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 96px minmax(0,1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.isho-emergency-coverage-gallery-item:hover,
.isho-emergency-coverage-gallery-item:focus-visible {
  background: rgba(255,255,255,.10);
  outline: 2px solid rgba(255,255,255,.55);
  outline-offset: 1px;
}

.isho-emergency-coverage-gallery-media {
  width: 96px;
  height: 54px;
}

.isho-emergency-coverage-gallery-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.isho-emergency-coverage-gallery-copy strong {
  overflow: hidden;
  font-size: .88rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.isho-emergency-coverage-gallery-copy span {
  color: rgba(255,255,255,.72);
  font-size: .72rem;
}

.isho-emergency-coverage-gallery-play {
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255,255,255,.12);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 899px) {
  .isho-emergency-mobile-item
  .isho-emergency-coverage-preview {
    grid-template-columns: 42px minmax(0,1fr);
    gap: 6px;
    margin-top: 5px;
    padding: 5px;
  }

  .isho-emergency-mobile-item
  .isho-emergency-coverage-preview-media {
    width: 42px;
    height: 30px;
  }

  .isho-emergency-mobile-item
  .isho-emergency-coverage-preview-copy strong {
    font-size: .62rem;
  }

  .isho-emergency-mobile-item
  .isho-emergency-coverage-preview-copy span {
    font-size: .53rem;
  }

  .isho-emergency-coverage-gallery-item {
    grid-template-columns: 72px minmax(0,1fr);
  }

  .isho-emergency-coverage-gallery-media {
    width: 72px;
    height: 42px;
  }

  .isho-emergency-coverage-gallery-play {
    grid-column: 2;
    justify-self: start;
  }
}

/* ISHOWORLD_EMERGENCY_INDEX_COVERAGE_GALLERY_CSS_V1_END */
