/*
	INTERACTIVE ROOM
*/
#her_room{
	position:relative;
	margin-top: -42px;
}
#her_room .her-interactive{
	position:relative;
	width:100%;
	height: 33vw;
	overflow: hidden;
}
#her_room .her-interactive figure.her-large-image{
	position:relative;
	z-index:1;
	display:inline-block;
	margin:0;
	margin-top:0;
	margin-left: 0;
	width: 100%;
	height: 100%;
	transition: all .3s ease-out;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
#her_room .her-interactive figure.her-large-image::before{
	content: '';
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 55%;
	pointer-events: none;
}
#her_room .her-interactive figure.her-large-image #gl{
    position: absolute;
    top: 0;
    left: 0;
	width:100%;
	height: 100%;
	margin:0;
	padding:0;
	box-shadow:0 0 20px hsla(0,0%,0%,.1);
	transition: all .2s linear;
}
#her_room .her-interactive.open_image:not(.right_side) figure.her-large-image{
}
#her_room .her-interactive.open_image figure.her-large-image #gl{
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-ms-transform: scale(1.5);
	transform: scale(1.5);
}
#her_room .her-interactive button{
	position:absolute;
	z-index:2;
	top: 50%;
	left: 50%;
	-webkit-appearance: none;
	width: 20vw;
	max-width: 200px;
	height: 20vw;
	max-height: 200px;
	background: none;
	border: none;
	border-radius: 9000px;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	transition: all .2s linear;
	opacity: 1;
	cursor: pointer;
}
#her_room .her-interactive.open_image button{
		opacity: 0 !important;
}
#her_room .her-interactive button b{
	position: relative;
	z-index: 2;
	color: #00d5fb;
	opacity: 1;
	transition: all .2s linear;
}
#her_room .her-interactive button::before{
	content: '';
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	border: 4px solid #00d5fb;
	border-radius: 9000px;
	-webkit-transform: translate(-50%,-50%) scale(.2);
	-moz-transform: translate(-50%,-50%) scale(.2);
	-ms-transform: translate(-50%,-50%) scale(.2);
	transform: translate(-50%,-50%) scale(.2);
	transition: all .2s linear;
	background: hsla(0,0%,0%,.5);
	box-shadow: 0 0 20px hsla(0,0%,0%,.3);
	animation: pulse-animation 1s infinite;
}
#her_room .her-interactive button:hover::before{
	animation: none;
}
@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0px hsla(200,30%,53%,1);
	}
	100% {
		box-shadow: 0 0 0 60px hsla(200,30%,53%,0);
	}
}
#her_room .her-interactive button h5{
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 20%;
	width: 60%;
	text-align: center;
	color: white;
	font-size: 12px;
	opacity: 0;
	-webkit-transform: translateY(-50%) scale(.5);
	-moz-transform: translateY(-50%) scale(.5);
	-ms-transform: translateY(-50%) scale(.5);
	transform: translateY(-50%) scale(.5);
	transition: all .2s linear;
	text-transform: uppercase;
}
#her_room .her-interactive button h5 span{
	display: block;
	color: #00d5fb;
	font-size: 14px;
	margin: 10px 0;
}
#her_room .her-interactive button:hover{
	opacity: 1;
}
#her_room .her-interactive button:hover::before{
	border: 2px solid #00d5fb;
	-webkit-transform: translate(-50%,-50%) scale(1);
	-moz-transform: translate(-50%,-50%) scale(1);
	-ms-transform: translate(-50%,-50%) scale(1);
	transform: translate(-50%,-50%) scale(1);
}
#her_room .her-interactive button:hover h5{
	transition-delay: .2s;
	opacity: 1;
	-webkit-transform: translateY(-50%) scale(1);
	-moz-transform: translateY(-50%) scale(1);
	-ms-transform: translateY(-50%) scale(1);
	transform: translateY(-50%) scale(1);
}
#her_room .her-interactive button:hover b{
	opacity: 0;
}
#her_room .her-interactive #close_her_lights{
	position: fixed;
	z-index: 4;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	opacity: 0;
	pointer-events: none;
	transition: all .2s linear;
}
#her_room .her-interactive .her-light{
	position: fixed;
	z-index: 5;
	top: 50%;
	left: 50%;
	width: auto;
	max-width: 50vw;
	height: auto;
	max-height: 50vh;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	transition: all .2s linear;
	opacity: 0;
	pointer-events: none;
}
#her_room .her-interactive .her-light.visible{
	opacity: 1;
}

/*
	LIGHTBOX
*/
#her-lightbox-holder{
	height: 0px !important;
	width: 0px !important;
}
#her-lightbox-holder .lightbox{
	display: none;
}
#her-lightbox-holder .lightbox.open{
	display: block;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}
#her-lightbox-holder .lightbox.open .close{
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: hsla(0,0%,0%,.8);
}
#her-lightbox-holder .lightbox.open .infobox{
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 80%;
	height: 80%;
	padding: 10px 20px 20px;
	max-width: 600px;
	max-height: 600px;
	border: 1px solid #e6e6e6;
	background: #eeeeee;
	overflow-y: scroll;
}
#her-lightbox-holder .lightbox.open .infobox h3{
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 10px;
}
#her-lightbox-holder .lightbox.open .infobox img{
	width: 100%;
	height: auto;
	max-width: 300px;
}
#her-lightbox-holder .lightbox.open .infobox .info{
	margin: 10px 0;
}
#her-lightbox-holder .lightbox.open .infobox .info ul{
	list-style: disc;
	margin: 0;
	padding-left: 20px;
}
#her-lightbox-holder .lightbox.open .infobox .info ul li{
	padding: 5px 0;
}
#her-lightbox-holder .lightbox.open .infobox a.btn{
	background: black;
	color: white;
	border-radius: 0;
}
#her-lightbox-holder .lightbox.open .infobox a.btn:hover{
	background: #fe5730;
}

/*
	HEADER
*/
.single-room .category-filters-frame .row .col{
	margin: 0 0 20px 0;
}
.single-room .category-filters-frame .featured-products{
	margin: 40px 0;
}

/*
	CONTENT
*/
.single-room .category-filters-frame .page-content{
    padding: 0;
}