/* CUSTOMIZED ARROW ICON ---------------------------------------------------------------------------------------------------------*/
.custom-hotspot-arrow {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    box-shadow: 1px 3px #888888;
  }
  
  .custom-hotspot-arrow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 2px solid #ba0c2f;
    border-left: 2px solid #ba0c2f;
    transform: rotate(45deg);
    width: 12px;
    height: 12px;
    left: 16px;
    top: 13px;
  }
  
  .custom-hotspot-arrow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 2px solid #ba0c2f;
    border-left: 2px solid #ba0c2f;
    transform: rotate(45deg);
    left: 16px;
    top: 22px;
    width: 12px;
    height: 12px;
  }
  
  .custom-hotspot-arrow:hover::after {
    transform: scale(8);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
    border-radius: 50%;
    border: none;
  }
  
  .custom-hotspot-arrow,
  .custom-hotspot-arrow::after {
    background-color: white;
  }
  /* CUSTOMIZED ARROW ICON ---------------------------------------------------------------------------------------------------------*/
  
  
  
  
  
  
  
  /* CUSTOMIZED INFO ICON  ---------------------------------------------------------------------------------------------------------*/
  
  
  .custom-hotspot-info {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    box-shadow: 1px 2px 3px 1px white;
  }
  
  .custom-hotspot-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 3px solid white;
    border-radius: 35%;
    width: 3.5px;
    height: 7px;
    left: 12.5px;
    top: 7px;
  }
  
  .custom-hotspot-info::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-left: 3.5px solid white;
    left: 13px;
    top: 12px;
    width: 1px;
    height: 15px;
  }
  
  .custom-hotspot-info:hover::before {
    transform: scale(9);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
    border-radius: 50%;
    border: none;
    width: 7px;
    height:7px;
    background-color: white;
  
  }
  
  .custom-hotspot-info,
  .custom-hotspot-info::after {
    background-color: #ba0c2f;
  }
  
  /* CUSTOMIZED INFO ICON  ---------------------------------------------------------------------------------------------------------*/
  
  
  
  
  
  
  
  
  /* MOBILE FRIENDLY ICONS ---------------------------------------------------------------------------------------------------------*/
  @media only screen and (max-width: 400px) {
  
  /* ARROW ICON */
    .custom-hotspot-arrow {
      height: 30PX;
      width: 30PX;
    }
    
    .custom-hotspot-arrow::before {
      width: 9px;
      height: 9px;
      left: 10px;
      top: 9px;
    }
    
    .custom-hotspot-arrow::after {
      left: 10px;
      top: 16px;
      width: 9px;
      height: 9px;
    }
  
  
  
  /* INFO ICON */
    .custom-hotspot-info {
      height: 15px;
      width: 15px;
    }
    
    .custom-hotspot-info::before {
      width: 3.5px;
      height: 7px;
      left: 5.5px;
      top: 2px;
    }
    
    .custom-hotspot-info::after {
      left: 6px;
      top: 6px;
      width: 1px;
      height: 8px;
    }
  }
  
  /* MOBILE FRIENDLY ICONS ---------------------------------------------------------------------------------------------------------*/