div#parking_locator {
	display: flex;
	flex-direction: row;
	width: 100%;
}
div#parking_locator div#left {
	width: 360px;
    flex-grow: 0;
    overflow: hidden;
}
div#parking_locator div#right {
	flex-grow: 1;
}

div#parking_locator div#left {
    display: flex;
    flex-direction: column;
    border-right: 1px solid black;
    width: 360px;
}
div#parking_locator div#left div#search {
    flex: 0;
}
div#parking_locator div#left div#results {
    flex: 1;
    overflow: hidden;
}

div#search {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    padding: 1em;
    padding-bottom: 0;
}
div#search input#search_address {
    flex: 1;
}

div#filters {
    display: flex;
    flex-wrap: wrap;
    padding: 0.5em;
}
div#filters div.filters_item {
    flex-basis: 1;
    flex-grow: 1;
    padding: 0.5em;
}

div#results {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 1em;
}
div#list {
    flex-grow: 1;
    overflow-y: scroll;
    background-color: #fff;
}

div#results_tabs {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}
div#results_tabs div.results_tabs_item {
    border: 1px solid black;
    padding-top: 0.5em;  
    padding-bottom: 0.5em;  
    padding-left: 2em;  
    padding-right: 2em;  
    border-radius: 0.5em 0.5em 0 0;
    background-color: #fff;
	cursor: pointer;
}
div#results_tabs div.results_tabs_item.results_tabs_active {
    border-bottom: 0;
    /* background: linear-gradient(#f7df2a, #fdf4b0, #fff); */
    background: linear-gradient(#fdf4b0, #fdf4b0, #fff);
}
div#results_tabs div.results_tabs_spacer {
    flex: 1;
    border-bottom: 1px solid black;
}

div.lot {
    padding: 1em;
}
div.lot:nth-child(even) {
    background-color: #ffffdd;
}

div.lot_title {
    display: flex;
    flex-direction: row;
}
div.lot_title div.lot_distance {
    width: 4em;
    height: 4em;
    border-radius: 2em;
    background-color: #f7df2a;
    color: black;
    text-align: center;
    padding-top: 1.2em;
    padding-left: 0.25em
}
div.lot_title div.lot_name {
    padding-top: 0.3em;
    padding-left: 0.9em;
    font-family: Poppins;
    letter-spacing: -0.04em;
    font-size: 16px;
    font-weight: 600 !important;
}

div.lot_rate {
    display: flex;
    flex-direction: row;
    padding-left: 5em;
}
div.lot_rate div.lot_rate_name {
    align-self: flex-start;
    flex-grow: 1;
}
div.lot_rate div.lot_rate_amount {
    align-self: flex-end;
}

div.lot_details {
    text-align: right;
}

div.lot_details:last-child {
  margin-bottom: 1em;
}

a.more_details {
   color: #337ab7;
}

a.more_details:hover {
  color: #f7df2a;
}

a.more_details:visited {
  color: #551A8B !important;
}

.more_details {
  font-weight: bold;
}

a.more_details {
    cursor: pointer;
}

div#facility {
	background-color: #fff;
	border: 1px solid black;
	border-radius: 2em;
	filter: drop-shadow(1em 1em 0.5em #00000080);
	padding-top: 2em;
	padding-bottom: 2em;
	min-width: 360px;
	width: 75%;
	max-width: 480px;
	height: min-content;
	margin: auto;
	max-height: 75%;
	display: flex;
	overflow: hidden;
	z-index: 2000000;
}
div#facility_padded {
	flex: 1;
	overflow-y: auto;
	padding-left: 2em;
	padding-right: 2em;
}
#facility_disclaimer {
	padding-top: 2em;
}
#tax_disclaimer {
  margin-top: 2em;
  color: black;
  font-weight: 600;
}
#tax_disclaimer_search {
  margin-top: 2em;
  color: black;
  font-weight: 600;
  padding-left: 5em;
}
#facility b, .facility_heading {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 20px;
	font-family: Poppins;
	color: #222222;
	padding-top: 2em;
}
.facility_table tbody tr td {
	padding-left: 0.5em;
	padding-right: 0.5em;
}
.facility_table .table_right {
	text-align: right;
}
.facility_images img {
	padding: 0.5em;
}

div#parking_locator div#left div#search button#search_button {
	margin-left: 1em;
}


div#facility div#facility_padded div table.facility_table tbody tr td button {
	margin-top: 0.25em;
	margin-bottom: 0.25em;
	white-space: nowrap;
}

