GhostManSec
Server: LiteSpeed
System: Linux premium197.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: parhudrw (1725)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: //home/parhudrw/public_html/wp-content/themes/around/assets/scss/html/components/_hotspots.scss
//
// Hotspots
// --------------------------------------------------


.cs-hotspots {
  position: relative;

  img {
    display: block;
    width: 100%;
  }
}

.cs-hotspot {
  position: absolute;
  width: $hotspot-outer-size;
  height: $hotspot-outer-size;
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;

  &::before, &::after {
    position: absolute;
    border-radius: 50%;
  }

  &::before {
    top: 50%;
    left: 50%;
    width: $hotspot-inner-size;
    height: $hotspot-inner-size;
    margin: {
      top: -($hotspot-inner-size / 2);
      left: -($hotspot-inner-size / 2);
    }
    transition: $hotspot-inner-transition;
    background-color: $hotspot-inner-bg;
    color: $hotspot-inner-color;
    font: {
      family: 'feather';
      size: $hotspot-inner-font-size;
    }
    text-align: center;
    line-height: $hotspot-inner-size;
    box-shadow: $hotspot-inner-box-shadow;
    content: '\e9c6';

  }

  &::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: $hotspot-outer-border;
    content: '';
  }

  &:hover::before {
    background-color: $hotspot-hover-inner-bg;
    color: $hotspot-hover-inner-color;
  }
}