@import url('https://fonts.googleapis.com/icon?family=Material+Icons');


:root {
	--main-color: #ffffff;
  }


.hotspot-test{
	width:500px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }

body, html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #eaeaea;
	font-family:Poppins, Arial, Helvetica, sans-serif; 
	font-size:15px; 
	color:#c6c6c6;

}

*, *::before, *::after {
	box-sizing: inherit;
}


.contentHolder {
	position: relative;
	width: 360px;
	height: 740px;
	background: #ffffffdd;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	border-radius: 10px;
	overflow: hidden;
	z-index: 0;
	
  }

  @media (max-width: 800px) {
	.contentHolder {
	  width: 100%;
	  height: 100%;
	  border-radius: 0;
	  box-shadow: none;
	}
  }
.mapDiv {
	position: absolute;
	height: 100vh;	
	width: 100%;
	z-index: 2000;
	right:200%;

}

.mapCloseBttn {

	position: absolute;
	top:20px;
	right:20px;
	background-color:#e41408;
	width: 50px;
	height: 50px;
	display: flex; /* Add this line */
	justify-content: center; /* Center horizontally */
	align-items: center; /* Center vertically */
	border-radius: 50px;
	z-index: 2001;
	display: none;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	cursor: pointer;

}

.gm-style-iw-d { /* Target the element with class "gm-style-iw-ch" */
	margin-top: -34px;
	color: black;;
}

.markerTitle {
	font-family: Poppins, Arial;	
	min-width:130px;

}

.markerButton { /* Map directions button */
	font-family: Poppins, Arial;
	height: 40px;
	border-radius: 20px;
	border: 1px solid var(--main-color) !important;
	padding-left: 15px;
	padding-right: 15px;
	background-color:#e41408 ;
	color: rgb(252, 252, 252);
	margin-top: 10px;
	margin-bottom: 10px;

}


.infoWrapper {

	width: 100%;
	max-width: 100%;
	height: 100%;
/* 	height: calc(100% - 60px);
	margin-top: 60px; */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: Poppins, Arial;
	position: relative;
	overflow-y: scroll;
/* 	display: none;  */
	z-index: 1003;
	overflow: auto;
	scrollbar-width: none; /* Firefox */
	position: absolute;

}

.infoWrapper::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Edge */
  }

.contentBackground{
	width: 100%;
	height: 100%;
	position: absolute;
	background: url('../img/introBg.jpg') no-repeat center center;
	background-size: cover;
	background-position: center;
	overflow: hidden; 
	z-index: 0;
}


.blackOverlay{
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.773); /* Black overlay with 70% opacity */
	z-index: 1;
}



.section {
	width: 80%;
	margin: 20px 0;
	text-align: center;
	z-index: 1;

}

.infoButton {
	margin-top: 10px;
	padding: 4px 10px;
	padding-left: 6px;
	border: none;
	border-radius: 25px;
	background-color: white;
	color: black;
	font-size: 16px;
	cursor: pointer;
	width: 40%;
	font-weight: 600;
	z-index: 2;
	display: inline-flex; /* Enable flexbox for alignment */
	align-items: center; /* Vertically center content */
}

.infoButton:hover {
	background-color: #e0e0e0;
}

.infoButton span {
    flex-grow: 1; /* Allow the span to take up available space */
}

.countryIcon {
    width: 30px; /* Adjust as needed */
    height: 30px; /* Adjust as needed */
	margin-top: 2px;
    margin-right: 10px; /* Adjust spacing as needed */
    vertical-align: middle; /* Align icon vertically with text */
}

.topBarWrapper{
	position:absolute;
	top:0;
	left:0;
	width: 100%;
	background-color: var(--main-color);;
	height: 60px;
	z-index: 10;
	display: none; 

}
.appLogo{
	display: inline-block;
	padding-top: 12px;
	margin-left: 20px;
	cursor: pointer;

}

.logoImage {
	height: 36px;
	width: auto; /* Ensures it scales proportionally */
    display: block;
}

.appTitle {
	position: absolute;
	width:70%;
	line-height: 60px;
	height: 30px;
	right: 20px;
	top:0px;
	color:#000000;
	font-family: Poppins, Arial;
	text-align: right;
	
}

.bottomBar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	background-color: var(--main-color);;
	z-index: 100;
	display: none;
	padding: 0 10px; /* consistent edge padding */
	box-sizing: border-box;
}

.mapBttn, .infoBttn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border: none;
	cursor: pointer;
	color: #e41408;
	height: 100%;
	width: 60px; /* fixed width to ensure space is preserved */
	pointer-events: all;
}

.infoBttn {
	margin-left: auto; /* push it to the right */
}

.material-icons {
	font-size: 32px;
	pointer-events: none;
}