div#parking_locator div#left div#results div#list div.lot,
div#parking_locator div#left div#results div#list div.lot * {
	cursor: pointer;
}

.closebutton{
	float:right;
	margin-right: -25px;
  border-style: none;
  margin-top: 0 !important;
}
/* this is to allow button on popup to not show next to facility name */
#facility_padded > h1 {
	clear: both;
    font-size: 30px;
}

.modal {
  position: fixed;
  top: 64px;
  padding: 24px;
  left: 64px;
  background-color: white;
  border: 1px solid grey;
  border-radius: 3px;
}
/* pop up for search box */
    /* CALL TO ACTION */
    body div#parkingpopup {
      position: fixed;
      background-color: #00000080;
      z-index: 100;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
    }
    body div#parkingpopup p {
      font-size: 24px;
    }
    body div#parkingpopup * {
      color: black;
      background-color: #f1f3f7;
   }
    body div#parkingpopup input,
    body div#parkingpopup button {
      margin-top: 2px;
      color: black;
    }
    body div#parkingpopup input {
      padding-left: 0.25em;
      padding-right: 0.25em;
      font-size: 12pt;
      width: 200px;
    }
    .find-parking__wrapper {
      width: 33.2em;
      margin-inline: auto;
      margin-block: 12%;
      padding: 35px 25px;
      font-family: "Poppins", sans-serif;
      box-shadow: 0 3px 10px rgb(232, 232, 232);
    }
    .find-parking__wrapper #geo-locations-submit {
      font-family: "Poppins", sans-serif;
      width: 100%;
      display: block;
      padding: 15px 25px;
      background-color: #f9cd04;
      font-size: 19px;
      border: 2px solid #f9cd04;
      font-weight: 600;
    }
    .find-parking__wrapper #geo-locations-submit i {
      margin-right: 10px;
      background-color: inherit;
      color: #fde428;
    }
    .find-parking__wrapper #geo-locations-submit:hover,
    .find-parking__wrapper #geo-locations-submit:active {
      color: #f9cd04;
      background-color: #fff;
    }
    .find-parking__wrapper .locations-form-label {
      text-transform: uppercase;
      font-size: 13px;
      color: #4d4d4d;
      width: 100%;
      font-weight: bold;
      display: block;
      margin: 15px 0 5px;
    }
    .find-parking__wrapper .input-wrapper {
      position: relative;
      display: block;
      width: 100%;
      padding-bottom: 60px;
    }
    .find-parking__wrapper .input-wrapper #search-locations {
      display: block;
      padding: 15px;
      font-size: 19px;
      position: absolute;
      z-index: 1;
      width: calc(100% - 35px);
      border: 1px solid #9c9c9c;
      font-family: "Poppins", sans-serif;
    }
    .find-parking__wrapper .input-wrapper #search-locations:focus {
      outline: 2px dotted currentcolor;
    }
    .find-parking__wrapper
      .input-wrapper
      #search-locations:focus::-webkit-input-placeholder {
      color: transparent;
    }
    .find-parking__wrapper
      .input-wrapper
      #search-locations::-webkit-input-placeholder,
    .find-parking__wrapper .input-wrapper #search-locations:-moz-placeholder,
    .find-parking__wrapper .input-wrapper #search-locations::-moz-placeholder,
    .find-parking__wrapper
      .input-wrapper
      #search-locations:-ms-input-placeholder {
      font-style: italic;
      font-size: 19px;
    }
    .find-parking__wrapper .input-wrapper #search-locations-submit {
      font-size: 18px;
      color: #f9cd04;
      border: none;
      background: none;
      position: absolute;
      right: 10px;
      top: 15px;
      z-index: 2;
    }
    .find-parking__wrapper .input-wrapper #search-locations-submit:hover,
    .find-parking__wrapper .input-wrapper #search-locations-submit:focus {
      color: #b00135;
    }
    .find-parking__wrapper .input-wrapper #search-locations-submit:focus {
      outline: 2px dotted currentcolor;
    }
    .find-parking__intro {
      font-family: "Poppins", sans-serif;
      text-transform: uppercase;
      font-size: 13px;
      color: #4d4d4d;
      width: 100%;
      font-weight: bold;
      display: block;
    }
    .find-parking__headline {
      font-family: "Poppins", sans-serif;
      font-size: 28px;
      color: #4d4d4d;
      font-weight: bold;
      display: block;
      margin-bottom: 25px;
    }
    .find-parking__search-type {
      font-size: 1.5em;
      text-align: center;
      margin-bottom: 20px;
      width: 100%;
    }
    .find-parking__search-type::before {
      display: table;
      line-height: 0;
      content: "";
    }
    .find-parking__search-type::after {
      display: table;
      line-height: 0;
      content: "";
    }
    .find-parking__search-type__option {
      display: block;
      float: left;
      width: 50%;
      box-sizing: border-box;
      cursor: pointer;
      font-weight: bold;
      color: #9c9c9c;
      padding: 2px 0 14px 0;
      border-bottom: 2px solid #9c9c9c;
    }
    .find-parking__search-type__option:hover,
    .find-parking__search-type__option:focus {
      color: #b00135;
      border-color: #b00135;
      padding-bottom: 10px;
      border-bottom: 6px solid #b00135;
    }
    .find-parking__search-type__option__selected {
      color: #4d4d4d;
      padding-bottom: 10px;
      border-bottom: 6px solid #4d4d4d;
    }
    .local-search-results .find-parking .parking-type {
      display: none;
    }
    #map-canvas {
      overflow: hidden;
    }
    #location-title-wrapper {
      z-index: 10;
      position: relative;
      background: #eceff0;
      border: 1px solid #c8c9ca;
      border-top: none;
      border-right: none;
      padding: 10px;
    }
    #select-parking-title {
      font-size: 28px !important;
    }
    @media (max-width: 959px) {
      #location-title-wrapper {
        border-left: none;
      }
    }
    @media (max-width: 767px) {
      #location-title-wrapper {
        border-left: none;
      }
    }
    #showBuyFilter {
      border-bottom: 1px solid #c8c9ca;
      height: 100%;
    }
    #showBuyNowBtn {
      background-color: #b10035;
      border: 1px solid #c8c9ca;
      color: white;
      float: left;
      height: 35px;
      width: 49%;
    }
    #showAllBtn {
      background-color: #b10035;
      border: 1px solid #c8c9ca;
      color: white;
      float: right;
      height: 35px;
      width: 49%;
    }
    .activeShowButton {
      box-shadow: inset 1px 3px 4px rgba(68, 68, 68, 0.35);
      opacity: 1;
    }
    .inactiveShowButton {
      box-shadow: none;
      opacity: 0.4;
    }
    .hiddenMapElement {
      display: none;
    }
    #buyNowCloseButton {
      width: 12px;
      position: absolute;
      height: 12px;
      background-size: contain;
      z-index: 10;
      margin-left: -175px;
      margin-top: -22px;
    }
    #buyNowInfoBox {
      width: 215px;
      height: 110px;
      background: #444444;
      position: absolute;
      z-index: 9;
      margin-left: -180px;
      margin-top: -27px;
      opacity: 0.9;
    }
    #buyNowInfoBoxArrow {
      position: absolute;
      width: 30px;
      height: 30px;
      margin-left: 205px;
      background-size: contain;
    }
    #buyNowInfoBox p {
      color: white;
      font-size: 16px;
      padding: 7px 34px 0 34px;
      text-align: center;
      margin-left: 0;
      font-family: Roboto, Arial, Helvetica, Geneva, sans-serif;
    }
    @media (max-width: 959px) {
      #buyNowInfoBoxArrow {
        margin-top: -20px;
        margin-left: 0;
      }
      #buyNowCloseButton {
        margin-left: 225px;
        margin-top: 0px;
      }
      #buyNowInfoBox {
        margin-left: 30px;
        margin-top: -5px;
      }
    }

    #closePopup {
      position: absolute;
      left: 90%;
      margin-top: -20px !important;
      border: none;
    }

 
#specials {
  width: 40px;
}

@media screen and (max-width: 430px) {


    div#parking_locator div#left {
        height: 60%;
        width: auto;
        border-bottom: 1px solid black;
    }

    div#parking_locator {
        flex-direction: column;
    }

    div.lot {
        padding: .3em;
    }

    .find-parking__wrapper {
    width: unset;
    margin-top: 25vh;
  }
  .find-parking__headline {
    font-size: 18px;
  }
}

.bottom-scroll-message{
  width: 90%;
  height: 70px;
  position: absolute;
  bottom: 0;
  text-align: center;
  padding-top: 5%;
  background: radial-gradient(circle, rgba(247,223,42,1) 50%, rgba(255,255,255,1) 100%);
}

@media screen and (min-width: 570px) {
  #toggle-left-side{
      display: none;
  }
}
