/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
 
 .customer-map-wrap {
  color: #333;
  overflow: hidden;
  /*border-radius: 15px;*/
  position: relative;
}
.customer-map-wrap .customer-locator-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  border: 14px solid transparent;
  background: rgba(0, 32, 144, 0.85);
  width: 100%;
  color: #fff;
  max-width: 200px;
  border-radius: 6px;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
}
.customer-map-wrap .customer-locator-nav .cmap-wrap-box {
  position: relative;
}
.customer-map-wrap .customer-locator-nav .cst-map-info {
  padding: 0;
  margin: 0;
  max-height: 999px;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}
.customer-map-wrap .customer-locator-nav .cst-map-info p {
  margin-bottom: 10px;
}
.customer-map-wrap .customer-locator-nav .cst-map-info .cst-map-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2em;
  margin: 5px 0 15px;
  max-width: 225px;
}
.customer-map-wrap .customer-locator-nav .cst-map-info .cst-map-title + .cst-map-text {
  margin-top: 25px;
}
.customer-map-wrap .customer-locator-nav input.input-customer-search-locator {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  padding: 0 10px;
  padding-right: 40px;
  color: #6a7585;
  height: 30px;
  line-height: 30px;
  border: 0;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
}
.customer-map-wrap .customer-locator-nav .btn-customer-map-search {
  display: block;
  width: 40px;
  height: auto;
  text-align: center;
  background: #30bf9b;
  color: #fff;
  font-size: 14px;
  line-height: 28px;
  position: absolute;
  border: 0;
  top: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  z-index: 2;
}
.customer-map-wrap .customer-locator-nav .btn-customer-map-search:hover {
  background-color: #24a181;
  color: #fff;
}
.customer-map-wrap .customer-locator-nav .btn-customer-map-reset {
  display: block;
  width: 30px;
  height: auto;
  text-align: center;
  background: #f1634e;
  color: #fff;
  font-size: 14px;
  line-height: 28px;
  position: absolute;
  border: 0;
  top: 0;
  bottom: 0;
  right: 0;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  overflow: hidden;
  z-index: 1;
}
.customer-map-wrap .customer-locator-nav .btn-customer-map-reset:hover {
  background-color: #e71743;
  color: #fff;
}
.customer-map-wrap.customer-map-xs .customer-locator-nav {
  top: 0;
  left: 0;
  width: 120px;
  transform: translate(0, 0);
  border-width: 8px;
}
.customer-map-wrap.customer-map-xs .customer-locator-nav .btn-customer-map-search {
  opacity: 0;
  width: 0;
  padding-left: 0;
  padding-right: 0;
}
.customer-map-wrap.customer-map-xs .customer-locator-nav .cst-map-info {
  max-height: 0;
  padding: 0;
}

/* Custom */

.customer-map-wrap.cmap-wd .customer-locator-nav {
  max-width: 250px;
}

.customer-map-wrap.cmap-nowrap .customer-locator-nav .cst-map-info .cst-map-text {
  white-space: nowrap;
}

.customer-map-wrap.hg-100 {
  height: 100%;
}

.customer-map-wrap.hg-100 .map-box {
  height: 100%;
  min-height: 300px;
  padding: 0;
}

@media(min-width: 992px) {
  .customer-map-wrap.wd-50vw {
    width: calc(50vw - 25px);
  }
}