/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body{
	box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/*--Global Styles--*/
:root{
	//background: linear-gradient(90deg, rgba($pink, 1) 0%, rgba($purple, 1) 100%);
	/*Colours*/
	--pink: #e83b8c;
	--purple: #6a2480;
	--black: #00000;
	--white: #ffffff;
	--blue: #1F3459;
	--grey: #EDEDED;
	--grey-dark: #B5B5B5;
	--purple-light: #B42E86;
	--pink-light: #FBE8FF;
	/*Fonts*/
	--font-family: houschka-rounded, sans-serif;
	--font-weight-300: 300;
	--font-weight-500: 500;
	--font-weight-600: 600;
	--font-weight-700: 700;
	/*Font Sizes*/
	--font-size-xlarge: 4em;
	--font-size-large: 3.5em;
	--font-size-medium: 3em;
	--font-size-small: 1.6em;
	--font-size-base: 1.2em;
	/*Animation Transition*/
	--ani-main: all 0.3s;
}

.ani{
	-webkit-transition: var(--ani-main);
	transition: var(--ani-main);
}

.ani:hover{
	-webkit-transition: var(--ani-main);
	transition: var(--ani-main);
}

/*--Tyography--*/

h1, h2, h3{
	font-family: var(--font-family);
	font-weight: var(--font-weight-600);
}

h4, h5, h6{
	font-family: var(--font-family);
	font-weight: var(--font-weight-400);
}

h1{
	font-size: var(--font-size-xlarge);
}

h2{
	font-size: var(--font-size-large);
}

h3{
	font-size: var(--font-size-medium);
}

h4{
	font-size: var(--font-size-small);
}

h5{
	font-size: var(--font-size-small);
	font-weight: var(--font-weight-300);
}

p{
	font-family: var(--font-family);
	font-weight: var(--font-weight-400);
}

p.small{
	font-size: 0.8em;
}

.uk-switcher a{
	pointer-events: all !important;
}

/*--Buttons uk-button overrides--*/

.uk-button{
	font-family: var(--font-family);
	border-radius: 50px;
	font-size: var(--font-size-base);
	padding: 5px 35px;
	font-weight: var(--font-weight-600);
	text-transform: none;
	letter-spacing: 1px;
	border-width: 0px;
	border-color: transparent;
}

.uk-button-default{
	background-color: transparent !important;
	border: 2px solid var(--grey);
}

/*--Purple Button--*/

.uk-button.purple{
	background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 100%);
	color: var(--white);
}

.uk-button.purple:hover{
	background: linear-gradient(90deg, var(--purple) 0%, var(--purple) 100%);
}

/*--Pink Button--*/

.uk-button.pink{
	background-color: var(--pink);
	color: var(--white);
}

.uk-button.pink:hover{
	background-color: var(--purple-light);
}

/*--Blue Button--*/

.uk-button.blue{
	background-color: var(--blue);
}

.uk-button.blue:hover{
	opacity: 0.6;
}

/*--Blue Button--*/

.uk-button.white{
	background-color: var(--white);
	color: var(--purple);
}

.uk-button.white:hover{
	opacity: 0.6;
}

/*--Helper Classes / Global Overides--*/
.pink{
	color: var(--pink);
}

.purple{
	color: var(--purple);
}

.uk-card{
	border-radius: 3px;
}

/*--Form Elements--*/
.form-container{
	position: relative;
}

.uk-input{
	background-color: var(--grey);
	border-radius: 3px;
	height: 50px;
	padding: 0px 15px;
	font-family: var(--font-family);
	font-weight: var(--font-weight-400);
	color: var(--black);
}

.uk-form-width-medium{
	width: 300px;
}

.uk-input:focus, .uk-select:focus, .uk-textarea:focus, .uk-input:hover{
	border-color: var(--pink);
}

label{
	font-family: var(--font-family);
	font-weight: var(--font-weight-400);
}

