hotspot-bubble {
    display: inline-block;
    position: absolute;
    z-index: 2;
  }
  
  hotspot-bubble:hover {
    z-index: 99;
  }
  
  hotspot-bubble.active {
    z-index: 99;
  }
  
  .hotspot-bubble {
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
    width: 50px;
    height: 50px;
    display: inline-block;
    z-index: 1;
    cursor: pointer;
    background-color: #FFCD00;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    text-align: center;
  }
  
  .hotspot-bubble .title {
    display: block;
    height: 100%;
    width: auto;
    line-height: 50px;
    margin-left: 28px;
    padding-left: 47%;
    position: absolute;
    z-index: -1;
    white-space: nowrap;
    top: 0;
    padding-right: 15px;
    max-width: 300px;
    text-overflow: ellipsis;
    left: -2px;
  }
  
  .hotspot-bubble .title .txt {
    display: block;
  }
  
  .hotspot-bubble .title .bg {
    content: '';
    width: 0;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 40px 40px 0;
    z-index: -1;
    transition: all .25s cubic-bezier(.17, .80, .48, .77) .15s;
    background: #ffce00;
  }
  
  .hotspot-bubble:hover .title .bg {
    width: 100%;
  }
  
  .hotspot-bubble.hide-title .title {
    width: auto;
    pointer-events: none;
  }
  
  .hotspot-bubble.hide-title .title .txt {
    opacity: 0;
    transition: all 0.2s ease-out;
    transform: translateX(15px);
    -webkit-transform: translateX(15px);
  }
  
  .hotspot-bubble.hide-title:hover .title {
    pointer-events: auto;
  }
  
  .hotspot-bubble.hide-title:hover .title .txt {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    transition-delay: 0.4s;
  }
  
  .hotspot-bubble .icon {
    width: 25px;
    height: 25px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: all .15s cubic-bezier(0.09, 0.61, 0.58, 0.88);
    -webkit-transition: all .15s cubic-bezier(0.09, 0.61, 0.58, 0.88);
    -moz-transition: all .15s cubic-bezier(0.09, 0.61, 0.58, 0.88);
  }
  
  .hotspot-bubble:hover .icon {
    transform: scale(.7, .7);
  }
  
  .hotspot-bubble .arrow {
    width: 0;
    height: 0;
    border: 16px solid transparent;
    border-top: 14px solid #FFCD00;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
  }
  
  .hotspot-bubble:hover {
    -moz-animation: bounce 2s infinite;
     -webkit-animation: bounce 2s infinite; 
    animation: bounce 2s infinite;
  }
  
  .hotspot-bubble.hotspot-custom {
    background-color: transparent;
    background-size: contain;
    border-radius: 0;
    box-shadow: none;
  }

  .hotspot-bubble.hotspot-custom:hover .custom_hs-name {
    opacity: 1;
  }
  
  .hotspot-modal-bubble {
    margin: 0 auto;
    position: relative;
    border: 2px solid #ffce00;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  }
  
  .hotspot-modal-bubble.hotspot-bubble-video {
    width: 90vw;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .5);
  }
  
  .hotspot-modal-bubble.hotspot-bubble-image {
    max-width: 720px;
    background: rgba(0, 0, 0, .5);
  }
  
  .hotspot-bubble-video iframe {
    height: 90vh;
  }
  
  .hotspot-url-iframe-popup {
    background: white;
  }
  
  .modal .modal-dialog .modal-content .hotspot-bubble-video .close,
  .hotspot-bubble-textf-tooltip .close {
    width: 36px;
    height: 36px;
    position: absolute;
    right: -18px;
    top: -18px;
    opacity: 1;
    color: initial;
    border-radius: 50%;
    text-shadow: none;
    padding: 0;
    text-align: center;
    line-height: 38px;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 12px;
    transition: all .15s ease-out;
    background: #ffce00;
  }
  
  .modal .modal-dialog .modal-content .hotspot-modal-bubble .close:hover,
  .hotspot-bubble-textf-tooltip .close:hover {
    transform: scale(.9, .9);
  }
  
  .hotspot-modal-bubble .caption {
    text-align: center;
    padding: 12px;
  }
  
  .hotspot-modal-bubble img {
    max-width: 100%;
  }
  
  .hotspot-bubble-article-popup {
    padding: 24px 0;
    background: white;
    max-width: 720px;
    width: 90vw;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .hotspot-bubble-article-popup .content {
    padding: 0 120px;
  }
  
  .hotspot-bubble-article-popup .wrapper {
    position: relative;
    overflow: auto;
    height: 82vh;
  }
  
  .hotspot-bubble-article-popup .content .wrapper {
    max-height: 82vh;
    position: relative;
    overflow: auto;
    padding: 0 120px;
  }
  
  .hotspot-bubble-article-popup .title {
    padding-bottom: 12px;
    text-align: center;
    font-size: 24px;
    position: relative;
  }
  
  .hotspot-bubble-article-popup .title:after {
    content: '';
    width: 32px;
    height: 1px;
    display: block;
    margin: 24px auto;
    background: #DDD;
  }
  
  .hotspot-bubble-image .image {
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }
  
  .hotspot-bubble-image .caption {
    text-align: center;
    padding: 12px;
    margin: 0;
    background: #ffcf00;
  }
  
  .hotspot-bubble-textf-tooltip {
    border: 2px solid #ffce00;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    background: white;
    padding: 0;
    position: absolute;
    width: 300px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease-out;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    min-height: 40px;
    left: 50%;
    top: -72px;
    transform: translate(-50%, 24px);
    -webkit-transform: translate(-50%, 24px);
    z-index: 2;
    visibility: hidden;
  }
  
  .hotspot-bubble-textf-tooltip img {
    width: calc(100% + 24px);
    margin-left: -12px;
    max-width: none;
  }
  
  .hotspot-bubble-textf-tooltip .hotspot-textf-content .content-wrapper {
    padding: 0 12px;
  }
  
  hotspot-bubble-textf {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
  }
  
  .hotspot-bubble-textf-tooltip .close {
    z-index: 3;
  }
  
  .hotspot-bubble-textf-tooltip .close:hover {
    opacity: 1;
  }
  
  .hotspot-bubble-textf-tooltip.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
  }
  
  .hotspot-bubble-point .icon {
    background-size: cover;
    border-radius: 50%;
    width: 90%;
    height: 90%;
    transform: none!important;
    -webkit-transform: none!important;
  }
  
  .hotspot-bubble-point .title {
    padding-left: 35px;
  }
  
  .hotspot-bubble-url .icon {
    background-image: url(images/svg/hs-bundle_1-url.png);
  }
  
  .hotspot-bubble-video .icon {
    background-image: url(images/svg/hs-bundle_1-video.png);
  }
  
  .hotspot-bubble-image .icon {
    background-image: url(images/svg/hs-bundle_1-image.png);
  }
  
  .hotspot-bubble-article .icon {
    background-image: url(images/svg/hs-bundle_1-article.png);
  }
  
  .hotspot-bubble-textf .icon {
    background-image: url(images/svg/hs-bundle_1-note.png);
  }
  
  /* bounce */
  
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    40% {
      -moz-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
      -webkit-transform: translateY(-10px);
      transform: translateY(-10px);
    }
    60% {
      -moz-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
      -webkit-transform: translateY(-4px);
      transform: translateY(-4px);
    }
  }
  
  
  /* Responsive  */
  
  @media screen and (max-width: 640px) {
    .hotspot-bubble-article-popup .content {
      padding: 0 24px;
    }
    .hotspot-bubble-video iframe {
      height: 320px;
    }
  }
  