


.hint-container {
    text-align: start;

    border-style: solid;
    border-width: 1px;
    border-color: black;

    background-color: white;
    border-radius: 25px;

    padding: 20px;

    width: 150px;

    position: absolute;
    top: 620px;
    left: 280px;

    display: block;
}


.hint-text-container {
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	cursor: pointer;
	z-index: 1;
	display: none;
	position: absolute;
	color: white;
	background-color: rgba(30, 30, 30, 0.7);
	border-radius: 15px;
}

/* TODO: is not resizing correctly for small screen*/
.close-hint-cross {
	position: absolute;
	width: 13px;
	right: 14px;
	top: 14px;
}

/*.circle-to-container-line-link {*/
/*	z-index: -1;*/
/*	position: absolute;*/
/*	width: 1px;*/
/*	height: 40px;*/
/*	left: 25px;*/
/*	top: -40px;*/
/*	background-color: rgba(30, 30, 30, 0.4);*/
/*}*/


.hint-text-title {
    position: relative;
    display: inline-box;
    font-family: 'Open Sans', sans-serif;
	font-weight: 800;
}

.hint-text-description {
    position: relative;
    display: inline-box;
    font-family: 'Open Sans', sans-serif;
	font-weight: 100;
	line-height: 1.5;
}










/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
	margin: 0px 10px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 30px;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}






/* CIRCLE BUTTON */

.circle-button {
	cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid rgba(161, 161, 161, 1);
    position: absolute;
	
	transform: translate(-50%, -50%);
	animation: pulse-gray 1.9s infinite;
	display: none;
}

.circle-button:not(.selected-button) {
	background-color: rgba(255, 255, 255, 0.95);
}
.circle-button.selected-button {
	background-color: rgba(30, 30, 30, 0.7);
}


@keyframes pulse-gray {
  0% {
	transform: scale(0.9) translate(-50%, -50%);
	box-shadow: 0 0 0 0 rgba(82, 82, 82, 1);
  }
  80% {
	transform: scale(1) translate(-50%, -50%);
	box-shadow: 0 0 0 11px rgba(82, 82, 82, 0);
  }
  100% {
	transform: scale(0.9) translate(-50%, -50%);
	box-shadow: 0 0 0 0 rgba(82, 82, 82, 0);
  }
}





/* Navigation bar */

/* Add a black background color to the top navigation */
.topnav {
    background-color: #f2f2f2;
    overflow: hidden;
	z-index: 10;
	position: relative;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #333;
    text-align: center;
    padding: 14px 16px;
	height: 100px;
    text-decoration: none;
    font-size: 17px;
    font-family: "Open Sans", sans-serif;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #333;
    color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color: #04AA6D;
    color: #333;
}



/* Centre vue logo */
#centre-vue-logo {
    position: absolute;
    display: inline-block;
    height: 80px;
    float: right;
	padding: 10px;
	right: 10px;
	top: 0;
}

/* Handle small screen */

@media screen and (max-width: 800px) {
	#centre-vue-logo {
		height: 40px;
  	}
	
	#room-title {
		font-size: 16px;
	}
	
	.circle-button {
		top: calc(50% + 30px);
	}
	
	.container-view {
		height: calc(100% - 50px) !important;
	}
}

@media screen and (min-width: 801px) {
	#room-title {
	  font-size: 32px;
  }
}



/* Room Title*/

#room-title {
    font-family: "Open Sans", sans-serif;
    font-weight: 100;
    text-align: center;
}









#switch-div {
    margin: auto;
    background-color: #2b2b2b;
    padding: 12px 20px;
	position: absolute;
	right: 40px;
	bottom: 40px;
	border-radius: 40px;
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.5);
}


/* Switch Div - Cross logo */


#switch-cross {
	height: 34px;

}

#switch-tick {
	height: 34px;
}



/* Back button*/

#back-button {
	position: absolute;
	width: 80px;
	padding: 30px;
	z-index: 2;
}


body {
	background-color: rgb(23, 23, 23);
	height: 100%;
	display: table-cell;
	overflow-y: hidden;
}

#image-container {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

html {
	width: 100%;
	height: 100%;
	display: table;
}

html, body {
	margin: 0;
	padding: 0;
}


.image-100 {
	width: 100%;
}

#text-container {
	color: red;
}

#text-sub-container {
	color: blue;
	
}






/* Image view*/

.container-view {
	height: calc(100% - 100px);
	
	
	
	display: flex;
	align-items: center;
	justify-content: center;
}

.sub-image {
	height: 100%;
	width: 100%;
	text-align: center;
	
	

	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

#test-room-background-image-good {
	background-image: url("../images/renders/flat/sleeping-room-image-good.jpg");
}

#test-room-background-image-bad {
	background-image: url("../images/renders/flat/sleeping-room-image-bad.jpg");
}


#sleeping-room-background-image-good{
	background-image: url("../images/renders/flat/sleeping-room-image-good.jpg");
}

#sleeping-room-background-image-bad {
	background-image: url("../images/renders/flat/sleeping-room-image-bad.jpg");
}

#living-room-background-image-good{
	background-image: url("../images/renders/flat/living-room-image-good.jpg");
}

#living-room-background-image-bad {
	background-image: url("../images/renders/flat/living-room-image-bad.jpg");
}


#bathroom-background-image-good {
	background-image: url("../images/renders/flat/bathroom-image-good.jpg");
}

#bathroom-background-image-bad {
	background-image: url("../images/renders/flat/bathroom-image-bad.jpg");
}


#kitchen-background-image-good {
	background-image: url("../images/renders/flat/kitchen-image-good.jpg");
}

#kitchen-background-image-bad {
	background-image: url("../images/renders/flat/kitchen-image-bad.jpg");
}


#global-flat-background-image {
	background-image: url("../images/renders/flat/global-flat-image.jpg");
}




#entrance-background-image-good {
	background-image: url("../images/renders/entrance/entrance-image-good.jpg");
}

#entrance-background-image-bad {
	background-image: url("../images/renders/entrance/entrance-image-bad.jpg");
}



#stairs-background-image-good {
	background-image: url("../images/renders/stairs/stairs-image-good.jpg");
}

#stairs-background-image-bad {
	background-image: url("../images/renders/stairs/stairs-image-bad.jpg");
}


#flat-area-button {
	background-position: calc(50%) calc(50%);
}

#stairs-area-button {
	background-position: calc(100%) calc(50%);
}

