@font-face {
  font-family: 'UnitPro';
  src: url("../fonts/UnitPro-Medi.woff2") format("woff2"), url("../fonts/UnitPro-Medi.woff") format("woff"), url("../fonts/UnitPro-Medi.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'UnitPro';
  src: url("../fonts/UnitPro.woff2") format("woff2"), url("../fonts/UnitPro.woff") format("woff"), url("../fonts/UnitPro.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'UnitPro';
  src: url("../fonts/UnitPro-Bold.woff2") format("woff2"), url("../fonts/UnitPro-Bold.woff") format("woff"), url("../fonts/UnitPro-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

/* 	Media query breakpoint te gebruiken in combinatie met de breakpoint mixin
	vb: @include bp(max-width, $bp-medium) of @include bp(max-width, 800px)
*/
.mainmenu {
  float: right;
  width: calc(100% - 220px);
  margin-top: 12px;
}

.mainmenu ul {
  list-style: none;
  float: left;
  margin: 0;
  padding: 0;
}

.mainmenu ul.menu-right {
  float: right;
}

.mainmenu ul.menu-right li:last-child {
  margin-right: 0;
}

.mainmenu li {
  position: relative;
  float: left;
  margin-right: 40px;
  padding: 23px 0;
}

.mainmenu li.active a {
  color: #000;
}

.mainmenu li.active:after {
  content: '';
  display: block;
  background: #00aeef;
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.mainmenu li a {
  padding: 5px 0;
  text-decoration: none;
  color: #647381;
  font-size: 19px;
  font-family: Arial, "UnitPro", Verdana, sans-serif;
  font-weight: 400;
}

.mainmenu li a:hover {
  color: #000;
}

.homepage .mainmenu ul li.active:after {
  display: none;
}

.homepage .mainmenu ul li a {
  color: #fff;
}

.menu-mobile-button {
  display: none;
  float: right;
  padding: 5px;
  font-size: 21px;
  margin-top: 18px;
  cursor: pointer;
}

.menu-mobile-button.active .fa.open {
  display: none;
}

.menu-mobile-button.active .fa.close {
  display: inline-block;
}

.menu-mobile-button.black {
  margin-bottom: 18px;
}

.menu-mobile-button.black span {
  color: #000;
}

.menu-mobile-button.black .fa {
  color: #000;
}

.menu-mobile-button span {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  font-family: Arial, "UnitPro", Verdana, sans-serif;
}

.menu-mobile-button .fa {
  color: #fff;
}

.menu-mobile-button .fa.close {
  display: none;
}

.menumobile {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  opacity: 0;
  background: #00aeef;
}

.menumobile .menu {
  float: left;
  width: 100%;
  margin: 0;
  padding: 15px 0 20px;
  list-style: none;
}

.menumobile .logo {
  float: left;
  margin-top: 40px;
}

.menumobile .title {
  float: left;
  width: 120px;
  font-size: 24px;
  font-weight: 700;
  font-family: Arial, "UnitPro", Verdana, sans-serif;
  text-transform: uppercase;
  color: #fff;
  margin-top: 30px;
}

.menumobile .closebutton {
  float: right;
  color: #fff;
  margin-top: 24px;
  font-size: 23px;
  padding: 8px 0 8px 8px;
  cursor: pointer;
}

.menumobile li {
  float: left;
  width: 100%;
}

.menumobile li:last-child a {
  border: none;
}

.menumobile li:first-child a {
  border-top: 1px solid #2e8fef;
}

.menumobile li a {
  float: left;
  width: 100%;
  padding: 14px 0;
  text-decoration: none;
  border-bottom: 1px solid #2e8fef;
  color: #fff;
  font-family: Arial, "UnitPro", Verdana, sans-serif;
  text-transform: uppercase;
  font-size: 18px;
}

.langselect .lang {
  margin-left: 4px;
  opacity: .5;
  text-decoration: none;
}

.langselect .lang.active, .langselect .lang:hover {
  opacity: 1;
}

.langselect .lang img {
  width: 30px;
}

.mobilelang {
  display: none;
  float: right;
  list-style: none;
  margin: 23px 12px 0 0;
  padding: 0;
}

@media only screen and (max-width: 979px) {
  .menumobile {
    display: block;
  }
  .mainmenu {
    display: none;
  }
  .mobilelang {
    display: block;
  }
  .menu-mobile-button {
    display: block;
  }
}

@media only screen and (max-width: 1200px) {
  .mainmenu li {
    margin-right: 20px;
    padding: 23px 0;
  }
  .mainmenu li a {
    padding: 5px 0;
    font-size: 16px;
  }
}

* {
  box-sizing: border-box;
  outline: none;
}

img {
  max-width: 100%;
}

a:link,
a:visited {
  color: #2A95D2;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, "Nunito", Verdana, sans-serif;
}

body {
  font-size: 16px;
  line-height: 1.5;
  color: #242424;
  font-weight: 400;
  background: #fff;
  color: #666;
}

.mainwebsite {
  float: left;
  width: 100%;
  background: #fff;
}

.container {
  float: left;
  width: 100%;
  margin: 0 auto;
  padding-left: 3%;
  padding-right: 3%;
}

.container.main {
  padding-left: 0;
  padding-right: 0;
}

.layout {
  position: relative;
  float: none;
  width: 100%;
  margin: 0 auto;
  max-width: 1280px;
}

.layout.small {
  max-width: 1080px;
}

.layout.wide {
  padding: 0 3%;
}

.layout.login {
  height: 100%;
  background: url("../images/webfront/natuurmonumenten/bosbg.jpg") no-repeat center center fixed;
  background-size: cover;
  max-width: none;
}

.content {
  float: left;
  width: 100%;
}

h1 {
  font-size: 28px;
  line-height: 28px;
  margin: 24px 0;
  font-family: Arial, "UnitPro", Verdana, sans-serif;
  font-weight: 400;
  color: #000;
}

h2 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
  font-family: Arial, "UnitPro", Verdana, sans-serif;
  font-weight: 500;
  letter-spacing: -1px;
  color: #000;
}

h3 {
  font-family: Arial, "UnitPro", Verdana, sans-serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.5px;
  margin: 0 0 10px 0;
  color: #000;
}

hr {
  float: left;
  width: 100%;
  margin: 24px 0;
  border: 0;
  border-bottom: 1px solid #ddd;
}

.iframe {
  width: 100%;
  min-height: 700px;
  border: 1px solid #f3f3f3;
}

input[type='text'],
input[type='email'],
input[type='password'],
input[type='number'],
textarea {
  display: inline-block;
  padding: 0 20px;
  font-size: 17px;
  border: 1px solid #dadada;
  height: 58px;
  width: 100%;
  font-family: Arial, "Nunito", Verdana, sans-serif;
  max-width: 320px;
  border-radius: 5px;
  transition: all 0.25s;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='number']:focus,
textarea:focus {
  border-color: #000;
}

input[type='text'].error,
input[type='email'].error,
input[type='password'].error,
input[type='number'].error,
textarea.error {
  border: 1px solid #B94A48;
  background: #F7E8E8;
}

textarea {
  padding: 16px 20px;
  min-height: 100px;
  width: 100%;
  max-width: 100%;
}

.required {
  color: #cc0000;
  font-size: .9em;
  display: inline-block;
  line-height: 1em;
}

.grey {
  color: #aaa;
}

.styled-select {
  float: left;
  width: 100%;
  max-width: 320px;
  height: 58px;
  overflow: hidden;
  background: url(../images/webfront/arrow_down.svg) no-repeat top 50% right 17px;
  background-size: 13px 8px;
  background-color: #fff;
}

.styled-select select {
  background: transparent;
  height: 100%;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  float: left;
  clear: both;
  padding: 0 20px;
  border: 1px solid #dadada;
  font-size: 17px;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.35s;
}

.styled-select select:focus {
  outline: none;
  border: 1px solid #000;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.15);
}

.styled-select select::-ms-expand {
  display: none;
}

.form-error {
  color: #B94A48;
  font-size: .8em;
  float: left;
  width: 100%;
}

.buttonset {
  float: left;
  width: 100%;
}

.buttonset .button {
  margin-right: 10px;
}

.buttonset .button:last-child {
  margin-right: 0;
}

input[type=submit],
input[type=button],
a.button,
.button {
  cursor: pointer;
  float: left;
  overflow: hidden;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  border: none;
  color: #fff;
  text-decoration: none;
  background: #00aeef;
  /*background: linear-gradient(120deg, #005bd7, #00a3f7, #005bd7);*/
  background-position: 0% 0%;
  background-size: 200% 200%;
  border-radius: 40px;
  transition: all linear .25s;
  /*
    &:before {
    	content:'';
    	display:block;
    	position:absolute;
    	z-index:1;
    	width:0%;
    	height:100%;
    	left:0;
    	top:0;
    	opacity:0;
    	background:darken($primary, 4%);
    	@include transition(all 0.3s);
    }
    */
}

input[type=submit].orange,
input[type=button].orange,
a.button.orange,
.button.orange {
  background: orange;
}

input[type=submit].green,
input[type=button].green,
a.button.green,
.button.green {
  background: #81B51A;
}

input[type=submit].green:hover,
input[type=button].green:hover,
a.button.green:hover,
.button.green:hover {
  background: #618814;
}

input[type=submit] span,
input[type=button] span,
a.button span,
.button span {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  padding: 10px 35px 10px 20px;
  text-align: center;
  border-radius: 40px;
  background: url(../images/webfront/btn_arrow_white.png) no-repeat right 15px top 50%;
}

input[type=submit]:hover,
input[type=button]:hover,
a.button:hover,
.button:hover {
  /*background: linear-gradient(120deg, #009dff, #009dff, #009dff); */
  background: #06395b;
  /*
    	&:before {
    		opacity:1;
    		width:100%;
    	}
    	*/
}

input[type=submit]:active span,
input[type=button]:active span,
a.button:active span,
.button:active span {
  background-color: #0094cb;
  box-shadow: none;
}

input[type=submit].white,
input[type=button].white,
a.button.white,
.button.white {
  background: #fff;
  color: #00aeef;
  box-shadow: inset 0 0 0 2px #00aeef;
}

input[type=submit].white span,
input[type=button].white span,
a.button.white span,
.button.white span {
  background-color: none;
  background-image: none;
  /* background:url(../images/webfront/btn_arrow_black.png) no-repeat right 35px top 50%; */
}

input[type=submit].white:hover,
input[type=button].white:hover,
a.button.white:hover,
.button.white:hover {
  box-shadow: none;
  /*background: linear-gradient(120deg, #005bd7, #00a3f7, #005bd7); */
  background: #06395b;
  background-position: 0% 0%;
  background-size: 200% 200%;
  color: #fff;
  /*
    		@include box-shadow(inset 0 0 0 2px #242424);
    	
    		&:before {
    			opacity:0;
    		}
    		*/
}

input[type=submit].white:active span,
input[type=button].white:active span,
a.button.white:active span,
.button.white:active span {
  box-shadow: none;
}

input[type=submit].circle,
input[type=button].circle,
a.button.circle,
.button.circle {
  width: 28px;
  height: 28px;
  position: absolute;
  right: 10px;
  bottom: 0;
}

input[type=submit].circle span,
input[type=button].circle span,
a.button.circle span,
.button.circle span {
  float: left;
  padding: 0;
  width: 28px;
  height: 28px;
  background-position: right 10px top 50%;
}

button#add_promocode,
input[type=submit] {
  font-family: Arial, "Nunito", Verdana, sans-serif;
  cursor: pointer;
  border: none;
  font-weight: 400;
  font-size: 19px;
  float: right;
  margin-top: 40px;
  padding: 14px 55px 14px 35px;
  text-align: center;
  border-radius: 40px;
  background: url(../images/webfront/btn_arrow_white.png) no-repeat right 35px top 50% #00aeef;
  transition: all 0.25s;
}

button#add_promocode:hover,
input[type=submit]:hover {
  background: url(../images/webfront/btn_arrow_white.png) no-repeat right 35px top 50% #06395b;
}

button#add_promocode:before,
input[type=submit]:before {
  display: none;
}

button#add_promocode:active,
input[type=submit]:active {
  background-color: #0094cb;
  box-shadow: inset 0 1px 2px 3px #0081b2;
}

.checkbox-container {
  float: left;
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 18px;
  line-height: 23px;
  font-weight: 300;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #eee;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #fff;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container label {
  cursor: pointer;
}

.checkbox-container .checkmark {
  position: absolute;
  top: calc(50% - 12px);
  left: 0;
  height: 23px;
  width: 23px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 8px;
  border: solid #00aeef;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.radio-container {
  float: left;
  display: block;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.radio-container:hover input ~ .checkmark {
  background-color: #eee;
}

.radio-container input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.radio-container input:checked ~ .checkmark {
  background-color: #fff;
}

.radio-container input:checked ~ .checkmark:after {
  display: block;
}

.radio-container .checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 23px;
  width: 23px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
}

.radio-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 6px;
  left: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00aeef;
}

.intro-text {
  float: left;
  width: 100%;
  clear: both;
  max-width: 860px;
  margin-bottom: 50px;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 300;
  line-height: 34px;
}

.subheader {
  float: left;
  width: 100%;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
}

.image-container {
  position: relative;
  float: left;
  width: 100%;
}

.image-container:after {
  content: '';
  display: block;
  width: 90%;
  height: 20%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.image-container .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  float: left;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  border-radius: 5px;
}

.image-container img {
  /*-webkit-backface-visibility: hidden; */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.image-container:hover img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

.info-message {
  position: relative;
  float: left;
  width: 100%;
  clear: both;
  font-size: 14px;
  color: #787878;
  font-style: italic;
  padding-left: 27px;
}

.info-message:before {
  content: "i";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: #00aeef;
  border-radius: 50%;
  float: left;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
}

.header {
  float: left;
  width: 100%;
  margin-bottom: 45px;
  background: #fff;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.header.homepage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  margin-bottom: 0;
  background: none;
  box-shadow: none;
}

.header .logo {
  float: left;
  width: 180px;
  margin-top: 21px;
  line-height: 0;
}

.header .logo img {
  width: 100%;
}

.homepage .layout.homepage {
  max-width: none;
}

.topbanner {
  margin-top: -45px;
  margin-bottom: 48px;
  height: 550px;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-shadow: 2px 5px 25px rgba(0, 0, 0, 0.8);
}

.topbanner .layout {
  margin-top: 200px;
}

.topbanner.other .innertopbanner {
  float: left;
  width: 100%;
}

.topbanner.other .innertopbanner .layout {
  padding: 0 1.5%;
}

.topbanner.homebanner {
  background-position: center center;
  margin-top: 0;
  margin-bottom: 0;
  height: 560px;
}

.topbanner.homebanner .innertopbanner {
  float: left;
  position: absolute;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
}

.topbanner.homebanner .text {
  top: 0;
}

.topbanner .text {
  position: relative;
  top: -50px;
  max-width: 1100px;
}

.topbanner h1 {
  color: #fff;
  font-size: 50px;
  line-height: 55px;
  letter-spacing: -1px;
  margin-top: 0;
  font-weight: 700;
}

.topbanner h2 {
  color: #fff;
  font-size: 31px;
  margin-bottom: 0;
  font-weight: 500;
}

.home-products {
  float: left;
  width: 100%;
  position: relative;
  top: -90px;
}

.home-products .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.home-products .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.home-products .product:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 80px  ) / 3) - 80px);
  margin-right: 80px;
  margin-bottom: 0px;
}