.arrowText {
	margin-top: -5px;
	font-family: Poppins, Arial;
	font-size: 0.8em;
	margin-top: 1px;
}

.bottomBarLocationText {
	flex: 1;
	text-align: center;
	font-weight: bold;
	color: #000000;
	pointer-events: none;
	font-family: Poppins, Arial;
	white-space: normal;       /* allow wrapping */
	word-wrap: break-word;     /* break long words if needed */
	overflow: hidden;          /* prevent overflow */
	padding: 0 10px;           /* space from icons */
	font-size: 0.9em;          /* optional: reduce size if needed */
	line-height: 1.2em;        /* tighter line spacing */
}



.hsDetailsWrapper{
	width: 100%;
	max-width: 100%;
	height: calc(100% - 60px);
	margin-top: 60px;	
	position: relative;
	display:none;
	overflow-y: scroll;
	z-index: 3;
	background-color: rgba(255, 255, 255, 1); /* Black overlay with 70% opacity */

	
}


.hsDetailsContentWrapper{
	padding-left: 20px;
	padding-right: 20px;
}

.hsDetailsTitle {
	
	position: relative;
	padding-top: 40px;
	font-family: Poppins, Arial;
	font-size: 18px;
	font-weight: 600;
	color: #1F1F1F;
	

}

.hsDetailsText{
	margin-TOP: 20px;
	position: relative;
	font-family: Poppins, Arial;
	font-size: 14px;
	font-weight: 400;
	color: #1F1F1F;

}

.hsDetailsCloseBttn {

	position: absolute;
	top:15px;
	right:00px;
	width: 50px;
	height: 50px;
	display: flex; /* Add this line */
	justify-content: center; /* Center horizontally */
	align-items: center; /* Center vertically */
	border-radius: 50px;

	display: none;
	z-index: 1000;
	cursor: pointer;
}
.imageContainer{
	margin-top: 20px;
	width:100%;
	margin-bottom: 20px;
}

.imageContainer img {
	width: 100%; /* Make the image fill the width of its container */
	height: auto;  /* Allow height to adjust automatically */
	object-fit: cover;
  }
  #ar-button {
	background-image: url(../3d/Logo.png);
	background-repeat: no-repeat;
	background-size: 25px 25px;
	background-position: 12px 50%;
	background-color: #fff;
	position: absolute;
	left: 80%;
	transform: translateX(-50%);
	white-space: nowrap;
	bottom: 20px;
	padding: 0px 16px 0px 45px;
	font-family: Roboto Regular, Helvetica Neue, sans-serif;
	font-size: 14 px;
	color: rgb(95, 95, 95);
	height: 40px;
	line-height: 36px;
	border-radius: 18px;
	border: 1px solid #dadce0;

	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2),
	  0 3px 7px 0 rgba(0, 0, 0, 0.19);
  }
  #ar-button:active {
	background-color: #e8eaed;
  }
  #ar-button:focus {
	outline: none;
  }
  #ar-button:focus-visible {
	outline: 1px solid #4285f4;
  }



  .callout {
    position: absolute;
    bottom: 80px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #eee;
    padding: 15px;
    border-radius: 10px;
    max-width: 300px;
    z-index: 10000;
    display: flex; /* Enable flexbox on the callout */
    flex-direction: column; /* Stack content vertically */
    align-items: flex-end; /* Align items (button) to the right */
	opacity: 0;
    transform: scale(0);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.show-callout { /* Add this class */
    animation: calloutAnimation 0.4s ease-in-out forwards; /* No delay here */
}

.animateMapIcon { 
    animation: mapiconAinmation 0.4s ease-in-out forwards; /* No delay here */

}

.callout-content {
    font-family: Poppins, Arial;
    font-size: 14px;
    word-wrap: break-word;
    margin-bottom: 10px; /* Add some space between text and button */
    flex-grow: 1; /* Allows content to take up available space */
}

.callout::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 15px;
    border-width: 12px 12px 0 12px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
}

.popUpBttn {
	margin-top: 10px;
	margin-bottom: 0px;
    padding: 4px 10px;
    border: none;
    border-radius: 4px;
    background-color: white;
    color: black;
    font-size: 14px; /* Consistent font size */
    cursor: pointer;
    font-weight: 600;
    font-family: Poppins, Arial;
}

.popUpBttn:hover {
    background-color: #e0e0e0;
}


@keyframes calloutAnimation {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% { /* Scale up to 1.2 */
        opacity: 1;
        transform: scale(1.2);
    }
    100% { /* Scale back to 1 */
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes mapiconAinmation {
    0% {
		color:#fbfbfb;
        transform: scale(1);
    }
    50% { /* Scale up to 1.2 */
		color:#ffffff;
        transform: scale(1.2);
    }
    100% { /* Scale back to 1 */
        transform: scale(1);
		color:#e41408;
    }
}