/* === ui.css — Map, Fullscreen, Sound, Info, DayNight, Popup === */

#mapToggleBtn:not(.menu-action-fab):hover {
  transform: scale(1.1) translateY(-5px);
  background: #ffffff;
  border-color: #f39200;
  box-shadow: 0 15px 40px rgba(243, 146, 0, 0.3);
}

#customMapWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6000;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

#customMapWrapper.active {
  visibility: visible;
  pointer-events: auto;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  backdrop-filter: none;
  opacity: 0;
  transition: opacity 0.6s;
}

#customMapWrapper.active .map-overlay {
  opacity: 1;
}

.map-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: none; /* BỎ LUÔN BÓNG ĐỔ */
  border: none; /* BỎ LUÔN VIỀN */
  overflow: hidden;
  transform: scale(0.9) translateY(30px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
}

#customMapWrapper.active .map-container {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.map-header {
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.map-nav-title {
  font-weight: 800;
  color: #111111;
  letter-spacing: 1px;
  font-size: clamp(16px, 2.0vw + 10px, 24px);
  text-transform: uppercase;
}
.map-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: #999;
  font-size: clamp(16px, 2.0vw + 10px, 24px);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}
.map-close:hover {
  background: rgba(218, 37, 29, 0.12);
  color: #da251d;
  transform: rotate(180deg);
}

.map-content {
  flex: 1;
  padding: 15px;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
  min-height: 550px;
}

#leafletMap {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  z-index: 10;
  border: 1px solid #ddd;
}

/* Loại bỏ filter để map hiển thị tự nhiên */
.leaflet-tile-container {
  filter: none !important;
}

/* Tùy chỉnh Popup Leaflet cho Premium */
.leaflet-popup-content-wrapper {
  border-radius: 12px !important;
  padding: 5px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.leaflet-popup-content {
  font-family: "Montserrat", sans-serif !important;
  margin: 15px !important;
  line-height: 1.6 !important;
}

.leaflet-popup-content b {
  color: #ffd700;
  font-size: clamp(14px, 1.4vw + 7px, 17px);
  display: block;
  margin-bottom: 8px;
}

.map-jump-btn {
  background: #ffd700;
  color: #000;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: clamp(11px, 0.688rem + 0.2vw, 13px);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}

.map-jump-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

.map-footer {
  padding: 20px;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
}

.map-hint {
  font-size: clamp(14px, 1.4vw + 7px, 17px);
  color: #777;
  font-weight: 500;
}

/* Tùy chỉnh Leaflet Controls */
.leaflet-bar a {
  background-color: #ffffff !important;
  color: #444 !important;
  border-bottom: 1px solid #eee !important;
}
.leaflet-bar a:hover {
  background-color: #f4f4f4 !important;
  color: #111 !important;
}
.leaflet-container {
  background: #f0f0f0 !important;
  border-radius: 12px;
}

/* 7.1 RADAR BIỂU DIỄN HƯỚNG NHÌN - PHIÊN BẢN HIGHT-TECH */
.map-radar-container {
  pointer-events: none;
  z-index: 1000 !important;
}

.map-radar-container {
  pointer-events: none !important;
  z-index: 1000 !important;
}

.map-radar-wrapper {
  width: 120px;
  height: 120px;
  position: relative;
  /* Xoay quanh đỉnh quạt = giữa đáy = trùng với pin marker */
  transform-origin: 50% 100%;
}

.map-radar {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  /* Quạt hướng lên (north), đỉnh quạt ở giữa dưới = vị trí người đứng */
  background: radial-gradient(
    circle at 50% 100%,
    rgba(255, 215, 0, 0.95) 0%,
    rgba(255, 215, 0, 0.6) 40%,
    rgba(255, 215, 0, 0) 75%
  );
  clip-path: polygon(50% 100%, 15% 0%, 85% 0%);
  transform-origin: 50% 100%;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
  animation: radarPulse 1.8s infinite ease-in-out;
}

@keyframes radarPulse {
  0%, 100% { opacity: 0.75; }
  50%       { opacity: 1;    }
}

/* 7.2 CUSTOM MARKER PIN NGÔI SAO VÀNG */
.marker-pin {
  width: 32px;
  height: 32px;
  background: #ffd700;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
  border: 2px solid #fff;
  cursor: pointer;
}

.marker-pin i {
  color: #da251d; /* Ngôi sao đỏ nổi bật */
  transform: rotate(45deg);
  font-size: clamp(14px, 1.4vw + 7px, 17px);
}

.leaflet-popup-content-wrapper {
  background: #ffffff !important;
  color: #333 !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.leaflet-popup-tip {
  background: #ffffff !important;
}

/* 8. NÚT FULLSCREEN */
#fullscreenToggleBtn:not(.menu-action-fab) {
  position: fixed;
  bottom: 115px; /* Giảm khoảng cách dọc vì nút nhỏ hơn */
  right: 45px;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 4000;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 50%;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

#fullscreenToggleBtn:not(.menu-action-fab) svg {
  width: 22px;
  height: 22px;
  transition: 0.3s;
}

#fullscreenToggleBtn:not(.menu-action-fab):hover {
  transform: scale(1.1);
  background: #ffffff;
  border-color: #f39200;
  box-shadow: 0 15px 40px rgba(243, 146, 0, 0.3);
}

