/*
@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0px 0 rgba(0,188,235, 1);
    }
    70% {
        -webkit-box-shadow: 0 0 10px 40px rgba(0,188,235, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0px 0 rgba(0,188,235, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0px 0 rgba(0,188,235, 1);
        box-shadow: 0 0 0px 0 rgba(0,188,235, 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 10px 40px rgba(0,188,235, 0);
        box-shadow: 0 0 10px 40px rgba(0,188,235, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0px 0 rgba(0,188,235, 0);
        box-shadow: 0 0 0px 0 rgba(0,188,235, 0);
    }
}
*/
@keyframes pulse {
  0% {
    box-shadow: 0 0 0px 0 rgb(0, 188, 235);
  }
  70% {
    box-shadow: 0 0 10px 20px rgba(0, 188, 235, 0.7);
  }
  100% {
    box-shadow: 0 0 10px 20px rgba(0, 188, 235, 0);
  }
}
@keyframes borderColor {
  0% {
    border-color: #fff;
  }
  50% {
    border-color: #00bceb;
  }
  100% {
    border-color: rgba(255, 255, 255, 0);
  }
}
@keyframes borderColorOpacity {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
html {
  background-color: #f4f5f7;
}

body {
  font-family: CiscoSans, Arial, sans-seriff;
  background: #c0c0c0;
  text-align: center;
  margin: 0;
  height: 100%;
  height: 100vh;
  height: 100dvh;
}
body .main {
  margin: 0 auto;
  background: white;
  min-height: 400px;
  height: 100%;
  width: 100%;
  text-align: left;
  position: relative;
}
body .main h1, body .main h2 {
  font-weight: 500;
}
body .main p {
  font-size: 16px;
  line-height: 150%;
  color: #606162;
}
body .main .hidden {
  display: none !important;
}
body .main .close-infopopup {
  display: none;
  float: right;
}
body .main .close-infopopup img {
  width: 24px;
  height: 24px;
}
body .main .myapp {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
body .main .myapp .chooser {
  position: absolute;
  top: 48px;
  width: 100%;
  z-index: 1100;
}
body .main .myapp .chooser .select {
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
body .main .myapp .chooser .select #select-location {
  margin: 0 auto;
  padding: 12px 42px 12px 42px;
  font-size: 20px;
  text-align: center;
  text-align-last: center;
  border-radius: 8px;
  /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/icon_dropdown_nobg.png);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position-y: center;
  background-position-x: calc(100% - 8px);
  border: none;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}
body .main .myapp .chooser .select #select-location::-ms-expand {
  display: none; /* Hide the default arrow in Internet Explorer 10 and Internet Explorer 11 */
}
body .main .myapp .chooser .select #select-location:hover, body .main .myapp .chooser .select #select-location:active, body .main .myapp .chooser .select #select-location:focus {
  box-shadow: 0 0 0 3px rgba(0, 188, 235, 0.25);
}
body .main .myapp .chooser .select #select-location:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 188, 235, 0.25);
  outline: none;
}
body .main .myapp .chooser .select #select-location option {
  text-align: left;
  padding: 0;
}
body .main .myapp .chooser .select .select-wrapper {
  position: relative;
}
body .main .myapp .chooser .select .select-wrapper::after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 16px;
  top: calc(50% - 12px - 2px);
  background-image: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/icon_map.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