.home-products .product:nth-of-type(3n) {
  margin-right: 0;
}

.home-products .product h2 {
  float: left;
  width: 100%;
  margin-top: 20px;
  font-size: 28px;
}

.home-products .product .info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  float: left;
  width: 100%;
  font-size: 17px;
  margin-bottom: 12px;
}

.home-products .product .image-container {
  /*overflow:hidden;*/
}

.home-products .product .image-container img {
  width: 100%;
}

.home-products .product .image-container .inner {
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
  width: 100%;
  float: left;
  border-radius: 0;
  box-shadow: 0 12px 16px -10px rgba(0, 0, 0, 0.5);
}

.home-products .product .image-container .inner a {
  float: left;
  width: 100%;
}

.home-products .product .buttonset .button {
  margin-bottom: 10px;
  min-width: 200px;
}

.home-products .product .buttonset .button:last-child {
  margin-bottom: 0;
}

.home-locations h2 {
  float: left;
  width: 100%;
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}

.home-locations .subtitle {
  max-width: 770px;
  text-align: center;
  margin: 0 auto;
  display: block;
  font-size: 20px;
}

.home-locations #map {
  height: 720px;
  margin-top: 30px;
}

.home-locations #google-popup {
  float: left;
  width: 420px;
  min-width: 360px;
  text-align: left;
  padding: 11px 0 20px 5px;
}

.home-locations #google-popup h2 {
  font-size: 20px;
  text-align: left;
  margin: 0 0 2px 0;
}

.home-locations #google-popup .subtitle {
  float: left;
  width: 100%;
  text-align: left;
}

.home-locations #google-popup .subtitle table {
  margin: 5px 0 10px;
}

.home-locations #google-popup .subtitle table td, .home-locations #google-popup .subtitle table tr {
  color: #5e6d7c;
  font-size: 15px;
  font-weight: 400;
}

.home-locations #google-popup .subtitle table td:first-child {
  width: 90px;
}

.home-locations #google-popup .subtitle p {
  float: left;
  margin: 0;
  width: 100%;
  color: #5e6d7c;
  font-size: 15px;
  font-weight: 400;
}

.home-locations #google-popup .services {
  float: left;
  width: 100%;
  margin-top: 12px;
}

.home-locations #google-popup .services span {
  float: left;
  margin-right: 14px;
}

.home-locations #google-popup .services span:hover {
  cursor: help;
}

.home-locations #google-popup .services span img {
  height: 22px;
}

.home-locations #google-popup .button {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 400;
}

.home-locations #google-popup .button span {
  padding: 8px 50px 10px 25px;
}

.popular-locations {
  margin-top: 80px;
}

.popular-locations h2 {
  float: left;
  width: 100%;
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}

.popular-locations .subtitle {
  max-width: 770px;
  text-align: center;
  margin: 0 auto;
  display: block;
  font-size: 20px;
}

.popular-locations h3 {
  float: left;
  width: 85%;
  margin-bottom: 0;
}

.popular-locations h3 a {
  color: #242424;
  text-decoration: none;
}

.popular-locations h3 a:hover {
  text-decoration: underline;
}

.popular-locations .items {
  float: left;
  width: 100%;
  margin-top: 30px;
}

.popular-locations .items .item:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 20px  ) / 4) - 20px);
  margin-right: 20px;
  margin-bottom: 0;
}

.popular-locations .items .item:nth-of-type(4n) {
  margin-right: 0;
}

.popular-locations .items .item .location {
  font-size: 1.1em;
  text-decoration: none;
  color: #999;
}

.popular-locations .image-container {
  margin-bottom: 25px;
}

.popular-locations .image-container .inner {
  max-height: 200px;
}

.popular-locations .image-container .inner img {
  width: 550px;
}

.popular-locations .info {
  float: left;
  width: 100%;
  position: relative;
}

.contentpage.producttypes .topbanner {
  height: 450px;
  margin-bottom: 0;
}

