@import url("../fonts/Apax/ApaxThree-Regular-min.css");
@import url("../fonts/Apax/ApaxThree-Thin-min.css");
@import url("../fonts/Apax%20Three/ApaxThree-Bold-min.css");
/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
:root {
  --font-family: Apax, sans-serif;
  --font-family--heading: var(--font-family);
  --font-weight--thin: 100;
  --font-weight--extra-light: 200;
  --font-weight--light: 300;
  --font-weight--normal: 400;
  --font-weight--medium: 500;
  --font-weight--semi-bold: 600;
  --font-weight--bold: 700;
  --font-weight--extra-bold: 800;
  --font-weight--black: 900;
  --line-height: 1.5;
  --line-height--heading: 1.2;
  --border-radius: 0.1875rem;
  --spacing: 1.5rem;
  --spacing--small: 0.75rem;
  --border-width: 0.0625rem;
  --border: var(--border-width) solid currentColor;
  --focus-outline-width: 0.1875rem;
  --focus-outline-offset: 0.125rem;
  --focus-outline: var(--focus-outline-width) solid #1565c0;
  --duration: 150ms;
  --timing: ease;
}

button,
[type=button],
[type=reset],
[type=submit] {
  appearance: none;
  background-color: #1565c0;
  border: 0;
  border-radius: var(--border-radius);
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-base);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: var(--spacing--small) var(--spacing);
  text-align: center;
  text-decoration: none;
  transition: background-color var(--duration) var(--timing);
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}
button:hover,
[type=button]:hover,
[type=reset]:hover,
[type=submit]:hover {
  background-color: #3b83d5;
}
button:focus,
[type=button]:focus,
[type=reset]:focus,
[type=submit]:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}
button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

:root {
  --form-box-shadow: inset 0 --border-width 0.1875rem rgba(#000, 0.06);
  --form-box-shadow-focus: var(--form-box-shadow), 0 0 0.3125rem #1565c0;
}

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: var(--spacing--small);
  padding: 0;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing--small);
}

input,
select,
textarea {
  display: block;
  font-family: var(--font-family);
  font-size: 1rem;
}

[type=color],
[type=date],
[type=datetime],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
input:not([type]),
textarea {
  appearance: none;
  background-color: transparent;
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--form-box-shadow);
  box-sizing: border-box;
  margin-bottom: var(--spacing--small);
  padding: calc(var(--spacing) / 3);
  transition: border-color var(--duration) var(--timing);
  width: 100%;
}
[type=color]:focus,
[type=date]:focus,
[type=datetime]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
input:not([type]):focus,
textarea:focus {
  box-shadow: var(--form-box-shadow-focus);
}
[type=color]:disabled,
[type=date]:disabled,
[type=datetime]:disabled,
[type=datetime-local]:disabled,
[type=email]:disabled,
[type=month]:disabled,
[type=number]:disabled,
[type=password]:disabled,
[type=search]:disabled,
[type=tel]:disabled,
[type=text]:disabled,
[type=time]:disabled,
[type=url]:disabled,
[type=week]:disabled,
input:not([type]):disabled,
textarea:disabled {
  cursor: not-allowed;
}
[type=color]:disabled:hover,
[type=date]:disabled:hover,
[type=datetime]:disabled:hover,
[type=datetime-local]:disabled:hover,
[type=email]:disabled:hover,
[type=month]:disabled:hover,
[type=number]:disabled:hover,
[type=password]:disabled:hover,
[type=search]:disabled:hover,
[type=tel]:disabled:hover,
[type=text]:disabled:hover,
[type=time]:disabled:hover,
[type=url]:disabled:hover,
[type=week]:disabled:hover,
input:not([type]):disabled:hover,
textarea:disabled:hover {
  border: var(--border);
}
[type=color]::placeholder,
[type=date]::placeholder,
[type=datetime]::placeholder,
[type=datetime-local]::placeholder,
[type=email]::placeholder,
[type=month]::placeholder,
[type=number]::placeholder,
[type=password]::placeholder,
[type=search]::placeholder,
[type=tel]::placeholder,
[type=text]::placeholder,
[type=time]::placeholder,
[type=url]::placeholder,
[type=week]::placeholder,
input:not([type])::placeholder,
textarea::placeholder {
  color: #333;
  opacity: 0.25;
}

[type=search] {
  -webkit-appearance: textfield;
}

textarea {
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  display: inline;
  margin-right: var(--spacing--small);
}