#fullscreenToggleBtn:not(.menu-action-fab).active-fs {
  background: #f39200;
  border-color: #f39200;
}

#fullscreenToggleBtn:not(.menu-action-fab).active-fs svg path {
  stroke: white;
}

/* 9. NÚT SOUND CONTROL */
#soundToggleBtn:not(.menu-action-fab) {
  position: fixed;
  bottom: 185px; 
  right: 45px;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 4000;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 50%;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

#soundToggleBtn:not(.menu-action-fab) svg {
  width: 22px;
  height: 22px;
  transition: 0.3s;
}

#soundToggleBtn:not(.menu-action-fab):hover {
  transform: scale(1.1);
  background: #ffffff;
  border-color: #f39200;
  box-shadow: 0 15px 40px rgba(243, 146, 0, 0.3);
}

#soundToggleBtn:not(.menu-action-fab).muted {
  background: #f39200;
  border-color: #f39200;
}

#soundToggleBtn:not(.menu-action-fab).muted svg path {
  stroke: white;
}

/* 10. NÚT INFO MUSEUM */
#infoToggleBtn:not(.menu-action-fab) {
  position: fixed;
  bottom: 255px;
  right: 45px;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 4000;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 50%;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

#infoToggleBtn:not(.menu-action-fab) svg {
  width: 22px;
  height: 22px;
  transition: 0.3s;
}

#infoToggleBtn:not(.menu-action-fab):hover {
  transform: scale(1.1);
  background: #ffffff;
  border-color: #f39200;
  box-shadow: 0 15px 40px rgba(243, 146, 0, 0.3);
}

/* 10.1 POPUP SHARE */
.share-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  font-family: var(--font-main, "Montserrat", sans-serif);
}

.share-popup-overlay.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.share-popup-container {
  width: min(430px, calc(100vw - 48px));
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 16px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  transform: translateY(14px) scale(0.96);
  transition: transform 0.28s cubic-bezier(0.19, 1, 0.22, 1);
}

.share-popup-overlay.active .share-popup-container {
  transform: translateY(0) scale(1);
}

.share-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 34px 18px;
  border-bottom: 1px solid #e7e7e7;
}

.share-popup-title {
  color: #ef3b36;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.share-popup-close {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c1c1c;
  background: #f1f1f1;
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.2s ease;
}

.share-popup-close:hover {
  background: #e7e7e7;
  transform: rotate(90deg);
}

.share-qr-panel {
  display: flex;
  justify-content: center;
  padding: 34px 24px;
  background: linear-gradient(135deg, rgba(218, 37, 29, 0.055), rgba(218, 37, 29, 0.015));
  margin: 34px 34px 20px;
  border-radius: 0 10px 10px 0;
}

.share-qr-img {
  width: 216px;
  height: 216px;
  padding: 14px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.share-link-panel {
  display: flex;
  gap: 12px;
  padding: 0 34px 34px;
}

.share-link-input {
  min-width: 0;
  flex: 1;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: #fbfbfb;
  color: #333333;
  font-size: 12px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02);
}

.share-link-input:focus {
  border-color: rgba(218, 37, 29, 0.5);
}

.share-copy-btn {
  height: 42px;
  min-width: 92px;
  padding: 0 20px;
  border: none;
  border-radius: 999px;
  background: #da251d;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 14px 32px rgba(218, 37, 29, 0.24);
}

.share-copy-btn:hover {
  background: #b91814;
  transform: translateY(-1px);
}

@media (max-width: 420px) {
  .share-popup-container {
    width: calc(100vw - 28px);
  }

  .share-popup-header {
    padding: 22px 22px 14px;
  }

  .share-popup-title {
    letter-spacing: 3px;
  }

  .share-popup-close {
    width: 46px;
    height: 46px;
  }

  .share-qr-panel {
    margin: 24px 22px 18px;
    padding: 24px 18px 20px;
  }

  .share-link-panel {
    flex-direction: column;
    padding: 0 22px 24px;
  }

  .share-copy-btn {
    width: 100%;
  }
}

/* 11. CHẾ ĐỘ NGÀY / ĐÊM */
#dayNightToggleBtn:not(.menu-action-fab) {
  position: fixed;
  bottom: 325px; /* Tiếp tục hàng dọc phía trên */
  right: 45px;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 4000;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 50%;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

