.hotspots-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  text-align: center;
  color: #fff;
  font-size: 16px;
  transform: translateX(-50%);
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms cubic-bezier(0.2, 0.5, 0.34, 1);
  width: 80%;
  padding: 10px;
}
.hotspots-label:before {
  display: none!important;
}
.hotspots-label.is-visible {
  opacity: 1;
  visibility: visible;
}
.hotspot:before, .hotspots-label:before {
  content: "";
  display: block;
  background-color: transparent;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 5px;
  top: 5px;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOC4xLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxMS42IDExLjYiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDExLjYgMTEuNiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8bGluZSBmaWxsPSJub25lIiBzdHJva2U9IiNGRkZGRkYiIHN0cm9rZS13aWR0aD0iMC41NjI1IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHgxPSI1LjgiIHkxPSIxMS42IiB4Mj0iNS44IiB5Mj0iMCIvPg0KPGxpbmUgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjRkZGRkZGIiBzdHJva2Utd2lkdGg9IjAuNTYyNSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiB4MT0iMCIgeTE9IjUuOCIgeDI9IjExLjYiIHkyPSI1LjgiLz4NCjwvc3ZnPg0K");
  background-size: 75%;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 150ms cubic-bezier(0.2, 0.5, 0.34, 1);
}
.hotspot {
  padding: 20px;
  height: 40px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.45);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  line-height: 40px;
  border-radius: 0px;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  opacity: 0;
  width: 0;
  transition: opacity 650ms ease-in, width 350ms linear;
  text-indent: -9999em;
  user-select: none;
}
.hotspot.is-visible {
  opacity: 1;
}
.hotspot.is-active {
  padding: 0 20px 0 50px;
  text-indent: 0;
  width: auto;
  height: auto;
}
@media screen and (min-width: 900px) {
  .hotspot.is-active {
    z-index: 1;
  }
}

.hotspot.is-active:before {
  transform: rotate(45deg);
}
.image {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}
.image:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 50%;
}
.contain {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 901px) {
  .hotspots-label {
  display: none;

  }
}
@media screen and (max-width: 900px) {
  .hotspots-label {
  display: flex;
    width: 80%;
    height: 80%;
    background-color: black;
    justify-content: center;
    position: relative;
    flex-direction: column;
    transform: translateY(15%) translateX(-50%);
  }
}
@media screen and (max-width: 900px) {
  .hotspots-label:before {
  display: block;
    top: 4px;
    left: auto;
    right: 4px;
    transform: rotate(45deg);
    cursor: pointer;
  }
}
@media screen and (max-width: 900px) {
.hotspots-label strong {
  display: block;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 900px) {
.hotspots-label span {
  display: block;
  }
}
.hotspot-box {
  max-width: 200px;
  padding: 0 0 10px 0;
  color: white;
}
@media screen and (max-width: 900px) {
.hotspot-box {
  display: none;
  }
}
.hotspot-box-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  padding: 10px 0;
}
.hotspot-box-text {
  font-size: 12px;
  line-height: 1.4;
}
@media screen and (max-width: 900px) {
.hotspot-box-text {
  display: none;
  }
}