#map {
  height: 100%;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Styling for autocomplete search bar */
#pac-card {
  background-color: #fff;
  /* border-radius: 2px 0 0 2px; */
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); */
  box-sizing: border-box;
  font-family: Roboto;
  margin: 10px px 0 0;
  -moz-box-sizing: border-box;
  outline: none;
  width: 100%;
  top: 37px !important;
  max-width: 547px;
  opacity: 0;
}

.homePage {
  padding: 150px 0 190px;
}
#searchContainer {
  padding: 0 0 150px;
}
#searchContainer #pac-card {
  opacity: 1;
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
}

.mapContainerInner {
  height: 800px;
  position: relative;
}
#pac-container {
  /* padding-top: 12px; */
  /* padding-bottom: 12px; */
  /* margin-right: 12px; */
  position: relative;
}
#pac-container button {
  position: absolute;
  padding: 0;
  right: 0;
  top: 2px;
  outline: none;
  color: #003b75;
}
#pac-input,
#edit-map-location-input {
  background-color: #fff;
  font-family: Roboto;
  font-size: 15px;
  font-weight: normal;
  padding: 0 11px 0 0px;
  text-overflow: ellipsis;
  width: 100%;
  border: none;
  /* border-bottom: 1px solid #043B75; */
  color: #043b75;
  font-size: 22px;
  font-family: 'Raptor V3';
}


#pac-input:focus,
#edit-map-location-input:focus {
  border-color: #4d90fe;
}

#title {
  color: #fff;
  background-color: #003b75;
  font-size: 18px;
  font-weight: 400;
  padding: 6px 12px;
}

.hidden {
  display: none;
}
.customRadio {
  position: relative;
  line-height: 0;
}
.customRadio input {
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  opacity: 0;
  z-index: 1;
  margin: 0;
}
.customRadio label {
  position: relative;
  padding-left: 38px;
  font-size: 18px !important;
  color: #043b75 !important;
  font-weight: 500;
  display: flex;
  line-height: 1;
}
.customRadio label::before {
  border: 1px solid #043b75;
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  top: -2px;
}
.customRadio input:checked + label::after {
  background-color: #043b75;
  border: 1px solid #043b75;
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  top: -2px;
}

/* Styling for an info pane that slides out from the left.
  * Hidden by default. */
#panel {
  /* height: 730px; */
  width: 485px;
  background-color: white;
  position: absolute;
  z-index: 1;
  overflow-x: hidden;
  /* transition: all .2s ease-out; */
  top: 37px;
  left: 37px;
  /* padding: 24px; */
  scroll-behavior: smooth;
  overflow-y: auto;
  max-height: 650px;
}

.open {
  width: 485px;
}

.telephone {
  margin-bottom: 15px;
}

.opening_hours {
  margin-bottom: 15px;
}

.place {
  /* font-family: 'Raptor V3'; */
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
  /*padding-left: 18px;
  padding-right: 18px;*/
}

.address {
  margin: 0;
}

.distanceText {
  color: silver;
  font-family: 'open sans', arial, sans-serif;
  font-size: 1em;
  font-weight: 400;
  margin-block-start: 0.25em;
  padding-left: 18px;
  padding-right: 18px;
}

.each_place {
  transition: all 0.4s ease-in-out;
  padding: 30px 24px 30px 35px;
  border-bottom: 1px solid #c5d8af;
  cursor: pointer;
}

.each_place.active {
  background-color: rgba(186, 202, 216, 0.2);
}

.accordion_content {
  height: 0;
  overflow: hidden;
}

.each_place.active .accordion_content.show {
  height: auto;
  padding-left: 49px;
  padding-right: 24px;
  padding-top: 34px;
}

.filter_block ul {
  list-style: none;
}

.filter_block ul li {
  margin-bottom: 10px;
}

.filter_block ul li:last-child {
  margin-bottom: 0;
}

.checkboxCustom {
  position: relative;
  z-index: 0;
  padding-left: 30px;
  padding-right: 0 !important;
  cursor: pointer;
  display: block;
  width: auto !important;
  margin-right: 30px;
}
.checkboxCustom input {
  display: none;
}
.checkboxCustom input:checked + em {
  background-color: #1b1464;
  border-color: #1b1464;
}
.checkboxCustom em {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #b3b3b3;
  background-color: #ffffff;
  display: block;
}

.radioCustom {
  position: relative;
  z-index: 0;
  padding-left: 30px;
  cursor: pointer;
  display: block;
}
.radioCustom input {
  display: none;
}
.radioCustom input:checked + em {
  border-color: #1b1464;
}
.radioCustom input:checked + em:before {
  opacity: 1;
}
.radioCustom em {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #b3b3b3;
  background-color: #ffffff;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.radioCustom em:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #1b1464;
  opacity: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}

#panel .accordion_heading {
  display: flex;
}
#panel .accordion_heading .imgBlock {
  width: 25px;
}
#panel .accordion_heading .contentBlock {
  width: calc(100% - 25px);
  padding-left: 23px;
}
#panel .accordion_heading .contentBlock p {
  font-size: 18px;
}
#panel .accordion_content p {
  font-size: 18px;
  word-break: break-word;
}
#panel .accordion_content .opening_hours {
  margin-bottom: 35px;
  margin-left: 0;
}
#panel .accordion_content .opening_hours li {
  font-size: 18px;
  color: #043b75;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.4;
}
#panel .accordion_content .opening_hours li:before {
  content: normal;
}
#panel .accordion_content .opening_hours li span:first-child {
  width: 100px;
  display: inline-block;
}
#panel .accordion_content .opening_hours li span:nth-child(2) {
  display: block;
  margin-left: 107px;
}