.ordersteps_container {
  display: block;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  position: -webkit-sticky;
  position: sticky;
  z-index: 10;
  top: 0;
}

.ordersteps_container .ordersteps_layout {
  float: left;
  width: 100%;
  background: #fff;
  padding: 12px 0 6px 0;
}

.ordersteps {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ordersteps li {
  float: left;
  width: auto;
  position: relative;
  margin-right: 25px;
  background: #efefef;
  color: #787878;
  font-weight: 500;
  min-width: 160px;
  padding: 10px 20px;
  text-align: center;
}

.ordersteps li.active {
  background: #00aeef;
  color: #fff;
}

.ordersteps li.active:after {
  background: #00aeef;
}

.ordersteps li.active:before {
  background: #00aeef;
}

.ordersteps li.done {
  background: #00aeef;
  color: #fff;
  padding: 0;
}

.ordersteps li.done:before {
  display: none;
}

.ordersteps li.done:after {
  display: none;
}

.ordersteps li.done a {
  float: left;
  width: 100%;
  color: #fff;
  text-decoration: underline;
  padding: 10px 20px;
  transition: background 0.3s;
}

.ordersteps li.done a:before {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  left: -19px;
  top: 0;
  background: #00aeef;
  transition: background 0.3s;
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 100%, 90% 50%, 0% 0%);
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 100%, 90% 50%, 0% 0%);
}

.ordersteps li.done a:after {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  right: -19px;
  top: 0;
  background: #00aeef;
  transition: background 0.3s;
  -webkit-clip-path: polygon(10% 0%, 100% 50%, 10% 100%, 0% 100%, 0% 50%, 0% 0%);
  clip-path: polygon(10% 0%, 100% 50%, 10% 100%, 0% 100%, 0% 50%, 0% 0%);
}

.ordersteps li.done a:hover {
  background: #009bd6;
  text-decoration: underline;
}

.ordersteps li.done a:hover:before, .ordersteps li.done a:hover:after {
  background: #009bd6;
}

.ordersteps li a {
  float: left;
  width: 100%;
  text-align: center;
  background: #00aeef;
  color: #fff;
  text-decoration: none;
}

.ordersteps li:before {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  left: -19px;
  top: 0;
  background: #efefef;
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 100%, 90% 50%, 0% 0%);
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 100%, 90% 50%, 0% 0%);
}

.ordersteps li:after {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  right: -19px;
  top: 0;
  background: #efefef;
  -webkit-clip-path: polygon(10% 0%, 100% 50%, 10% 100%, 0% 100%, 0% 50%, 0% 0%);
  clip-path: polygon(10% 0%, 100% 50%, 10% 100%, 0% 100%, 0% 50%, 0% 0%);
}

.ordersteps li:first-child::before {
  display: none;
}

.ordersteps li:first-child a:before {
  display: none;
}

.blue-container {
  float: left;
  width: 100%;
  border-top: 1px solid #e7ebef;
  padding-top: 40px;
  margin-top: 60px;
}

.blue-container .container-options {
  float: left;
  width: 100%;
  background: #e0f3fa;
  padding: 45px 50px;
  margin-top: 20px;
}

.blue-container label.label-container {
  position: relative;
  float: left;
  width: 100%;
  background: #fff;
  padding: 35px;
  margin-bottom: 15px;
  cursor: pointer;
  border-radius: 5px;
}

.blue-container label.label-container .title {
  float: left;
  width: 100%;
  font-size: 20px;
  font-weight: 300;
  line-height: 25px;
}

.blue-container label.label-container .title strong {
  font-weight: 700;
}

.blue-container .method-image-container {
  position: absolute;
  left: 80px;
  width: 51px;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 28px;
}

.blue-container .method-image-container img {
  max-width: 51px;
}

.blue-container .method-content {
  float: left;
  width: 100%;
  padding-left: 120px;
  cursor: pointer;
}

.blue-container .method-group {
  float: left;
  width: 100%;
  margin-top: 20px;
}

.blue-container .smallgreen {
  float: left;
  width: 100%;
  color: #009900;
  font-size: 13px;
  line-height: 18px;
  margin-top: 5px;
}

.blue-container .form-group {
  float: left;
}

.blue-container .form-group:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 20px  ) / 2) - 20px);
  margin-right: 20px;
  margin-bottom: 10px;
}

.blue-container .form-group:nth-of-type(2n) {
  margin-right: 0;
}

.blue-container .form-group input {
  max-width: 100%;
}

.blue-container .form-group.agreement {
  width: 100%;
  margin: 10px 0 0 0;
}

.blue-container .form-group.agreement input {
  float: left;
  width: auto;
}

.blue-container .form-group.agreement label {
  width: auto;
  padding: 0;
  margin-bottom: 0;
}

.orderprocess {
  margin-top: 12px;
}

.orderprocess h1, .orderprocess h2 {
  float: left;
  width: 100%;
  position: relative;
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
  margin-bottom: 24px;
}

.orderprocess h1.steptitle, .orderprocess h2.steptitle {
  padding-left: 50px;
}

.orderprocess h1 .stepnumber, .orderprocess h2 .stepnumber {
  position: absolute;
  left: 0;
  top: calc(50% - 18px);
  background: #00aeef;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 24px;
  color: #fff;
  border-radius: 50%;
}

.orderprocess h1 span.sub, .orderprocess h2 span.sub {
  color: #999;
  font-size: 18px;
  clear: both;
  display: block;
}

.orderprocess h3 {
  font-size: 18px;
}

.orderprocess .info h3 {
  font-size: 24px;
}

.orderprocess .page-intro {
  float: left;
  width: 100%;
  max-width: 890px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e7ebef;
}

.orderprocess .page-intro h1 {
  padding: 0;
  font-size: 48px;
}

.orderprocess .next-step-container {
  float: left;
  width: 100%;
}

.orderprocess .next-step-container input.button {
  float: right;
}

.orderprocess.step-location form {
  float: left;
  width: 100%;
}

.orderprocess.step-location .location_holder {
  float: left;
  width: 100%;
}

.orderprocess.step-location #garage-holder {
  float: left;
  width: 100%;
  border-top: 1px solid #e7ebef;
}

.orderprocess.step-location #garage-holder.active {
  margin-top: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e7ebef;
}

.orderprocess.step-location #garage-holder h2 {
  margin-top: 70px;
}

.orderprocess.step-location #garage-holder .subheader {
  margin-top: 2px;
  margin-bottom: 2px;
}

.orderprocess.step-location .next-step-container {
  opacity: 0;
}

.orderprocess #garage-holder,
.orderprocess #product-holder,
.orderprocess #yourdata-holder {
  float: left;
  width: 100%;
}

.orderprocess #product-preference-holder {
  float: left;
  width: 100%;
  border-top: 1px solid #e7ebef;
  padding-top: 40px;
  margin-top: 40px;
}

.orderprocess #product-preference-holder .preferences {
  float: left;
  width: 100%;
  max-width: 1000px;
}

.orderprocess .selectamount {
  float: left;
  width: 100%;
}

.orderprocess #parkingspot-holder {
  float: left;
  width: 100%;
  display: none;
}

.orderprocess #parkingspot-holder .parkingspotlabels {
  float: left;
  width: 100%;
  padding-right: 40px;
}

.orderprocess #parkingspot-holder .parkingspot {
  float: left;
  width: 100%;
  margin-bottom: 12px;
  position: relative;
  padding-right: 40px;
}

.orderprocess #parkingspot-holder .parkingspot input[type='text'] {
  width: 100%;
  max-width: 100%;
}

.orderprocess #parkingspot-holder .parkingspot input[type='text'].startdate, .orderprocess #parkingspot-holder .parkingspot input[type='text'].enddate {
  width: calc(100% - 60px);
}

.orderprocess #parkingspot-holder .label {
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 15px;
}

.orderprocess #parkingspot-holder .label.licenceplate,
.orderprocess #parkingspot-holder .inputgroup.licenceplate {
  float: left;
  width: 25%;
  margin-right: 3%;
}

.orderprocess #parkingspot-holder .label.driver,
.orderprocess #parkingspot-holder .inputgroup.driver {
  float: left;
  width: 40%;
  margin-right: 3%;
}

.orderprocess #parkingspot-holder .label.startingdate,
.orderprocess #parkingspot-holder .inputgroup.startingdate {
  float: left;
  width: 25%;
}

.orderprocess #parkingspot-holder .remove-parkingspot {
  float: right;
  position: relative;
  float: right;
  background: #fff;
  width: 28px;
  height: 28px;
  margin-top: 14px;
  cursor: pointer;
  border-radius: 50%;
}

.orderprocess #parkingspot-holder .remove-parkingspot .fa {
  color: #ff2222;
  position: absolute;
  left: 52%;
  top: 50%;
  -webkit-transform: translate(-52%, -50%);
          transform: translate(-52%, -50%);
  font-size: 20px;
  line-height: 0;
}

.orderprocess .general_part {
  float: left;
  width: 100%;
}

.orderprocess .general_part .form-group {
  float: left;
  clear: both;
  margin-bottom: 12px;
}

.orderprocess .inputgroup.startingdate input {
  width: calc(100% - 62px);
}

.orderprocess .inputgroup.startingdate .button.calendar {
  position: relative;
  float: right;
  width: 57px;
  height: 57px;
  cursor: pointer;
  background: #0088ec;
  transition: background 0.25s;
  border-radius: 5px;
}

.orderprocess .inputgroup.startingdate .button.calendar:before {
  display: none;
}

.orderprocess .inputgroup.startingdate .button.calendar:hover {
  background: #00aeef;
}

.orderprocess .inputgroup.startingdate .button.calendar .fa {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 23px;
  line-height: 0;
}