#dayNightToggleBtn:not(.menu-action-fab) svg {
  width: 22px;
  height: 22px;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#dayNightToggleBtn:not(.menu-action-fab):hover {
  transform: scale(1.1) rotate(15deg);
  background: #ffffff;
  border-color: #f39200;
}

/* Hiệu ứng màng lọc Buổi tối (Night Mode Filter) */
#container.night-mode {
  filter: brightness(0.45) contrast(1.15) saturate(0.7) sepia(0.2)
    hue-rotate(185deg) !important;
  transition: filter 1.5s ease; /* Chuyển cảnh mượt như thật */
}

#container {
  transition: filter 1.5s ease;
}

/* Trạng thái nút khi ở chế độ Đêm */
#dayNightToggleBtn:not(.menu-action-fab).active {
  background: rgba(26, 26, 46, 0.9);
  border-color: #40e0d0;
  box-shadow: 0 0 20px rgba(64, 224, 208, 0.3);
}

#dayNightToggleBtn:not(.menu-action-fab).active svg path {
  stroke: #40e0d0;
}



/* 12. TÙY CHỈNH FLOOR PLAN (TỐI ƯU MINI-MAP) */
.fp-wrapper { 
    position: fixed; 
    bottom: 125px; 
    right: 45px; 
    z-index: 9999; 
    display: none; 
    font-family: 'Montserrat', sans-serif; 
    pointer-events: none; /* Cho phép thao tác xuyên qua wrapper */
}

.fp-overlay { 
    display: none !important; /* Bỏ lớp phủ làm mờ màn hình */
}

.fp-container { 
    position: relative;
    width: 320px; 
    height: 420px; 
    /* VNPT PREMIUM DARK - Mix từ Logo VNPT */
    background: linear-gradient(135deg, rgba(7, 26, 51, 0.98), rgba(0, 71, 133, 0.94));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 91, 170, 0.4); 
    border-radius: 16px; 
    display: flex; 
    flex-direction: column; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); 
    overflow: hidden; 
    pointer-events: auto; /* Cho phép thao tác trên chính bản đồ */
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.fp-header { 
    padding: 10px 15px; 
    border-bottom: 1px solid rgba(255, 215, 0, 0.15); 
    display: flex; 
    flex-direction: column;
    gap: 8px;
    z-index: 100; /* Đảm bảo luôn nằm trên viewport */
    background: rgba(14, 42, 71, 1); /* Làm nền đặc hơn ở header để tránh bị viewport chọc lên */
    pointer-events: auto;
}

.fp-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fp-header h3 { 
    margin: 0; 
    color: #ffd700; 
    font-size: 13px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
}

.fp-close-btn { 
    color: #fff; 
    cursor: pointer; 
    font-size: 14px; 
    width: 24px; 
    height: 24px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: rgba(255, 255, 255, 0.1); 
    border-radius: 50%; 
    transition: all 0.3s; 
}

.fp-tabs-wrapper { 
    display: flex; 
    gap: 5px; 
    overflow-x: auto; 
    padding-bottom: 4px;
    scrollbar-width: none;
    position: relative;
    z-index: 101;
    pointer-events: auto;
}
.fp-tabs-wrapper::-webkit-scrollbar { display: none; }

.fp-tab-btn { 
    padding: 4px 10px; 
    font-size: 10px; 
    font-weight: 600; 
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.15); 
    color: rgba(255, 255, 255, 0.7); 
    border-radius: 4px; 
    cursor: pointer; 
    white-space: nowrap; 
    transition: all 0.2s;
}

.fp-tab-btn.active { 
    background: linear-gradient(135deg, #005baa, #007185); 
    border-color: #ffd700; 
    color: #fff; 
    box-shadow: 0 0 10px rgba(0, 91, 170, 0.3);
}

.fp-tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
}

.fp-viewport { 
    flex: 1; 
    overflow: hidden; 
    position: relative; 
    background: #fdfaf3; /* Màu nền tảng đồng bộ với màu giấy của bản đồ */
    cursor: grab; 
}

.fp-map-content { 
    position: relative; 
    transform-origin: 0 0; /* Đổi về top-left để tính toán giới hạn kéo thả chính xác */
    user-select: none; 
}

.fp-main-img { 
    display: block; 
    width: 100%;
    height: auto;
    pointer-events: none; 
}

.fp-markers-container { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}

.fp-hint { 
    position: absolute; 
    bottom: 10px; 
    left: 10px; 
    background: rgba(0,0,0,0.6); 
    color: rgba(255,255,255,0.8); 
    padding: 4px 10px; 
    border-radius: 4px; 
    font-size: 9px; 
    pointer-events: none; 
}

