/* Ubuntu-regular - latin_latin-ext */
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/Ubuntu-v11-latin_latin-ext-regular.eot'); /* IE9 Compat Modes */
  src: local('Ubuntu Regular'), local('Ubuntu-Regular'),
       url('../../fonts/Ubuntu-v11-latin_latin-ext-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../fonts/Ubuntu-v11-latin_latin-ext-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../fonts/Ubuntu-v11-latin_latin-ext-regular.woff') format('woff'), /* Modern Browsers */
       url('../../fonts/Ubuntu-v11-latin_latin-ext-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../fonts/Ubuntu-v11-latin_latin-ext-regular.svg#Ubuntu') format('svg'); /* Legacy iOS */
}
/* Ubuntu-700 - latin_latin-ext */
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  src: url('../../fonts/Ubuntu-v11-latin_latin-ext-700.eot'); /* IE9 Compat Modes */
  src: local('Ubuntu Bold'), local('Ubuntu-Bold'),
       url('../../fonts/Ubuntu-v11-latin_latin-ext-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../fonts/Ubuntu-v11-latin_latin-ext-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../fonts/Ubuntu-v11-latin_latin-ext-700.woff') format('woff'), /* Modern Browsers */
       url('../../fonts/Ubuntu-v11-latin_latin-ext-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../fonts/Ubuntu-v11-latin_latin-ext-700.svg#Ubuntu') format('svg'); /* Legacy iOS */
}

/* -------------------------------- 

Primary style

-------------------------------- */

/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before, .clearfix:after { content: " "; display: table; }
.clearfix:after { clear: both; }

.clear
{
	clear: both;
}

.right
{
	float: right;
}

*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
	height: 100%;
}

body {
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  color: #2b3e51;
  background-color: #fff;
	height: 100%;
}

h1
{
	font-size: 2.5rem;
}

h2
{
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 20px;
}

a {
  color: #1a75bb;
  text-decoration: none;
}

.intro_text
{
	font-size: 1.5rem;
	line-height: 22px;
	text-align: justify;
}

header
{
	background: #fff;
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
	border-bottom: #e0e0e0 1px solid;
}

header div
{
	width: 90%;
  max-width: 600px;
	margin: 0px auto;
}

header #language
{
	float: right;
}

header #language img
{
	width: 30px;
	margin-top: 5px;
}

p.smalltext
{
	font-size: 1.2rem;
}

p.smallhead
{
	font-size: 1.4rem;
}

p
{
	line-height: 20px;
}

b
{
	font-weight: bold;
}

.wrapper {
	min-height: 100%;
	margin: 0 auto -55px; /* the bottom margin is the negative value of the footer's height */
}

footer, .push {
	height: 55px; /* '.push' must be the same height as 'footer' */
}

footer
{
	background: #333;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #fff;
	font-size: 1.4rem;
	line-height: 35px;
}	

footer div
{
	width: 90%;
  max-width: 600px;
	margin: 0px auto;
}

footer div p
{
	float: right;
	line-height: 35px;
}

/* -------------------------------- 

Airports

-------------------------------- */
.result li.list-item {
  padding: 5px;
  border: 1px solid rgb(207, 217, 219);
}

.result li.list-item:hover  {
  background-color:#f1f1f1;
}

#airportsSection {
  display: flex;
  flex-wrap: wrap;
}

.result {
  cursor: pointer;
  overflow-y: auto;
  max-height: 200px;
  box-sizing: border-box;
  z-index: 1001;
}


.airportElement {
  position: relative;
  box-sizing: border-box;
  width: 190px;
  padding: 10px;
  border: 2px solid #f1f1f1;
  border-radius: 5px;
  text-align: center;
  margin: 5px 10px 15px 0px !important; 
}

.close {
  position: absolute;
  right: -10px;
  top: -10px;
  color: red;
  border: 2px solid #f1f1f1;
  background-color: #FFFFFF;
  border-radius: 50%;
}