body .main #map {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
body .main #map .leaflet-pane.leaflet-overlay-pane img {
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  width: 64px;
  height: 64px;
}
body .main #map .leaflet-pane.leaflet-popup-pane .leaflet-popup-close-button {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
}
body .main #map .leaflet-pane.leaflet-popup-pane .leaflet-popup-close-button > span {
  font-size: 16px;
}
body .main #map .leaflet-popup-content {
  margin: 16px;
}
body .main #map .leaflet-popup-content .popup-img {
  overflow: hidden;
  max-height: 210px;
}
body .main #map .leaflet-popup-content h2 {
  font-family: CiscoSansTT, CiscoSans, Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  color: #1b1c1d;
  margin-bottom: 4px;
  margin-top: 16px;
}
body .main #map .leaflet-popup-content address {
  font-family: CiscoSansTT, CiscoSans, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 350;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: #1b1c1d;
}
body .main #map .leaflet-popup-content p {
  margin-top: 16px;
  margin-bottom: 16px;
  font-family: CiscoSansTT, CiscoSans, Arial, sans-serif;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  color: #606162;
}
body .main #map .leaflet-popup-content .list-link-popup {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
body .main #map .leaflet-popup-content .list-link-popup a.list-link-www {
  padding: 12px 24px;
  border: 1px solid #0076D5;
  border-radius: 48px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .main #map .leaflet-popup-content .list-link-popup a.list-link-www::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/icon_arrow-www.svg);
}
body .main #map .leaflet-control-attribution {
  display: none;
}
body .main #map .leaflet-bar.leaflet-control {
  margin-right: 16px;
}
body .main #map .leaflet-verticalcenter {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
  top: 50%; /* possible because the placeholder's parent is the map */
  transform: translateY(-50%); /* using the CSS3 Transform technique */
  padding-top: 10px;
}
body .main #map .leaflet-verticalcenter .leaflet-control {
  margin-bottom: 10px;
}
body .main #map .leaflet-control-button.list-button {
  display: flex;
  align-items: center;
  justify-content: center;
}
body .main #map .leaflet-control-button.list-button img {
  height: 60%;
  width: auto;
}
body .main #map .leaflet-bar a:hover, body .main #map .leaflet-bar a:focus {
  background-color: white;
}
body .main #map .leaflet-bar.leaflet-control {
  border: none;
  margin-bottom: 8px;
}
body .main #map .leaflet-control-button.home-button, body .main #map .leaflet-control-button.list-button {
  cursor: pointer;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