.uk-checkbox{
	width: 25px;
	height: 25px;
	border-radius: 3px;
	border: 2px solid var(--grey-dark)
}

.uk-checkbox:checked, .uk-checkbox:indeterminate, .uk-radio:checked, .uk-checkbox:checked:focus, .uk-checkbox:indeterminate:focus, .uk-radio:checked:focus{
	background-color: var(--pink);
}

.uk-checkbox:focus, .uk-radio:focus, .uk-checkbox:hover{
	border-color: var(--pink);
}

.input-container.checkbox label{
	display: inline-block;
	max-width: 400px;
	vertical-align: top;
}

.input-container.checkbox label:hover{
	cursor: pointer;
}

.input-container.checkbox .uk-checkbox{
	margin-right: 10px;
	display: inline-block;
}

/*--Container Gradient--*/
.container-gradient{
	background: rgb(34,52,88);
	/*background: linear-gradient(68deg, #9E2984 0%, var(--pink) 100%);*/
}

/*--Header--*/

.header{
	position: relative;
	padding: 10px 0px;
	z-index: 4;
}

/*--Footer--*/
.footer{
	padding: 40px 0px;
}

.footer .nav{
	display: block;
	padding: 0px;
	margin: 0px;
}

.footer .nav li{
	display: inline-block;
}

.footer .nav.default li{
	margin: 0px 10px;
}

.footer .nav.default li a{
	font-family: var(--font-family);
	font-weight: var(--font-weight-400);
	color: var(--black);
}

.footer .uk-icon-button{
	background: var(--purple);
}

.footer .uk-icon-button path{
	fill: var(--white);
}

/*--Progress--*/
.progress{
	position: absolute;
	top: 40px;
	width: 100%;
}

.progress:before{
	content: "";
	width: 100%;
	background-color: rgba(255,255,255,0.3);
	height: 3px;
	position: absolute;
	top: 50%;
	margin-top: -1.5px;
}

.progress .progress-step{
	width: 100%;
	position: relative;
	z-index: 1;
}

.progress .progress-step > .uk-hidden{
	display: none;
	appearance: none;
}

.progress .progress-step:before{
	content: "";
	height: 4px;
	background-color: var(--white);
	top: 50%;
	left: 0;
	margin-top: -2px;
	width: 100%;
	position: absolute;
	z-index: -1;
}

.progress .progress-step .progress-number{
	position: absolute;
	width: 30px;
	height: 30px;
	display: inline-block;
	border-radius: 100%;
	background: var(--purple-light);
	border: 4px solid var(--white);
	color: var(--white);
	font-family: var(--font-family);
	font-weight: var(--font-weight-500);
	line-height: 25px;
	top: 50%;
	margin-top: -15px;
	left: 50%;
	margin-left: -15px;
}

.progress .progress-step .progress-title{
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--white);
	font-family: var(--font-family);
	font-weight: var(--font-weight-400);
}

.progress .restart-button{
	position: absolute;
	top: 50%;
	margin-top: -23px;
	left: 10%;
	z-index: 4;
}

.restart-button:hover {
    background-color: var(--grey);
    opacity: 1 !important;
}

/*--Body Container--*/
.body-container{
	padding-top: 120px;
	padding-bottom: 120px;
	overflow: hidden;
}

.body-container .ring-bg path{
	/*fill: var(--white);*/
}

.body-container .ring-bg{
	position: absolute;
	opacity: 1;
	pointer-events: none;
	z-index: 0;
}

.body-container .ring-bg.top-left{
	top: -350px;
	left: -350px;
}

.body-container .ring-bg.bottom-right{
	bottom: -1000px;
	right: -300px;
}

/*--Primary Box Content--*/
.content-box{
	background-color: var(--white);
	border-radius: 3px;
	padding: 40px;
	position: relative;
	z-index: 4;
}

.content-box.content-box-small{
	padding: 15px;
}

/*--Registration - (Is this your vehicle) --*/
.reg-box{
	display: inline-block;
	border-bottom: 2px solid rgba(0,0,0,0.2);
	margin-bottom: 10px;
	padding: 0px 20px 10px 20px;
}