#panel .accordion_content .details-button, #panel .accordion_heading .details-button {
  background-color: #c5d8af;
  font-size: 15px;
  color: #043b75;
  font-weight: 600;
  padding: 12px 32px 8px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
#panel::-webkit-scrollbar {
  width: 2px;
  height: 5px;
  border-radius: 10px;
}
#panel::-webkit-scrollbar-track {
  background: #e0dada;
  border-radius: 10px;
}
#panel::-webkit-scrollbar-thumb {
  background: #043b75;
  border-radius: 10px;
}
#panel::-webkit-scrollbar-thumb:hover {
  background: #043b75;
  border-radius: 10px;
}

p.no-result {
  padding: 24px 24px 24px 35px;
}
.customDropdown {
  padding: 25px 24px 25px 35px;
}
.customDropdown .filterBtn {
  width: 120px;
  padding: 0;
  font-size: 20px;
  color: #043b75;
  font-weight: 500;
  background-image: url(../images/polygon.svg);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 12px;
  padding-right: 24px;
  outline: none;
  background-color: transparent;
  border: none;
}
.customDropdown .filterBtn.show {
  background-image: url(../images/polygon-top.svg);
}
.dropdownShow {
  display: none;
}
.dropdownShow.show {
  display: block;
}
.dropdownShow p {
  font-size: 18px;
  color: #043b75;
  font-weight: 700;
  margin: 34px 0;
}

.gm-svpc {
  display: none;
}
/* button#currentLoc { */
#currentLoc {
  padding: 0;
  position: absolute;
  bottom: 110px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  box-shadow: rgb(0 0 0 / 30%) 0px 1px 4px -1px;
  border-radius: 2px;
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  width: 40px;
  height: 42px;
  color: #666;
  outline: none;
}
/* button#currentLoc:hover{ */
#currentLoc:hover {
  color: #000;
}

.catgLocation {
  display: flex;
  padding: 0 0 10px;
}
.catgLocation span {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  /* background-color: #E1BBBD; */
  display: block;
  margin-right: 7px;
  position: relative;
}
.catgLocation span:last-child {
  margin-right: 0px;
}
.catgLocation span i {
  display: none;
  background: #043b75;
  padding: 20px 20px;
  min-width: 121px;
  max-width: 261px;
  position: absolute;
  bottom: 163%;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 14px;
  font-weight: 500;
  color: #c5d8af;
  font-style: normal;
  line-height: 1.36;
}
.catgLocation span i::before {
  background-image: url(../images/polygon.svg);
  background-position: center 100%;
  background-repeat: no-repeat;
  background-size: 15px;
  content: "";
  display: block;
  width: 15px;
  bottom: 0;
  height: 15px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 10px);
}
.catgLocation span:hover i {
  display: block;
}

.customRadio label .catgLocation {
  padding: 0 0 0px 20px;
}
.customRadio label .catgLocation span {
  top: 3px;
}

@media screen and (max-width: 1600px) {
  #panel {
    left: 15px;
  }
  #panel .accordion_heading .contentBlock {
    padding-left: 15px;
  }
  .place {
    font-size: 1em;
  }
  /* .customDropdown {
    padding: 24px 15px 10px;
  } */
  /* .each_place {
    padding: 30px 35px;
  } */
  .each_place.active .accordion_content.show {
    padding-left: 39px;
  }
  #panel .accordion_heading .contentBlock p,
  p.no-result {
    font-size: 16px;
  }
  #panel .accordion_content p,
  #panel .accordion_content .opening_hours li {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .homePage {
    padding: 150px 0 80px;
  }
  #searchContainer {
    padding: 0 0 74px;
  }
  #pac-input {
    font-size: 16px;
  }
  #edit-map-location-input {
    font-size: 16px;
  }
  #panel {
    position: relative;
    left: 0;
    top: 0;
    padding-top: 20px;
    width: 100%;
    overflow-y: hidden;
    max-height: 100%;
  }
  #mapContainer {
    display: flex;
    flex-direction: column-reverse;
  }
  .mapContainerInner {
    height: 529px;
  }
  .place {
    width: 80%;
  }
  .gmnoprint {
    bottom: initial !important;
    top: 0 !important;
  }
  /* button#currentLoc{ */
  #currentLoc {
    bottom: initial;
    top: 94px;
  }
}

.opening_hours li::first-letter {
  text-transform: capitalize;
}


#mapContainer {
  position: relative;
  margin-left: -280px;
  margin-right: -280px;
}

@media screen and (max-width: 1920px) {
  #mapContainer {
    margin-left: calc((1360px - 100vw) / 2);
    margin-right: calc((1360px - 100vw) / 2);
  }
}
@media screen and (max-width: 1440px) {
  #mapContainer {
    margin-left: -40px;
    margin-right: -40px;
  }
}
@media screen and (max-width: 1200px) {
  #mapContainer {
    margin-left: -30px;
    margin-right: -30px;
  }
}
.genedis-gmap-input-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 550px;
  max-width: 100%;
  border-bottom: 1px solid #043b75;
  align-items: center;
  margin-bottom: 160px;
}
@media screen and (max-width: 1200px) {
  .genedis-gmap-input-wrapper {
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 991px) {
  .genedis-gmap-input-wrapper {
    margin-bottom: 120px;
  }
}

@media screen and (max-width: 767px) {
  .genedis-gmap-input-wrapper {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 575px) {
  .genedis-gmap-input-wrapper {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 480px) {
  .genedis-gmap-input-wrapper {
    margin-bottom: 60px;
  }
}
.form-item-map-location-input {
  width: calc(100% - 24px);
  padding-right: 20px;
  margin-bottom: 0 !important;
  /* border-bottom: 1px solid #043B75; */
}
.form-item-map-location-input.mb-3 {
  margin-bottom: 0 !important;
}