body .main #map .leaflet-control-button.home-button img, body .main #map .leaflet-control-button.list-button img {
  width: 24px;
  height: 24px;
}
body .main #map .leaflet-control-zoom .leaflet-control-zoom-in,
body .main #map .leaflet-control-zoom .leaflet-control-zoom-out {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 8px;
  background-size: 24px;
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
}
body .main #map .leaflet-control-zoom .leaflet-control-zoom-in span,
body .main #map .leaflet-control-zoom .leaflet-control-zoom-out span {
  line-height: 46px;
  font-size: 32px;
  visibility: hidden;
}
body .main #map .leaflet-control-zoom .leaflet-control-zoom-in {
  background-image: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/icon_zoom_in.svg);
}
body .main #map .leaflet-control-zoom .leaflet-control-zoom-out {
  background-image: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/icon_zoom_out.svg);
}
body .main #map .leaflet-control-button.home-button {
  display: flex;
  align-items: center;
  justify-content: center;
}
body .main #map .leaflet-tooltip {
  border-radius: 8px;
  font-size: 16px;
}
body .main #map .leaflet-tooltip.my-label {
  text-align: center;
}
body .main #map .image-icon div {
  border-radius: 50%;
  border: solid;
  border-color: #00bceb;
  background-color: white;
  width: 100%;
  height: 100%;
  background-size: cover;
  margin: -3px 0 0 -3px;
  border-width: 4px;
}
body .main #map .image-icon div.pulse_animation:before {
  border-width: 4px;
  display: block;
  content: "";
  opacity: 1;
  background: rgba(0, 0, 0, 0);
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  top: -8px;
  left: -8px;
  animation: borderColor 2s linear 5 backwards;
  border-color: #00bceb;
  border-style: solid;
  position: absolute;
  border-radius: 50%;
  margin-top: -2px;
  margin-left: -2px;
}
body .main #map .image-icon div.pulse_animation:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  display: block;
  color: #fff;
  text-shadow: 0 1px #00bceb;
  font-weight: 600;
  font-size: 1.2em;
  opacity: 0;
  transition: all 0.25s;
  animation: borderColorOpacity 10s linear backwards;
}
body .main #map .image-icon.mark1 div {
  background-image: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/marker_allegiant.jpg);
}
body .main #map .image-icon.mark2 div {
  background-image: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/marker_aria.jpg);
}
body .main #map .image-icon.mark3 div {
  background-image: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/marker_bellagio.jpg);
}
body .main #map .image-icon.mark4 div {
  background-image: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/marker_citylasvegas.jpg);
}
body .main #map .image-icon.mark5 div {
  background-image: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/marker_mandalay.jpg);
}
body .main #map .image-icon.mark6 div {
  background-image: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/marker_newyork.jpg);
}
body .main #map .image-icon.mark7 div {
  background-image: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/marker_mgm.jpg);
}
body .main #map .image-icon.mark8 div {
  background-image: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/marker_cosmo.jpg);
}
body .main #map .image-icon.mark9 div {
  background-image: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/marker_tmobile.jpg);
}
body .main #map[data-zoom="13"] .leaflet-marker-icon.image-icon {
  width: 32px !important;
  height: 32px !important;
}
body .main #map[data-zoom="13"] .leaflet-marker-icon.image-icon div {
  border-width: 2px;
}
body .main #map[data-zoom="13"] .leaflet-marker-icon.image-icon div::before {
  top: -10px;
  left: -10px;
}
body .main #map[data-zoom="12"] .leaflet-marker-icon.image-icon {
  width: 24px !important;
  height: 24px !important;
}
body .main #map[data-zoom="12"] .leaflet-marker-icon.image-icon div {
  border-width: 2px;
}
body .main #map[data-zoom="12"] .leaflet-marker-icon.image-icon div::before {
  top: -8px;
  left: -8px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
}
body .main #map[data-zoom="11"] .leaflet-marker-icon.image-icon, body .main #map[data-zoom="10"] .leaflet-marker-icon.image-icon, body .main #map[data-zoom="9"] .leaflet-marker-icon.image-icon, body .main #map[data-zoom="8"] .leaflet-marker-icon.image-icon, body .main #map[data-zoom="7"] .leaflet-marker-icon.image-icon, body .main #map[data-zoom="6"] .leaflet-marker-icon.image-icon, body .main #map[data-zoom="5"] .leaflet-marker-icon.image-icon, body .main #map[data-zoom="4"] .leaflet-marker-icon.image-icon, body .main #map[data-zoom="3"] .leaflet-marker-icon.image-icon, body .main #map[data-zoom="2"] .leaflet-marker-icon.image-icon, body .main #map[data-zoom="1"] .leaflet-marker-icon.image-icon, body .main #map[data-zoom="0"] .leaflet-marker-icon.image-icon {
  width: 16px !important;
  height: 16px !important;
}
body .main #map[data-zoom="11"] .leaflet-marker-icon.image-icon div, body .main #map[data-zoom="10"] .leaflet-marker-icon.image-icon div, body .main #map[data-zoom="9"] .leaflet-marker-icon.image-icon div, body .main #map[data-zoom="8"] .leaflet-marker-icon.image-icon div, body .main #map[data-zoom="7"] .leaflet-marker-icon.image-icon div, body .main #map[data-zoom="6"] .leaflet-marker-icon.image-icon div, body .main #map[data-zoom="5"] .leaflet-marker-icon.image-icon div, body .main #map[data-zoom="4"] .leaflet-marker-icon.image-icon div, body .main #map[data-zoom="3"] .leaflet-marker-icon.image-icon div, body .main #map[data-zoom="2"] .leaflet-marker-icon.image-icon div, body .main #map[data-zoom="1"] .leaflet-marker-icon.image-icon div, body .main #map[data-zoom="0"] .leaflet-marker-icon.image-icon div {
  border-width: 1px;
}
body .main #map[data-zoom="11"] .leaflet-marker-icon.image-icon div::before, body .main #map[data-zoom="10"] .leaflet-marker-icon.image-icon div::before, body .main #map[data-zoom="9"] .leaflet-marker-icon.image-icon div::before, body .main #map[data-zoom="8"] .leaflet-marker-icon.image-icon div::before, body .main #map[data-zoom="7"] .leaflet-marker-icon.image-icon div::before, body .main #map[data-zoom="6"] .leaflet-marker-icon.image-icon div::before, body .main #map[data-zoom="5"] .leaflet-marker-icon.image-icon div::before, body .main #map[data-zoom="4"] .leaflet-marker-icon.image-icon div::before, body .main #map[data-zoom="3"] .leaflet-marker-icon.image-icon div::before, body .main #map[data-zoom="2"] .leaflet-marker-icon.image-icon div::before, body .main #map[data-zoom="1"] .leaflet-marker-icon.image-icon div::before, body .main #map[data-zoom="0"] .leaflet-marker-icon.image-icon div::before {
  top: -8px;
  left: -8px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
}
body .main .popup {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1200;
  background-color: white;
}
body .main .popup .topbar {
  background-color: white;
  min-height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #f4f5f7;
  font-size: 24px;
  font-weight: normal;
}
body .main .popup .topbar a.back {
  display: flex;
  background-color: #f4f5f7;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin-left: 16px;
  margin-right: 16px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  z-index: 1000;
  flex: 0 0 auto;
}
body .main .popup .topbar a.back img {
  width: 16px;
  height: 16px;
}
body .main .popup .topbar h1 {
  margin: 0;
  padding: 0 0 0 16px;
  font-size: 16px;
  font-weight: 500;
  flex: 1 1 auto;
  text-align: left;
}
body .main .popup .section {
  overflow-x: hidden;
  overflow-y: scroll;
}
body .main .popup .video img {
  width: 100%;
  height: auto;
}
body .main .popup .list {
  padding: 16px;
  background: white;
}
body .main .popup .list .page .photo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
body .main .popup .list .page .address {
  color: #606162;
  font-size: 14px;
  line-height: 140%;
}
body .main .popup .list .page .address address {
  font-style: normal;
}
body .main .popup .list .page .carousel {
  margin-top: 4px;
  width: 100%;
  overflow: hidden;
}
body .main .popup .list .page .carousel .swiper {
  width: 100%;
  padding: 4px;
}
body .main .popup .list .page .carousel .swiper .swiper-indicators {
  height: 32px;
  display: none;
}
body .main .popup .list .page .carousel .swiper .swiper-slide {
  width: 25%;
}
body .main .popup .list .page .carousel a {
  display: block;
  flex: 1 1 23%;
  line-height: 0;
}
body .main .popup .list .page .carousel a.active {
  opacity: 0.5;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 0px 4px rgb(0, 188, 235);
  -moz-box-shadow: 0px 0px 0px 4px rgb(0, 188, 235);
  box-shadow: 0px 0px 0px 4px rgb(0, 188, 235);
}
body .main .popup .list .page .carousel a img {
  width: 100%;
  border-radius: 8px;
}
body .main .popup .list .page .card-links {
  display: flex;
  font-size: 16px;
  align-items: center;
  margin: 16px 0;
  gap: 8px;
}
body .main .popup .list .page .card-links a, body .main .popup .list .page .card-links a:hover, body .main .popup .list .page .card-links a:active, body .main .popup .list .page .card-links a:focus, body .main .popup .list .page .card-links a:visited {
  color: #0076D5;
  text-decoration: none;
}
body .main .popup .list .page .card-links .list-link-map, body .main .popup .list .page .card-links .list-link-popup {
  padding: 12px 24px;
  border: 1px solid #0076D5;
  border-radius: 48px;
  display: flex !important;
  flex: 1 0 auto;
  text-align: center;
  align-items: center;
  justify-content: center;
}
body .main .popup .list .page .card-links .list-link-map::after, body .main .popup .list .page .card-links .list-link-popup::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/icon_pin.svg);
}
body .main .popup .list .page .card-links .list-link-popup::after {
  background: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/icon_arrow_right.svg);
}
body .main .popup .list .page .card-links .list-link-popup.list-link-www::after {
  background: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/icon_arrow-www.svg);
}
body .main .popup .list .page .content .title h2 {
  font-size: 32px;
  line-height: 125%;
  font-weight: 350;
}
body .main .popup .list.bg_grey {
  background: #f4f5f7;
}
body .main .popup .list .card {
  background: white;
  margin-bottom: 16px;
  border-radius: 8px;
  padding: 16px;
}
body .main .popup .list .card .title h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  margin: 0 0 16px 0;
}
body .main .popup .list .card .photo img {
  max-width: 33%;
  border-radius: 4px;
}
body .main .popup .list .card .address {
  color: #606162;
  font-size: 14px;
  line-height: 140%;
}
body .main .popup .list .card .address address {
  font-style: normal;
}
body .main .popup .list .card .card-links {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  align-items: baseline;
  margin-top: 16px;
  gap: 8px;
}
body .main .popup .list .card .card-links a, body .main .popup .list .card .card-links a:hover, body .main .popup .list .card .card-links a:active, body .main .popup .list .card .card-links a:focus, body .main .popup .list .card .card-links a:visited {
  color: #0076D5;
  text-decoration: none;
}
body .main .popup .list .card .card-links .list-link-map, body .main .popup .list .card .card-links .list-link-popup {
  padding: 12px 24px;
  border: 1px solid #0076D5;
  border-radius: 48px;
  display: flex;
  align-items: center;
}
body .main .popup .list .card .card-links .list-link-map::after, body .main .popup .list .card .card-links .list-link-popup::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/icon_pin.svg);
}
body .main .popup .list .card .card-links .list-link-popup::after {
  background: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/icon_arrow_right.svg);
}
body .main .popup .list .card .card-links .list-link-popup.list-link-www::after {
  background: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/icon_arrow-www.svg);
}
body .main .popup[data-id="0"] .topbar h1 {
  color: #1B1C1D;
}
body .main .popup[data-id="0"] .topbar a.back img {
  width: 32px;
  height: 32px;
}
body .main .popup[data-id="0"] .list {
  background: #f4f5f7;
}
body .main .popup[data-id="0"] .list .card {
  background: white;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}
