/*
 *
 *  // 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::before {
      opacity: 0;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      position: absolute;
      top: -0px;
      left: -0px;
      right: 0;
      bottom: 0;
      content: "";
      height: 100%;
      width: 100%;
      border: 8px solid rgba(100, 200, 1, 0.6);
      border-radius: 100%;
      -webkit-animation-name: ripple;
              animation-name: ripple;
      -webkit-animation-duration: 2.5s;
              animation-duration: 2.5s;
      -webkit-animation-delay: 0.5s;
              animation-delay: 0.5s;
      -webkit-animation-iteration-count: infinite;
              animation-iteration-count: infinite;
      -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
              animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
      z-index: -1;
    }
.KBmap__markerContent {
  width: 280px;
  background-color: white;
  display: inline-block;
  border-radius: 0px;
  padding: 10px 30px 10px 30px;
  -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 .KBmap__markerTitle {
        margin-top: 0px;
    margin-bottom: .5em; 
  }
  .main-kbmarker-title{
    color: #66CC00;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 24px;
    padding-top: 10px;
  }

  .main-kbmarker-content{
    color: #515253;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

.KBmap__markerContentItem {
}

.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: #e7b786;
  border: 2px solid #56270c;
  padding: 2px 5px;
  pointer-events: none;
}

@-webkit-keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(2.5, 2.5, 1);
  }
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0; 
    transform: scale3d(2.5, 2.5, 1);
  }
}

/* Flash class and keyframe animation */
.flashit{
	-webkit-animation: flash linear 0.5s infinite;
	animation: flash linear .5s infinite;
}
@-webkit-keyframes flash {
	0% { opacity: 1; } 
	50% { opacity: .1; } 
	100% { opacity: 1; }
}
@keyframes flash {
	0% { opacity: 1; } 
	50% { opacity: .1; } 
	100% { opacity: 1; }
}