.reg-box.small{
	border: none;
	margin: 0px;
	padding: 0px;
	display: block;
}

.reg-box p{
	margin-bottom: 0px;
}

.reg-box span{
	vertical-align: middle;
}

.reg-box p .reg{
	color: var(--pink);
	font-weight: var(--font-weight-600);
	font-size: var(--font-size-small);
}

.reg-box p .small{
	margin-right: 10px;
}

.reg-box.small p .reg{
	font-size: var(--font-size-base);
}

/*--Results - (List & Map) --*/
.quick-form .input-container{
	position: relative;
}

.quick-form .input-container input{
	border-radius: 5px 50px 50px 5px;
}

.quick-form .input-container button{
	border-radius: 5px 50px 50px 5px;
	padding: 0px 15px;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
}

.quick-search .uk-form-label{
	font-size: var(--font-size-base);
	margin-bottom: 15px;
	display: block;
}

/*--Switcher--*/
.list-map-switch{
	margin: 0px;
	padding: 0px;
}

.list-map-switch li{
	list-style: none;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  border: 2px solid var(--purple);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 2px;
  background-color: var(--pink);
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--white);
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.switcher .switcher-label{
	font-family: var(--font-family);
	font-weight: var(--font-weight-600);
	vertical-align: -webkit-baseline-middle;
	vertical-align: -moz-middle-with-baseline;
	color: var(--white);
	margin: 0px 10px;
}

/*--List--*/
.search-results-container{
	overflow: scroll;
}

.table-wrapper.search-result-table-wrapper{
	max-height: 400px;
	overflow: scroll;
}

.uk-table.search-results{
	counter-reset: list-count;
	margin: 0px;
	overflow: scroll;
	padding-bottom: 40px;
}

.uk-table.search-results td{
	padding: 20px 0px;	
}

.uk-table.search-results p{
	margin: 0px;
}

.uk-table.search-results p.distance{
	font-weight: var(--font-weight-600);
}

.uk-table.search-results h6{
	margin-bottom: 0px;
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-600);
}

.uk-table.search-results span.content{
	display: inline-block;
	vertical-align: bottom;
}

.uk-table.search-results span.number{
	width: 45px;
	height: 45px;
	border-radius: 100%;
	background-color: var(--pink);
	color: var(--white);
	display: inline-block;
	margin-right: 10px;
	position: relative;
	font-family: var(--font-family);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-600);
	line-height: 45px;
}

.uk-table.search-results span.number:before{
	counter-increment: list-count;
	content: counter(list-count);
	position: absolute;
	text-align: center;
	width: 100%;
}

/*--Map--*/
.map-results{
	padding: 0px;
}

#map {
  height: 100%;
  /* The height is 400 pixels */
  width: 100%;
  /* The width is the width of the web page */
  border-radius: 3px;
  position: relative;
}

.map-info-box{
	position: absolute;
	top: 0;
	left: 0;
	width: 25%;
	height: 100vh;
	background-color: var(--white);
}

.map-info-box .pop-over-inner{
	padding: 20px;
}

.map-info-box .pop-over-inner h6{
	font-size: 1.4em;
}

/*--Parking DUration--*/
.uk-table-striped tbody tr:nth-of-type(odd), .uk-table-striped>tr:nth-of-type(odd){
	background-color: var(--white);
}

.uk-table-striped tbody tr:nth-of-type(even), .uk-table-striped>tr:nth-of-type(even){
	background-color: var(--pink-light);
}

.uk-table thead th{
	font-family: var(--font-family);
	font-weight: var(--font-weight-600);
	color: var(--purple);
	text-transform: none;
	font-size: var(--font-base);
}

.uk-table thead tr{
	background-color: var(--pink-light);
}

/*--Manual TIme --*/
.input-container .uk-inline{
	width: 100%;
}

/*--Payment--*/
.uk-table.item-table td{
	padding: 10px;	
}

