/*
 *
 *  // 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.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: .5s;
              animation-duration: .5s;
      -webkit-animation-iteration-count: infinite;
              animation-iteration-count: infinite; 
              }

.KBmap__markerContent {
  width: 10em;
  height:1.7em;
  background-color: #cbcbcb;
  display: inline-block;
  border-radius: 10px;
  padding: 2px 0 0 0;
  position: absolute;
  -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;
  margin-bottom: 1.4em;
  text-align: center;
  }
  
  
.KBmap__markerContent .KBmap__markerTitle {
        margin-top: 0px;
    margin-bottom: .5em; 
    font-size: 1.2em;
}


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

/* 關閉視窗 Ｘ */
.KBmap__markerClose {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: #231f20; 
  }

.KBmap_cords {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: #dddddd;
  border: 2px solid #c2c2c2;
  padding: 2px 5px;
  pointer-events: none;
}