
#stations_map {
  height: 600px;
}

#stations_map .map-tooltip {
  font-family: var(--e-global-typography-text-font-family);
  padding: 10px;
}

.map-tooltip-row .station-name{
  font-weight: 600;
}
#stations_map .gm-style-iw-c {
  border-radius: 0px;
}
.map-tooltip-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
#stations_map .map-tooltip-row:not(:last-child) {
  margin-bottom: 10px;
}

#stations_map .map-tooltip img {
  height: 20px;
  min-width: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 5px;
  margin-left: 0px;
}

html[dir="rtl"] #stations_map .map-tooltip img {
  margin-left: 5px;
  margin-right: 0px;
}

.map-wrapper {
  position: relative;
}

/* stations selection */
.map-wrapper .station-type-selection {
  position: absolute;
  left: 20px;
  top: 70px;
  z-index: 99;
}

.map-wrapper .station-type-selection span{
  font-size: 1.2rem;
  font-weight: 700;
  color: #515C6F;
}

.map-wrapper .station-type-selection > a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  cursor: pointer;
}

.map-wrapper .station-type-selection a:first-child{
  border-bottom: 1px solid rgba( 0, 0, 0, 0.3 );
}

.map-wrapper .station-type-selection svg path{
  -webkit-transition:.3s fill all;
  -o-transition:.3s fill all;
  transition:.3s fill all;
  fill: #515C6F;
}

.map-wrapper .station-type-selection .active path{
  fill: #017B44;
}

.map-wrapper .station-type-selection .gas-stations svg{
  width: 45px;
}

.map-wrapper .station-type-selection .service-stations svg{
  width: 55px;
}
.map-wrapper .station-type-selection svg{
 padding: 0 10px;
}

/* download table */
.map-wrapper .download-stations {
  z-index: 99;
  position: absolute;
  color: #515C6F;
  bottom: 30px;
  left:20px;
  background: rgba(255,255,255, 0.5);
  padding: 10px;
}

.map-wrapper .download-stations a {
  color: #515C6F;
  text-decoration: none;
}

.map-wrapper .download-stations a span{

  text-decoration: underline;
}

/* search */
.station-search-wrapper {
  background: #11A261;
  padding: 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.station-search-wrapper .stations-controls-wrapper {
  width: 83%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.station-search-wrapper .station-submit {
  width: 15%;
}

.station-search-wrapper .station-submit button {
  width: 100%;
}

.station-search-wrapper  .stations-controls-wrapper .station-area,
.station-search-wrapper  .stations-controls-wrapper .station-city {
  width: 25%;
}

.station-search-wrapper  .stations-controls-wrapper select {
  border-radius: 0;
  border: 0;
  /*outline:0px;*/
  scroll-behavior: smooth;
  background: url(/wp-content/themes/hello-theme-child-master/images/down-chevron.svg) no-repeat right #fff;
  -webkit-appearance: none;
  background-position-x: 8px;
  background-size: 24px 24px;
}

.station-search-wrapper .checkbox-container {
  font-family: var(--e-global-typography-text-font-family);
  display: block;
  position: relative;
  padding-right: 35px;
  cursor: pointer;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 100;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.station-search-wrapper .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.station-search-wrapper .checkbox-container .checkmark {
  position: absolute;
  top: -2px;
  right: 0;
  height: 25px;
  width: 25px;
  border: 3px solid #fff;
  /* background-color: transpa; */
}

.station-search-wrapper .checkbox-container input:focus ~ .checkmark {
    outline: 2px;
    outline-color: #000;
    outline-style: solid;
}

/* On mouse-over, add a grey background color */
.station-search-wrapper .checkbox-container:hover input ~ .checkmark {
  background-color: rgba(255,255,255,0.5);
}

/* When the checkbox is checked, add a blue background */
.station-search-wrapper .checkbox-container input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.station-search-wrapper .checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.station-search-wrapper .checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.station-search-wrapper .checkbox-container .checkmark:after {
  left: 6px;
  top: 1px;
  width: 7px;
  height: 14px;
  border: solid #515C6F;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* submit */
.station-search-wrapper button,
.station-search-wrapper button:focus {
  background: #FFD100;
  border: 2px solid #FFD100;
  border-radius: 25px;
  color: #11A261;
  font-size: 1.2rem;
}

.station-search-wrapper button {

  outline: 0;
}


.station-search-wrapper button:hover {
  background: #11A261;
  border: 2px solid #FFD100;
  border-radius: 25px;
  color:#FFD100;
}

span.station-phone {
    direction: ltr;
    display: block;
}

@media only screen and (max-width: 767px) {
  #stations_map {
    height: 400px;
  }
  .station-search-wrapper{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .station-search-wrapper .stations-controls-wrapper,
  .station-search-wrapper .station-submit {
    width: 100%
  }
  .station-search-wrapper .stations-controls-wrapper .station-area,
  .station-search-wrapper .stations-controls-wrapper .station-city {
    width: 100%;
  }

  .map-wrapper .station-type-selection {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 0;
    width: 100%;
  }
  .map-wrapper .station-type-selection a {
    width: 49%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid rgba( 0, 0, 0, 0.3 );
  }
  .map-wrapper .station-type-selection span {
    font-size: 1rem;
  }
  .map-wrapper .station-type-selection .service-stations img {
    width: 65px;
  }

}
