.interactive-3d-tour {
  width: 100%;
  overflow: hidden;
}
.interactive-3d-tour iframe {
  border: 0;
}
{#***************** POPUP  **********************#}
.interactive-3d-tour--url{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.interactive-3d-tour__button-container{
	display: flex;
	justify-content: center;
	align-items: center;
	height:100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%);
	opacity:0;
	z-index:-2;
	transition:opacity .3s ease;
}
.interactive-3d-tour--url:hover .interactive-3d-tour__button-container{
	opacity:1;
	z-index:5;
}
.interactive-3d-tour__iframe-container{
	position:fixed;
	top:0;
	left: 0;
	right:0;
	bottom:0;
	background-color:#000000;
	z-index:-2;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity:0;
	transition:opacity .3s ease;
	cursor:pointer;
}
.interactive-3d-tour__iframe {
	width: 90%;
}
.interactive-3d-tour--active .interactive-3d-tour__iframe-container{
	z-index:100;
	opacity:1;
}