/*info page style begin*/
.info-header{
	border-radius: 25px;
	border: 2px solid #C1C1C1;
	padding: 10px;
	width: 100%;
	height: 275px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.info-banner{
	position: relative !important;
	margin-bottom: 4.25rem !important;
}

.info-overlay{
	position: relative;
	transition: all 0.3s ease;
	opacity: 1;
}

.info-image{
	opacity: 70%;
	border-radius: 25px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	min-height: 250px;
}

.info-heading{
	position: absolute !important;
	--bs-text-opacity: 1;
	color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
	margin-bottom: 2rem !important;
	margin-left: 2.5rem !important;
	bottom: 0 !important;
}

.info-title{
	font-size: calc(1.35rem + 1.2vw) !important;
	font-weight: 600 !important;
	margin-bottom: 0.75rem !important;
	--bs-text-opacity: 1;
	color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.info-text{
	font-size: 1.15rem !important;
	font-weight: 500 !important;
}

.info-wrapper{
	display: flex;
	flex-flow: row wrap;
}

@media screen and (max-width: 600px){
	.info-section{
		width: 100%;
	}

	.info-aside{
		width: 100%;
	}
}

.info-section{
	width: 70%;
	float: left;
	height: auto;
	background-color: none;
	margin-bottom: 40px;
	padding: 20px;
}
/*
.booth-icon{
	width: 25px;
  	height: 25px;
  	position: relative;
  	margin-left: 10px;
}*/

.info-aside{
	border-radius: 25px;
	width: 30%;
	float: left;
	height: auto;
	background: #f4f4f4;
	padding: 25px;
}

.tr-animation{
	transition: 1s;
}

.tr-animation:hover{
	transform: scale(0.1);
}

/*info page style end*/

/*hotspot pin & tooltip for lobby*/

html.tooltips{
	font-size: 16px;
	font-family: 'Montserrat';
}

body.lobby{
	background-color: azure;
	width: 100%;
}

section.lobby{
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow-x: hidden;
}

div.contain{
	width: 90%
	max-width: 1200px;
	margin-right: 0 auto;
}

div.contain img{
	width: 100%;
	height: 100%;
}

div.all-tooltips{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

div.tooltip-content{
	position: absolute;
	background-color: white;
	box-shadow: 0px 0px 20px #00000020;
	padding: 30px;
	border-radius: 8px;
	width: 90vw;
	max-width: 300px;
	opacity: 0;
	pointer-events: none;
	z-index: 2; 
}

div.tooltip-content .arrow{
	position: absolute;
	border: 10px solid transparent;
	border-bottom-color: rgb(255, 255, 255);
	top: 0px;
	left: 50%;
	transform: translate(-50%, -100%);
}

div.pin{
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: white;
	height: 25px;
	width: 25px;
	border-radius: 50%;
	cursor: pointer;
}

div.pin::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: white;
	border-radius: 50%;
	animation: puls-effect 1s ease-in-out infinite;
}

div.tooltip.active .tooltip-content{
	opacity: 1;
	pointer-events: all;
}

div.tooltip-1 .pin{
	left:90%;
}

@keyframes puls-effect{
	0%{
		transform: scale(.5);
		opacity: 1;
	}
	100%{
		transform: scale(3);
		opacity: 0;
	}
}

/* hotspot pin & tooltip for lobby end */

/* ads slider for lobby begin */

.ads-container{
    width: 300px;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    overflow: hidden;
    border: 10px solid #ffffff;
    border-radius: 4px;
    box-shadow: 10px 25px 30px rgba(0,0,0,0.3);
}
.ads-wrapper{
    width: 100%;
    display: flex;
    animation: ads-slider 16s infinite;
}

@keyframes ads-slider{
    0%{
        transform: translateX(0);
    }
    25%{
        transform: translateX(0);
    }
    30%{
        transform: translateX(-100%);
    }
    50%{
        transform: translateX(-100%);
    }
    55%{
        transform: translateX(-200%);
    }
    75%{
        transform: translateX(-200%);
    }
    80%{
        transform: translateX(-300%);
    }
    100%{
        transform: translateX(-300%);
    }
}

/*Popup style*/

/*@import url('https: //fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');*/

.popup{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: none;
	z-index: 1;
}

.contentPopup{
	position: relative;
	width: 600px;
	height: 400px;
	background: #cfebfd;
	border-radius: 20px;
	display: flex;
	box-shadow: 0 5px 15px rgba(0,0,0,1);
}
 
.contentPopup .imgPp{
	position: relative;
	width: 300px;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contentPopup .imgPp::before{
	content: '';
	position: absolute;
	width: 250px;
	height: 250px;
	background: #e7ffe0;
	border-radius: 50%;
}

.contentPopup .imgPp img{
	position: relative;
	max-width: 250px;
	z-index: 1;
}

.contentPopup .contentP{
	position: relative;
	width: 300px;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contentPopup .contentP h3{
	color: #333;
	line-height: 1em;
	font-weight: 300;
	font-size: 1.5em;
}

.contentPopup .contentP h2{
	font-size: 3em;
	color: #ff4d54;
	line-height: 1em;
}

.contentPopup .contentP h2 span{
	color: #333;
	font-size: 1.0em;
	text-transform: uppercase;
}

.contentPopup .contentP p{
	font-weight: 300;
}

.contentPopup .contentP a{
	display: inline-block;
	padding: 10px 20px;
	background: #ff4d54;
	color: #fff;
	margin-top: 15px;
	text-decoration: none;
	border-radius: 10px;
}

.closePopup{
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: #f3f3f3 url(assets/webcontent/close.png);
	background-repeat: no-repeat;
	background-size: 10px;
	background-position: center;
	cursor: pointer;
	border-radius: 50%;
	z-index: 10;
}

@media (max-width: 767px){
	.contentPopup{
		width: 300px;
		height: auto;
		flex-direction: column;
	}
	.contentPopup .imgPp{
		height: 200px;
		transform: translateY(-50px);
	}
	.contentPopup .imgPp::before{
		background: #fff;
	}
	.contentPopup .contentP{
		height: auto;
		text-align: center;
		padding: 20px;
		padding-top: 0;
	}
	.closePopup{
		top: -50;
		right: -10px;
		background: #fff url(assets/webcontent/close.png);
		background-repeat: no-repeat;
		background-size: 10px;
		background-position: center;
	}
}


/* ads slider for lobby end */


/* 
.contain{
	width: 500%;
	height: 800px;

	add flexbox style
	display: flex;
	flex-direction: row;
	justify-content: space-around; 
}

div.box{
	width: 20%;
	height: 300px;
	background-image: url("assets/webcontent/lobby/ads.png");
	margin: 20px;
	box-sizing: border-box; 
} 

----------------------------------------------------

.slider-frame{
	overflow: hidden;
	height: 800px;
	width: 1200px;
	margin-left: 360px;
	margin-top: 20px;
}

@-webkit-keyframes slide_animation{
	0% {left:0px;}
	10% {left:0px;}
	20% {left:1200px;}
	30% {left:1200px;}
	40% {left:2400px;}
	50% {left:2400px;}
	60% {left:1200px;}
	70% {left:1200px;}
	80% {left:0px;}
	90% {left:0px;}
	100% {left:0px;}
}

.slide-ads{
	width: 3600px;
	height: 800px;
	margin: 0 0 0 -2400px;
	position: relative;
	-webkit-animation-name:slide_animation;
	-webkit-animation-duration:30s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	-webkit-animation-play-state: running;
}

.ads-container{
	height: 800px;
	width: 1200px;
	position: relative;
	float: left;
}
*/