.orderprocess #add-parkingspot {
  float: left;
  clear: both;
  color: #000;
  text-decoration: underline;
  font-size: 18px;
  cursor: pointer;
  margin-top: 15px;
  display: none;
}

.orderprocess #add-parkingspot span {
  padding-left: 5px;
}

.orderprocess #add-parkingspot .fa {
  color: #000;
  font-size: 14px;
}

.orderprocess #returning-payments-container.active {
  display: block;
}

.orderprocess #returning-payments-container .form-group.invoice {
  width: 100%;
  margin-top: 20px;
}

.orderprocess #returning-payments-container .container-options.increments {
  margin: 0;
  border-top: 1px solid #c9e8f2;
}

.orderprocess #returning-payments-container .container-options.increments .form-group {
  width: 100%;
}

.orderprocess #returning-payments-container .container-options.increments label {
  font-size: 20px;
  float: left;
  clear: both;
  margin-bottom: 15px;
}

.orderprocess #returning-payments-container .container-options.increments .input {
  float: left;
  clear: both;
  width: 100%;
}

.orderprocess #preferred-payments-container {
  margin-top: 0;
}

.orderprocess #preferred-payments-container .container-options {
  margin-top: 10px;
}

.orderprocess #preferred-payments-container .label-container.ideal .smallgreen {
  margin-bottom: 15px;
}

.orderprocess #preferred-payments-container .intro-text {
  margin: 0 0 20px 0;
}

.orderprocess #preferred-payments-container .creditcard_icons {
  float: left;
  width: 100%;
  line-height: 0;
  margin: 10px 0 12px 0;
}

.orderprocess #preferred-payments-container .promotioncode {
  width: 100%;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #c9e8f2;
}

.orderprocess #preferred-payments-container .promotioncode .intro-text {
  margin-bottom: 10px;
}

.orderprocess #preferred-payments-container .promotioncode input {
  float: left;
  max-width: 400px;
}

.orderprocess #preferred-payments-container .promotioncode .button#add_promocode {
  float: left;
  margin: 0 0 0 10px;
  padding: 15px 35px 15px 35px;
  background-image: none;
}

.orderprocess #preferred-payments-container #grandtotal_first_payment {
  float: right;
  width: 100%;
  text-align: right;
  font-size: 20px;
  margin-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #e7ebef;
}

.orderprocess #preferred-payments-container #grandtotal_first_payment .promocode-discount {
  float: right;
  clear: both;
  margin-bottom: 30px;
}

.orderprocess #preferred-payments-container #grandtotal_first_payment .promocode-discount .label,
.orderprocess #preferred-payments-container #grandtotal_first_payment .promocode-discount .value {
  float: right;
  clear: both;
}

.orderprocess #preferred-payments-container #grandtotal_first_payment .intro {
  float: right;
  clear: both;
  font-weight: 700;
  margin-bottom: 10px;
}

.orderprocess #preferred-payments-container #grandtotal_first_payment .grandtotal {
  float: right;
  clear: both;
  font-size: 40px;
  font-weight: 700;
}

.orderprocess #preferred-payments-container #grandtotal_first_payment .button {
  float: right;
  clear: both;
  margin-top: 10px;
}

.collapsable {
  display: none;
}

.collapsable.active {
  display: block;
}

.optionlist {
  float: left;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.optionlist li {
  position: relative;
}

.optionlist li:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 30px  ) / 4) - 30px);
  margin-right: 30px;
  margin-bottom: 35px;
}

.optionlist li:nth-of-type(4n) {
  margin-right: 0;
}

.optionlist li.active {
  border-radius: 5px;
  /*@include box-shadow(0px 2px 15px rgba(0,0,0,0.25));*/
}

.optionlist li.active .image-container img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

.optionlist li input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  visibility: hidden;
}

.optionlist li label {
  float: left;
  width: 100%;
  cursor: pointer;
}

.optionlist li label:hover .image-container img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

.optionlist li .image-container {
  height: 200px;
}

.optionlist li .image-container .inner {
  background: #eee;
  height: 201px;
}

.optionlist li .image-container img {
  height: auto;
  min-width: 200px;
  max-width: 320px;
}

.optionlist li .info {
  float: left;
  width: 100%;
  padding: 18px 0 13px;
  position: relative;
  top: -1px;
  transition: padding-left 0.2s ease-out;
}

.optionlist li .info h3 {
  float: left;
  width: 85%;
  line-height: 22px;
  margin-bottom: 0;
}

.optionlist li .info .button {
  right: 6px;
  bottom: 9px;
}

.optionlist li .info .button:hover:before {
  opacity: 0;
}

.optionlist li input:checked + label .image-container:after {
  display: none;
}

.optionlist li input:checked + label .image-container .inner {
  border-radius: 5px 5px 0px 0px;
}

.optionlist li input:checked + label .info {
  padding: 18px 15px 13px;
  background: #00aeef;
  color: #fff;
  border-radius: 0px 0px 5px 5px;
}

.optionlist li input:checked + label .info h3 {
  color: #fff;
}

.optionlist li input:checked + label .info .button span {
  background: url(../images/webfront/icon_checkmark.png) no-repeat right 7px top 50% #fff;
}

.optionlist li input:checked + label .info .button:active span {
  box-shadow: none;
}

.garages.optionlist li:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 30px  ) / 3) - 30px);
  margin-right: 30px;
  margin-bottom: 35px;
}

.garages.optionlist li:nth-of-type(3n) {
  margin-right: 0;
}

.garages.optionlist li .image-container img {
  max-width: 360px;
}

.producttypes.optionlist,
.products.optionlist,
.iframes.optionlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 24px;
}

.producttypes.optionlist > li,
.products.optionlist > li,
.iframes.optionlist > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  background: #fff;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.producttypes.optionlist > li:nth-of-type(n),
.products.optionlist > li:nth-of-type(n),
.iframes.optionlist > li:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 30px  ) / 3) - 30px);
  margin-right: 30px;
  margin-bottom: 35px;
}

.producttypes.optionlist > li:nth-of-type(3n),
.products.optionlist > li:nth-of-type(3n),
.iframes.optionlist > li:nth-of-type(3n) {
  margin-right: 0;
}

.producttypes.optionlist > li li,
.products.optionlist > li li,
.iframes.optionlist > li li {
  box-shadow: none;
  border-radius: none;
  display: list-item;
}

.producttypes.optionlist > li li:nth-of-type(n),
.products.optionlist > li li:nth-of-type(n),
.iframes.optionlist > li li:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 0px  ) / 1) - 0px);
  margin-right: 0px;
  margin-bottom: 0px;
}

.producttypes.optionlist > li li:nth-of-type(1n),
.products.optionlist > li li:nth-of-type(1n),
.iframes.optionlist > li li:nth-of-type(1n) {
  margin-right: 0;
}

.producttypes.optionlist > li.single,
.products.optionlist > li.single,
.iframes.optionlist > li.single {
  width: 100% !important;
  margin: 0 !important;
}

.producttypes.optionlist > li.active,
.products.optionlist > li.active,
.iframes.optionlist > li.active {
  box-shadow: none;
}

