/*
 __  __          _____  
|  \/  |   /\   |  __ \ 
| \  / |  /  \  | |__) |
| |\/| | / /\ \ |  ___/ 
| |  | |/ ____ \| |     
|_|  |_/_/    \_\_|

*/

body #map .full-screen-loader {
                    position: relative;
                    
                    width: 100%;
                    height: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background-color: var(--brand-light); /* Semi-transparent background */
                    z-index: 6;
                }
                
                body.theme-mode-dark .full-screen-loader { background-color: var(--shade-05) !important; }
                
                body .hero #map .circle {
                    position: relative;
                    width: 100px;
                    height: 100px;
                    border-radius: 50% !important;
                    background-color: #FFF; /* Circle background */
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* Optional shadow */
                }
                body.theme-mode-dark .hero #map .circle {
                    background-color: var(--shade-03); /* Optional shadow */
                }

                /* Post Count Number */
                .circle .number {
                    font-size: 2rem;
                    font-weight: bold;
                    color: var(--brand); /* Number color */
                    z-index: 1;
                }

                body.theme-mode-dark .circle .number {
                    color: var(--shade-13);
                }

                /* Spinning Notch */
                .circle::after {
                    content: '';
                    position: absolute;
                    top: -10px;
                    left: -10px;
                    width: 120px;
                    height: 120px;
                    border: 5px solid transparent;
                    border-top: 5px solid var(--brand); /* Spinning color */
                    border-radius: 50%;
                    animation: spin 500ms linear infinite;
                }

                /* Keyframes for Spinning Animation */
                @keyframes spin {
                    0% {
                        transform: rotate(0deg);
                    }
                    100% {
                        transform: rotate(360deg);
                    }
                }

.mapboxgl-canvas {
  /*position: fixed !important;
  height: 100% !important;*/
}

#map, #pano { height: 100%; width: 100%; background-color: #F8F8FC; outline: none; }
#map { z-index: 4; }
#map, #map:active, #map:focus, #map:focus-within, #map:visited, #map:focus-visible
/*#map *, #map *:active, #map *:focus, #map *:focus-within, #map *:visited, #map *:focus-visible*/ {
  border: 0 !important;
  outline: none !important;
  box-shadow: var(--box-shadow-none);
}

/* #map-type-select */

#map-type-select {
  /*width: auto; 
  padding: 0px 15px;
  font-weight: bold;
  display: flex; 
  justify-content: flex-start;*/
}
#map-type-select i {
  /*font-family: var(--font-family);*/
}
#map-type-select.show.is-checked:hover {
  color: var(--white) !important;
}
#map-type-select.show.is-checked:hover i {
  color: var(--white) !important;
}
#map-type-select-dropdown {
  width: 160px; 
  min-width: 160px; 
  max-width: 160px; 
  padding: 0px;
  border: 1px solid var(--box-border);
  box-shadow: var(--box-shadowz);
}

/* USER'S AVATAR  */

/* RIPPLE EFFECT - https://time2hack.com/css-tutorial-ripples-loading-animation-like-in-tinder */

.ripple-container {
  width: 25rem;
  height: 25rem;
  margin: 0 auto;
  display: block;
  position: relative;
  /* cosmetics */
  border: 0;
  border-radius: 50%;
  background-color: red !important;
}
#userAvatarLayer img {
  width         : 60px;
  height        : 60px;
  border-radius : 50%;
  border        : 3px solid var(--brand) !important;

/*  animation: ripple 3s ease infinite;*/
}
#userAvatarLayer,
#userAvatarLayer img {
  z-index: 99999999999999999999999999999999999 !important;
}

.ripple-icon {
  top: 50%;
  left: 50%;
  width: 0;
  height: 30px;
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  /* opacity: .55; */
  background: var(--brand);
  animation: ripple 3s ease infinite;
}

@keyframes ripple {
  from { width: 0.1%; height: 0.1%; opacity: 1; }
  to { width: 100%; height: 100%; opacity: 0; }
}
.ripple-icon.photo {
  width: 45px;
  height: 45px;
  animation: none;
  z-index: 100;
}
.ripple-icon.photo img {
  width: 45px;
  height: 45px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  cursor: pointer;
}

/* USER'S WORK ADDRESS */

#users-work-address {
  position: relative;
}

#users-work-address .pac-container {
  /*top: 0px !important;
  position: inherit;*/
}

/* GOOGLE POINTS OF INTEREST (POI'S) */

#toggle-poi-panel {
  max-width: var(--input-size);
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}
.poi-panel {
  width: auto;
  min-width: 601px;
  height: auto;
  padding: 15px 0px 15px 15px;
  margin: 0;
  background-color: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--box-border);
  box-shadow: var(--box-shadowz);
  position: absolute;
  top: 73px;
  right: 0px !important;
}
#poi-btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: unset;
}
#poi-btn-group li {
  margin-bottom: 15px;
}
#poi-btn-group button {
  background-color: var(--box-border);
  border-radius: var(--border-radius) !important;
}
#poi-btn-group button:hover {
  color: var(--brand) !important;
  background-color: var(--box-border); !important;
}
#poi-btn-group button.poi_active:hover,
#poi-btn-group button.poi_active {
  color: var(--white) !important;
  background-color: var(--brand) !important;
}
#poi-btn-group button i {
  color: var(--brand);
  font-size: 20px;
}
#poi-btn-group button.poi_active i {
  color: var(--white);
}

 /* ZOOM CONTROLS */

#zoomOutput {
  position: absolute;
  bottom: 105px;
  left: 15px;
  color: var(--header-text) !important;
  background-color: #FFF !important;
  display: none;
}

/* CSS FOR PROPERTY CARDS WHEN IN MAP SIDE VIEW */

.pop {
/*  padding: 10px !important;*/
  background-color: var(--brand);
  border: 1px solid var(--brand) !important;
  border-radius: var(--border-radius);
  animation: border-pulsate 2000ms 3000ms;
  box-shadow: var(--box-shadowz);
  transform: scale(1.04);
}
.pop .card-header-img::after {
  content: none; /* REMOVE COLORED LAYER  */
}

.pop .card-body * {
  color: var(--brand-light);
}
body.theme-round .pop {
  border-radius: var(--theme-round-border-radius);
}
@keyframes border-pulsate {
  0%   { border-color: rgba(0, 255, 255, 1); }
  50% { border-color: rgba(0, 255, 255, 0); }
  100%   { border-color: rgba(0, 255, 255, 1); }
}

.mapboxgl-canvas {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}