.open-user-map .oum-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.open-user-map .oum-tabs .nav-item {
  padding: 3px 15px;
  border-bottom: 3px solid transparent;
  color: inherit;
  cursor: pointer;
}

.open-user-map .oum-tabs .nav-item.active {
  font-weight: bold;
  border-color: black;
  color: black;
}

.open-user-map .oum-tabs .nav-item:hover {
  border-color: black;
}

.open-user-map .map-wrap {
  position: relative;
  padding-top: 65%;
}

.open-user-map .map-wrap .map {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}

.open-user-map .map-wrap .map img {
  width: 100%;
  height: auto;
}

.open-user-map .map-wrap .leaflet-map {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}

.open-user-map .map-wrap .leaflet-map a {
  text-decoration: none !important;
}

.open-user-map .map-wrap .leaflet-map .leaflet-popup-content-wrapper {
  border-radius: 0;
}

.open-user-map .map-wrap .leaflet-map .leaflet-popup-content-wrapper .leaflet-popup-content {
  margin: 0;
  min-width: 250px;
}

.open-user-map .map-wrap .leaflet-map .leaflet-popup-content-wrapper .leaflet-popup-content .oum_location_image {
  padding-top: 50%;
  background-size: cover;
  background-position: top center;
}

.open-user-map .map-wrap .leaflet-map .leaflet-popup-content-wrapper .leaflet-popup-content .oum_location_text {
  padding: 15px;
}

.open-user-map .map-wrap .leaflet-map .leaflet-popup-content-wrapper .leaflet-popup-content .oum_location_text .oum_location_address {
  margin-bottom: 10px;
  color: #666;
}

.open-user-map .map-wrap .leaflet-map .leaflet-popup-content-wrapper .leaflet-popup-content .oum_location_text .oum_location_name {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.open-user-map .map-wrap .leaflet-map.map-style_Custom1 .leaflet-tile-pane .leaflet-layer:first-of-type .leaflet-tile {
  -webkit-filter: saturate(3);
          filter: saturate(3);
}

.open-user-map .map-wrap .leaflet-map.map-style_Custom2 .leaflet-tile-pane .leaflet-layer:first-of-type .leaflet-tile {
  -webkit-filter: sepia(1) invert(0) saturate(28) hue-rotate(-53deg);
          filter: sepia(1) invert(0) saturate(28) hue-rotate(-53deg);
}

.open-user-map .map-wrap .leaflet-map.map-style_Custom2 .leaflet-tile-pane .leaflet-layer:nth-child(2) .leaflet-tile {
  -webkit-filter: sepia(0) contrast(1) invert(1) brightness(2);
          filter: sepia(0) contrast(1) invert(1) brightness(2);
}

.open-user-map .map-wrap .leaflet-map.map-style_Custom3 .leaflet-tile-pane .leaflet-layer:first-of-type .leaflet-tile {
  -webkit-filter: sepia(1) invert(1) saturate(100) brightness(1) hue-rotate(-300deg);
          filter: sepia(1) invert(1) saturate(100) brightness(1) hue-rotate(-300deg);
}

.open-user-map .map-wrap .leaflet-map.map-style_Custom3 .leaflet-tile-pane .leaflet-layer:nth-child(2) .leaflet-tile {
  -webkit-filter: sepia(0) contrast(1) invert(1) brightness(2);
          filter: sepia(0) contrast(1) invert(1) brightness(2);
}

.open-user-map .map-wrap #open-add-location-overlay {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 9999;
  background: #2271b1;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  text-align: center;
  height: 50px;
  cursor: pointer;
  padding: 0 11px;
  width: 50px;
  overflow: hidden;
  -webkit-transition: width 0.1s ease-in;
  transition: width 0.1s ease-in;
}

.open-user-map .map-wrap #open-add-location-overlay span.btn_icon {
  font-family: sans-serif;
  font-size: 46px;
  line-height: 1;
  top: -3px;
  position: relative;
}

.open-user-map .map-wrap #open-add-location-overlay span.btn_text {
  font-size: 16px;
  line-height: 1;
  padding-left: 14px;
  width: 115px;
  text-align: left;
  word-break: keep-all;
  opacity: 0;
}

.open-user-map .map-wrap #open-add-location-overlay:hover, .open-user-map .map-wrap #open-add-location-overlay:active {
  background: #1a5686;
  width: 158px;
}

.open-user-map .map-wrap #open-add-location-overlay:hover span.btn_text, .open-user-map .map-wrap #open-add-location-overlay:active span.btn_text {
  opacity: 1;
  -webkit-transition: opacity 0.1s ease-in;
  transition: opacity 0.1s ease-in;
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

.open-user-map .add-location {
  display: none;
  position: fixed;
  z-index: 99999;
  background: radial-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.open-user-map .add-location .location-overlay-content {
  width: 700px;
  max-width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  color: #333;
  padding: 33px 43px;
  border-radius: 5px;
  max-height: 100%;
  overflow: auto;
}

.open-user-map .add-location .location-overlay-content h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.open-user-map .add-location .location-overlay-content #oum_add_location input[type=text],
.open-user-map .add-location .location-overlay-content #oum_add_location textarea {
  margin: 0 0 15px;
  font-size: 16px;
  border: 1px solid #888;
  border-radius: 2px;
  color: #333;
  background: #fff;
  outline: none;
  line-height: 1;
  padding: 13px;
}