body .main .popup[data-id="0"] .list .card .content .title, body .main .popup[data-id="0"] .list .card .content address {
  color: #1B1C1D;
}
body .main .popup[data-id="0"] .list .card .card-links {
  flex-direction: column;
  align-items: baseline;
}
body .main .popup.popup__video .section {
  margin: 0 auto;
}
body .main .popup.popup__video .section .topbar {
  background: transparent;
  z-index: 2;
  position: relative;
  border: none;
}
body .main .popup.popup__video .section .topbar h1 {
  color: white;
}
body .main .popup.popup__video .section .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body .main .popup.popup__video .section .info {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: 16px;
}
body .main .popup.popup__video .section .info .title h2 {
  font-size: 20px;
  line-height: 140%;
  margin: 8px 0;
  color: white;
  font-weight: 500;
}
body .main .popup.popup__video .section .info .address {
  color: #606162;
  font-size: 14px;
  line-height: 140%;
}
body .main .popup.popup__video .section .info .address address {
  font-style: normal;
}
body .main .popup.popup__video .section .info .card-links {
  display: flex;
  font-size: 16px;
  gap: 16px;
  align-items: center;
  margin: 16px 0;
  width: calc(100% - 32px);
}
body .main .popup.popup__video .section .info .card-links a, body .main .popup.popup__video .section .info .card-links a:hover, body .main .popup.popup__video .section .info .card-links a:active, body .main .popup.popup__video .section .info .card-links a:focus, body .main .popup.popup__video .section .info .card-links a:visited {
  color: white;
  text-decoration: none;
}
body .main .popup.popup__video .section .info .card-links .list-link-map {
  padding: 8px;
  border: 1px solid white;
  border-radius: 16px;
  display: flex !important;
  flex: 1 0 auto;
  text-align: center;
  align-items: center;
  justify-content: center;
}
body .main .popup.popup__video .section .info .card-links .list-link-map::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background: url(/c/dam/m/en_us/ciscolive/2023/las-vegas-map/images/icon_pin_white.svg);
}
body .main .info-popup {
  width: 256px;
  height: auto;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1200;
  padding: 16px;
  border-radius: 16px;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
body .main .info-popup:after {
  display: block;
  background: white;
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: calc(50% - 8px);
  right: -8px;
  transform: rotate(45deg);
}
body .main .info-popup .section {
  overflow: hidden;
}
body .main .info-popup .section h3 {
  font-weight: 500;
  margin: 8px 0 8px 0;
  font-size: 20px;
  line-height: 140%;
  color: #1B1C1D;
}
body .main .info-popup .section p {
  font-family: CiscoSansTT, CiscoSans, Arial, sans-serif;
  font-style: normal;
  font-weight: 350;
  font-size: 16px;
  line-height: 150%;
  color: #606162;
}

@media screen and (min-width: 1024px) {
  body .main .popup .topbar h1 {
    font-size: 20px;
    font-weight: 500;
  }
  body .main .popup .list .page.flexed {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  body .main .popup .list .page.flexed .images {
    flex: 0 0 50%;
    width: 50%;
  }
  body .main .popup .list .page.flexed .content .title h2 {
    font-size: 32px;
    line-height: 125%;
    font-weight: 350;
  }
  body .main .popup .list .page.flexed .content .card-links a {
    flex-grow: 0;
  }
  body .main .popup .list.flexed {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
  }
  body .main .popup .list.flexed .card {
    flex: 0 1 calc(50% - 48px);
    display: flex;
    gap: 16px;
    margin: 0;
  }
  body .main .popup .list.flexed .card .photo {
    flex: 0 0 25%;
  }
  body .main .popup .list.flexed .card .photo img {
    max-width: 100%;
  }
  body .main .popup .list .page .carousel .swiper {
    width: calc(100% - 8px);
  }
  body .main .popup .list .page .carousel .swiper .swiper-slide {
    width: 16.6666666667%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  body .main .popup .list .page .card-links .list-link-map {
    flex-grow: 0;
  }
  body .main .popup .list .card {
    display: flex;
    gap: 16px;
  }
  body .main .popup .list .card .photo {
    flex: 0 0 25%;
  }
  body .main .popup .list .card .photo img {
    max-width: 100%;
  }
  body .main .popup.popup__video .section .video {
    height: auto;
  }
  body .main .popup.popup__video .section .info {
    width: calc(100% - 32px);
  }
}
@media screen and (max-width: 768px) {
  body .main .popup .list .page .content .title h2 {
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 400px) {
  body .main .myapp .chooser .select #select-location {
    max-width: calc(100% - 16px);
    padding: 12px 42px 12px 12px;
    background-position-x: calc(100% - 4px);
    font-size: 16px;
  }
  body .main .myapp .chooser .select #select-location option {
    font-size: 14px;
  }
}
@media screen and (max-width: 300px) {
  body .main .myapp .chooser .select #select-location {
    font-size: 14px;
  }
  body .main .myapp .chooser .select #select-location option {
    font-size: 14px;
  }
}
p.qr {
  display: none;
}

