/**
TourGuide: a highlighting/instructions plugin for JS.
Developed by Alvaro Montoro. More info: https://github.com/alvaromontoro/TourGuide
**/
#spjs-frame {
  position: fixed;
  display: none;
  z-index: 99998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.01); }
  #spjs-frame #spjs-spot {
    position: absolute;
    border-radius: 100%;
    box-shadow: inset 0 0 8px 0;
    border: 200vmax solid;
    color: rgba(0, 0, 0, 0.5);
    transition: all 0.5s;
    transform: translate(-50%, -50%); }
    #spjs-frame #spjs-spot.spjs-square, #spjs-frame #spjs-spot.spjs-step-square {
      border-radius: 5px;
      border-radius: calc(100vmax + 5px); }
    #spjs-frame #spjs-spot.spjs-step-round {
      border-radius: 100%; }
    #spjs-frame #spjs-spot #spjs-text {
      position: absolute;
      top: 100%;
      color: white; }
    #spjs-frame #spjs-spot span {
      padding-right: 5px; }
  #spjs-frame #spjs-skip {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    z-index: 99999; }

.hideScrollY {
  height: 100%;
  margin-right: 15px;
  overflow-y: hidden; }
