/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.pti_wrapper {
  position: relative;
  /* overflow: hidden; */
  display: inline-block;
  line-height: 0;
}
.pti_wrapper .pti_pin {
  position: absolute;
  z-index: 111;
  transform: translate(-50%, -50%);
  cursor: pointer;
  background-size: cover;
}
.pti_wrapper .pti_pin--default {
  width: 24px;
  height: 24px;
  border-radius: 15px;
  background-color: #C25B5B;
  border: 4px solid #fff;
}
.pti_wrapper .pti_pin--default .pti_pin__info{
  margin-top: 30px;
}

.pti_wrapper .pti_pin__info{
  position: relative;
  width: 100%;
  transition: opacity .35s cubic-bezier(0.215, 0.610, 0.355, 1);
  opacity: 0;
  visibility: hidden;
  margin-top: 10px;
}
.pti_wrapper .pti_pin:hover{
  z-index: 113;

}
.pti_wrapper .pti_pin.active{
  z-index: 112;

}
.pti_wrapper .pti_pin:hover .pti_pin__info,
.pti_wrapper .pti_pin.active .pti_pin__info{
  opacity: 1;
  visibility: visible;
}
.pti_wrapper .pti_pin .pti_pin__link{
  box-shadow: 0 1px 4px rgb(0 0 0 / 55%);
  left: 50%;
  min-width: 250px;
  transform: translateX(-50%);
  line-height: 1.5;
  background: #fff;
  color: #2A312E;
  position: absolute;
  padding: 15px;
  text-decoration: none;
  border-radius: 4px;
}