.uk-table.item-table tfoot{
	border-top: 2px solid var(--grey-dark);
}

.uk-table.item-table tfoot tr.pink{
	background-color: var(--pink);
	color: var(--white);
}

.uk-table.item-table tfoot tr td{
	font-size: var(--font-size-base);
}

.uk-table.item-table tbody tr:first-of-type td{
	padding-top: 0px;
}

.uk-table.payment-table tr.purple{
	background-color: var(--purple);
	color: var(--white);
}

/*--Payment Form Example--*/

.example.example5 {
  background-color: var(--white);
}

.example.example5 * {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
}

#example5-paymentRequest {
  max-width: 500px;
  width: 100%;
  margin-bottom: 10px;
}

.example.example5 fieldset {
  border: 1px solid var(--grey-dark);
  padding: 15px;
  border-radius: 3px;
  background-color: var(--grey);
}

.example.example5 fieldset legend {
  padding: 5px 15px;
  text-align: left;
  font-size: 1em;
  font-weight: var(--font-wight-600);
  color: var(--white);
  background-color: var(--purple);
  border-radius: 50px;
}

.example.example5 fieldset legend + * {
  clear: both;
}

.example.example5 .card-only {
  display: block;
}
.example.example5 .payment-request-available {
  display: none;
}

.example.example5 .row {
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 10px;
}

.example.example5 .field {
  position: relative;
  width: 100%;
}

.example.example5 .field + .field {
  margin-left: 10px;
}

.example.example5 label {
  width: 100%;
  color: var(--purple);
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.example.example5 .input {
  width: 100%;
  color: var(--purple);
  background: var(--white);
  padding: 15px;
  border-radius: 3px;
  transition: border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid transparent;
}

.example.example5 .input:hover, .example.example5 .input:focus{
	border-color: var(--pink);
}

.example.example5 .input::-webkit-input-placeholder {
  color: var(--grey-dark);
}

.example.example5 .input::-moz-placeholder {
  color: var(--grey-dark);
}

.example.example5 .input:-ms-input-placeholder {
  color: #bfaef6;
}


.example.example5 .input.StripeElement--invalid {
  border-color: #ffc7ee;
}

.example.example5 input:-webkit-autofill,
.example.example5 select:-webkit-autofill {
  -webkit-text-fill-color: var(--purple);
  transition: background-color 100000000s;
  -webkit-animation: 1ms void-animation-out;
}

.example.example5 .StripeElement--webkit-autofill {
  background: transparent !important;
}

.example.example5 input,
.example.example5 button,
.example.example5 select {
  -webkit-animation: 1ms void-animation-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-style: none;
  border-radius: 0;
}

.example.example5 select.input,
.example.example5 select:-webkit-autofill {
  background-image: url('data:image/svg+xml;utf8,<svg width="10px" height="5px" viewBox="0 0 10 5" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path fill="#fff" d="M5.35355339,4.64644661 L9.14644661,0.853553391 L9.14644661,0.853553391 C9.34170876,0.658291245 9.34170876,0.341708755 9.14644661,0.146446609 C9.05267842,0.0526784202 8.92550146,-2.43597394e-17 8.79289322,0 L1.20710678,0 L1.20710678,0 C0.930964406,5.07265313e-17 0.707106781,0.223857625 0.707106781,0.5 C0.707106781,0.632608245 0.759785201,0.759785201 0.853553391,0.853553391 L4.64644661,4.64644661 L4.64644661,4.64644661 C4.84170876,4.84170876 5.15829124,4.84170876 5.35355339,4.64644661 Z" id="shape"></path></svg>');
  background-position: 100%;
  background-size: 10px 5px;
  background-repeat: no-repeat;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 20px;
}

.example.example5 button {
  display: block;
  width: 100%;
  padding: 15px 0px;
  margin: 20px 0 0;
  background-color: var(--purple);
  border-radius: 50px;
  color: var(--white);
  font-weight: var(--font-weight-600);
  cursor: pointer;
}

.example.example5 button:hover{
	background-color: var(--pink);
}

.example.example5 button:active {
  background-color: #cdd0f8;
}

.example.example5 .error svg .base {
  fill: #fff;
}

.example.example5 .error svg .glyph {
  fill: #9169d8;
}

.example.example5 .error .message {
  color: #fff;
}

.example.example5 .success .icon .border {
  stroke: #bfaef6;
}

.example.example5 .success .icon .checkmark {
  stroke: #fff;
}

.example.example5 .success .title {
  color: #fff;
}

.example.example5 .success .message {
  color: #cdd0f8;
}

.example.example5 .success .reset path {
  fill: #fff;
}

main > .submitted .success,
main > .submitting .success {
  pointer-events: all;
}

main > .submitting .success .icon {
  opacity: 1;
}

main > .submitted .success > * {
  opacity: 1;
  transform: none !important;
}

main > .submitted .success > :nth-child(2) {
  transition-delay: 0.1s;
}

main > .submitted .success > :nth-child(3) {
  transition-delay: 0.2s;
}

main > .submitted .success > :nth-child(4) {
  transition-delay: 0.3s;
}

main > .submitted .success .icon .border,
main > .submitted .success .icon .checkmark {
  opacity: 1;
  stroke-dashoffset: 0 !important;
}

.success {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  text-align: center;
  pointer-events: none;
  overflow: hidden;
  visibility: hidden;
}

main > .success > * {
  transition-property: opacity, transform;
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(50px);
}

main > .success .icon {
  margin: 15px 0 30px;
  transform: translateY(70px) scale(0.75);
}

main > .success .icon svg {
  will-change: transform;
}

main > .success .icon .border {
  stroke-dasharray: 251;
  stroke-dashoffset: 62.75;
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: spin 1s linear infinite;
}

main > .success .icon .checkmark {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  transition: stroke-dashoffset 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) 0.35s;
}