.fp-marker-item { 
    position: absolute; 
    width: 14px; 
    height: 14px; 
    background: rgba(14,42,71,0.9); 
    border: 1px solid #ffd700; 
    border-radius: 50%; 
    cursor: pointer; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    z-index: 10; /* Z-index mặc định cho các node */
    transform: translate(-50%, -50%); 
    transition: transform 0.2s, z-index 0.2s;
}

.fp-marker-item:hover, .fp-marker-item.hover { 
    z-index: 1000 !important; /* Luôn trên cùng khi hover */
    transform: translate(-50%, -50%) scale(1.2);
}

.fp-marker-dot { width: 4px; height: 4px; background: #ffd700; border-radius: 50%; }

.fp-tooltip { 
    position: absolute; 
    bottom: 140%; 
    left: 50%; 
    transform: translateX(-50%); 
    background: #ffd700; 
    color: #0a1f35; 
    padding: 3px 8px; 
    border-radius: 4px; 
    font-size: 10px; 
    font-weight: 700;
    white-space: nowrap; 
    opacity: 0; 
    pointer-events: none; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: opacity 0.2s; 
}

.fp-radar-cone { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    width: 100px; 
    height: 100px; 
    background: conic-gradient(from 315deg, rgba(255, 0, 0, 0) 0deg, rgba(255, 0, 0, 0.8) 45deg, rgba(255, 0, 0, 0) 90deg, transparent 90deg); 
    border-radius: 50%; 
    opacity: 0; 
    pointer-events: none; 
    transition: opacity 0.3s; 
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));
}

.fp-marker-item.hover .fp-tooltip { opacity: 1; pointer-events: auto; }
.fp-marker-item:hover .fp-tooltip { opacity: 1; pointer-events: auto; }
.fp-marker-item.active { background: #ffd700; border-color: #fff; z-index: 100; }
.fp-marker-item.active .fp-marker-dot { background: #0a1f35; }
.fp-marker-item.active .fp-radar-cone { opacity: 1; }

/* Final close-less/red-white overrides */
.map-close,
.share-popup-close,
.fp-close-btn {
  display: none !important;
}

.leaflet-popup-content b {
  color: #da251d !important;
}

.map-jump-btn {
  background: #da251d !important;
  color: #ffffff !important;
}

.map-jump-btn:hover {
  background: #b91814 !important;
}

.map-radar {
  background: radial-gradient(
    circle at 50% 100%,
    rgba(218, 37, 29, 0.92) 0%,
    rgba(218, 37, 29, 0.48) 40%,
    rgba(218, 37, 29, 0) 75%
  ) !important;
  filter: drop-shadow(0 0 8px rgba(218, 37, 29, 0.6)) !important;
}

.marker-pin,
.fp-marker-item.active {
  background: #ffffff !important;
  box-shadow: 0 8px 20px rgba(218, 37, 29, 0.28) !important;
  border-color: rgba(218, 37, 29, 0.5) !important;
}

.marker-pin i,
.fp-header h3,
.fp-marker-dot {
  color: #da251d !important;
}

.fp-marker-dot {
  background: #da251d !important;
}

.fp-tooltip {
  background: #da251d !important;
  color: #ffffff !important;
}

#mapToggleBtn:not(.menu-action-fab) svg path,
#fullscreenToggleBtn:not(.menu-action-fab) svg path,
#soundToggleBtn:not(.menu-action-fab) svg path,
#infoToggleBtn:not(.menu-action-fab) svg path,
#shareToggleBtn:not(.menu-action-fab) svg path,
#dayNightToggleBtn:not(.menu-action-fab) svg path {
  stroke: #da251d !important;
}

#mapToggleBtn:not(.menu-action-fab):hover,
#fullscreenToggleBtn:not(.menu-action-fab):hover,
#soundToggleBtn:not(.menu-action-fab):hover,
#infoToggleBtn:not(.menu-action-fab):hover,
#dayNightToggleBtn:not(.menu-action-fab):hover {
  border-color: rgba(218, 37, 29, 0.45) !important;
  box-shadow: 0 12px 34px rgba(218, 37, 29, 0.22) !important;
}

#fullscreenToggleBtn:not(.menu-action-fab).active-fs,
#soundToggleBtn:not(.menu-action-fab).muted,
#dayNightToggleBtn:not(.menu-action-fab).active {
  background: #ffffff !important;
  border-color: rgba(218, 37, 29, 0.45) !important;
}

#customMapWrapper [id*="close" i],
#customMapWrapper [class*="close" i],
#sharePopupOverlay [id*="close" i],
#sharePopupOverlay [class*="close" i],
#customFloorPlanWrapper [id*="close" i],
#customFloorPlanWrapper [class*="close" i] {
  display: none !important;
}