.producttypes.optionlist > li label,
.products.optionlist > li label,
.iframes.optionlist > li label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.producttypes.optionlist > li .producttype-info,
.producttypes.optionlist > li .product-info,
.products.optionlist > li .producttype-info,
.products.optionlist > li .product-info,
.iframes.optionlist > li .producttype-info,
.iframes.optionlist > li .product-info {
  float: left;
  width: 100%;
  padding: 22px;
  font-size: 17px;
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.producttypes.optionlist > li .producttype-info h3,
.producttypes.optionlist > li .product-info h3,
.products.optionlist > li .producttype-info h3,
.products.optionlist > li .product-info h3,
.iframes.optionlist > li .producttype-info h3,
.iframes.optionlist > li .product-info h3 {
  float: left;
  width: 100%;
}

.producttypes.optionlist > li .producttype-info .microcopy,
.producttypes.optionlist > li .product-info .microcopy,
.products.optionlist > li .producttype-info .microcopy,
.products.optionlist > li .product-info .microcopy,
.iframes.optionlist > li .producttype-info .microcopy,
.iframes.optionlist > li .product-info .microcopy {
  color: #01AC3A;
  font-weight: bold;
  text-align: right;
  background: #fff;
  padding: 4px 8px;
  margin: 5px 0;
  border-radius: 3px;
  font-size: .8em;
  line-height: 135%;
  float: right;
}

.producttypes.optionlist > li .producttype-info span.intro,
.producttypes.optionlist > li .product-info span.intro,
.products.optionlist > li .producttype-info span.intro,
.products.optionlist > li .product-info span.intro,
.iframes.optionlist > li .producttype-info span.intro,
.iframes.optionlist > li .product-info span.intro {
  float: left;
  width: 100%;
  font-weight: 300;
  margin: 5px 0 20px;
  line-height: 26px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.producttypes.optionlist > li .producttype-info .pricelist,
.producttypes.optionlist > li .product-info .pricelist,
.products.optionlist > li .producttype-info .pricelist,
.products.optionlist > li .product-info .pricelist,
.iframes.optionlist > li .producttype-info .pricelist,
.iframes.optionlist > li .product-info .pricelist {
  float: left;
  width: 100%;
  margin-bottom: 25px;
}

.producttypes.optionlist > li .producttype-info .pricelist .label,
.producttypes.optionlist > li .producttype-info .pricelist .value,
.producttypes.optionlist > li .product-info .pricelist .label,
.producttypes.optionlist > li .product-info .pricelist .value,
.products.optionlist > li .producttype-info .pricelist .label,
.products.optionlist > li .producttype-info .pricelist .value,
.products.optionlist > li .product-info .pricelist .label,
.products.optionlist > li .product-info .pricelist .value,
.iframes.optionlist > li .producttype-info .pricelist .label,
.iframes.optionlist > li .producttype-info .pricelist .value,
.iframes.optionlist > li .product-info .pricelist .label,
.iframes.optionlist > li .product-info .pricelist .value {
  float: left;
  width: 60%;
  font-weight: 700;
  line-height: 25px;
  font-size: 16px;
}

.producttypes.optionlist > li .producttype-info .pricelist .label,
.producttypes.optionlist > li .product-info .pricelist .label,
.products.optionlist > li .producttype-info .pricelist .label,
.products.optionlist > li .product-info .pricelist .label,
.iframes.optionlist > li .producttype-info .pricelist .label,
.iframes.optionlist > li .product-info .pricelist .label {
  width: 40%;
  max-width: 200px;
  margin-top: 5px;
  color: #888;
  font-weight: normal;
  font-size: .9em;
}

.producttypes.optionlist > li .producttype-info .pricelist .value,
.producttypes.optionlist > li .product-info .pricelist .value,
.products.optionlist > li .producttype-info .pricelist .value,
.products.optionlist > li .product-info .pricelist .value,
.iframes.optionlist > li .producttype-info .pricelist .value,
.iframes.optionlist > li .product-info .pricelist .value {
  font-weight: 400;
}

.producttypes.optionlist > li .producttype-info .button,
.producttypes.optionlist > li .product-info .button,
.products.optionlist > li .producttype-info .button,
.products.optionlist > li .product-info .button,
.iframes.optionlist > li .producttype-info .button,
.iframes.optionlist > li .product-info .button {
  margin-right: auto;
}

.producttypes.optionlist > li input:checked + label,
.products.optionlist > li input:checked + label,
.iframes.optionlist > li input:checked + label {
  background: #00aeef;
  color: #fff;
  border-radius: 5px;
}

.producttypes.optionlist > li input:checked + label h3,
.products.optionlist > li input:checked + label h3,
.iframes.optionlist > li input:checked + label h3 {
  color: #fff;
}

.producttypes.optionlist > li input:checked + label .pricelist .label,
.products.optionlist > li input:checked + label .pricelist .label,
.iframes.optionlist > li input:checked + label .pricelist .label {
  color: #fff;
}

.producttypes.optionlist > li input:checked + label div.price .line .discounted,
.products.optionlist > li input:checked + label div.price .line .discounted,
.iframes.optionlist > li input:checked + label div.price .line .discounted {
  color: #fff;
}

.producttypes.optionlist > li input:checked + label .button span,
.products.optionlist > li input:checked + label .button span,
.iframes.optionlist > li input:checked + label .button span {
  color: #00aeef;
  font-weight: 600;
  background: url(../images/webfront/icon_checkmark.png) no-repeat right 15px top 50% #fff;
}

div.price {
  display: inline-block;
  vertical-align: text-top;
}

div.price .main {
  display: inline-block;
  font-size: 1.5em;
}

div.price .line {
  float: left;
  width: 100%;
}

div.price .line .discounted {
  color: #EE7C1C;
}

div.price .from, div.price .for {
  margin-right: 6px;
  font-size: .85em;
}

div.price .strike {
  color: #000;
}

div.price .strike .main {
  text-decoration: line-through;
  font-size: 1em;
}

div.price .strike .main.dash {
  font-size: 1em;
}

div.price .strike .decimals {
  text-decoration: line-through;
  font-size: .7em;
  top: -4px;
}

div.price .strike .decimals.dash {
  font-size: 1em;
}

div.price .comma {
  display: inline-block;
  font-size: 1.4em;
  position: relative;
  left: -3px;
}

div.price .decimals {
  position: relative;
  display: inline-block;
  font-size: .8em;
  top: -7px;
  left: -12px;
  opacity: .7;
}

div.price .decimals.dash {
  font-size: 1.4em;
  top: -3px;
}

.tax-notion {
  font-size: .7em;
}

.producttypes.optionlist.wide li,
.products.optionlist.wide li,
.iframes.optionlist.wide li {
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
  border: none;
}

.producttypes.optionlist.wide li:nth-of-type(n),
.products.optionlist.wide li:nth-of-type(n),
.iframes.optionlist.wide li:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 25px  ) / 3) - 25px);
  margin-right: 25px;
  margin-bottom: 25px;
}

.producttypes.optionlist.wide li:nth-of-type(3n),
.products.optionlist.wide li:nth-of-type(3n),
.iframes.optionlist.wide li:nth-of-type(3n) {
  margin-right: 0;
}

.producttypes.optionlist.wide li ul,
.products.optionlist.wide li ul,
.iframes.optionlist.wide li ul {
  list-style-type: disc;
  list-style-position: outside;
  display: block;
}

.producttypes.optionlist.wide li li,
.products.optionlist.wide li li,
.iframes.optionlist.wide li li {
  box-shadow: none;
  border-radius: none;
  display: list-item;
}

.producttypes.optionlist.wide li li:nth-of-type(n),
.products.optionlist.wide li li:nth-of-type(n),
.iframes.optionlist.wide li li:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 0px  ) / 1) - 0px);
  margin-right: 0px;
  margin-bottom: 0px;
}

.producttypes.optionlist.wide li li:nth-of-type(1n),
.products.optionlist.wide li li:nth-of-type(1n),
.iframes.optionlist.wide li li:nth-of-type(1n) {
  margin-right: 0;
}

.producttypes.optionlist.wide li h2,
.products.optionlist.wide li h2,
.iframes.optionlist.wide li h2 {
  margin-top: 0;
}

.producttypes.optionlist.wide li .info,
.products.optionlist.wide li .info,
.iframes.optionlist.wide li .info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.producttypes.optionlist.wide li .product-info,
.products.optionlist.wide li .product-info,
.iframes.optionlist.wide li .product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 35px 40px;
}

.producttypes.optionlist.wide li .button,
.products.optionlist.wide li .button,
.iframes.optionlist.wide li .button {
  margin-right: auto;
}

.personal-data form,
.garage_information form {
  float: left;
  width: 100%;
  max-width: 980px;
}

.personal-data .left,
.garage_information .left {
  float: left;
  width: 47%;
}

.personal-data .right,
.garage_information .right {
  float: right;
  width: 47%;
}

.personal-data .form-group,
.garage_information .form-group {
  float: left;
  width: 100%;
  margin-bottom: 12px;
}

.personal-data .form-group label,
.garage_information .form-group label {
  font-size: 16px;
}

.personal-data .form-group .styled-select,
.personal-data .form-group input,
.garage_information .form-group .styled-select,
.garage_information .form-group input {
  max-width: 100%;
}

.personal-data .triple,
.garage_information .triple {
  float: left;
  width: 100%;
}

.personal-data .triple .form-group:nth-of-type(n),
.garage_information .triple .form-group:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 12px  ) / 3) - 12px);
  margin-right: 12px;
  margin-bottom: 10px;
}

.personal-data .triple .form-group:nth-of-type(3n),
.garage_information .triple .form-group:nth-of-type(3n) {
  margin-right: 0;
}

.personal-data .double,
.garage_information .double {
  float: left;
  width: 100%;
}

.personal-data .double .form-group:nth-of-type(n),
.garage_information .double .form-group:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 12px  ) / 2) - 12px);
  margin-right: 12px;
  margin-bottom: 10px;
}

.personal-data .double .form-group:nth-of-type(2n),
.garage_information .double .form-group:nth-of-type(2n) {
  margin-right: 0;
}

.personal-data .form-group.group-type,
.garage_information .form-group.group-type {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.personal-data .form-group.group-type .radio-container,
.garage_information .form-group.group-type .radio-container {
  margin-right: 20px;
}

.personal-data .form-group.additional-information,
.garage_information .form-group.additional-information {
  margin-top: 20px;
}

.personal-data .form-group.additional-information textarea,
.garage_information .form-group.additional-information textarea {
  min-height: 150px;
}

.personal-data #invoice_address,
.garage_information #invoice_address {
  float: left;
  width: 100%;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e7ebef;
}

.personal-data #invoice_address h2,
.garage_information #invoice_address h2 {
  padding-left: 0;
}

.checksteps {
  float: left;
  width: 100%;
  padding-top: 30px;
  border-top: 1px solid #e7ebef;
}

.checksteps .part:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 30px  ) / 2) - 30px);
  margin-right: 30px;
  margin-bottom: 30px;
}

.checksteps .part:nth-of-type(2n) {
  margin-right: 0;
}

.checksteps .section {
  float: left;
  width: 100%;
  border-bottom: 1px solid #e7ebef;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.checksteps .productinfo {
  line-height: 36px;
}

.checksteps .payments {
  margin-bottom: 0;
}

.checksteps .row label {
  display: inline-block;
  width: 42%;
  font-weight: 700;
}

.checksteps .row label:first-letter {
  text-transform: uppercase;
}

.checksteps .row span.value {
  display: inline-block;
  width: 55%;
  padding-left: 3%;
}

.checksteps .row span.value:first-letter {
  text-transform: uppercase;
}

.checksteps .italic {
  display: inline-block;
  width: 100%;
  padding-left: 46%;
  font-size: 14px;
  line-height: 25px;
  color: #454545;
}

.checksteps .location-map .image-container {
  margin-top: 70px;
}

.checksteps .location-map .image-container:after {
  display: none;
}

.checksteps .location-map .image-container:hover img {
  -webkit-transform: none;
          transform: none;
}

.checksteps .location-map .image-container .inner {
  border-radius: 0;
  max-height: 320px;
}

.checksteps .parkingspots {
  float: left;
  width: 100%;
  padding-bottom: 50px;
}

.checksteps .parkingspots .spots {
  float: left;
  width: 75%;
}

.checksteps .parkingspots .head.mobile {
  display: none;
}