.open-user-map .add-location .location-overlay-content #oum_add_location #oum_location_title {
  width: 100%;
}

.open-user-map .add-location .location-overlay-content #oum_add_location .map-wrap {
  position: relative;
  padding-top: 50%;
  margin: 0 2px 15px;
}

.open-user-map .add-location .location-overlay-content #oum_add_location .map-wrap #mapGetLocation {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.open-user-map .add-location .location-overlay-content #oum_add_location .map-wrap #mapGetLocation input.glass {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  margin: 0 !important;
  outline: none !important;
  font-size: 14px;
}

.open-user-map .add-location .location-overlay-content #oum_add_location .map-wrap #mapGetLocation.map-style_Custom1 .leaflet-tile-pane .leaflet-layer:first-of-type .leaflet-tile {
  -webkit-filter: saturate(3);
          filter: saturate(3);
}

.open-user-map .add-location .location-overlay-content #oum_add_location .map-wrap #mapGetLocation.map-style_Custom2 .leaflet-tile-pane .leaflet-layer:first-of-type .leaflet-tile {
  -webkit-filter: sepia(1) invert(0) saturate(28) hue-rotate(-53deg);
          filter: sepia(1) invert(0) saturate(28) hue-rotate(-53deg);
}

.open-user-map .add-location .location-overlay-content #oum_add_location .map-wrap #mapGetLocation.map-style_Custom2 .leaflet-tile-pane .leaflet-layer:nth-child(2) .leaflet-tile {
  -webkit-filter: sepia(0) contrast(1) invert(1) brightness(2);
          filter: sepia(0) contrast(1) invert(1) brightness(2);
}

.open-user-map .add-location .location-overlay-content #oum_add_location .map-wrap #mapGetLocation.map-style_Custom3 .leaflet-tile-pane .leaflet-layer:first-of-type .leaflet-tile {
  -webkit-filter: sepia(1) invert(1) saturate(100) brightness(1) hue-rotate(-300deg);
          filter: sepia(1) invert(1) saturate(100) brightness(1) hue-rotate(-300deg);
}

.open-user-map .add-location .location-overlay-content #oum_add_location .map-wrap #mapGetLocation.map-style_Custom3 .leaflet-tile-pane .leaflet-layer:nth-child(2) .leaflet-tile {
  -webkit-filter: sepia(0) contrast(1) invert(1) brightness(2);
          filter: sepia(0) contrast(1) invert(1) brightness(2);
}

.open-user-map .add-location .location-overlay-content #oum_add_location #oum_location_address {
  width: 100%;
}

.open-user-map .add-location .location-overlay-content #oum_add_location #oum_location_text {
  width: 100%;
  height: 100px;
  resize: none;
}

.open-user-map .add-location .location-overlay-content #oum_add_location label {
  font-size: 16px;
  margin-left: 10px;
  margin-right: 10px;
}

.open-user-map .add-location .location-overlay-content #oum_add_location #oum_location_image {
  color: #2271b1;
}

.open-user-map .add-location .location-overlay-content #oum_add_location input[type=file]::file-selector-button {
  padding: 15px;
  line-height: 1;
  border: 1px solid #2271b1;
  color: #2271b1;
  cursor: pointer;
}

.open-user-map .add-location .location-overlay-content #oum_add_location input[type=submit] {
  font-size: 19px;
  margin: 40px 0 10px;
  background-color: #2271b1;
  padding: 15px 30px;
  line-height: 1;
  border: none;
  color: white;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.open-user-map .add-location .location-overlay-content #oum_add_location input[type=submit]:hover, .open-user-map .add-location .location-overlay-content #oum_add_location input[type=submit]:active {
  color: white;
  background-color: #1a5686;
}

.open-user-map .add-location .location-overlay-content #oum_add_location_error {
  color: red;
}

.open-user-map .add-location .location-overlay-content #oum_add_location_thankyou {
  color: #fff;
  text-align: center;
}

.open-user-map .add-location .location-overlay-content #oum_add_location_thankyou h3 {
  color: #2271b1;
  margin-bottom: 20px;
}

.open-user-map .add-location .location-overlay-content #oum_add_location_thankyou button {
  margin: 30px 0 0;
  background-color: #2271b1;
  padding: 15px;
  line-height: 1;
  border: none;
  color: white;
}

.open-user-map .add-location .location-overlay-content #oum_add_location_thankyou button:hover, .open-user-map .add-location .location-overlay-content #oum_add_location_thankyou button:active {
  color: white;
  background-color: #1a5686;
}

.open-user-map .add-location #close-add-location-overlay {
  color: #fff;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 50px;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
}

.open-user-map .add-location #close-add-location-overlay:hover {
  color: #2271b1;
}

.open-user-map .add-location.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/*# sourceMappingURL=frontend.css.map */