/*
 *
 *  // Map Markers CSS
 *
 */
.KBmap__mapContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.KBmap__mapHolder {
  display: inline-block;
  position: relative; }
  .KBmap__mapHolder svg {
    max-width: 100%; }
.KBmap__mapHolder img{
  max-width: 100%;
  width: 100%;
}

@-webkit-keyframes mapMarkerAnimation {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px); }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); } }

@keyframes mapMarkerAnimation {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px); }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); } }

.KBmap__marker {
  position: absolute;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  top: 42%;
  left: 69%;
  z-index: 1; }
  .KBmap__marker span{
    background: url("../img/dot.png") no-repeat;
    width: 23px;
    height: 23px;
    position: relative;
    z-index: 3;
    display: block;
    cursor: pointer;
    background-position: center center;
  }
  .KBmap__marker.show-img-ch span{
    background: url("../img/dot-active.png") no-repeat;
    background-position: center center;
  }
  .KBmap__marker.current {
    z-index: 2; }
  .KBmap__marker img {
    cursor: pointer;
    position: relative;
    z-index: 3; }
    .KBmap__marker img:hover {
      -webkit-animation-name: mapMarkerAnimation;
              animation-name: mapMarkerAnimation;
      -webkit-animation-duration: .0s;
              animation-duration: .0s;
      -webkit-animation-iteration-count: infinite;
              animation-iteration-count: infinite; }

.KBmap__markerContent {
  width: 575px;
  background-color: #ffffff;
  display: inline-block;
  padding: 15px 25px 30px;
  padding-bottom: 35px;
  -webkit-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: 49%;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
  z-index: 1; }
  .KBmap__markerContent .clspopup-content{
    display: table;
    width: 100%;
  }

  .KBmap__markerContent .KBmap__markerTitle {
        margin-top: 0px;
      margin-bottom: .5em;
      display: table-cell;
      width: 45%;
      vertical-align: middle;
      font-size: 40px;
      font-family: vogueregular;
      color: #B69641;
  }

.KBmap__markerContentItem {
  display: table-cell;
    width: 55%;
}
.KBmap__markerContentItem img{
  position: relative;
  left: 60px;
}

.KBmap__markerContentItem p{
  margin-bottom: .5em;
  margin-top: 0px;
}

.KBmap__markerClose {
  /* position: absolute;
  top: 10px;
  right: 10px; */
  cursor: pointer;
  color: #231f20; }
  .KBmap__markerClose img{
    width: 23px;
  }
.KBmap_cords {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: #e7b786;
  border: 2px solid #56270c;
  padding: 2px 5px;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .KBmap__markerContent{
    padding: 15px 15px 20px;
  }
  /* .KBmap__markerContent .KBmap__markerTitle{
    font-size: 22px;
  } */
  .KBmap__markerContentItem img{
    position: static;
  }
}