.fpBox {
  width:auto;
  height:auto;
  position:absolute;
  right:20px;
  background:transparent;
  align-items:center;
  justify-content:center;
  text-align:center;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  border: none !important;
  box-shadow: none !important;
  z-index: 1000;
}

.fpBox.anchorright {
  top: 50%;
  transform: translateY(-50%);
}
.fpBox.anchorright.hide {
  transform: translateX(100%) translateX(20px) translateY(-50%);
}
.fpBox.anchorbottomright {
  bottom: 70px;
}
.fpBox.anchorbottomright.hide {
  transform: translateX(100%) translateX(20px);
}

.fpClose {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  background: #ffffff;
  color: #11253d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  font-size: 14px;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.fpClose:hover {
  transform: scale(1.1);
}
.fpHeader {
  display: block;
}
.fpName {
  font-size: 25px;
  font-weight: 600;
  color: black;
  letter-spacing: 1px;
  text-shadow: white 0px 0px 3px;
  text-transform: uppercase;
  float: left;
  margin-right: 4px;
}
.fpSwitchIcon {
  width: 25px;
  height: auto;
  float: right;
  cursor:pointer;
  pointer-events: all;
  margin-left: 10px;
}
@media only screen and (max-height: 640px)  {
  .fpName {
    font-size: 18px;
  }
}
.fpImgBox {
  display: inline-block;
  position: relative;
}
.fpImg {
  max-height: 70%;
}
.fpSpot {
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  cursor:pointer;
  pointer-events: all;
  /* filter: hue-rotate(211deg) brightness(10); */
  border-radius: 100%;
  background-color: #ffff00;
  display: block;
  width: 16px;
  height: 16px;
}
.fpSpotCone {
  position: absolute;
  transform: translate(-50%, -50%);
  filter: hue-rotate(211deg) brightness(10);
}