.checksteps .parkingspots .head,
.checksteps .parkingspots .parkingspot {
  float: left;
  width: 100%;
}

.checksteps .parkingspots .head div,
.checksteps .parkingspots .parkingspot div {
  float: left;
  line-height: 44px;
  width: 100%;
}

.checksteps .parkingspots .head .licence,
.checksteps .parkingspots .parkingspot .licence {
  width: 30%;
}

.checksteps .parkingspots .head .driver,
.checksteps .parkingspots .parkingspot .driver {
  width: 40%;
}

.checksteps .parkingspots .head .date,
.checksteps .parkingspots .parkingspot .date {
  width: 30%;
}

.checksteps .parkingspots .head {
  font-weight: 700;
}

.checksteps .payment-overview {
  float: left;
  width: 100%;
  padding: 45px 50px;
  background: #e0f3fa;
}

.checksteps .payment-overview .parkingspot_prices {
  float: left;
  width: 100%;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #c9e8f2;
}

.checksteps .payment-overview .parkingspot_prices .head,
.checksteps .payment-overview .parkingspot_prices .parkingspot {
  float: left;
  width: 100%;
  line-height: 44px;
}

.checksteps .payment-overview .parkingspot_prices .head div,
.checksteps .payment-overview .parkingspot_prices .parkingspot div {
  float: left;
}

.checksteps .payment-overview .parkingspot_prices .parkingspot .head.mobile {
  display: none;
}

.checksteps .payment-overview .parkingspot_prices .parkingspot .values {
  float: left;
  width: 100%;
}

.checksteps .payment-overview .parkingspot_prices .head {
  font-weight: 700;
}

.checksteps .payment-overview .parkingspot_prices .licence {
  width: 20%;
}

.checksteps .payment-overview .parkingspot_prices .first-month {
  width: 30%;
}

.checksteps .payment-overview .parkingspot_prices .next-month {
  width: 30%;
}

.checksteps .payment-overview .parkingspot_prices .returning {
  width: 20%;
}

.checksteps .payment-overview .parkingspot_prices .total {
  width: 20%;
}

.checksteps .payment-overview .admin-costs {
  float: left;
  width: 100%;
}

.checksteps .payment-overview .admin-costs strong {
  font-weight: 400;
  float: left;
  clear: left;
}

.checksteps .payment-overview .admin-costs span {
  float: left;
}

.checksteps .payment-overview .admin-costs span.strong {
  font-weight: 700;
  clear: left;
}

.checksteps .payment-overview .total-costs {
  float: left;
  width: 100%;
  margin-top: 30px;
}

.checksteps .payment-overview .total-costs .label {
  float: left;
  clear: both;
  font-weight: 700;
}

.checksteps .payment-overview .total-costs .value {
  float: left;
  clear: both;
  font-size: 34px;
  font-weight: 700;
  margin-top: 7px;
  letter-spacing: 1px;
}

.checksteps .agreements {
  float: left;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 10px;
}

.checksteps .agreements .form-group {
  float: left;
  width: 100%;
  margin-top: 25px;
}

.footer.top {
  margin-top: 120px;
  padding: 32px 3%;
  background: #000;
  color: #fff;
}

.footer.top span.title {
  float: left;
  width: 100%;
  margin-bottom: 25px;
  padding-bottom: 10px;
  font-size: 18px;
  border-bottom: 1px solid #333;
}

.footer h3 {
  color: #fff;
}

.footer.bottom {
  padding: 32px 3%;
  background: #00aeef;
  color: #fff;
}

.footer.bottom span.title {
  font-size: 20px;
}

.footer.bottom .quicklinks {
  float: right;
  width: 70%;
}

.footer.bottom .quicklinks .items {
  float: right;
}

.footer.bottom .quicklinks a {
  float: left;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  margin-right: 30px;
}

.footer.bottom .quicklinks a:hover {
  text-decoration: underline;
}

.footer.bottom .quicklinks a:last-child {
  margin-right: 0;
}

.footer.bottom .lower {
  float: left;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  margin-top: 12px;
}

.footer.bottom .lower .quicklinks {
  float: left;
  width: 70%;
}

.footer.bottom .lower .quicklinks .items {
  float: left;
}

.footer.bottom .lower .copyright {
  float: right;
  text-align: right;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

.footer .footer-items {
  float: left;
  width: 100%;
  list-style: none;
  padding: 0;
}

.footer .footer-items .item h3 {
  font-family: Arial, "Nunito", Verdana, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.footer .footer-items .item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-items .item li, .footer .footer-items .item a {
  color: #8c9094;
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 6px;
}

.footer .footer-items .item a:link,
.footer .footer-items .item a:visited {
  color: #00aeef;
}

.footer .footer-items .item a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer .locations,
.footer .subscriptions,
.footer .valuecards {
  float: left;
  width: 220px;
}

.footer .subscriptions {
  width: 280px;
}

.footer .item.contact {
  float: right;
}

.footer .item.contact li {
  color: #00aeef;
}

.footer .item.contact p {
  margin: 0 0 10px 0;
}

.locations li.inactive,
.garages li.inactive {
  opacity: .35;
  display: none;
}

.descr {
  color: #ccc;
  font-size: .8em;
}

.part_wide {
  float: left;
  width: 100%;
}

.cn_hide {
  display: none;
}

.parts.w5050 .part:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 3%  ) / 2) - 3%);
  margin-right: 3%;
  margin-bottom: 3%;
}

.parts.w5050 .part:nth-of-type(2n) {
  margin-right: 0;
}

.parts.w33 .part:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 3%  ) / 3) - 3%);
  margin-right: 3%;
  margin-bottom: 3%;
}

.parts.w33 .part:nth-of-type(3n) {
  margin-right: 0;
}

.landingpage_buttons ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.landingpage_buttons li {
  padding: 0;
  margin: 0 0 12px 0;
  float: left;
  width: 100%;
}

.landingpage {
  padding: 0 12px;
}

.landingpage .header {
  float: left;
  width: 100%;
  margin-bottom: 45px;
  background: #fff;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.landingpage .header img {
  display: block;
}

.landingpage .header_split {
  float: left;
  width: 100%;
  margin-bottom: 45px;
  background: #fff;
  height: 310px;
}

.landingpage .header_split .map {
  float: left;
  width: 66%;
  height: 310px;
  border-radius: 5px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.landingpage .header_split .image {
  float: right;
  width: 32%;
  height: 310px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 5px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.landingpage h1 {
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
}

.landingpage h2 {
  font-weight: 400;
  font-size: 28px;
}

.landingpage h3 {
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 24px 0;
}

.landingpage .parts {
  float: left;
  width: 100%;
}

.landingpage .parts .bodypart {
  float: left;
  width: 100%;
}

.landingpage .parts .sidebar {
  float: right;
  width: 25%;
  margin: 1em 0;
}

.landingpage .parts .sidebar .optionlist li:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 0px  ) / 1) - 0px);
  margin-right: 0px;
  margin-bottom: 0px;
}

.landingpage .parts .sidebar .optionlist li:nth-of-type(1n) {
  margin-right: 0;
}

.landingpage .parts .sidebar.wide {
  width: 40%;
}

.landingpage .parts .sidebar.wide .optionlist li:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 3%  ) / 2) - 3%);
  margin-right: 3%;
  margin-bottom: 3%;
}

.landingpage .parts .sidebar.wide .optionlist li:nth-of-type(2n) {
  margin-right: 0;
}

.landingpage .optionlist {
  float: left;
  width: 100%;
  margin: 24px 0 0 0;
}

.landingpage .optionlist li:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 2%  ) / 3) - 2%);
  margin-right: 2%;
  margin-bottom: 2%;
}

.landingpage .optionlist li:nth-of-type(3n) {
  margin-right: 0;
}

.landingpage .optionlist.producttypes h2,
.landingpage .optionlist.producttypes .info,
.landingpage .optionlist.producttypes .buttonset, .landingpage .optionlist.iframes h2,
.landingpage .optionlist.iframes .info,
.landingpage .optionlist.iframes .buttonset {
  padding: 6px 24px;
}

.landingpage .optionlist.count_4 li:nth-of-type(n) {
  float: left;
  clear: none;
  box-sizing: border-box;
  width: calc( ( (100% + 2%  ) / 4) - 2%);
  margin-right: 2%;
  margin-bottom: 2%;
}

.landingpage .optionlist.count_4 li:nth-of-type(4n) {
  margin-right: 0;
}

.landingpage .optionlist.count_4 li .buttonset {
  display: block;
}

.landingpage .optionlist.count_4 li .buttonset a {
  width: 100%;
}

.landingpage .productbuttons {
  list-style: none;
  float: left;
  margin: 0;
  padding: 0;
}

.landingpage .productbuttons li {
  float: left;
  margin: 0 12px 12px 0;
}

.landingpage .producttypes,
.landingpage .iframes {
  float: left;
  width: 100%;
}

.landingpage .producttypes .product,
.landingpage .iframes .product {
  margin-bottom: 24px;
  float: left;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.landingpage .producttypes .product h2,
.landingpage .iframes .product h2 {
  float: left;
  width: 100%;
  margin-top: 20px;
  font-size: 28px;
}

.landingpage .producttypes .product .info,
.landingpage .iframes .product .info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  float: left;
  width: 100%;
  font-size: 17px;
}

.landingpage .producttypes .product .image-container,
.landingpage .iframes .product .image-container {
  height: 150px;
  overflow: hidden;
}

.landingpage .producttypes .product .image-container img,
.landingpage .iframes .product .image-container img {
  max-width: none;
}

.landingpage .producttypes .product .image-container .inner,
.landingpage .iframes .product .image-container .inner {
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
}

