 .hs-area {
     position: relative;
 }

 .hs-wrap,
 .tt-wrap {
     position: absolute;
     display: none;
 }

 .tt-wrap {
     border: 10px solid transparent;
     z-index: 1000;
 }

 .tt-wrap.left {
     top: -2px;
     right: 100%;
 }

 .tt-wrap.right {
     top: -2px;
     left: 100%;
 }

 .tt-wrap.top {
     bottom: 100%;
     left: -2px;
 }

 .tt-wrap.bottom {
     top: 100%;
     left: -2px;
 }

 /*======================= Spots =======================*/
 .invisible-spot,
 .red-spot,
 .onhover-spot {
     background: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
 }

 .red-spot {
     border: 2px solid #ff0000;
     opacity: .7;
     box-shadow: 0 0 10px #000000;
 }

 .red-spot.active {
     box-shadow: 0 0 5px #FF0D0D inset;
     border-color: #FF0D0D;
     opacity: .6;
 }

 /*----- Shadow spot -----*/
 .shadow-spot {
     box-shadow: 0 0 20px #000000;
 }

 .shadow-spot.active {
     box-shadow: 0 0 50px #000000;
 }

 /*----- Glass spot -----*/
 .glass-spot {
     box-shadow: 0 0 20px #ffffff;
 }

 .glass-spot.active {
     box-shadow: 0 0 50px #ffffff;
 }

 /*----- Sniper spot -----*/
 .sniper-spot {
     background-color: #ff0000;
     width: 20px;
     height: 20px;
     border-radius: 20px;
     z-index: 10;
     opacity: .8;
     border: 2px solid #752424;
     box-shadow: 0 0 12px #000000 inset;
 }

 .sniper-spot:before,
 .sniper-spot:after {
     content: "";
     position: absolute;
     background-color: #ff0000;
 }

 .sniper-spot:before {
     top: 3px;
     left: 11px;
     width: 2px;
     height: 19px;
 }

 .sniper-spot:after {
     top: 11px;
     left: 3px;
     width: 19px;
     height: 2px;
 }

 .sniper-spot.active:before,
 .sniper-spot.active:after {
     width: 0px;
     height: 0px;
 }

 .sniper-spot.active {
     border: 2px solid #000000;
     background-color: #ff9999;
     opacity: .4;
     box-shadow: 0 0 10px #000000;
 }

 .onhover-spot {
     border: 2px solid transparent;
 }

 .onhover-spot.active {
     border: 2px solid #ff0000;
     opacity: .7;
     box-shadow: 0 0 10px #000000;
 }

 /* Custom image & mark up spots*/
 .img-spot {
     position: absolute;
     min-width: 200px;
     min-height: 200px;
     /* background-color: #FFF; */
 }

 .img-spot:before,
 .img-spot:after {
     content: "";
     position: absolute;

 }

 .img-spot img,
 .markup-spot div:last-child {
     display: none;
     vertical-align: bottom;

 }

 /*======================= Tooltips =======================*/
 .tip-tooltip {
     display: block;
     border-radius: 8px;
     padding: 8px 5px 5px 5px;
     min-height: 20px;
     min-width: 30px;
     background-color: #000000;
     color: #ffffff;
     box-shadow: 0 0 10px #000000;
 }

 .tip-tooltip:before {
     content: "";
     position: absolute;
     border: 8px solid;
     width: 0px;
     height: 0px;
     z-index: 999;
 }

 /*------ black 'default background color' dirs------*/
 .tip-tooltip.right:before {
     top: 10px;
     right: 100%;
     border-color: transparent #000000 transparent transparent;
 }

 .tip-tooltip.left:before {
     top: 10px;
     left: 100%;
     border-color: transparent transparent transparent #000000;
 }

 .tip-tooltip.top:before {
     top: 100%;
     left: 12px;
     border-color: #000000 transparent transparent transparent;
 }

 .tip-tooltip.bottom:before {
     bottom: 100%;
     left: 12px;
     border-color: transparent transparent #000000 transparent;
 }

 /*------ white ------*/
 .tip-tooltip.white {
     background-color: #ffffff;
     color: #000000;
 }

 .tip-tooltip.white.right:before {
     border-color: transparent #ffffff transparent transparent;
 }

 .tip-tooltip.white.left:before {
     border-color: transparent transparent transparent #ffffff;
 }

 .tip-tooltip.white.top:before {
     border-color: #ffffff transparent transparent transparent;
 }

 .tip-tooltip.white.bottom:before {
     border-color: transparent transparent #ffffff transparent;
 }

 /*----------------------------------------------------------------------------*/
 /* Bubble Tooltip */
 .bubble-tooltip {
     display: block;
     position: relative;
     background-color: #ffffff;
     color: #000000;
     border-radius: 10px;
     box-shadow: 0 0 10px #ffffff;
     padding: 10px 5px 8px 5px;
     opacity: .8;
     z-index: 999;
     min-height: 20px;
     min-width: 30px;
 }

 .bubble-tooltip:before {
     content: "";
     position: absolute;
     background-color: #ffffff;
     border: 1px solid #e2e2e2;
     border-radius: 20px;
     bottom: -10px;
     left: 9px;
     height: 16px;
     width: 20px;
 }

 .bubble-tooltip:after {
     content: "";
     position: absolute;
     background-color: #ffffff;
     border: 1px solid #e2e2e2;
     border-radius: 20px;
     bottom: -17px;
     left: 18px;
     height: 9px;
     width: 11px;
 }

 /*----------------------------------------------------------------------------*/
 /*aim handler styles*/
 .aim-tooltip {
     display: none;
     position: absolute;
     background-color: #000000;
     color: #ffffff;
     padding: 6px;
 }

 .aim-tooltip .tt-content {
     display: none;
 }

 .aim-tooltip.top {
     border-radius: 10px 10px 0 0;
 }

 .aim-tooltip.right {
     border-radius: 0 10px 10px 0;
 }

 .aim-tooltip.bottom {
     border-radius: 0 0 10px 10px;
 }

 .aim-tooltip.left {
     border-radius: 10px 0 0 10px;
 }

 .hs-aim-rect,
 .hs-aim-pillar {
     display: none;
     position: absolute;
     background-color: #000000;
     opacity: .75;
     z-index: 1000;
 }

 .hs-aim-pillar {
     opacity: .2;
     z-index: 1001;
     background-color: #ffffff;
 }

 .hs-flatten {
     border-radius: 0 !important;
 }

 .shadow-spot,
 .glass-spot,
 .hs-aim-rect,
 .hs-aim-pillar,
 .bubble-tooltip,
 .tip-tooltip.transparent,
 .onhover-spot.active,
 .red-spot {
     filter: alpha(opacity=75);
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
 }

 .shadow-spot,
 .glass-spot {
     background: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
 }

 .shadow-spot {
     border: 2px solid black;
 }

 .glass-spot {
     border: 2px solid white;
 }

 .shadow-spot.active,
 .glass-spot.active,
 .red-spot.active {
     filter: alpha(opacity=40);
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
 }