.close:hover {
  background-color: #f1f1f1;
}


/* -------------------------------- 

Alerts

-------------------------------- */


.alert-element {
  padding: 20px;
  box-sizing: border-box;
  max-width: 50%;
  position: fixed;
  top: 0;
  right: 0;
  border-radius: 5px;
  -webkit-animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.alert-element.warning-alert {
  background-color:#fcf8e3;
  border: 1px solid #faf2cc;
  color: #8a6d3b;
}

.alert-element.success-alert {
  background-color:#dff0d8;
  border: 1px solid #d0e9c6;
  color: #3c763d;
}

.alert-element.info-alert {
  background-color:#d9edf7;
  border: 1px solid #bcdff1;
  color: #31708f;
}

.alert-element.error-alert {
  background-color:#f2dede;
  border: 1px solid #ebcccc;
  color: #a94442;
}



/**
 * ----------------------------------------
 * animation flip-2-ver-right-bck
 * ----------------------------------------
 */
 @-webkit-keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}





/* -------------------------------- 

Form

-------------------------------- */
.cd-form {
  width: 90%;
  max-width: 600px;
  margin: 4em auto;
}
.cd-form::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form fieldset {
  margin: 24px 0;
}
.cd-form legend {
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 2rem;
  border-bottom: 1px solid #ecf0f1;
	font-weight: bold;
}
.cd-form div {
  /* form element wrapper */
  position: relative;
  margin: 20px 0 0 0;
}
.cd-form h4, .cd-form .cd-label {
  font-size: 1.4rem;
  /*color: #94aab0;*/
	color: #999999;
  margin-bottom: 4px;
	line-height: 18px;
}