@media screen and (min-width: 2000px) {
  body .main p {
    font-size: 2em;
  }
  body .main .myapp .chooser {
    position: absolute;
    top: 48px;
    width: 100%;
    z-index: 1100;
  }
  body .main .myapp .chooser .select #select-location {
    font-size: 1.8em;
    background-size: 1em;
    background-position-x: calc(100% - 0.4em);
  }
  body .main .myapp .chooser .select .select-wrapper::after {
    width: 2.6em;
    height: 2.6em;
    top: calc(50% - 2px - 1.3em);
    left: 1em;
  }
  body .main .myapp img.leaflet-control[src="images/logo_cisco-live.svg"] {
    width: 300px;
  }
  body .main .myapp .leaflet-control-button.home-button, body .main .myapp .leaflet-control-button.list-button {
    width: 100px;
    height: 100px;
  }
  body .main .myapp .leaflet-control-zoom .leaflet-control-zoom-in,
body .main .myapp .leaflet-control-zoom .leaflet-control-zoom-out {
    width: 100px;
    height: 100px;
  }
  body .main .popup .topbar h1 {
    font-size: 1.6em;
  }
  body .main .popup .topbar a.back {
    width: 48px;
    height: 48px;
  }
  body .main .popup .topbar a.back img {
    width: 32px;
    height: 32px;
  }
  body .main .popup .list.flexed .card,
