.hotspot {
  background: #fe495a;
  display: block;
  position: absolute;
  width: 36px;
  height: 36px;
  padding: 9px 0 0 0;
  color: #fff;
  font: 600 15px/15px 'Roboto';
  text-align: center;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: background .5s ease;
  -moz-transition: background .5s ease;
  -ms-transition: background .5s ease;
  -o-transition: background .5s ease;
  transition: background .5s ease;
  cursor: pointer;
}

.hotspot:hover {
  background: #de3344;
  color: #fff;
}

.hotspot.on {
  padding: 7px 0 0 0;
  border: 2px solid #32373b;
}

/* --- OVERLAY --- */

.overlay {
  width: 250px;
}

.overlay.arrow-left {
  top: -5px;
  left: 60px;
}

.overlay.arrow-right {
  top: -5px;
  right: 60px;
}

.overlay.arrow-top {
  top: 60px;
  left: -5px;
}

.overlay.arrow-bottom {
  top: -5px;
  left: 60px;
}

.overlay-dummy {
  display: none;
}

/* ------ MEDIA QUERIES ------ */

/* iPhone landscape */
@media screen and (max-width: 600px) {
  .hotspot {
    width: 20px;
    height: 20px;
    padding: 5px 0 0 0;
    font-size: 9px;
    line-height: 9px;
  }

  .hotspot.on {
    padding: 3px 0 0 0;
  }
  
  .overlay {
    width: 320px;
  }
  
  .overlay-dummy {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 320px;
    height: 294px;
    margin: -60px 0 0 -160px;
  }
  
  .overlay-dummy .overlay:before {
    display: none;
  }
  
  .overlay-dummy .overlay.arrow-left,
  .overlay-dummy .overlay.arrow-right,
  .overlay-dummy .overlay.arrow-top,
  .overlay-dummy .overlay.arrow-bottom {
    top: 0;
    left: 0;
  }
  
  .overlay-dummy .close-overlay {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 101;
  }
}

/* iPhone portrait */
@media screen and (max-width: 400px) {
}