.cd-form .cd-label {
  display: block;
}
.cd-form input, .cd-form textarea, .cd-form select, .cd-form label {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  color: #2b3e51;
	display: block;
}
.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select,
.cd-form legend {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select {
  /* general style for input elements */
  padding: 12px;
  border: 1px solid #bababa;
  background-color: #ffffff;
  border-radius: .25em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
.cd-form input[type="text"]:focus,
.cd-form input[type="email"]:focus,
.cd-form textarea:focus,
.cd-form select:focus {
  outline: none;
  border-color: #1a75bb;
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.2);
}


.cd-form input.input_vorwahl {
	display: block;
  width: 30%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
	float: left;
	background: #F4F4F4;
	cursor: default;
}

.cd-form input.input_tel {
	display: block;
  width: 70%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
	float: left;
}

.cd-form input.input_ustid_code {
	display: block;
  width: 10%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
	float: left;
	background: #F4F4F4;
	cursor: default;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.cd-form input.input_ustid {
	display: block;
  width: 90%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
	float: left;
	background: #FFFFFF;
	cursor: default;
}

.cd-form input.input_ustid_readonly {
	display: block;
  width: 90%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
	float: left;
	background: #F4F4F4;
	cursor: default;
}

.cd-form div.div_fahrzeuganzahl {
	width: 100%;
	float: none;
}

.cd-form input.input_fahrzeuganzahl {
	width: 100%;
}


.cd-form .cd-select {
  /* select element wapper */
  position: relative;
}
.cd-form .cd-select::after {
  /* arrow icon for select element */
  content: '';
  position: absolute;
  z-index: 1;
  right: 16px;
  top: 50%;
  margin-top: -8px;
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/cd-icon-arrow.svg") no-repeat center center;
  pointer-events: none;
}
.cd-form select {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.cd-form select::-ms-expand {
  display: none;
}
.cd-form .cd-form-list {
  margin-top: 16px;
}
.cd-form .cd-form-list::after {
  clear: both;
  content: "";
  display: table;
}

.cd-form .cd-form-list label b {
	font-weight: bold;
}

.cd-form .cd-form-list li {
  /* wrapper for radio and checkbox input types */
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 26px 16px 0;
  float: left;
}
.cd-form input[type=radio],
.cd-form input[type=checkbox] {
  /* hide original check and radio buttons */
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 2;
}
.cd-form input[type="radio"] + label,
.cd-form input[type="checkbox"] + label {
  padding-left: 24px;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
  /* custom radio and check boxes */
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="checkbox"] + label::before {
  border: 1px solid #bababa;
  background: #ffffff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after {
  border-radius: 50%;
}
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
  border-radius: .25em;
}
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::after {
  background-color: #1a75bb;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 0 5px rgba(226,242,191,0.4);
  display: none;
}
.cd-form input[type="radio"] + label::after {
  /* custom image for radio button */
  background-image: url("../img/cd-icon-radio.svg");
}
.cd-form input[type="checkbox"] + label::after {
  /* custom image for checkbox */
  background-image: url("../img/cd-icon-check.svg");
}
.cd-form input[type="radio"]:focus + label::before,
.cd-form input[type="checkbox"]:focus + label::before {
  /* add focus effect for radio and check buttons */
  box-shadow: 0 0 5px rgba(226,242,191, 0.6);
}
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::after {
  display: block;
}
.cd-form input[type="radio"]:checked + label::before,
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::before,
.cd-form input[type="checkbox"]:checked + label::after {
  -webkit-animation: cd-bounce 0.3s;
  -moz-animation: cd-bounce 0.3s;
  animation: cd-bounce 0.3s;
}
.cd-form textarea {
  min-height: 200px;
  resize: vertical;
  overflow: auto;
}
.cd-form input[type="submit"] {
  /* button style */
  border: none;
  background: #1a75bb;
  border-radius: .25em;
  padding: 16px 20px;
  color: #ffffff;
  font-weight: bold;
  float: right;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
	width: 100%;
}
.no-touch .cd-form input[type="submit"]:hover {
  background: #0b3b5b;
}
.cd-form input[type="submit"]:focus {
  outline: none;
  background: #1a75bb;
}
.cd-form input[type="submit"]:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
.cd-form [required] {
  background: url("../img/cd-required.svg") no-repeat top right;
}

.cd-form .error,
.cd-form input.input_error,
.cd-form select.input_error,
.cd-form textarea.input_error 
 {
  border-color: #ff9999 !important;
}
@media only screen and (min-width: 600px) {
  .cd-form div {
    /* form element wrapper */
    margin: 35px 0;
  }
  .cd-form legend + div {
    /* reduce margin-top for first form element after the legend */
    margin-top: 20px;
  }
  .cd-form h4, .cd-form .cd-label {
    font-size: 1.4rem;
    margin-bottom: 4px;
		line-height: 18px;
  }
	
	.cd-form h4 span
	{
		font-size: 1.2rem;
	}
	
  .cd-form input[type="text"],
  .cd-form input[type="email"],
  .cd-form textarea,
  .cd-form select {
    padding: 16px;
  }
	
	.cd-form div.div_fahrzeuganzahl {
		width: 25%;
		float: left;
	}

	.cd-form input.input_fahrzeuganzahl {
		width: 97%;
	}
	
}

@-webkit-keyframes cd-bounce {
  0%, 100% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes cd-bounce {
  0%, 100% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(0.8);
  }
}
@keyframes cd-bounce {
  0%, 100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}
/* -------------------------------- 

Custom icons

-------------------------------- */
.cd-form .icon input, .cd-form .icon select, .cd-form .icon textarea {
  padding-left: 54px !important;
}
.cd-form .user {
  background: url("../img/cd-icon-user.svg") no-repeat 16px center;
}
.cd-form [required].user {
  background: url("../img/cd-icon-user.svg") no-repeat 16px center, url("../img/cd-required.svg") no-repeat top right;
}
.cd-form .company {
  background: url("../img/cd-icon-company.svg") no-repeat 16px center;
}
.cd-form [required].company {
  background: url("../img/cd-icon-company.svg") no-repeat 16px center, url("../img/cd-required.svg") no-repeat top right;
}
.cd-form .email {
  background: url("../img/cd-icon-email.svg") no-repeat 16px center;
}
.cd-form [required].email {
  background: url("../img/cd-icon-email.svg") no-repeat 16px center, url("../img/cd-required.svg") no-repeat top right;
}
.cd-form .budget {
  background: url("../img/cd-icon-budget.svg") no-repeat 16px center;
}
.cd-form .message {
  background: url("../img/cd-icon-message.svg") no-repeat 16px 16px;
}
.cd-form [required].message {
  background: url("../img/cd-icon-message.svg") no-repeat 16px 16px, url("../img/cd-required.svg") no-repeat top right;
}



.cwrapper {
  padding: 4em;
  padding-bottom: 0;
}

.currency-selector {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-left: .5rem;
  border: 0;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1024' height='640'><path d='M1017 68L541 626q-11 12-26 12t-26-12L13 68Q-3 49 6 24.5T39 0h952q24 0 33 24.5t-7 43.5z'></path></svg>") 90%/12px 6px no-repeat;
  font-family: inherit;
  color: #666!important;
}

.currency-amount {
  text-align: right;
}

.currency-symbol {
	font-weight: bold;
	font-size: 15px;
}

.currency-addon {
  width: 6em;
  text-align: left;
  position: relative;
	font-size: 13px;
	font-weight: bold;
}

.currency-addon-fixed
{
	font-size: 13px;
	font-weight: bold;
}

.currency-button {
	background: red!important;
}

/* -------------------------------- 

Links

-------------------------------- */
.cd-form a.infolink,
.cd-form span.infotext
{
	color: #1a75bb;
  text-decoration: none;
	font-size: 12px;
	margin-top: 10px;
	margin-left: 10px;
	display: block;
	line-height: 16px;
}

.cd-form span.infotext_large
{
	color: #1a75bb;
  text-decoration: none;
	font-size: 14px;
	margin-top: 10px;
	display: block;
	line-height: 18px;
}


/* -------------------------------- 

Infobox

-------------------------------- */
.cd-form div.alert-box {
	color:#555;
	border-radius:5px;
	font-size:13px;
	padding:10px 10px 10px 50px;
	margin:0px 0;
	line-height: 18px;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
 
.error {
	background:#ffecec url('../_images/error.png') no-repeat 10px 4px;
	border:1px solid #f5aca6;
	color: #BF0303;
}
.success {
	background:#e9ffd9 url('../_images/success.png') no-repeat 10px 4px;
	border:1px solid #a6ca8a;
}
.warning {
	background:#fff8c4 url('../_images/warning.png') no-repeat 10px 4px;
	border:1px solid #f2c779;
}
.notice {
	background:#e3f7fc url('../_images/notice.png') no-repeat 10px 4px;
	border:1px solid #8ed9f6;
	position: relative;
	color: #3083b3;
	vertical-align: top;
}

.notice b
{
	font-weight: bold;
}

/* -------------------------------- 

FLoating labels 

-------------------------------- */
.js .floating-labels div {
  margin: 30px 0;
}

.js .floating-labels .input-group div,
.js .floating-labels .price-group div {
	margin: 0px 0;
}

.js .floating-labels .cd-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 1.6rem;
  cursor: text;
  -webkit-transition: top 0.2s, left 0.2s, font-size 0.2s;
  -moz-transition: top 0.2s, left 0.2s, font-size 0.2s;
  transition: top 0.2s, left 0.2s, font-size 0.2s;
}
.js .floating-labels .icon .cd-label {
  left: 56px;
}
.js .floating-labels .cd-label.float {
  /* move label out the input field */
  font-size: 1.4rem;
  top: -20px;
  left: 0 !important;
}
@media only screen and (min-width: 600px) {
  .js .floating-labels legend + div {
    /* reduce margin-top for first form element after the legend */
    margin-top: 16px;
  }
  .js .floating-labels .cd-label {
    top: 20px;
  }
}



