/*
 * Copyright (c) 2019-present Cloudpano, LLC
 * All rights reserved.
 *
 * This source code is licensed under the Cloudpano, LLC
 * license found in the LICENSE file in the root directory
 * of this source tree.
 */
.cp-tour-hotspot-container {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
}
.cp-tour-hotspot-container .cp-tour-hotspot-title {
  margin-top: -5px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
}
.cp-tour-hotspot-container .cp-tour-hotspot-title span {
  display: block;
}
.cp-tour-hotspot-container .cp-tour-hotspot-body {
  margin-top: 5px;
  line-height: 20px;
}
.cp-tour-hotspot-container .cp-tour-hotspot-link {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.cp-tour-hotspot-container .cp-tour-hotspot-link:hover {
  text-decoration: none;
}
.cp-tour-hotspot-container.cp-tour-hotspot-icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  border-radius: 50%;
  text-align: center;
  border: 2px solid #fff;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.cp-tour-hotspot-container.cp-tour-hotspot-icon.is-active,
.cp-tour-hotspot-container.cp-tour-hotspot-icon:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.cp-tour-hotspot-container.cp-tour-hotspot-icon .icon-link-alt:before {
  content: '\f0c1';
}
.cp-tour-hotspot-container.cp-tour-hotspot-icon .icon-info-alt:before {
  content: '\f05a';
}
.cp-tour-hotspot-container.cp-tour-hotspot-icon .icon-play-alt:before {
  content: '\f04b';
}
.cp-tour-hotspot-container.cp-tour-hotspot-icon .icon-shopping-bag:before {
  content: '\f290';
}
.cp-tour-hotspot-container.cp-tour-hotspot-icon.is-info,
.cp-tour-hotspot-container.cp-tour-hotspot-icon.is-play,
.cp-tour-hotspot-container.cp-tour-hotspot-icon.is-link,
.cp-tour-hotspot-container.cp-tour-hotspot-icon.is-shopping {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.cp-tour-hotspot-container.is-label-on-hover .cp-tour-hotspot-title {
  display: none;
}
.cp-tour-hotspot-container.is-label-on-hover:hover .cp-tour-hotspot-title {
  display: block;
}
.cp-tour-hotspot-container .cp-tour-hotspot-title {
  text-transform: none;
  font-weight: 500;
}
.cp-tour-hotspot-container.is-label .cp-tour-hotspot-title,
.cp-tour-hotspot-container.is-label .cp-tour-hotspot-body {
  text-transform: none;
}
.cp-tour-hotspot-container.is-label .cp-tour-hotspot-body {
  font-weight: 300;
  font-size: 14px;
}
.cp-tour-hotspot-container.is-label .cp-tour-hotspot-link {
  font-size: 14px;
}
.cp-tour-hotspot-container .cp-tour-hotspot-title span {
  font-size: 14px;
}
.cp-tour-hotspot-container.is-text-hotspot .cp-tour-hotspot-title {
  font-size: 18px;
  font-weight: 700;
}
.cp-tour-hotspot-container.is-text-hotspot .cp-tour-hotspot-body {
  font-size: 16px;
}
.cp-tour-hotspot-container.is-text-hotspot.is-label .cp-tour-hotspot-title {
  font-size: 16px;
  font-weight: 600;
}
.cp-tour-hotspot-container.is-text-hotspot.is-label .cp-tour-hotspot-body {
  font-size: 14px;
}

/* --- CAMBIOS PARA TARJETITAS DE CLOUDPANO --- */
.cloudpano-info-card, 
.info-hotspot-popup, 
.modal-content {
  margin: 0 auto !important;          /* Centrar horizontalmente */
  position: relative !important;
  top: 0 !important;                  /* Pegada al borde superior */
  left: 50% !important;
  transform: translateX(-50%) !important; /* Centrar en el eje X */
  box-sizing: border-box;
  text-align: center !important;      /* Contenido centrado */
}



/* Captura cualquier popup modal en CloudPano */
div[class*="hotspot"], 
div[class*="info"], 
div[class*="modal"] {
  margin: 0 auto !important;
  position: relative !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  text-align: center !important;
}