[type=file] {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

select {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

[type=checkbox]:focus,
[type=radio]:focus,
[type=file]:focus,
select:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

html {
  background-color: #fff;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0;
}

dt {
  font-weight: 600;
  margin: 0;
}

dd {
  margin: 0;
}

figure {
  margin: 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  margin: var(--spacing) 0;
  table-layout: fixed;
  text-align: left;
  width: 100%;
}

thead {
  line-height: var(--line-height--heading);
  vertical-align: bottom;
}

tbody {
  vertical-align: top;
}

tr {
  border-bottom: var(--border);
}

th {
  font-weight: 600;
}

th,
td {
  padding: var(--spacing--small) var(--spacing--small) var(--spacing--small) 0;
}

html {
  color: #333;
  font-family: var(--font-family);
  font-size: 100%;
  line-height: var(--line-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family--heading);
  font-size: 1.5625em;
  line-height: var(--line-height--heading);
  margin: 0 0 var(--spacing--small);
}

p {
  margin: 0 0 var(--spacing--small);
}

a {
  color: #1565c0;
  text-decoration-skip: ink;
  transition: color var(--duration) var(--timing);
}
a:hover {
  color: #3b83d5;
}
a:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

hr {
  border-bottom: var(--border);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: var(--spacing) 0;
}

.wrapper {
  font-size: 16px;
}
.wrapper section {
  padding: 1px;
}
.wrapper section p, .wrapper section h1, .wrapper section h2, .wrapper section h3 {
  text-align: center;
}
.wrapper section p.desk {
  display: none;
}
@media screen and (min-width: 701px) {
  .wrapper section p.desk {
    display: block;
  }
  .wrapper section p.mob {
    display: none;
  }
}
.wrapper section .icon {
  height: 20px;
  width: 20px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.wrapper section .icon.card {
  background-image: url(../img/icon_card.svg);
}
.wrapper section .icon.charge {
  background-image: url(../img/icon_charge.svg);
}
.wrapper section .icon.search {
  background-image: url(../img/icon_search.svg);
}
.wrapper section .icon.btn {
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 20px;
}
.wrapper section .icon.btn:before, .wrapper section .icon.btn:after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 2px;
  background-color: #fff;
}
.wrapper section .icon.btn:before {
  transform: rotate(-90deg);
  transition: all 0.3s;
}
.wrapper section .inner {
  max-width: 900px;
  padding: 40px 20px;
  margin: auto;
}
.wrapper section.blue {
  background-color: #E5FBFF;
}
.wrapper section .hero {
  margin: 20px 0 0;
  height: 180px;
  width: 100%;
  background-image: url(../img/bg_buildings.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 80px;
  position: relative;
}
.wrapper section .hero:after {
  content: "";
  display: block;
  width: 100%;
  height: 180px;
  background-image: url(../img/bg_cars.svg);
  background-repeat: no-repeat;
  background-size: 1100px auto;
  background-position: center bottom;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 500px) {
  .wrapper section .hero {
    height: 100px;
    background-size: auto 50px;
  }
  .wrapper section .hero:after {
    height: 100px;
    background-size: 900px auto;
  }
}
.wrapper section#top {
  text-align: center;
  padding: 10px 0 5px;
}
.wrapper section#top img {
  max-width: 200px;
}
.wrapper section#header h1 {
  font-size: 3.0517578125em;
  margin-bottom: 40px;
}
@media screen and (max-width: 500px) {
  .wrapper section#header h1 {
    font-size: 2.44140625em;
    margin-bottom: 30px;
  }
}
.wrapper section#header .sticky {
  padding: 15px 0;
  text-align: center;
  position: sticky;
  position: -webkit-sticky;
  bottom: 0;
  background-color: #41A0CC;
  font-weight: bold;
  font-size: 1em;
  color: #fff;
}
.wrapper section#header .sticky a {
  color: #fffd;
  text-decoration: none;
}
@media screen and (min-height: 800px) {
  .wrapper section#header .sticky {
    display: none;
  }
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap {
  margin-bottom: 20px;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap > .icon {
  height: 55px;
  width: 55px;
  margin: auto;
  margin-bottom: 10px;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap h3 {
  font-size: 1.5625em;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap .table {
  font-size: 0.9em;
  border-top: 1px solid;
  text-align: center;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap .table .thead {
  font-weight: 700;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap .table .thead .city {
  position: relative;
  display: flex;
  justify-content: center;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap .table .thead .city:before {
  content: "";
  display: block;
  height: 16px;
  width: 11px;
  background-image: url(../img/icon_city.svg);
  background-size: contain;
  background-position: center center;
  margin-right: 5px;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap .table .tbody {
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap .table .tbody .row {
  border-bottom: 1px solid;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap .table .row {
  display: flex;
  padding: 5px;
  align-items: center;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap .table .row > div {
  flex: 1;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap .table .row > div.num {
  flex: none;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9em;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap .table .row > div.cost {
  font-weight: 700;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap.green h3 {
  color: #17BA78;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap.green > .icon {
  background-image: url(../img/icon_cheapest.svg);
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap.green .table {
  border-color: #17BA78;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap.green .table .tbody .row:nth-child(even) {
  background-color: #f3fcf8;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap.green .table .tbody .row .num {
  background-color: #17BA78;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap.green .table .tbody .row .cost {
  color: #17BA78;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap.red h3 {
  color: #E86D4F;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap.red > .icon {
  background-image: url(../img/icon_expensive.svg);
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap.red .table {
  border-color: #E86D4F;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap.red .table .tbody .row:nth-child(even) {
  background-color: #fef8f6;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap.red .table .tbody .row .num {
  background-color: #E86D4F;
}
.wrapper section#cheapest_expensive .tables_wrap .table_wrap.red .table .tbody .row .cost {
  color: #E86D4F;
}
@media screen and (min-width: 750px) {
  .wrapper section#cheapest_expensive .tables_wrap {
    display: flex;
    justify-content: center;
  }
  .wrapper section#cheapest_expensive .tables_wrap > div {
    padding: 20px 20px 20px 40px;
    width: 400px;
  }
  .wrapper section#cheapest_expensive .tables_wrap > div:nth-child(1) {
    padding: 20px 40px 20px 20px;
    border-right: 1px solid;
  }
}
.wrapper section#cost_of_carpark {
  position: relative;
}
.wrapper section#cost_of_carpark .inner {
  padding-bottom: 0;
}
@media screen and (min-width: 701px) {
  .wrapper section#cost_of_carpark .maps_wrap {
    display: flex;
    max-width: 1100px;
    margin: auto;
  }
}
.wrapper section#cost_of_carpark .map_wrap {
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  padding: 0 20px 40px 20px;
  margin: 80px 20px 40px;
}
.wrapper section#cost_of_carpark .map_wrap img {
  width: 100%;
}
.wrapper section#cost_of_carpark .map_wrap .box {
  max-width: 320px;
  padding: 10px 0;
  margin: auto;
  transform: translate(0, -50%);
  color: #fff;
}
.wrapper section#cost_of_carpark .map_wrap .box.green {
  background-color: #17BA78;
}
.wrapper section#cost_of_carpark .map_wrap .box.red {
  background-color: #E86D4F;
}
.wrapper section#cost_of_carpark .map_wrap .box h3 {
  font-size: 1.4em;
  line-height: 1em;
}
.wrapper section#cost_of_carpark .map_wrap .box h3, .wrapper section#cost_of_carpark .map_wrap .box p {
  margin: 0;
}
.wrapper section#perfect_parking_spot .widget_wrap {
  max-width: 1100px;
  margin: auto;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .top .search_wrap span {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .top .search_wrap .ui.search.dropdown {
  width: 100%;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .top .key_wrap {
  display: none;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table {
  font-size: 0.9em;
  margin-top: 20px;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .table {
  border-top: 1px solid #000;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .thead .row, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .row .top {
  display: flex;
  padding: 5px;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .thead .row .col, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .row .top .col {
  flex: 1;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .thead .row .col.distance, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .thead .row .col.features, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .row .top .col.distance, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .row .top .col.features {
  display: none;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .thead .row .col.num, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .thead .row .col.btn, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .row .top .col.num, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .row .top .col.btn {
  flex: none;
  width: 20px;
  font-weight: 700;
  text-align: center;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .thead .row .col.day_rate, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .row .top .col.day_rate {
  flex: none;
  width: 57px;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .thead .row .col.btn, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .row .top .col.btn {
  width: 25px;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .thead .row .col.btn .icon, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .row .top .col.btn .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 20px;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .thead .row .col.btn .icon:before, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .thead .row .col.btn .icon:after, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .row .top .col.btn .icon:before, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .row .top .col.btn .icon:after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 2px;
  background-color: #fff;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .thead .row .col.btn .icon:before, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .row .top .col.btn .icon:before {
  transform: rotate(-90deg);
  transition: all 0.3s;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .thead .row .col.btn.open .icon:before, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .row .top .col.btn.open .icon:before {
  transform: rotate(0);
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .thead,
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody {
  margin-left: 20px;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .thead {
  font-weight: 700;
  line-height: 1em;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .thead .row {
  align-items: flex-end;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody {
  position: relative;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody:before {
  position: absolute;
  transform: translate(calc(-100px - 50px), 10px) rotate(-90deg);
  transform-origin: right top;
  font-weight: 700;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody.least_expensive:before {
  content: "LEAST EXPENSIVE";
  color: #17BA78;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody.least_expensive .bottom {
  border-color: #8bddbc;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody.least_expensive .row {
  border-bottom: 1px solid #C7C6C5;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody.least_expensive .row:nth-child(odd) {
  background-color: #e8f8f2;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody.least_expensive .row .day_rate, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody.least_expensive .row .num {
  color: #17BA78;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody.least_expensive .row .btn.icon {
  background-color: #17BA78;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody.most_expensive:before {
  content: "MOST EXPENSIVE";
  color: #E86D4F;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody.most_expensive .bottom {
  border-color: #f4b6a7;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody.most_expensive .row {
  border-bottom: 1px solid #C7C6C5;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody.most_expensive .row:nth-child(odd) {
  background-color: #fdf0ed;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody.most_expensive .row .day_rate, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody.most_expensive .row .num {
  color: #E86D4F;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody.most_expensive .row .btn.icon {
  background-color: #E86D4F;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .day_rate {
  font-weight: 700;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .bottom {
  margin-left: 40px;
  margin-right: 20px;
  padding: 5px;
  border-top: 1px solid;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .bottom p {
  margin: 0;
  display: flex;
  align-items: center;
  text-align: left;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .bottom p .icon, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .tbody .bottom p span.bold {
  font-weight: 700;
  margin-right: 5px;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_map_wrap {
  position: relative;
  height: 400px;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_map_wrap .banner {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  z-index: 9999;
  text-align: center;
  top: 20px;
  font-weight: 700;
  padding: 5px;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_map_wrap #map {
  position: absolute;
  height: 400px;
  width: 100%;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_map_wrap .leaflet-popup-content {
  margin: 10px;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_map_wrap .leaflet-popup-content p {
  text-align: left;
  margin: 0;
  font-family: var(--font-family);
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_map_wrap .leaflet-popup-content p span {
  font-weight: 700;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_map_wrap .leaflet-popup-content p span.green {
  color: #17BA78;
}
.wrapper section#perfect_parking_spot .widget_wrap .widget_map_wrap .leaflet-popup-content p span.red {
  color: #E86D4F;
}
@media screen and (min-width: 800px) {
  .wrapper section#perfect_parking_spot .widget_wrap {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  }
  .wrapper section#perfect_parking_spot .widget_wrap > div {
    flex: 1;
  }
  .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap {
    padding: 20px;
  }
  .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .top {
    display: flex;
  }
  .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .top .search_wrap {
    flex: 1;
  }
  .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .top .search_wrap span {
    font-size: 0.9em;
  }
  .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .top .key_wrap {
    display: block;
    width: 150px;
    font-size: 0.8em;
    margin-left: 40px;
    border-left: 1px solid #C7C6C5;
  }
  .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .top .key_wrap .row {
    display: flex;
    align-items: center;
    line-height: 1.1em;
    padding: 5px;
  }
  .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .top .key_wrap .row:nth-child(1) {
    border-bottom: 1px solid #C7C6C5;
  }
  .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .top .key_wrap .row .icon {
    margin-right: 5px;
    width: 25px;
    height: 25px;
  }
  .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .col {
    text-align: center;
  }
  .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .col.btn, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .col.bottom {
    display: none;
  }
  .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .col.num {
    border-radius: 100px;
  }
  .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .col.distance, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .col.features, .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .col.day_rate {
    display: block !important;
    width: 80px !important;
    flex: none !important;
  }
  .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .col.features {
    display: flex !important;
    align-items: center;
  }
  .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .col.features .icon {
    margin-right: 5px;
  }
  .wrapper section#perfect_parking_spot .widget_wrap .widget_tables_wrap .widget_table .col.features .hide {
    display: none;
  }
  .wrapper section#perfect_parking_spot .widget_wrap .widget_map_wrap {
    height: 500px;
  }
  .wrapper section#perfect_parking_spot .widget_wrap .widget_map_wrap #map {
    height: 100%;
  }
}
.wrapper section#biggest_savers {
  padding-bottom: 40px;
}
.wrapper section#biggest_savers .table_wrap {
  font-size: 0.9em;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  max-width: 1100px;
  margin: 0 20px;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1);
}
.wrapper section#biggest_savers .table_wrap .table {
  overflow: auto;
  height: 400px;
}
.wrapper section#biggest_savers .table_wrap .table .thead .row,
.wrapper section#biggest_savers .table_wrap .table .tbody .top {
  display: flex;
  padding: 5px 0;
}
.wrapper section#biggest_savers .table_wrap .table .thead .row .col,
.wrapper section#biggest_savers .table_wrap .table .tbody .top .col {
  flex: 1;
  position: relative;
}
.wrapper section#biggest_savers .table_wrap .table .thead .row .col.btn,
.wrapper section#biggest_savers .table_wrap .table .tbody .top .col.btn {
  flex: none;
  width: 30px;
}
.wrapper section#biggest_savers .table_wrap .table .thead .row .col.red, .wrapper section#biggest_savers .table_wrap .table .thead .row .col.green, .wrapper section#biggest_savers .table_wrap .table .thead .row .col.price, .wrapper section#biggest_savers .table_wrap .table .thead .row .col.time,
.wrapper section#biggest_savers .table_wrap .table .tbody .top .col.red,
.wrapper section#biggest_savers .table_wrap .table .tbody .top .col.green,
.wrapper section#biggest_savers .table_wrap .table .tbody .top .col.price,
.wrapper section#biggest_savers .table_wrap .table .tbody .top .col.time {
  display: none;
}
.wrapper section#biggest_savers .table_wrap .table .thead {
  border-bottom: 1px solid #000;
  padding-top: 20px;
}
.wrapper section#biggest_savers .table_wrap .table .thead .col {
  line-height: 1.1em;
  font-weight: 700;
}
.wrapper section#biggest_savers .table_wrap .table .thead .col.green {
  color: #17BA78;
}
.wrapper section#biggest_savers .table_wrap .table .thead .col.red {
  color: #E86D4F;
}
.wrapper section#biggest_savers .table_wrap .table .thead .col.blue {
  color: #D6EAEC;
}
.wrapper section#biggest_savers .table_wrap .table .thead .col.sort_none {
  position: relative;
}
.wrapper section#biggest_savers .table_wrap .table .thead .col.sort_none:before {
  content: "";
  display: block;
  width: 9px;
  height: 19px;
  left: 5px;
  top: -20px;
  position: absolute;
  background-image: url(../img/sort.svg);
}
.wrapper section#biggest_savers .table_wrap .table .thead .col.sort_none.sort:before {
  background-image: url(../img/sort_asc.svg);
}
.wrapper section#biggest_savers .table_wrap .table .thead .col.sort_none.sort.reverse:before {
  background-image: url(../img/sort_desc.svg);
}
.wrapper section#biggest_savers .table_wrap .table .tbody {
  border-bottom: 1px solid #000;
}
.wrapper section#biggest_savers .table_wrap .table .tbody .row {
  border-bottom: 1px solid #C7C6C5;
}
.wrapper section#biggest_savers .table_wrap .table .tbody .green {
  background-color: #ecf9f4;
}
.wrapper section#biggest_savers .table_wrap .table .tbody .red {
  background-color: #fdf3f1;
}
.wrapper section#biggest_savers .table_wrap .table .tbody .blue {
  background-color: #ebf2fa;
}
.wrapper section#biggest_savers .table_wrap .table .tbody .top .btn .icon {
  background-color: #0061BC;
}
.wrapper section#biggest_savers .table_wrap .table .tbody .top .btn.open .icon:before {
  transform: rotate(0);
}
.wrapper section#biggest_savers .table_wrap .table .tbody .top .blue {
  background-color: #fff;
  color: #0061BC;
  font-weight: 700;
}
.wrapper section#biggest_savers .table_wrap .table .tbody .bottom {
  margin-left: 30px;
}
.wrapper section#biggest_savers .table_wrap .table .tbody .bottom .row {
  display: flex;
  border-bottom: 1px solid #C7C6C5;
}
.wrapper section#biggest_savers .table_wrap .table .tbody .bottom .row div {
  flex: 1;
  padding: 5px;
}
.wrapper section#biggest_savers .table_wrap .table .tbody .bottom .row div:nth-child(1) {
  font-weight: 700;
  flex: none;
  width: 40%;
}
.wrapper section#biggest_savers .table_wrap .table .tbody .bottom .green .row div:nth-child(1) {
  color: #17BA78;
  background-color: #dcf5eb;
}
.wrapper section#biggest_savers .table_wrap .table .tbody .bottom .red .row div:nth-child(1) {
  color: #E86D4F;
  background-color: #fce9e5;
}
.wrapper section#biggest_savers .table_wrap .table .tbody .bottom .blue .row div {
  font-weight: 700;
}
.wrapper section#biggest_savers .table_wrap .table .tbody .bottom .blue .row div:nth-child(1) {
  color: #0061BC;
  background-color: #d9e7f5;
}
@media screen and (min-width: 401px) {
  .wrapper section#biggest_savers .table_wrap {
    margin: auto;
  }
  .wrapper section#biggest_savers .table_wrap .table .thead .row,