main > .success .title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
}

main > .success .message {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.6em;
}

main > .success .message span {
  font-size: inherit;
}

main > .success .reset:active {
  transition-duration: 0.15s;
  transition-delay: 0s;
  opacity: 0.65;
}

main > .success .reset svg {
  will-change: transform;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media only screen and (max-width: 820px) {
	
	/*--Global Styles--*/
	:root{
		/*Font Sizes*/
		--font-size-xlarge: 2.8em;
		--font-size-large: 2em;
		--font-size-medium: 1.6em;
		--font-size-small: 1.4em;
		--font-size-base: 1em;
	}
	
	.body-container{
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.body-container .ring-bg {
		opacity: 0.5;
	}
	
	.content-outside{
		padding: 0px 60px;
	}
	
	.body-container .ring-bg.top-left{
		top: -170px;
		left: -200px;
	}
	
	.body-container .ring-bg.bottom-right{
		bottom: -250px;
		right; -190px;
	}
	
	.input-container.checkbox label{
		max-width: 260px;
	}
	
	.content-box{
		padding: 20px;
	}
	
	.uk-width-medium{
		width: 100% !important;
	}
	
	#registration-form .uk-button-group{
		display: block !important;
	}
	
	.uk-card-body{
		padding: 20px;
	}
	
	.progress .restart-button{
		top: 50%;
	    left: 10px;
	    margin-top: -21px;
	}
	
	/*--Buttons--*/
	.uk-button{
		display: block;
	}
	
	.uk-button-group{
		flex-wrap: wrap;
	}
	
	.uk-button-group .uk-button, .input-container .uk-button{
		width: 100%;
	}
	
	.uk-button-group .uk-margin-left{
		margin-left: 0px !important;
		margin-top: 10px;
	}
	
	.uk-button-group .uk-margin-right{
		margin-right: 0px !important;
		margin-bottom: 10px;
	}
	
	.uk-button.filter-trigger{
		position: relative;
		z-index: 5;
	}
	
	.uk-button span.icon{
		display: inline-block;
		width: 15px;
		height: 15px;
		background-size: cover;
		background-repeat: no-repeat;
		vertical-align: middle;
		margin-right: 5px;
	}
	
	.uk-button span.icon.sliders{
		background-image: url(/img/sliders.svg);
	}
	
	.uk-button span.icon.close{
		background-image: url(/img/close.svg);
	}
	
	.uk-button.mobile{
		border-radius: 100%;
		display: inline-block;
		padding: 0px;
		width: 45px;
		height: 45px;
	}
	
	/*--reg result--*/
	.reg-box{
		padding: 0px 0px 10px 0px;
	}
	
	/*--Results Page--*/
	.filter{
		position: absolute;
		z-index: 5;
		width: calc(100% - 30px);
		margin-top: 0px !important;
		opacity: 0;
		pointer-events: none;
		height: 0px;
	}
	
	.filter.active{
		opacity: 1;
		pointer-events: all;
		height: auto;
	}
	
	.content-box.map-results{
		height: 500px;
		padding: 0px;
	}
	
	.content-box.list-results{
		min-height: 400px;
	}
	
	.map-info-box{
		width: 100%;
		height: auto;
		bottom: 0;
		top: auto;
		border-top: 2px solid var(--purple);
	}
	
	.map-info-box img{
		height: auto;
		max-width: 100px;
		vertical-align: top;
		margin: 10px 10px 10px 10px;
	}
	
	.map-info-box .pop-over-inner{
		padding: 10px;
		display: inline-block;
		max-width: 60%;
	}
	
	.map-info-box .pop-over-inner h6, .map-info-box .pop-over-inner p{
		margin: 0px;
	}
	
	
	.map-info-box .pop-over-inner h6{
		font-size: 1em;
		font-weight: var(--font-weight-600);
	}
	
	.map-info-box .pop-over-inner p{
		font-size: 0.8em;
	}
	
	.map-info-box .pop-over-inner .uk-button{
		padding: 2.5px 20px;
		line-height: normal;
		width: auto !important;
		display: inline-block;
	}
	
	.quick-form .input-container button{
		width: auto;
	}
	
	/*--Parkign times list---*/
	
	.table-primary{
		padding: 0px;
		background-color: transparent;
	}
	
	table.block-responsive td{
		position: relative;
		padding-left: 45%;
		border-bottom: 1px solid var(--grey-dark);
		z-index: 0;
	}
	
	table.block-responsive  td:before { 
		position: absolute;
		top: 0px;
		left: 0;
		width: 35%; 
		padding-right: 10px; 
		white-space: nowrap;
		font-family: var(--font-family);
		font-weight: var(--font-weight-600);
		background-color: var(--pink-light);
		height: 100%;
		z-index: -1;
		border-bottom: 1px solid var(--grey-dark);
		padding-left: 10px;
		line-height: 30px;
	}
	
	.uk-table-striped tbody tr:nth-of-type(even), .uk-table-striped>tr:nth-of-type(even){
		background-color: var(--white);
	}
	
	table.block-responsive td:nth-of-type(1):before { content: ""; }
	table.block-responsive td:nth-of-type(2):before { content: "Entry Time"; }
	table.block-responsive td:nth-of-type(3):before { content: "Lead Time"; }
	table.block-responsive td:nth-of-type(4):before { content: "Stay Duration"; }
	table.block-responsive td:nth-of-type(5):before { content: "Amount Due"; }
	table.block-responsive td:nth-of-type(6):before { content: "Status"; }
	table.block-responsive td:nth-of-type(7):before { content: "Date of Birth"; }
	
	table.block-responsive tr{
		margin-bottom: 20px;
		border-radius: 3px;
	}
	
	.not-listed{
		color: var(--white);
	}
	
	/*--Payment Form--*/
	.example.example5 .row{
		flex-flow: wrap;
	}
	
	.example.example5 .field + .field{
		margin: 0px;
	}
}


/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

