﻿.hotspot-marker
{
	position:absolute;
	z-index:708;

	display:inline-block;

    background-image: url('/resources/images/floorplan/hotspot-camera.svg');
	background-repeat: no-repeat;
	background-size: contain;

	/* width/height were originally 16 px. In order to get through IE's re-rendering problem, 
        we need to multiply the width/height by 10 here then scale down by .1 so the image
        stays at max quality. transform-origin is to ensure the desired coordinates are kept */
	width: 160px;
	height: 160px; 
    transform: scale(.1,.1);
    -moz-transform: scale(0.1, 0.1);
    -webkit-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
	cursor:pointer;
}
.reverse .hotspot-marker {
	transform: scale(-.1,.1) translate(-160px, 0px);
    -moz-transform: scale(-.1,.1) translate(-160px, 0px);
    -webkit-transform: scale(-.1,.1) translate(-160px, 0px);
    -ms-transform: scale(-.1,.1) translate(-160px, 0px);
    -o-transform: scale(-.1,.1) translate(-160px, 0px);
}

	.hotspot-marker.hotspotVideo 
	{
		background-image: url('/resources/images/floorplan/hotspot-virtualtour@3x.png');
	}

	.hotspot-marker.on
	{
		z-index:710;
		background-image: url('/resources/images/floorplan/hotspot-camera.svg');
	}

	.hotspot-marker.on.hotspotVideo
	{
		z-index:710;
		background-image: url('/resources/images/floorplan/hotspot-virtualtour.svg');
	}

    .hotspot-marker.off {
        display: none;
    }

    #furn_drawingSurface .hotspot-marker
    {
        display:none;
    }

#hotspot-modal div
{
	display:none;

	position:absolute;
	z-index:9;
	top: 0px;
	left: 0px;

	width: 240px;
	height: auto;

	border-radius: 10px;
	box-shadow: 0px 0px 10px -1px #000;
	padding: 20px;

	line-height: 160%;
	color: #fff;


	background: #004868;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIxJSIgc3RvcC1jb2xvcj0iIzAwNDg2OCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDMzNGIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #004868 1%, #00334b 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#004868), color-stop(100%,#00334b));
	background: -webkit-linear-gradient(top,  #004868 1%,#00334b 100%);
	background: -o-linear-gradient(top,  #004868 1%,#00334b 100%);
	background: -ms-linear-gradient(top,  #004868 1%,#00334b 100%);
	background: linear-gradient(to bottom,  #004868 1%,#00334b 100%);

}

#hotspot-modal.on div
{
	display:inline-block;
}

	#hotspot-modal ul
	{
		box-sizing: border-box;
		-moz-box-sizing: border-box;

		padding: 20px;
		padding-top: 0px;
	}