.landingpage .producttypes .product .buttonset,
.landingpage .iframes .product .buttonset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.landingpage .producttypes .product .buttonset a,
.landingpage .iframes .product .buttonset a {
  margin-bottom: 6px;
}

.loginpane {
  border: 1px solid #e8e8e8;
  background: #fff;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.4);
  padding: 36px;
  margin: 20vh auto 0 auto;
  width: 90%;
  max-width: 410px;
  border-radius: 3px;
}

.loginpane .form-group {
  float: left;
  width: 100%;
  margin-bottom: 12px;
}

.loginpane .inner {
  float: left;
  width: 100%;
}

.loginpane .inner p {
  float: left;
  width: 100%;
}

.companydata label {
  font-weight: bold;
}

.companydata td, .companydata th {
  vertical-align: top;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1;
}

.no-online-payment {
  font-style: italic;
  font-size: .9em;
  opacity: .7;
}

.speech-bubble {
  position: absolute;
  background: #EE7C1C;
  border-radius: 50%;
  padding: 24px;
  color: #fff;
  font-size: 16px;
  line-height: 17px;
  z-index: 5;
  width: 100px;
  height: 100px;
  font-weight: bold;
  text-align: center;
  box-shadow: 4px 4px 9px -3px rgba(51, 51, 51, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.speech-bubble:after {
  content: '';
  position: absolute;
  border: 12px solid transparent;
  width: 0;
  height: 0;
}

.speech-bubble.left {
  margin-left: 224px;
  margin-top: -30px;
}

.speech-bubble.left:after {
  left: 0;
  top: 50%;
  border-right-color: #EE7C1C;
  border-left: 0;
  border-bottom: 0;
  margin-top: -6px;
  margin-left: -12px;
}

.speech-bubble.bottom {
  margin-left: 70%;
  margin-top: -60px;
}

.speech-bubble.bottom:after {
  bottom: 0;
  left: 50%;
  border-top-color: #EE7C1C;
  border-bottom: 0;
  margin-left: -12px;
  margin-bottom: -9px;
}

.notifications {
  float: left;
  width: 100%;
}

.notifications .notification {
  float: left;
  width: 100%;
  margin: 0 0 24px 0;
  padding: 0 0 12px 0;
  border-bottom: 1px dotted #ccc;
}

.notifications .notification h2 {
  margin: 0 0 12px 0;
  padding: 0;
}

.notifications .bottom {
  float: left;
  width: 100%;
}

.notifications .apcoa_logo {
  float: right;
  height: 32px;
}

.notifications .apcoa_logo img {
  display: block;
  max-height: 100%;
}

/* Magnific Popup CSS */
.white-popup {
  position: relative;
  background: #fff;
  padding: 24px;
  width: auto;
  max-width: 900px;
  margin: 24px auto;
  display: block;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.alert {
  float: left;
  width: 100%;
  padding: 9px 24px;
  background: #f8f8f8;
  margin: 6px 0 6px 0;
  color: #fff;
  border-radius: 3px;
  font-size: 14px !important;
  position: relative;
  z-index: 10;
}

.alert.alert-message {
  background: #00CC66;
}

.alert.alert-notice {
  background: #FFCC00;
}

.alert.alert-error {
  background: #FD4000;
}

@media only screen and (max-width: 1180px) {
  .topbanner.homebanner {
    height: 600px;
  }
  .topbanner.homebanner h1 {
    font-size: 68px;
    line-height: 70px;
  }
  .home-products {
    margin-bottom: -70px;
  }
  .home-products .product:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 40px  ) / 2) - 40px);
    margin-right: 40px;
    margin-bottom: 40px;
  }
  .home-products .product:nth-of-type(2n) {
    margin-right: 0;
  }
  .popular-locations .items .image-container .inner {
    height: 200px;
  }
  .orderprocess #parkingspot-holder .label.licenceplate,
  .orderprocess #parkingspot-holder .inputgroup.licenceplate {
    width: 22%;
    margin-right: 2%;
  }
  .orderprocess #parkingspot-holder .label.driver,
  .orderprocess #parkingspot-holder .inputgroup.driver {
    width: 35%;
    margin-right: 2%;
  }
  .orderprocess #parkingspot-holder .label.startingdate,
  .orderprocess #parkingspot-holder .inputgroup.startingdate {
    width: 35%;
  }
  .orderprocess #parkingspot-holder .remove-parkingspot {
    position: absolute;
    right: 20px;
  }
  .footer-items .item:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 30px  ) / 4) - 30px);
    margin-right: 30px;
    margin-bottom: 0px;
  }
  .footer-items .item:nth-of-type(4n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 979px) {
  .garages.optionlist li:nth-of-type(n),
  .optionlist li:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 30px  ) / 3) - 30px);
    margin-right: 30px;
    margin-bottom: 30px;
  }
  .garages.optionlist li:nth-of-type(3n),
  .optionlist li:nth-of-type(3n) {
    margin-right: 0;
  }
  .producttypes.optionlist li:nth-of-type(n),
  .products.optionlist li:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 30px  ) / 2) - 30px);
    margin-right: 30px;
    margin-bottom: 30px;
  }
  .producttypes.optionlist li:nth-of-type(2n),
  .products.optionlist li:nth-of-type(2n) {
    margin-right: 0;
  }
  .orderprocess .page-intro h1 {
    font-size: 38px;
  }
  .checksteps .row {
    float: left;
    width: 100%;
    margin-bottom: 15px;
  }
  .checksteps .row label,
  .checksteps .row span.value {
    float: left;
    width: 100%;
    clear: both;
    padding: 0;
    line-height: 26px;
  }
  .checksteps .italic {
    padding-left: 0;
  }
  .producttypes.optionlist.wide li h2,
  .products.optionlist.wide li h2 {
    font-size: 28px;
  }
  .footer.bottom .quicklinks {
    width: 100%;
    float: left;
  }
  .footer.bottom .quicklinks a {
    margin-right: 20px;
  }
  .footer.bottom .quicklinks .items {
    float: left;
    width: 100%;
    margin-top: 10px;
  }
  .footer.bottom .copyright {
    text-align: left;
  }
  .ordersteps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .ordersteps li {
    margin-right: 0;
    min-width: 0;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ordersteps li:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 0px  ) / 5) - 0px);
    margin-right: 0px;
    margin-bottom: 0px;
  }
  .ordersteps li:nth-of-type(5n) {
    margin-right: 0;
  }
  .ordersteps li.done a {
    padding: 15px 5px;
  }
  .ordersteps li.done a:after {
    width: 1px;
    background: #4690da;
    border: none;
    right: 0;
    -webkit-clip-path: none;
            clip-path: none;
  }
  .ordersteps li.done a:before {
    display: none;
  }
  .ordersteps li:after, .ordersteps li:before {
    display: none;
  }
  .landingpage {
    padding: 12px;
  }
  .landingpage .header_split {
    height: auto;
  }
  .landingpage .header_split .map,
  .landingpage .header_split .image {
    float: left;
    width: 100%;
    margin-bottom: 12px;
  }
  .landingpage .header_split .image {
    display: none;
  }
  .landingpage .bodypart,
  .landingpage .sidebar {
    width: 100% !important;
    float: left;
  }
  .landingpage .producttypes .li:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 40px  ) / 3) - 40px);
    margin-right: 40px;
    margin-bottom: 40px;
  }
  .landingpage .producttypes .li:nth-of-type(3n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 770px) {
  .popular-locations .items .item:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 40px  ) / 2) - 40px);
    margin-right: 40px;
    margin-bottom: 40px;
  }
  .popular-locations .items .item:nth-of-type(2n) {
    margin-right: 0;
  }
  .popular-locations .items .item .image-container .inner {
    height: 200px;
  }
  .home-locations #map {
    height: 600px;
  }
  .popular-locations {
    margin-top: 60px;
  }
  .popular-locations h2,
  .home-locations h2 {
    text-align: left;
    margin-bottom: 10px;
  }
  .home-locations .subtitle {
    text-align: left;
  }
  .garages.optionlist li h3,
  .optionlist li h3 {
    font-size: 22px;
  }
  .garages.optionlist li .info,
  .optionlist li .info {
    padding: 20px 0 13px;
  }
  .blue-container .container-options {
    padding: 25px 20px;
  }
  .blue-container .form-group:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 0px  ) / 1) - 0px);
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .blue-container .form-group:nth-of-type(1n) {
    margin-right: 0;
  }
  .section.information .part:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 0px  ) / 1) - 0px);
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .section.information .part:nth-of-type(1n) {
    margin-right: 0;
  }
  .ordersteps {
    margin: 0 0 40px 0;
  }
  .ordersteps li {
    padding: 14px 2px;
    line-height: 16px;
    font-size: 16px;
  }
  .checksteps .payment-overview {
    padding: 25px;
  }
  .checksteps .parkingspots .spots {
    width: 100%;
  }
  .checksteps .payment-overview .parkingspot_prices .head {
    display: none;
  }
  .checksteps .payment-overview .parkingspot_prices .parkingspot {
    border-top: 1px solid #c9e8f2;
    padding-top: 25px;
    margin-top: 20px;
  }
  .checksteps .payment-overview .parkingspot_prices .parkingspot .head.mobile {
    display: block;
    float: left;
    width: 200px;
  }
  .checksteps .payment-overview .parkingspot_prices .parkingspot .head.mobile .licence,
  .checksteps .payment-overview .parkingspot_prices .parkingspot .head.mobile .first-month,
  .checksteps .payment-overview .parkingspot_prices .parkingspot .head.mobile .next-month,
  .checksteps .payment-overview .parkingspot_prices .parkingspot .head.mobile .returning,
  .checksteps .payment-overview .parkingspot_prices .parkingspot .head.mobile .total {
    width: 100%;
    font-size: 17px;
    line-height: 34px;
  }
  .checksteps .payment-overview .parkingspot_prices .parkingspot .values {
    float: left;
    width: calc(100% - 200px);
    padding-left: 20px;
  }
  .checksteps .payment-overview .parkingspot_prices .parkingspot .values .licence,
  .checksteps .payment-overview .parkingspot_prices .parkingspot .values .first-month,
  .checksteps .payment-overview .parkingspot_prices .parkingspot .values .next-month,
  .checksteps .payment-overview .parkingspot_prices .parkingspot .values .returning,
  .checksteps .payment-overview .parkingspot_prices .parkingspot .values .total {
    width: 100%;
    font-size: 17px;
    line-height: 34px;
  }
  .checksteps .payment-overview .parkingspot_prices .totalspots .parkingspot:first-child {
    border: none;
    padding-top: 0;
    margin-top: 0;
  }
  .topbanner,
  .contentpage.producttypes .topbanner {
    height: 350px;
  }
  .footer.top {
    margin-top: 70px;
    padding-bottom: 40px;
  }
  .footer-items .item:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 5%  ) / 2) - 5%);
    margin-right: 5%;
    margin-bottom: 40px;
  }
  .footer-items .item:nth-of-type(2n) {
    margin-right: 0;
  }
  .landingpage .producttypes li:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 24px  ) / 2) - 24px);
    margin-right: 24px;
    margin-bottom: 24px;
  }
  .landingpage .producttypes li:nth-of-type(2n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 680px) {
  .products.optionlist.wide li:nth-of-type(n),
  .producttypes.optionlist.wide li:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 0px  ) / 1) - 0px);
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .products.optionlist.wide li:nth-of-type(1n),
  .producttypes.optionlist.wide li:nth-of-type(1n) {
    margin-right: 0;
  }
  .header .logo {
    max-width: 100px;
    margin-top: 26px;
  }
}