body .main .popup .list .page.flexed {
    gap: 16px;
  }
  body .main .popup[data-id="0"] .list .card {
    margin-bottom: 0px;
    flex: 1 1 100%;
  }
  body .main .popup .list .card .card-links .list-link-map::after,
body .main .popup .list .page .card-links .list-link-map::after,
body .main .popup .list .page .card-links .list-link-www::after {
    width: 1.2em;
    height: 1.2em;
    background-size: contain;
    background-repeat: no-repeat;
  }
  body .main .popup .list .page .card-links {
    margin: 16px 0;
  }
}
@media screen and (min-width: 768px) {
  body .main .popup[data-id="0"] {
    width: 25%;
    height: 100%;
    left: auto;
    right: 0;
    overflow-y: scroll;
  }
  body .main .popup[data-id="0"] .section {
    overflow: hidden;
  }
  body .main .popup[data-id="0"] .list.flexed {
    flex-direction: column;
  }
  body .main .popup[data-id="0"] .list.flexed .card {
    width: calc(100% - 32px);
    flex-direction: column;
  }
  body .main .popup[data-id="0"] .list.flexed .card .photo img {
    max-width: 128px;
  }
  body .main .popup[data-id="0"] .list.flexed .card .card-links {
    align-items: baseline;
    flex-direction: column;
  }
}
@media screen and (min-width: 1544px) {
  body .main .popup[data-id="0"] {
    width: 24%;
    height: 100%;
    left: auto;
    right: 0;
    overflow-y: scroll;
  }
  body .main .popup[data-id="0"] .section {
    overflow: hidden;
  }
  body .main .popup[data-id="0"] .list.flexed {
    flex-direction: column;
  }
  body .main .popup[data-id="0"] .list.flexed .card {
    width: calc(100% - 32px);
    flex-direction: column;
  }
  body .main .popup[data-id="0"] .list.flexed .card .photo img {
    max-width: 128px;
  }
  body .main .popup[data-id="0"] .list.flexed .card .card-links {
    align-items: baseline;
    flex-direction: row;
  }
}
@media screen and (min-width: 1240px) {
  body .main #map .leaflet-bar.leaflet-control {
    margin-right: 24px;
  }
}
@media screen and (min-width: 1980px) {
  body .main .popup[data-id="0"] .list.flexed .card .card-links {
    align-items: center;
    flex-direction: row;
  }
}
@media screen and (min-width: 2000px) {
  body .main .info-popup .tooltip h3 {
    font-style: normal;
  }
  body .main .info-popup .tooltip p {
    font-style: normal;
  }
  body .main .popup[data-id="0"] .list.flexed .card .card-links {
    align-items: baseline;
    flex-direction: column;
  }
}
@media screen and (min-width: 2254px) {
  body .main .popup[data-id="0"] .list.flexed .card .card-links {
    align-items: center;
    flex-direction: row;
  }
  body .main #map .leaflet-bar.leaflet-control {
    margin-right: 32px;
  }
  body .main .card-links .list-link-www {
    display: none;
  }
  body .main .popup .list .page.flexed {
    max-width: 1400px;
  }
  body .main .info-popup {
    width: 500px;
  }
  body .main .info-popup .section h3 {
    font-size: 2.4em;
  }
}
.moved-left {
  animation: buttonslidein 0.3s linear 1 forwards;
}

