﻿.store-locator-map {
  height: 530px;
  width: 100%;
}

.store-locator-details {
  display: flex;
  margin: 20px 0px;
  border: 1px solid #ececec;
  overflow: hidden;
}

.store-locator-content {
  width: 35%;
  padding: 20px;
  color: #605d5c;
  max-height: 530px;
  overflow: auto;
  text-align: left;
}

.store-locator-map-container {
  width: 65%;
}

.store-locator-header {
  margin: 0px 0px 20px;
}

  .store-locator-header h2 {
    font-size: 18px;
  }

ul.locations {
  margin-bottom: 7px;
}

.store-locator-details .store-name {
  margin-bottom: 5px;
}

  .store-locator-details .store-name h3 {
    font-size: 16px;
    font-weight: 600;
  }

.store-locator-details .store-address p {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 400;
  background-repeat: no-repeat;
  padding-left: 20px;
  background-size: 18px;
}

.store-locator-details .address {
  background-image: url('../images/navigation-icon.svg')
}

.store-locator-details .phone {
  background-image: url('../images/phone-icon.svg')
}

.store-locator-details .working-day {
  background-image: url('../images/clock-regular.svg')
}

.store-locator-details .weekend {
  background-image: url('../images/clock-regular.svg')
}

.store-locator-details .store-address .weekend,
.store-locator-details .store-address .working-day {
  background-size: 13px;
  background-position: 3px center;
}

.store-locator-details .details-go-map-button-container {
  text-align: right;
}

.store-locator-details .details-go-map-button {
  width: auto;
  height: 35px;
  background-color: #009EE0;
  display: inline-block;
  color: #fff;
  padding: 0px 15px;
  font-size: 14px;
  line-height: 35px;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
  max-width: 90%;
  overflow: hidden;
  border-radius: 0.5rem;
}

  .store-locator-details .details-go-map-button span {
    display: inline-block;
  }

.store-locator-details .store-address:before {
  content: none;
}

.store-locator-details .gm-style-mtc button {
  color: #000 !important;
  background-color: #fff !important;
  border-radius: 0;
}

/*store locator search*/

.store-locator-title-button {
  display: flex;
  justify-content: space-between;
}

.store-locator-title {
  margin-top: 10px;
}

.store-locator-search-box .store-locator-search-box-button {
  display: inline-block;
  width: 40px;
  height: 38px;
  margin: 0 5px;
  border: none;
  background: #009EE0 url(../images/search-button.png) center no-repeat;
  vertical-align: middle;
  font-size: 0;
  outline: 1px solid transparent;
  transition: all 0.2s ease;
}

.store-locator-search-box .store-locator-close-box-button {
  width: 40px;
  height: 38px;
  margin: 0 5px;
  border: none;
  background: url(../images/close.png) center no-repeat;
  vertical-align: middle;
  font-size: 0;
  outline: 1px solid transparent;
  transition: all 0.2s ease;
  background-size: 38px;
}

.store-locator-search-box.show-search .store-locator-search-box-button {
  display: none;
}

.store-locator-search-box.show-search .store-locator-close-box-button {
  display: inline-block;
}

.store-locator-search {
  width: 100%;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
  outline: none;
  height: 44px;
  margin-top: 4px;
}

.store-locator-search-input {
  height: 30px;
}

.store-locator-search:focus,
.store-locator-search .store-locator-search-input:focus {
  border-color: #007bff;
}

.store-locator-search .store-locator-search-input {
  width: 100%;
  border: none;
}

.html-home-page .homepage-bottom-wrapper {
  display: initial !important;
}

.initial-map {
  width: 100%;
  height: 100%;
  cursor: pointer;
  object-fit: cover;
}

.initial-map-hover {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, .8);
  padding: 20px;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  color: #000;
}

.store-locator-map {
  position: relative;
}

  .store-locator-map:hover .initial-map-hover {
    display: block;
  }

@media(max-width: 1024px) {
  .store-locator-section {
    padding: 10px;
    width: 90%;
    margin: auto;
  }

  .store-locator-details {
    flex-direction: column-reverse;
  }

  .store-locator-content,
  .store-locator-map-container {
    width: 100%;
  }

  .initial-map-hover {
    display: block;
  }
}