:root {


  --principal: #3ca01d;
}


/* gmap START */
/* #Wedding Location
================================================== */
.map-info-container {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  position: relative;
  margin-bottom: 50px;
}

/* .map-info-container::before {
  content: "";
  width: 1px;
  height: calc(100% + 59px);
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  background: var(--principal);
  clear: both;
} */

.map-info-container .info-wrapper {
  grid-column: 1/span 9;
  grid-row: 1;
  margin-top: 10%;
  z-index: 1;
}

.map-info-container .info-wrapper .location-info {
  background-color: var(--principal);
  border: 10px solid #fff;
  padding: 30px;
  display: inline-block;
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  -moz-transition: transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  -webkit-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}

.map-info-container .info-wrapper .location-info .neela-style {
  --offset: 9px;
  --border-size: 1px;
  color: #fff;
  position: relative;
  padding: 24px 12px;
}

.map-info-container .info-wrapper .location-info .neela-style .h-lines {
  border-top-color: rgba(255, 255, 255, 0.5);
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.map-info-container .info-wrapper .location-info .neela-style .v-lines {
  border-left-color: rgba(255, 255, 255, 0.5);
  border-right-color: rgba(255, 255, 255, 0.5);
}

.map-info-container .info-wrapper .location-info h4 {
  float: none;
  text-align: left;
  margin: 0 auto 25px;
  position: relative;
  color: #fff;
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 25pt;
}

.map-info-container .info-wrapper .location-info h4.has-icon {
  padding-left: 80px;
  padding-top: 10px;
}

.map-info-container .info-wrapper .location-info h4.has-icon i {
  position: absolute;
  left: 0px;
  top: 6px;
  font-size: 50pt;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}

.map-info-container .info-wrapper .location-info h4 small {
  display: block;
  font-weight: 400;
  font-size: 16pt;
}

.map-info-container .info-wrapper .location-info h5 {
  color: #fff;
  font-family: "Ovo", "Poppins", sans-serif;
  font-size: 15pt;
}

.map-info-container .info-wrapper .location-info .info-map-divider {
  position: relative;
  width: 100%;
  height: 19px;
  margin: 30px 0;
}

.map-info-container .info-wrapper .location-info p {
  margin: 0;
  font-style: italic;
  font-weight: 300;
}

.map-info-container .map-wrapper {
  grid-column: 6/-1;
  grid-row: 1;
  position: relative;
  display: inline-block;
  max-width: 100%;
}

/* .map-info-container .location-info.open {
  -webkit-transform: translateX(-25%);
  -moz-transform: translateX(-25%);
  -ms-transform: translateX(-25%);
  -o-transform: translateX(-25%);
  transform: translateX(-25%);
} */

#map_canvas {
  width: 100%;
  height: 100%;
  min-height: 520px;
  position: relative;
  background: #fff;
}

#map_canvas img {
  max-width: none;
}

.location-dot {
  font-size: 30px;
  color: var(--principal);
  cursor: pointer;
}

.marker {
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  background-color: #fff;
  color: var(--principal);
  border: 2px solid var(--principal);
  font-size: 16pt;
  line-height: 35px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.marker.featured>i {
  font-size: 23px;
  margin-top: 11px;
}

/* .marker.featured>i::before {
  font-size: 30px;
} */

.marker.featured {
  color: #fff;
  background-color: var(--principal);
  border: 2px solid #fff;
  width: 50px;
  height: 50px;
}

.marker::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 11px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 9px 0 9px;
  border-color: #ffffff transparent transparent transparent;
  line-height: 0px;
  _border-color: #ffffff #000000 #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color="#000000");
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.marker.featured::after {
  border-color: var(--principal) transparent transparent transparent;
  line-height: 0px;
  _border-color: var(--principal) #000000 #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color="#000000");
  left: 15px;
}

.marker::before {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 10px 0 10px;
  border-color: var(--principal) transparent transparent transparent;
  line-height: 0px;
  _border-color: var(--principal) #000000 #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color="#000000");
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.marker.featured::before {
  border-color: #fff transparent transparent transparent;
  line-height: 0px;
  _border-color: #fff #000000 #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color="#000000");
  left: 14px;
}

.marker:hover {
  background-color: var(--principal);
  border-color: #fff;
  color: #fff;
}

.marker.featured:hover {
  background-color: #fff;
  border-color: var(--principal);
  color: var(--principal);
}

.marker:hover::after {
  border-color: var(--principal) transparent transparent transparent;
}

.marker.featured:hover::after {
  border-color: #fff transparent transparent transparent;
}

.marker:hover::before {
  border-color: #ffffff transparent transparent transparent;
}

.marker.featured:hover::before {
  border-color: var(--principal) transparent transparent transparent;
}

.marker>div {
  margin: 0;
  padding: 0;
}

.infoWindow {
  width: 200px;
}


/* end Map css */