.moved-left-info {
  animation: infoslidein 0.3s linear 1 forwards;
}

@media screen and (max-width: 400px) {
  body .main .myapp .info-popup {
    max-width: calc(100% - 160px);
  }
  body .main .myapp .info-popup .close-infopopup {
    display: block;
    float: none;
    position: absolute;
    right: 7px;
    top: 9px;
  }
  body .main #map .leaflet-verticalcenter {
    top: 60%;
  }
  .leaflet-control-container .leaflet-bottom.leaflet-left {
    width: 30%;
  }
  .leaflet-control-container .leaflet-bottom.leaflet-left img {
    width: 100%;
  }
}
@media screen and (max-height: 860px) {
  body .main #map .leaflet-popup-content p {
    overflow-y: scroll;
    max-height: 300px;
  }
}
@media screen and (min-width: 3000px) {
  p.qr {
    display: block;
  }
}
.leaflet-popup-content img {
  width: 100%;
}
.leaflet-popup-content address {
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 8px;
  font-style: normal;
}
.leaflet-popup-content p {
  margin-top: 8px;
  margin-bottom: 8px;
}

body .main #map .leaflet-popup-content .popup-img {
  display: flex;
  align-items: center;
}

#cache {
  visibility: hidden;
  width: 0px;
  height: 0px;
  overflow: hidden;
}