.wrapper section#biggest_savers .table_wrap .table .tbody .top {
    padding: 0;
  }
  .wrapper section#biggest_savers .table_wrap .table .thead .row .col,
.wrapper section#biggest_savers .table_wrap .table .tbody .top .col {
    padding: 5px;
  }
  .wrapper section#biggest_savers .table_wrap .table .thead .row .col.btn,
.wrapper section#biggest_savers .table_wrap .table .tbody .top .col.btn {
    display: none;
  }
  .wrapper section#biggest_savers .table_wrap .table .thead .row .col.red, .wrapper section#biggest_savers .table_wrap .table .thead .row .col.green, .wrapper section#biggest_savers .table_wrap .table .thead .row .col.price, .wrapper section#biggest_savers .table_wrap .table .thead .row .col.time,
.wrapper section#biggest_savers .table_wrap .table .tbody .top .col.red,
.wrapper section#biggest_savers .table_wrap .table .tbody .top .col.green,
.wrapper section#biggest_savers .table_wrap .table .tbody .top .col.price,
.wrapper section#biggest_savers .table_wrap .table .tbody .top .col.time {
    display: block;
    flex: none;
    width: 80px;
  }
  .wrapper section#biggest_savers .table_wrap .table .thead .row .col.name,
.wrapper section#biggest_savers .table_wrap .table .tbody .top .col.name {
    flex: 1;
  }
  .wrapper section#biggest_savers .table_wrap .table .thead .row {
    align-items: flex-end;
  }
  .wrapper section#biggest_savers .table_wrap .table .tbody .row:nth-child(odd) .blue, .wrapper section#biggest_savers .table_wrap .table .tbody .row:nth-child(odd) .green, .wrapper section#biggest_savers .table_wrap .table .tbody .row:nth-child(odd) .red {
    background-color: #fff !important;
  }
  .wrapper section#biggest_savers .table_wrap .table .tbody .row .col.name, .wrapper section#biggest_savers .table_wrap .table .tbody .row .col.price {
    border-left: 1px solid #000;
    padding-left: 5px;
  }
  .wrapper section#biggest_savers .table_wrap .table .tbody .row .bottom {
    display: none;
  }
}
@media screen and (max-width: 1140px) {
  .wrapper section#biggest_savers .table_wrap {
    margin: 0 20px;
  }
}
@media screen and (max-width: 870px) and (min-width: 401px) {
  .wrapper section#biggest_savers .table_wrap .table .col.btn {
    display: block !important;
  }
  .wrapper section#biggest_savers .table_wrap .table .col.green,
.wrapper section#biggest_savers .table_wrap .table .col.red {
    display: none !important;
  }
  .wrapper section#biggest_savers .table_wrap .table .tbody .row .bottom {
    display: block;
  }
  .wrapper section#biggest_savers .table_wrap .table .tbody .row .bottom .blue {
    display: none;
  }
}
.wrapper section#outro .method {
  margin: 40px auto 0;
  padding-bottom: 40px;
  max-width: 900px;
  font-size: 0.9em;
  font-style: italic;
  border-bottom: 1px solid #000;
}
.wrapper section#outro .method h3 {
  font-weight: normal;
  font-size: 1.1em;
  margin: 0;
}
.wrapper section#footer .inner {
  text-align: center;
  font-size: 0.8em;
  max-width: 1100px;
}
.wrapper section#footer .inner .cc {
  margin-bottom: 20px;
}
.wrapper section#footer .inner .logo img {
  max-width: 200px;
}
@media screen and (min-width: 701px) {
  .wrapper section#footer .inner {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
  .wrapper section#footer .inner .cc {
    display: flex;
    max-width: 400px;
    align-items: center;
    margin: 0;
  }
  .wrapper section#footer .inner .cc div {
    margin-right: 10px;
  }
}