@media only screen and (max-width: 599px) {
  .container,
  .container.footer.top,
  .container.footer.bottom {
    padding-left: 5%;
    padding-right: 5%;
  }
  .container.main,
  .container.footer.top.main,
  .container.footer.bottom.main {
    padding-left: 0;
    padding-right: 0;
  }
  .topbanner.homebanner h1 {
    font-size: 50px;
    line-height: 55px;
    text-align: center;
  }
  .topbanner.homebanner h2 {
    text-align: center;
    font-size: 26px;
  }
  .home-products .product:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 0px  ) / 1) - 0px);
    margin-right: 0px;
    margin-bottom: 40px;
  }
  .home-products .product:nth-of-type(1n) {
    margin-right: 0;
  }
  .garages.optionlist li:nth-of-type(n),
  .optionlist li:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 30px  ) / 2) - 30px);
    margin-right: 30px;
    margin-bottom: 30px;
  }
  .garages.optionlist li:nth-of-type(2n),
  .optionlist li:nth-of-type(2n) {
    margin-right: 0;
  }
  .garages.optionlist li h3,
  .optionlist li h3 {
    font-size: 22px;
  }
  .garages.optionlist li .image-container,
  .optionlist li .image-container {
    height: 170px;
  }
  .garages.optionlist li .image-container .inner,
  .optionlist li .image-container .inner {
    height: 171px;
  }
  .producttypes.optionlist li:nth-of-type(n),
  .products.optionlist li:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 0px  ) / 1) - 0px);
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .producttypes.optionlist li:nth-of-type(1n),
  .products.optionlist li:nth-of-type(1n) {
    margin-right: 0;
  }
  .orderprocess #parkingspot-holder {
    margin-top: -40px;
  }
  .orderprocess #parkingspot-holder .parkingspot {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 40px;
  }
  .orderprocess #parkingspot-holder .parkingspotlabels {
    display: none;
  }
  .orderprocess #parkingspot-holder .inputgroup.licenceplate {
    width: 46%;
    margin-right: 2%;
  }
  .orderprocess #parkingspot-holder .inputgroup.driver {
    width: 46%;
    margin-right: 2%;
  }
  .orderprocess #parkingspot-holder .inputgroup.startingdate {
    width: 94%;
    margin-top: 10px;
  }
  .orderprocess #parkingspot-holder .remove-parkingspot {
    position: absolute;
    right: 20px;
  }
  .blue-container label.label-container {
    padding: 35px 20px;
  }
  .blue-container label.label-container .title {
    padding-left: 43px;
  }
  .blue-container .method-image-container {
    display: none;
  }
  .blue-container .method-content {
    padding-left: 0;
  }
  .orderprocess h1,
  .orderprocess h2 {
    font-size: 23px;
    margin-bottom: 22px;
  }
  .checksteps:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 0px  ) / 1) - 0px);
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .checksteps:nth-of-type(1n) {
    margin-right: 0;
  }
  .checksteps:last-child {
    margin-bottom: 0;
  }
  .checksteps .productinfo .part:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 0px  ) / 1) - 0px);
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .checksteps .productinfo .part:nth-of-type(1n) {
    margin-right: 0;
  }
  .checksteps .productinfo .part:last-child {
    margin-bottom: 0;
  }
  .checksteps .location-map .image-container {
    margin-top: 0;
  }
  .checksteps .parkingspots .head .licence,
  .checksteps .parkingspots .parkingspot .licence {
    width: 25%;
  }
  .checksteps .parkingspots .head .driver,
  .checksteps .parkingspots .parkingspot .driver {
    width: 45%;
  }
  .personal-data .left,
  .personal-data .right {
    float: left;
    width: 100%;
  }
  .topbanner,
  .contentpage.producttypes .topbanner {
    height: 300px;
  }
}

@media only screen and (max-width: 479px) {
  .popular-locations .items .item:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 0px  ) / 1) - 0px);
    margin-right: 0px;
    margin-bottom: 40px;
  }
  .popular-locations .items .item:nth-of-type(1n) {
    margin-right: 0;
  }
  .popular-locations .items .item .image-container .inner {
    height: 200px;
  }
  .garages.optionlist li:nth-of-type(n),
  .optionlist li:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 0px  ) / 1) - 0px);
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .garages.optionlist li:nth-of-type(1n),
  .optionlist li:nth-of-type(1n) {
    margin-right: 0;
  }
  .garages.optionlist li .image-container img,
  .optionlist li .image-container img {
    max-width: 410px;
  }
  .orderprocess #parkingspot-holder .inputgroup.licenceplate {
    width: 94%;
  }
  .orderprocess #parkingspot-holder .inputgroup.driver {
    width: 94%;
    margin-top: 10px;
  }
  .orderprocess #parkingspot-holder .inputgroup.startingdate {
    width: 94%;
    margin-top: 10px;
  }
  .ordersteps li {
    padding: 10px0;
    line-height: 12px;
    font-size: 12px;
    font-weight: 500;
  }
  .checksteps .parkingspots .head.mobile {
    display: block;
    float: left;
    width: 165px;
  }
  .checksteps .parkingspots .head.mobile .licence,
  .checksteps .parkingspots .head.mobile .driver,
  .checksteps .parkingspots .head.mobile .date {
    float: left;
    width: 100%;
    line-height: 32px;
    margin: 0;
  }
  .checksteps .parkingspots .head.mobile .driver span {
    display: none;
  }
  .checksteps .parkingspots div.values {
    float: left;
    width: calc(100% - 165px);
  }
  .checksteps .parkingspots div.values .licence,
  .checksteps .parkingspots div.values .driver,
  .checksteps .parkingspots div.values .date {
    float: left;
    width: 100%;
    line-height: 32px;
  }
  .checksteps .parkingspots .head {
    display: none;
  }
  .checksteps .parkingspots .allspots .parkingspot {
    border-top: 1px solid #eee;
    margin-top: 20px;
    padding-top: 20px;
  }
  .checksteps .parkingspots .allspots .parkingspot:first-child {
    border: none;
    padding: 0;
    margin: 0;
  }
  .checksteps .payment-overview .parkingspot_prices .parkingspot .head.mobile {
    width: 170px;
  }
  .checksteps .payment-overview .parkingspot_prices .parkingspot .head.mobile .licence,
  .checksteps .payment-overview .parkingspot_prices .parkingspot .head.mobile .first-month,
  .checksteps .payment-overview .parkingspot_prices .parkingspot .head.mobile .next-month,
  .checksteps .payment-overview .parkingspot_prices .parkingspot .head.mobile .returning,
  .checksteps .payment-overview .parkingspot_prices .parkingspot .head.mobile .total {
    font-size: 15px;
    line-height: 26px;
  }
  .checksteps .payment-overview .parkingspot_prices .parkingspot .values {
    width: calc(100% - 170px);
  }
  .checksteps .payment-overview .parkingspot_prices .parkingspot .values .licence,
  .checksteps .payment-overview .parkingspot_prices .parkingspot .values .first-month,
  .checksteps .payment-overview .parkingspot_prices .parkingspot .values .next-month,
  .checksteps .payment-overview .parkingspot_prices .parkingspot .values .returning,
  .checksteps .payment-overview .parkingspot_prices .parkingspot .values .total {
    font-size: 15px;
    line-height: 26px;
  }
  .footer.top {
    padding-top: 60px;
    padding-bottom: 20px;
  }
  .footer-items .item:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 0px  ) / 1) - 0px);
    margin-right: 0px;
    margin-bottom: 40px;
  }
  .footer-items .item:nth-of-type(1n) {
    margin-right: 0;
  }
  .landingpage .producttypes li:nth-of-type(n) {
    float: left;
    clear: none;
    box-sizing: border-box;
    width: calc( ( (100% + 0px  ) / 1) - 0px);
    margin-right: 0px;
    margin-bottom: 24px;
  }
  .landingpage .producttypes li:nth-of-type(1n) {
    margin-right: 0;
  }
}