@media screen and (min-width: 3000px) {
  body .main .popup[data-id="0"] .topbar h1 {
    font-size: 1.4em;
  }
  body .main .popup[data-id="0"] .list .card .title h2 {
    font-size: 2em;
  }
  body .main .popup[data-id="0"] .list .card .address {
    font-size: 1.4em;
  }
  body .main .popup[data-id="0"] .list .card .description p {
    font-size: 1.6em;
  }
  body .main .popup[data-id="0"] .list.flexed .card .card-links {
    align-items: baseline;
    flex-direction: column;
    font-size: 1.4em;
  }
  body .main #map .leaflet-control-button.home-button, body .main #map .leaflet-control-button.list-button {
    width: 88px;
    height: 88px;
  }
  body .main #map .leaflet-control-button.home-button img, body .main #map .leaflet-control-button.list-button img {
    width: 48px;
    height: 48px;
  }
  body .main #map .leaflet-control-zoom .leaflet-control-zoom-in, body .main #map .leaflet-control-zoom .leaflet-control-zoom-out {
    width: 88px;
    height: 88px;
    background-size: 48px;
  }
}
.animate__animated.animate__fadeInRight {
  animation-duration: 0.3s;
}

/* post launch fixes */
@media screen and (min-width: 863px) and (max-width: 865px) {
  p.qr {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 940px) {
  body .main .popup[data-id="0"] {
    width: 35%;
  }
}
@media screen and (min-width: 863px) and (max-width: 865px) {
  body .main #map .leaflet-popup-content .list-link-popup {
    display: none;
  }
}
@media screen and (min-width: 3000px) {
  body .main #map .leaflet-popup-content .list-link-popup {
    display: none;
  }
}
