/*	---------------------------------------------------------------------- */
/*	
	Name: wyby.ch/micro
	Date: October 2022
	Version: 2.5
	Author: Daniel Baumgartner
	Autor URI: icontel.com
*/
/*	---------------------------------------------------------------------- */

/*  2.1 Avaloq multi-location CRs
/*  2.2 V-Zug CRs
/*  2.3 Login module
/*  2.4 Modal window
/*  2.5 Saved payment information

/*	---------------------------------------------------------------------- */
/* 	colors
	
	Primary (dark blue)	#87A0FF
	Secondary (orange)	#19FFB9
	
	Grey				#343436 --- Main Fonts, Footer BG, Headers
    Grey				#888888 --- Footer Text,
    
    Grey 1              #F1F1F1;
    Grey 2              #E1E1E1;
    Grey 3              #B2B2B2;
    Grey 4              #666666;
	
*/ 
/*	---------------------------------------------------------------------- */

/*	---------------------------------------------------------------------- */
/* 	global */
/*	---------------------------------------------------------------------- */
html, button, input, select, textarea {
    color: #343436;
} 
body { 
	background: #F1F1F1;
    font-family: 'brregular', Helvetica, Arial, sans-serif;
	font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.025em;
	line-height: 27px;
	margin: 0;
	padding: 0;
	text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.wrapper {
	width: 96%;
    max-width: 1280px;
	margin: 0 auto;
	padding: 0;
}
.nowrapper {
    margin: 0;
	padding: 0; 
}

/*	---------------------------------------------------------------------- */
/* 	fonts */
/*	---------------------------------------------------------------------- */
/* Headings */
h1, h2, h3, h4, h5 { font-style: normal; margin: 0; padding: 0; }
h1, h2, h3, h4 {
	color: #343436;
	font-style: normal;
	font-weight: 400;
	margin: 0 0 0.5em 0;
	padding: 0;
}
h1, h3, h4 {
	font-family: 'brbold', Helvetica, Arial, sans-serif;
}
h1 {
	font-size: 3.5em;
	line-height: 1.1em;
	margin: 0 0 0.1em 0;
}
h2 {
	font-size: 2.0em;
	line-height: 1.3em;
}
h3 {
	font-size: 1.5em;
	line-height: 1.3em;
}

p, pre { margin: 0 0 1em 0; }
p:last-child, pre:last-child { margin: 0; }

b, strong { font-family: 'brbold', Helvetica, Arial, sans-serif; font-weight: normal; }

.primary { color: #87A0FF; }
.secondary { color: #19FFB9; }

/* Anchors */
a, a:visited, a img, a img:visited {
	color: #87A0FF;
	cursor: pointer;
	text-decoration: none;
	font-style: normal;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
	transition: all 300ms linear;
} 
a.underline { text-decoration: underline; }
a:hover, a:active {
	color: #343436;
}

a img { border: none; }
a img:hover, a img:active {
	border: none;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
	transition: all 300ms linear;
}
a:focus {
	-moz-outline-style: none;
	outline: none;
}

.transition {
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	transition: all 300ms linear;
}

hr {
    display: block;
	clear: both;
    height: 1px;
    border: 0;
    border-top: 1px solid #B0B0B0;
    margin: 1em 0;
    padding: 0;
	width: 100%;
}

img {
    vertical-align: middle;
	max-width: 100%;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}
input, textarea { outline:none; }
input[type=text]:focus,
input[type=password]:focus {
  outline: 0 none;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

::-webkit-input-placeholder { color: #343436; opacity: 1; }
::-moz-placeholder { color: #343436; opacity: 1; }
:-ms-input-placeholder { color: #343436; opacity: 1; }
input:-moz-placeholder { color: #343436; opacity: 1; }

::-moz-selection {
	background: #888888;
    color: #000000;
}
::selection {
    background: #888888;
    color: #000000;
}
::-webkit-selection {
	background: #888888;
	color: #000000;
}
button:active {
    outline: none;
    border: none;
}
button:focus {
    outline: 0;
} 

/*	---------------------------------------------------------------------- */
/* 	layout */
/*	---------------------------------------------------------------------- */

/*	---------------------------------------------------------------------- */
/* 	main elements */
.header-container {
	background: #FFFFFF;
	position: relative;
	width: 100%;
}
.footer-container {
	background: #343436;
    border-bottom: 2px solid #87A0FF;
}

.body-reveal, .footer-reveal {
	position: relative;
}

.loading {
    background: rgba(0,0,0,0.8);
    color: #FFFFFF;
    font-family: "brbold", Helvetica, Arial, sans-serif;
    height: 100%;
    position: fixed;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    z-index: 110;
}
.loading .loading-image {
    background-image: url("../content/icons/loading.gif");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    height: 9em;
	margin-top: 20vh;
    margin-bottom: 1em;
}
.loading .loading-text {
    font-size: 1.25em;
}

/*	---------------------------------------------------------------------- */
/* 	rows - columns */
.row { margin: 1em 0; }

.column_1_2, .column_2_2, .column_1_1_3, .column_2_1_3, .column_3_1_3, .column_1_1_4, .column_2_1_4, .column_3_1_4, .column_4_1_4, .column_1_7_12, .column_2_5_12 { position: relative; }
.column_1_2, .column_1_1_3, .column_2_1_3, .column_1_7_12, .column_1_1_4, .column_2_1_4, .column_3_1_4 { float: left; }
.column_2_2, .column_3_1_3, .column_2_5_12, .column_4_1_4 { float: right; }

.column_1_2, .column_2_2 { width: 49.340%; } /* TWO columns wide */
.column_1_1_3, .column_2_1_3, .column_3_1_3 { width: 32.453%; } /* THREE columns wide */
.column_1_1_4, .column_2_1_4, .column_3_1_4, .column_4_1_4 { width: 24.010%; } /* THREE columns wide */

.column_1_7_12 { width: 57.783%; } /* SEVEN / TWELVE columns wide */
.column_2_5_12 { width: 40.897%; } /* FIVE / TWELVE columns wide */ 

.column_1_1_3, .column_1_1_4, .column_2_1_4 { margin-right: 1.31% }

.column-6 { width: 60%; }
.offset-3 { margin-left: 20%; }

/*	---------------------------------------------------------------------- */
/* 	header */
.header-content {
    height: 80px;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
      -webkit-box-align: center;
         -ms-flex-align: center;
    -webkit-align-items: center;
       -moz-align-items: center;
            align-items: center;
     -webkit-box-pack: justify;
        -moz-box-pack: justify;
    -webkit-flex-pack: justify;
        -ms-flex-pack: justify;
       -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
            justify-content: space-between;
}
.header-content.clearfix:before, .header-content.clearfix:after {
    display: none;
}

/* 	logo */
.logo-container {
	width: 150px;
}
.logo-container img {
	max-width: 100%; 
}

/* 	user login */
.user-container {
	display: block; 
    margin: 0;
    padding: 0;
	position: relative;
	list-style: none;
	list-style-image: none;
}
.user-container ul, .user-container ul li {
	display: block; 
    margin: 0;
    padding: 0;
	position: relative;
	list-style: none;
	list-style-image: none;
}
.user-container a {
    background: #E1E1E1;
    border: 2px solid #FFFFFF;
	color: #343436;
	display: block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
	font-size: 0.9em;
	height: 30px;
    line-height: 30px;
    overflow: hidden;
    padding: 0 4em 0 2em;
    position: relative;
	text-transform: uppercase;
	-webkit-border-radius: 2.25em;
    -moz-border-radius: 2.25em;
    -ms-border-radius: 2.25em;
    -o-border-radius: 2.25em;
    border-radius: 2.25em;
}
.user-container a:hover {
    background: #FFFFFF;
    border-color: #19FFB9; 
    color: #343436;
}
.user-container a .fa {
    border-left: 2px solid #FFFFFF;
    height: 30px;
    line-height: 30px;
    text-align: center;
    width: 30px;
    position: absolute;
    top: 0;
    right: 0;
}
.user-container a .fa.fa-caret-down:before {
    content: '\0059';
}
.user-container a:hover .fa {
    background: #19FFB9;
    border-color: #19FFB9;
    color: #343436;
}
.user-container .dropdown.open a {
    background: #FFFFFF;
    border-color: #B2B2B2;
}
.user-container .dropdown.open a .fa {
    background: #B2B2B2;
    border-color: #B2B2B2;
    color: #343436 !important;
}

.user-container .dropdown ul.dropdown-menu {
    background: #FFFFFF;
    box-sizing: border-box;
    right: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    padding: 1em 2em;
    position: absolute;
    width: 350px;
    z-index: 20;
    visibility: hidden;
    transform: translateY(-3em);
    -webkit-box-shadow: 0 0.5em 0.5em 0 rgba(52, 52, 54, 0.1);
    -moz-box-shadow: 0 0.5em 0.5em 0 rgba(52, 52, 54, 0.1);
    -ms-box-shadow: 0 0.5em 0.5em 0 rgba(52, 52, 54, 0.1);
    -o-box-shadow: 0 0.5em 0.5em 0 rgba(52, 52, 54, 0.1);
    box-shadow: 0 0.5em 0.5em 0 rgba(52, 52, 54, 0.1);
    -webkit-transition: all 150ms linear;
	-moz-transition: all 150ms linear;
    -ms-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}
.user-container .dropdown.open ul.dropdown-menu {
    opacity: 1;
    filter: alpha(opacity=100);
	transform: translateY(0);
    visibility: visible;
}
.user-container .dropdown ul.dropdown-menu .profile-dropdown {
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 1em;
    padding-bottom: 1em;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
      -webkit-box-align: center;
         -ms-flex-align: center;
    -webkit-align-items: center;
       -moz-align-items: center;
            align-items: center;
}
.user-container .dropdown ul.dropdown-menu .profile-dropdown .profile-icon {
    color: #E1E1E1;
    font-size: 3em;
}
.user-container .dropdown ul.dropdown-menu .profile-dropdown .profile-icon .fa {
    display: contents;
}
.user-container .dropdown ul.dropdown-menu .profile-dropdown .profile-infos {
    display: block;
    margin: 0 0 0 1em;
    width: calc(100% - 4em);
}
.user-container .dropdown ul.dropdown-menu .profile-dropdown .profile-infos a {
    background: none;
    border: none;
    height: auto;
    line-height: normal;
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
.user-container .dropdown ul.dropdown-menu .profile-dropdown .profile-infos a .profile-name {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.user-container .dropdown ul.dropdown-menu li a {
    background: none;
    border: none;
    color: #343436;
    display: block;
    font-family: 'brregular', Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    height: auto;
    line-height: normal;
    padding: 0.4em 0;
    text-transform: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
.user-container .dropdown ul.dropdown-menu li a:hover {
    background: none;
    color: #87A0FF;
}
.user-container .dropdown ul.dropdown-menu li:last-of-type a:hover {
    color: #E9586D;
}

/*	---------------------------------------------------------------------- */
/* 	login screen */
.startpage.login-active .body-reveal {
    margin-bottom: 0;
    height: 100vh;
    overflow: hidden;
}
.startpage.login-active .body-reveal .claim-container, .startpage.login-active .footer-reveal {
    display: none;
}
.login-mask {
	z-index: 1000;
}
.login-mask .wrapper {
	max-width: 400px;
}
.login-container h4 {
    color: #87A0FF;
    font-size: 2.0em;
    line-height: 1.3em;
    font-weight: 300;
}
.login-container p {
    font-family: 'brregular', Helvetica, Arial, sans-serif;
    margin: 0 0 0.25em 0;
    padding: 0;
    text-align: left;
}
.login-container input {
    background: #FFFFFF;
    border: 1px solid #B2B2B2;
    box-sizing: border-box;
    display: block;
    font-family: 'brregular', Helvetica, Arial, sans-serif;
    font-size: 1.1em;
    margin: 0 0 1em 0;
    padding: 0.75em;
    width: 100%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.login-container input:hover, .login-container input:focus {
    background: #FFFFFF;
    border-color: #87A0FF;
}

.login-container input.login {
    background: #19FFB9;
    border: 2px solid #F1F1F1;
    color: #343436;
    cursor: pointer;
    display: inline-block;
    font-family: "brbold", Helvetica, Arial, sans-serif;
    font-size: 1em;
    height: 44px;
    line-height: 40px;
    padding: 0 2.5em;
    margin: 1em 0;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    -webkit-border-radius: 3em;
    -moz-border-radius: 3em;
    -ms-border-radius: 3em;
    -o-border-radius: 3em;
    border-radius: 3em;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.login-container input.login:hover {
    background: #FFFFFF;
    border-color: #19FFB9;
    color: #343436;
}
.action-buttons:before, .action-buttons:after {
    content: " ";
    display: table;
}
.action-buttons:after { clear: both; }
.action-buttons { *zoom: 1; }
.action-buttons a {
    color: #666666 !important;
    display: block;
    font-family: "brregular", sans-serif;
    font-size: 1em;
    margin-bottom: 1em;
    text-align: left;
}
.action-buttons a.lost-password {
    float: left;
}
.action-buttons a.signup {
    text-align: right;
}
.login-container .row.message_container {
	margin: 0;
}
.login-container .row.message_container .alert {
	margin: 2em 0 1em 0 !important;
}
.login-container .logo-container {
	display: none;
} 

.password-settings-container {
    background: #FFFFFF;
    box-sizing: border-box;
    padding: 1.5em 2em 0.5em 2em;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
}

/*	---------------------------------------------------------------------- */
/* 	new login mask */
.iframe-body {
    background: none;
}
.login-mask .wrapper .logo-container-login {
    margin: 8em auto 3em auto;
	max-width: 175px;
}
.login-mask .wrapper h4 {
    color: #87A0FF;
    display: block;
    font-size: 1.75em;
    line-height: 1.3em;
    font-weight: 300;
    text-align: center;
}
.login-mask .login-container {
    height: 350px;
    margin: 0 !important;
    width: 100%;
}
.login-mask .container-claim {
    color: #343436;
    display: block;
    font-size: 1.75em;
    font-weight: 300;
    line-height: 1.3em;
    margin-bottom: 0.25em;
    text-align: center;
}
#page-container.page-content {
    max-width: 100%;
    padding: 0;
    width: 100%;
}
#page-container.page-content .logo-container.centered {
    display: none !important;
}
#page-container.page-content .detailview-container .detailview-module.with-title {
    padding: 0;
}
#page-container.page-content .detailview-container .detailview-module .input-form .input-row {
    margin: 0.75em 0;
}
#page-container.page-content .detailview-container .detailview-module .input-form .input-row label {
    font-family: "brregular", Helvetica, Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 0.1em;
    width: 100%;
}
#page-container.page-content .detailview-container .detailview-module .input-form .input-row input {
    background: #FFFFFF;
    border: 1px solid #B2B2B2;
    box-sizing: border-box;
    display: block;
    font-family: 'brregular', Helvetica, Arial, sans-serif;
    font-size: 1em;
    margin: 0;
    max-width: 100%;
    padding: 0.75em;
    width: 100%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
#page-container.page-content .detailview-container .detailview-module .input-form .input-row input:hover,
#page-container.page-content .detailview-container .detailview-module .input-form .input-row input:focus {
    background: #FFFFFF;
    border-color: #87A0FF;
}
#page-container.page-content .detailview-container .detailview-module .input-form .input-row .btn.submit-link {
    background: #19FFB9;
    border: 2px solid #F1F1F1;
    color: #343436;
    cursor: pointer;
    display: inline-block;
    font-family: "brbold", Helvetica, Arial, sans-serif;
    font-size: 1em;
    font-weight: 400;
    height: 44px;
    line-height: 40px;
    padding: 0 2.5em;
    margin: 1em 0 0 0;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    -webkit-border-radius: 3em;
    -moz-border-radius: 3em;
    -ms-border-radius: 3em;
    -o-border-radius: 3em;
    border-radius: 3em;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear; 
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
#page-container.page-content .detailview-container .detailview-module .input-form .input-row .btn.submit-link:hover {
    background: #FFFFFF;
    border-color: #19FFB9;
    color: #343436;
}
#page-container.page-content .detailview-module .input-form .input-row .btn.btn-default {
    background: #19FFB9;
    border: 2px solid #F1F1F1;
    color: #343436;
    cursor: pointer;
    display: inline-block;
    font-family: "brbold", Helvetica, Arial, sans-serif;
    font-size: 0.95em;
    font-weight: 400;
    height: 44px;
    line-height: 40px;
    padding: 0 2.5em;
    margin: 0;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    -webkit-border-radius: 3em;
    -moz-border-radius: 3em;
    -ms-border-radius: 3em;
    -o-border-radius: 3em;
    border-radius: 3em;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
#page-container.page-content .detailview-module .input-form .input-row .btn.btn-default:hover {
    background: #FFFFFF;
    border-color: #19FFB9;
    color: #343436;
}
#page-container.page-content .detailview-module .input-form .input-row:first-of-type {
    margin-bottom: 0.5em;
}
#page-container.page-content .detailview-module .input-form .input-row:last-of-type {
    margin-top: 0;
}

#page-container.page-content .alert.alert-danger {
    background: #E9586D;
    border-color: #E9586D;
    box-sizing: border-box;
    color: #FFFFFF;
    font-family: "brregular", Helvetica, Arial, sans-serif;
    margin: -1em 0 1em 0;
    padding: 1em;
    width: 100%;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
}
#page-container.page-content .alert.alert-danger strong {
    font-family: "brbold", Helvetica, Arial, sans-serif;
    font-weight: 400;
}
#page-container.page-content .alert.alert-danger .danger.validation-summary-errors ul {
    margin: 0;
    padding: 0 0 0 1em;
}

/*	---------------------------------------------------------------------- */
/* 	main image */
.mainimg-container {
    margin-bottom: 4em;
	position: relative; 
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
      -webkit-box-align: center;
         -ms-flex-align: center;
    -webkit-align-items: center;
       -moz-align-items: center;
            align-items: center;
}
.startpage .mainimg-container {
	height: 24em;
	position: relative;
	overflow: hidden;
	background-color: #E1E1E1;
}
.main-container, .startpage-container {
    position: relative;
    margin-top: 4em;
	margin-bottom: 4em;
} 
.mainimg-container .blurredImage {
    background-image: url("../content/images/claimImage.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 56.33333%;
}
.mainimg-container .claim-container, .productBooking .claim-container {
    position: relative;
	z-index: 10;
}
.startpage .mainimg-container .claim-container h1, .startpage .mainimg-container .claim-container h2 {
    width: 39.66667%;
}
.mainimg-container .claim-container h1 {
    margin-bottom: 0;
}
.mainimg-container .claim-container h2 {
    display: none;
    font-family: 'brregular', Helvetica, Arial, sans-serif;
    font-size: 1.5em;
    line-height: 1.3em;
    margin: 0;
}
.mainimg-container .claim-container h1, .mainimg-container .claim-container h2 { color: #87A0FF; }

/*	---------------------------------------------------------------------- */
/* 	startpage */
.teaser-container {
	margin: 0 -1%;
}
a.teaser-content {
	background: #FFFFFF;
	box-sizing: border-box;
	color: #343436;
	float: left;
	margin: 0.75em 1%;
	padding: 2em;
	overflow: hidden;
    position: relative;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
a.teaser-content.large, a.teaser-content.medium {
    height: 24em;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
    -ms-flex-line-pack: end;
    -webkit-align-content: flex-end;
    -moz-align-content: flex-end;
    align-content: flex-end;
}
a.teaser-content.large {
    float: left;
    width: 64.66667%;
}
a.teaser-content.medium {
    float: right;
    width: 31.33333%;
}
a.teaser-content.small {
    height: 12em;
    width: 48%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}
.teaser-content:hover {
	background: #19FFB9;
}
.teaserSmall-container .teaser-content.small {
	margin: 7px 0;
    width: 100%;
}
.teaser-content.large:before, .teaser-content.medium:before, .teaser-content.small:before {
    display: block;
    position: absolute;
    top: 2em;
    left: 2em;
    width: 9em;
    height: 9em;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: opacity 300ms linear;
	-moz-transition: opacity 300ms linear;
	-ms-transition: opacity 300ms linear;
	-o-transition: opacity 300ms linear;
	transition: opacity 300ms linear;
}
.teaser-content.large:before {
    content: url(../content/icons/neue-buchung.svg);
}
.teaser-content.small:before {
    height: 7em;
    left: unset;
    margin-top: -3.5em;
    right: 2em;
    top: 50%;
    width: 7em;
}
.teaser-content.small:before {
    content: url(../content/icons/meine-buchungen.svg);
}
.teaser-content.small:last-of-type:before {
    content: url(../content/icons/mein-profil.svg);
}
.teaser-content.small:hover:before {
    opacity: 0;
    filter: alpha(opacity=0);
}
.teaser-content.large h1 {
    color: #87A0FF;
    margin-bottom: 0.25em;
    width: 100%;
}
.teaser-content.large h2 {
    color: #87A0FF;
    font-size: 1.5em;
	line-height: 1.3em;
    margin-bottom: 0;
    width: 100%;
}
.teaser-content h1, .teaser-content h2 {
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.teaser-content.medium h1, .teaser-content.small h1 {
    color: #343436;
    font-size: 2.0em;
    line-height: 1.3em;
    margin: 0;
}
.teaser-content:hover h1, .teaser-content:hover h2 {
	color: #343436;
}
.teaser-content hr, .teaser-content p {
	display: none;
}
.teaser-content .fa {
    color: #343436;
    font-family: "wybyicons";
    position: absolute;
    right: 3em;
    font-size: 1em;
    opacity: 0;
    filter: alpha(opacity=0);
}
.teaser-content.large .fa, .teaser-content.medium .fa {
    bottom: 2em;
}
.teaser-content.small .fa {
    margin-top: -1em;
    top: 50%;
}
.teaser-content .fa:before {
    content: '\004b';
    font-size: 2em;
}
.teaser-content:hover .fa {
    right: 2em;
    opacity: 1;
    filter: alpha(opacity=100);
}

.bookingInfo {
    color: #343436;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.bookingInfo .no-booking-today {
    font-size: 2.0em;
    line-height: 1.3em;
}
.bookingInfo .bookingInfo-date {
    display: block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 1.5em;
}
.bookingInfo .bookingInfo-status {
    display: block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 1.5em;
    line-height: 1.3em;
}
.bookingInfo .bookingInfo-status .value {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
}

a.teaser-content.booked h1, a.teaser-content.noBooking h1, a.teaser-content.cancelled h1 {
    display: none;
}
a.teaser-content.booked .bookingInfo, a.teaser-content.noBooking .bookingInfo, a.teaser-content.cancelled .bookingInfo {
    color: #FFFFFF;
    width: 85%;
}
a.teaser-content.booked:hover, a.teaser-content.noBooking:hover, a.teaser-content.cancelled:hover {
    background: #FFFFFF;
} 

a.teaser-content.noBooking, a.teaser-content.cancelled {
    background: #E9586D;
}
.teaser-content.noBooking:before, .teaser-content.cancelled:before {
    content: url(../content/icons/keine-buchung.svg);
}
a.teaser-content.noBooking:hover, a.teaser-content.cancelled:hover {
    background: #FFFFFF;
}
a.teaser-content.noBooking:hover .bookingInfo, a.teaser-content.cancelled:hover .bookingInfo {
    color: #E9586D;
} 
.teaser-content.noBooking .fa, .teaser-content.cancelled .fa {
    color: #E9586D;
}
a.teaser-content.cancelled .bookingInfo .bookingInfo-status {
    background: #FFFFFF;
    color: #343436;
}
a.teaser-content.cancelled:hover .bookingInfo .bookingInfo-status {
    background: #E9586D;
    color: #FFFFFF;
}
 
a.teaser-content.booked {
    background: #6ED7A5;
}
.teaser-content.booked:before {
    content: url(../content/icons/heute-buchung.svg);
}
a.teaser-content.booked:hover .bookingInfo {
    color: #6ED7A5;
}
.teaser-content.booked .fa {
    color: #6ED7A5;
}

/*	---------------------------------------------------------------------- */
/* 	product booking */
/*	---------------------------------------------------------------------- */
/*  generic overwrites */
.compactBooking_datePicker h3, .compactBooking_timePicker h3, .compactBooking_startTime h3, .productBooking_dates h3, .productBooking_options h3, .productInformation_name h3, .productBooking_bill h3, .productConfirmation_bookingNumber h3, .productConfirmation_bookingDates h3, .productBooking-location h3, .productBooking-previouslocation h3 {
	color: #87A0FF;
}
ul.selectCategory, ul.selectSubcategory, ul.selectObject, ul.productAccessories_list, ul.bookingBill_list {
    list-style: outside none none;
    margin: 0;
    padding: 0; 
}
.compactBooking_category select, .compactBooking_subCategory select, .compactBooking_location select, .duration_container select {
	display: none;
}

/*	---------------------------------------------------------------------- */
/*  numberplates */
.productBooking-licenseplates {
    background: #FFFFFF;
    box-sizing: border-box;
    padding: 1.5em 2%;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
}
.productBooking-licenseplates .licenseplates-container {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
}
.productBooking-licenseplates .licenseplates-container h3 {
    color: #87A0FF;
    margin: 0;
    width: 33.33333%;
}
.productBooking-licenseplates .licenseplates-container .container-lp {
    width: 66.66666%;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.productBooking-licenseplates .licenseplates-container .container-lp .previous-lp {
    background: #F1F1F1;
    border-radius: 0.5em;
    box-sizing: border-box;
    cursor: pointer;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    margin: 0.5em;
    padding: 1.5em 2em;
    text-align: center;
    text-transform: uppercase;
    width: calc(50% - 1em);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-flex-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.productBooking-licenseplates .licenseplates-container .container-lp .previous-lp:hover {
    background: #87A0FF;
    color: #FFFFFF;
}

/*	---------------------------------------------------------------------- */
/*  select location */
.productBooking-location, .productBooking-previouslocation, .productBooking-object, .productBooking-previousobject {
    background: #FFFFFF;
    margin: 0 0 2em 0;
    padding: 2em 2%;
    position: relative;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}
.productBooking-location:before, .productBooking-object:before {
    color: #343436;
    content: "\0045";
    display: block;
    font-family: "wybyicons";
    font-size: 1.25em;
    height: 1em;
    line-height: 1em;
    pointer-events: none;
    position: absolute;
    right: 3%;
    width: 1em;
    z-index: 5;
    -webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
	transition: all 300ms linear;
}
.productBooking-location, .productBooking-object {
    margin-bottom: 0;
}
.productBooking-location h3, .productBooking-previouslocation h3, .productBooking-object h3, .productBooking-previousobject h3 {
    margin: 0;
    width: 33.33333%;
}
.productBooking-location select, .productBooking-object select {
    background: #F1F1F1;
    border: 1px solid #B2B2B2;
    box-sizing: border-box;
    display: block;
    font-family: 'brregular', Helvetica, Arial, sans-serif;
    font-size: 1.1em;
    margin: 0;
    padding: 0.75em;
    width: 66.66666%;
    -webkit-appearance: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.productBooking-location select:hover, .productBooking-object:hover {
    border-color: #87A0FF;
}
.productBooking-previouslocation .previouslocation-container, .productBooking-previousobject .previousobject-container {
    width: 66.66666%;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.productBooking-previouslocation .previouslocation-container .previous-location, .productBooking-previousobject .previousobject-container .previous-object,
.productBooking-previouslocation .previouslocation-container .previous-location, .productBooking-previousobject .previousobject-container .previous-location { 
    background: #F1F1F1;
    border-radius: 0.5em;
    box-sizing: border-box;
    cursor: pointer;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    padding: 1.5em 2em;
    text-align: center;
    text-transform: uppercase;
    width: 48.5%; 
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox; 
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; 
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-flex-pack: center; 
    -ms-flex-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.productBooking-previouslocation .previouslocation-container .previous-location:hover, .productBooking-previousobject .previousobject-container .previous-object:hover,
.productBooking-previouslocation .previouslocation-container .previous-location:hover, .productBooking-previousobject .previousobject-container .previous-location:hover {
    background: #87A0FF;
    color: #FFFFFF;
}
.productBooking-selectedlocation {
    background: #FFFFFF;
    margin: 0 0 2em 0;
    padding: 2em 2%;
    text-align: center;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
}
.productBooking-selectedlocation h2 {
    font-family: 'brregular', Helvetica, Arial, sans-serif;
    font-size: 1.5em;
    line-height: 1.3em;
    margin: 0;
}
.productBooking_full .productBooking-calendar {
    background: #FFFFFF;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
}
.productBooking_full .productBooking-calendar h3 {
    border-bottom: 1px solid #F1F1F1;
    margin: 0;
    padding: 1em 2%;
}
.productBooking_full .mainBooking-Button button.mainBook-Btn:disabled, .productBooking_full .mainBooking-Button button.mainBook-Btn:disabled:hover {
    background: #FFFFFF !important;
    border-color: #F1F1F1 !important;
    color: #B2B2B2 !important;
    cursor: not-allowed; 
}
.productBooking_full .mainBooking-Button button.mainBook-Btn:disabled:before, .productBooking_full .mainBooking-Button button.mainBook-Btn:disabled:hover:before {
    background: #FFFFFF !important;
    border-color: #F1F1F1 !important;
    color: #B2B2B2 !important;
}

.productBooking-selection {
    background: #FFFFFF;
    margin-bottom: 2em;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
}
.productBooking-selection .productBooking-location, .productBooking-selection .productBooking-object {
    box-sizing: border-box;
    width: 50%;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.productBooking-selection .productBooking-location {
    padding-right: 1%;
}
.productBooking-selection .productBooking-object {
    padding-left: 1%;
}
.productBooking-selection .productBooking-location h3, .productBooking-selection .productBooking-location select, .productBooking-selection .productBooking-object h3, .productBooking-selection .productBooking-object select {
    width: 100%;
}
.productBooking-selection .productBooking-location h3, .productBooking-selection .productBooking-object h3 {
    font-size: 1.25em;
    line-height: 1.3em;
    margin-bottom: 0.5em;
}
.productBooking-selection .productBooking-location:before, .productBooking-selection .productBooking-object:before {
    bottom: 2.3em;
}
.productBooking-selection .productBooking-location:before {
    right: 5%;
}
.productBooking-selection .productBooking-object:before {
    right: 7%;
}
.productBooking-selection .productBooking-btn-selection {
    padding: 0 2% 1.25em 2%;
    text-align: center;
    width: 100%;
}
.productBooking-selection .productBooking-btn-selection a.btn.btn-primary {
    background: #E1E1E1;
    border: 2px solid #FFFFFF;
    color: #343436;
    display: inline-block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    height: 30px;
    line-height: 30px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 4em 0 2em;
    position: relative;
    text-transform: uppercase;
    -webkit-border-radius: 2.25em;
    -moz-border-radius: 2.25em;
    -ms-border-radius: 2.25em;
    -o-border-radius: 2.25em;
    border-radius: 2.25em;
}
.productBooking-selection:hover .productBooking-btn-selection a.btn.btn-primary {
    background: #87A0FF;
    color: #FFFFFF;
}
.productBooking-selection .productBooking-btn-selection a.btn.btn-primary:hover {
    background: #FFFFFF;
    border-color: #19FFB9;
    color: #343436;
}
.productBooking-selection .productBooking-btn-selection a.btn.btn-primary .fa {
    border-left: 2px solid #FFFFFF;
    height: 30px;
    line-height: 30px;
    text-align: center;
    width: 30px;
    position: absolute;
    top: 0;
    right: 0;
}
.productBooking-selection .productBooking-btn-selection a.btn.btn-primary:hover .fa {
    background: #19FFB9;
    border-color: #19FFB9;
    color: #343436;
}

/*	---------------------------------------------------------------------- */
/*  filters */
.miniwizard-collapsed {
	margin-top: 100px;
	margin-bottom: 30px;
}

/*  trigger btn */
.miniwizard-collapsed .compactBooking_btn a {
	background: #EEEEEE;
    -webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
    color: #343436;
    display: block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 1em;
    height: 40px;
    line-height: 40px;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    width: 100%;	
}
.miniwizard-collapsed .compactBooking_btn a:hover, .miniwizard-collapsed .compactBooking_btn.active a, .miniwizard-collapsed .compactBooking_btn.active a:hover {
    background: #87A0FF;
    color: #FFFFFF;
}
.miniwizard-collapsed .compactBooking_btn.active a, .miniwizard-collapsed .compactBooking_btn.active a:hover {
	-webkit-border-radius: 20px;
	-webkit-border-bottom-right-radius: 0;
	-webkit-border-bottom-left-radius: 0;
	-moz-border-radius: 20px;
	-moz-border-radius-bottomright: 0;
	-moz-border-radius-bottomleft: 0;
	border-radius: 20px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

/*  filter dropdown structure */
.miniwizard-collapsed .filters {
	border-top: 1px solid #FFFFFF;
	display: block;
	background: #87A0FF;
	-webkit-border-radius: 0;
	-webkit-border-bottom-right-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	-moz-border-radius: 0;
	-moz-border-radius-bottomright: 20px;
	-moz-border-radius-bottomleft: 20px;
	border-radius: 0;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
}
.miniwizard-collapsed .filters.closed {
	overflow: hidden;
	height: 0;
}

.compactBooking_category, .compactBooking_subCategory, .compactBooking_location {
	border-right: 1px solid #FFFFFF;
    box-sizing: border-box;
    display: block;
    float: left;
    padding: 20px 1.5em;
    position: relative;
    width: 50%;
}
.compactBooking_location {
	border-right: none;
}
.miniwizard-collapsed .filters .compactBooking_dateTime, .miniwizard-collapsed .filters .filters-actions {
	border-top: 1px solid #FFFFFF;
    clear: both;
}
.compactBooking_datePicker, .compactBooking_timePicker {
	box-sizing: border-box;
	display: block;
	float: left;
	padding: 20px 1.5em;
	position: relative;
}
.compactBooking_datePicker {
	border-right: 1px solid #FFFFFF;
	width: 33.333%;
}
.compactBooking_timePicker {
	width: 66.666%;
}
.timeunit_container, .duration_container {
	display: block;
	float: left;
	width: 48%;
	position: relative;
}
.timeunit_container {
	margin-right: 4%;
}
.compactBooking_startTime {
	box-sizing: border-box;
	clear: both;
	display: block;
	border-top: 1px solid #FFFFFF;
	width: 100%;
}
.compactBooking_startTime h3, .startTime_wrapper {
	box-sizing: border-box;
    display: block;
    padding: 20px 1.5em;
}
.miniwizard-collapsed .filters .compactBooking_startTime h3 {
	float: left;
    margin: 8px 0 0 0;
    width: 33.333%;
}
.startTime_wrapper {
	float: right;
	width: 66.666%;
}
.startTime_container {
	display: block;
	float: left;
	width: 48%;
	position: relative;
}
.startTime_container.hour {
	margin-right: 4%;
}
.filters .filters-actions {
	padding: 20px 1.5em;
}

/*  filter dropdown elements */
.miniwizard-collapsed .filters h3 {
	color: #FFFFFF;
	font-size: 1em;
}
.miniwizard-collapsed .filters input {
	background: rgba(255,255,255,0.5);
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	border: 1px solid #FFFFFF;
	box-sizing: border-box;
    color: #343436;
    cursor: pointer;
    display: block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    padding: 0;
    text-align: center;
    text-transform: uppercase !important;
    height: 40px;
}
.miniwizard-collapsed .filters input:hover, .miniwizard-collapsed .filters input:focus {
	background: rgba(255,255,255,1.0);
}
.compactBooking_category input, .compactBooking_subCategory input, .compactBooking_location input, .compactBooking_datePicker input, .duration_container input {
	width: 100%;
}
.timeunit_container input, .startTime_container input, .startTime_container input {
	display: block;
    float: left;
    margin: 0 3%;
    width: calc(94% - 80px);
}
.compactBooking_timePicker .duration, .startTime_container .duration {
	display: block;
    width: 40px;
}
.compactBooking_timePicker .duration a, .startTime_container .duration a {
	background: rgba(255,255,255,0.5);
    -webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	box-sizing: border-box;
	border: 1px solid #FFFFFF;
    color: #343436;
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
}
.compactBooking_timePicker .duration a:hover, .startTime_container .duration a:hover {
	background: #19FFB9;
	border-color: #19FFB9;
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.compactBooking_timePicker .duration.minus, .startTime_container .duration.minus {
	float: left;
}
.compactBooking_timePicker .duration.plus, .startTime_container .duration.plus {
	float: right;
}

.compactBooking_category ul.dropdown-menu, .compactBooking_subCategory ul.dropdown-menu, .compactBooking_location ul.dropdown-menu, .duration_container ul.dropdown-menu {
	background: #FFFFFF;
    -webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-box-shadow: 0 5px 5px 0 rgba(66,66,66,0.2);
	box-shadow: 0 5px 5px 0 rgba(66,66,66,0.2);
    list-style: outside none none;
    margin: 1px 0 0 0;
    padding: 0;
    position: absolute;
    overflow: hidden;
    z-index: 5;
}
.compactBooking_category ul.dropdown-menu, .compactBooking_subCategory ul.dropdown-menu, .compactBooking_location ul.dropdown-menu {
	width: calc(100% - 3em);
}
.duration_container ul.dropdown-menu {
	width: 100%;
}
.compactBooking_category ul.dropdown-menu li a, .compactBooking_subCategory ul.dropdown-menu li a, .compactBooking_location ul.dropdown-menu li a, .duration_container ul.dropdown-menu li a {
	border-top: 1px solid #B0B0B0;
	box-sizing: border-box;
    color: #343436;
    display: block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    padding: 0 1em;
    text-transform: uppercase;
    width: 100%;
    height: 40px;
    line-height: 40px;
}
.compactBooking_category ul.dropdown-menu li a:hover, .compactBooking_subCategory ul.dropdown-menu li a:hover, .compactBooking_location ul.dropdown-menu li a:hover, .duration_container ul.dropdown-menu li a:hover {
    background: #EEEEEE;
}
.compactBooking_category ul.dropdown-menu li:first-child a, .compactBooking_subCategory ul.dropdown-menu li:first-child a, .compactBooking_location ul.dropdown-menu li:first-child a, .duration_container ul.dropdown-menu li:first-child a {
    border-top: medium none;
}

.filters .filters-actions a.btn-apply-filters, .filters .filters-actions a.btn-cancel-filters {
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	color: #343436;
    display: block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    width: 49%;
    font-size: 0.9em;
    line-height: 40px;
    height: 40px;
}
.filters .filters-actions a.btn-apply-filters {
	background: #19FFB9;
	color: #343436;
	float: right;
}
.filters .filters-actions a.btn-cancel-filters {
	background: #FFFFFF;
	float: left;
}
.filters .filters-actions a.btn-apply-filters:hover, .filters .filters-actions a.btn-cancel-filters:hover {
	background: #343436;
	color: #FFFFFF;
}

/*	---------------------------------------------------------------------- */
/*  result object */
ul.selectObject {
	margin-bottom: 2em;
}
h3.alternatives {
	color: #87A0FF;
}
ul.selectObject li {
	border-bottom: 1px solid #FFFFFF;
	background: #EEEEEE;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	transition: all 300ms linear;
}
ul.selectObject li:hover {
	background: #E6E6E6;
}
ul.selectObject .selectObject_thumbnail {
	border-right: 1px solid #FFFFFF;
    float: left;
    height: 120px;
    overflow: hidden;
    position: relative;
    width: 120px;
}
ul.selectObject .selectObject_Details {
	display: block;
    float: right;
    height: 120px;
    margin-right: 2.4%;
    position: relative;
    width: calc(100% - (140px + 2.4%));
    -webkit-transform-style: preserve-3d;
  	-moz-transform-style: preserve-3d;
  	transform-style: preserve-3d;
}
ul.selectObject .selectObject_Message {
  float: right;
  width: 100%;
}
ul.selectObject .selectObject_Message .alert {
  margin: 0;
}
.selectObject_Primary, .selectObject_Secondary, .selectObject_Btns {
	float: left;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.selectObject_Primary, .selectObject_Secondary {
	width: 37.5%;
}
.selectObject_Btns {
	width: 25%;
}
.selectObject_name {
	font-family: 'brbold', Helvetica, Arial, sans-serif;
}

.selectObject_Btns a.selectObject_details, .selectObject_Btns a.selectObject_book {
    -webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
    color: #343436;
    display: block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.82em;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    height: 30px;
    line-height: 30px;
}
.selectObject_Btns a.selectObject_details {
    background: #CCCCCC;
    margin: 0 0 0.5em 0;
}
.selectObject_Btns a.selectObject_book {
    background: #19FFB9;
}
.selectObject_Btns a.selectObject_details:hover, .selectObject_Btns a.selectObject_book:hover {
	background: #87A0FF;
	color: #FFFFFF;
}

/*	---------------------------------------------------------------------- */
/* 	product detail */
.productDetail .mainimg-container {
    height: 450px;
    overflow: hidden;
}
.productDetail .mainimg-blurcontainer {
	filter: blur(15px);
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    height: 112%;
    left: -6%;
    opacity: 0.5;
    filter: alpha(opacity=50);
    top: -6%;
    width: 112%;
}
.productDetail .mainimg-blurcontainer {
	opacity: 0.2\9; /* ie7, ie8, ie9 and ie10 only */
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
   .productDetail .mainimg-blurcontainer { opacity: 0.2; }
}

.productDetail .mainimg-container .claim-container {
    padding-top: 200px;
}
.productDetail .mainimg-container a.btn-book, .productDetail .mainimg-container a.btn-search {
    -webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	box-sizing: border-box;
    color: #343436;
    display: inline-block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    height: 40px;
    line-height: 40px;
    margin-top: 4em;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: background 300ms ease-in-out;
    -moz-transition: background 300ms ease-in-out;
    -ms-transition: background 300ms ease-in-out;
    -o-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    width: 25%;
}
.productDetail .mainimg-container a.btn-book {
    background: #19FFB9;
}
.productDetail .mainimg-container a.btn-book:hover {
    background: #87A0FF;
    color: #FFF;
}

.productDetail .mainimg-container a.btn-search {
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.5);
    float: right;
    position: relative;
}
.productDetail .mainimg-container a.btn-search:hover {
	background: rgba(255,255,255,1.0);
	border-color: rgba(255,255,255,1.0);
    color: #87A0FF;
}
.productDetail .mainimg-container a.btn-search i {
    font-size: 1.5em;
    left: 2em;
    margin-top: -0.5em;
    opacity: 0.0;
    filter: alpha(opacity=0);
    position: absolute;
    top: 50%;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.productDetail .mainimg-container a.btn-search:hover i {
    left: 1em;
    opacity: 1.0;
    filter: alpha(opacity=100);
}

.productDetail_left, .productDetail_right, .productBooking_left, .productBooking_right, .productBooking_full {
    display: block;
    position: relative;
}
.productBooking_full {
	width: 100%;
}
.productDetail_left, .productBooking_left {
    float: left;
    width: 57.783%;
}
.productDetail_right, .productBooking_right {
    background: #EEEEEE;
    float: right;
    width: 40.897%;
}

.productDetail .productDetail_description, .productDetail .productDetail_offers, .productDetail .productDetail_consumables, .productDetail .productDetail_options, .productDetail .productDetail_cancelationfee {
    border-color: #B0B0B0;
    border-style: solid;
    border-width: 1px 0 0 0;
    margin: 30px 0 0 0;
    padding: 30px 0 0 0;
}
.productDetail .productDetail_features {
	margin: 30px 0 0 0;
}
.productDetail .productDetail_calendar, .productDetail .productDetail_conditionalFees, .productDetail .productDetail_documents, .productDetail .productDetail_address {
    border-bottom: 1px solid #FFFFFF;
}
.productDetail .productDetail_conditionalFees, .productDetail .productDetail_documents, .productDetail .productDetail_address {
    padding: 30px 3.232%;
}
.productDetail .productDetail_description h3, .productDetail .productDetail_offers h3, .productDetail .productDetail_consumables h3, .productDetail .productDetail_options h3, .productDetail .productDetail_cancelationfee h3, .productDetail .productDetail_conditionalFees h3, .productDetail .productDetail_documents h3, .productDetail .productDetail_address h3 {
    color: #87A0FF;
}

.productDetail .productDetail_offers .offers_main {
    margin: 0 0 1em 0;
}
.productDetail .productDetail_offers .offers_main .offers_unit, .productDetail .productDetail_options .optionsList_description, .productDetail .productDetail_cancelationfee .cancelationFee_day {
    display: block;
    float: left;
    width: 75%;
}
.productDetail .productDetail_offers .offers_main .offers_price, .productDetail .productDetail_options .optionsList_price, .productDetail .productDetail_cancelationfee .cancelationFee_fix, .productDetail .productDetail_consumables .included_price {
    background: #EEEEEE;
    border: 1px solid #CCCCCC;
    -webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
    box-sizing: border-box;
    color: #343436;
    display: inline-block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.82em;
    height: 30px;
    line-height: 30px;
    width: 25%;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}

.productDetail .productDetail_consumables .consumable_container {
    border-bottom: 1px solid #B0B0B0;
    margin: 0 0 1em 0;
}
.productDetail .productDetail_consumables .consumable_container:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}
.productDetail .productDetail_consumables .consumable_included {
    border-bottom: 1px solid #D7D7D7;
}
.productDetail .productDetail_consumables .consumable_included, .productDetail .productDetail_consumables .consumable_extra {
    padding: 0.5em 0 0.75em;
}
.productDetail .productDetail_consumables .consumable_extra {
    margin-bottom: 0.5em;
    font-size: 0.9em;
}
.productDetail .productDetail_consumables .included_unit {
    display: block;
    float: left;
    width: 75%;
}

.productDetail .productDetail_options ul.productOptions_list, .productDetail .productDetail_cancelationfee ul.productCancelationFee_list {
	list-style: outside none none;
    margin: 0;
    padding: 0;
}
.productDetail .productDetail_options ul.productOptions_list li.optionsList_item, .productDetail .productDetail_cancelationfee ul.productCancelationFee_list li.cancelationFee_item {
    border-top: 1px solid #d7d7d7;
    padding: 0.75em 0;
}
.productDetail .productDetail_options ul.productOptions_list li.optionsList_item:first-child, .productDetail .productDetail_cancelationfee ul.productCancelationFee_list li.cancelationFee_item:first-child {
    border-top: none;
}

.productDetail .productDetail_cancelationfee ul.productCancelationFee_list .cancelationFee_item.heading, .productDetail .productDetail_cancelationfee ul.productCancelationFee_list .cancelationFee_item.heading .cancelationFee_fix {
	font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-weight: normal;
}
.productDetail .productDetail_cancelationfee ul.productCancelationFee_list .cancelationFee_item.heading .cancelationFee_fix {
	background: none;
    border: medium none;
    font-size: 1em;
    height: inherit;
    line-height: inherit;
    text-transform: none;
}

.productDetail .productDetail_calendar .row {
    background: #87A0FF;
    border-bottom: 1px solid #FFFFFF;
    color: #FFFFFF;
    margin: 0;
}
.productDetail .productDetail_calendar .row h4 {
	border-left: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    box-sizing: border-box;
    color: #FFFFFF;
    display: block;
    float: left;
    height: 60px;
    line-height: 60px;
    margin: 0;
    text-align: center;
    vertical-align: text-bottom;
    width: 74%;
}
.productDetail .productDetail_calendar .row button {
	background: none;
    border: none;
    color: #FFFFFF;
    display: block;
    float: left;
    font-size: 1em;
    line-height: 58px;
    padding: 0;
    text-align: center;
    width: 13%;
}
.productDetail .productDetail_calendar .row button:hover {
    color: #343436;
    cursor: pointer;
}
.productDetail .productDetail_calendar .booking_calendar .cal-day-box .cal-day-panel {
    height: 550px !important;
}
.productDetail .productDetail_calendar .booking_calendar .cal-day-box .cal-day-hour-part {
    border-bottom-color: rgba(255,255,255,0.75);
}
.productDetail .productDetail_calendar .booking_calendar .cal-day-box .cal-day-hour-part:first-child {
    border-bottom-color: #EEEEEE;
}

/*	--------------------------------------------------------------------- */
/*  datepicker */
.compactBooking_datePicker .dropdown-menu, .productBooking_dates .selecteddates .dropdown-menu, .profileBirthday .dropdown-menu {
	background: #FFFFFF;
    box-sizing: border-box;
    font-size: 0.9em;
    list-style: none;
    margin: 0;
    outline: medium none;
    overflow: hidden;
    padding: 0;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
    -webkit-box-shadow: 0 0.5em 0.5em 0 rgba(52, 52, 54, 0.1);
    -moz-box-shadow: 0 0.5em 0.5em 0 rgba(52, 52, 54, 0.1);
    -ms-box-shadow: 0 0.5em 0.5em 0 rgba(52, 52, 54, 0.1);
    -o-box-shadow: 0 0.5em 0.5em 0 rgba(52, 52, 54, 0.1);
    box-shadow: 0 0.5em 0.5em 0 rgba(52, 52, 54, 0.1);
}
.productBooking_dates .selecteddates .dropdown-menu, .profileBirthday .dropdown-menu {
	width: 100%;
}
.compactBooking_datePicker .dropdown-menu li, .compactBooking_datePicker .dropdown-menu div, .compactBooking_datePicker .dropdown-menu table, .productBooking_dates .selecteddates .dropdown-menu li, .productBooking_dates .selecteddates .dropdown-menu div, .productBooking_dates .selecteddates .dropdown-menu table, .profileBirthday .dropdown-menu li, .profileBirthday .dropdown-menu div, .profileBirthday .dropdown-menu table {
	border: 0;
	outline: 0;
}
.compactBooking_datePicker .dropdown-menu li a, .productBooking_dates .selecteddates .dropdown-menu li a, .profileBirthday .dropdown-menu li a {
    border-top: 1px solid #b0b0b0;
    color: #343436;
    display: block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 1em;
    padding: 15px 10%;
    text-transform: uppercase;
    width: 90%;
}
.compactBooking_datePicker .dropdown-menu li a:hover, .compactBooking_datePicker .dropdown-menu li.active a, .productBooking_dates .selecteddates .dropdown-menu li a:hover, .productBooking_dates .selecteddates .dropdown-menu li.active a, .profileBirthday .dropdown-menu li a:hover, .profileBirthday .dropdown-menu li.active a {
    background: #EEEEEE;
}
.compactBooking_datePicker .dropdown-menu li:first-child a, .productBooking_dates .selecteddates .dropdown-menu li:first-child a, .profileBirthday .dropdown-menu li:first-child a {
    border-top: none;
}
.compactBooking_datePicker .dropdown-menu li a strong, .productBooking_dates .selecteddates .dropdown-menu li a strong, .profileBirthday .dropdown-menu li a strong {
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #87A0FF;
}
.compactBooking_datePicker .dropdown-menu li table, .productBooking_dates .selecteddates .dropdown-menu li table, .profileBirthday .dropdown-menu li table {
    border-collapse: collapse;
    line-height: 1.65em;
    text-align: center;
    width: 100%;
}
.compactBooking_datePicker .dropdown-menu li table thead tr:first-child th button, .productBooking_dates .selecteddates .dropdown-menu li table thead tr:first-child th button, .profileBirthday .dropdown-menu li table thead tr:first-child th button {
    background: #F1F1F1;
    border: none;
    color: #343436;
    font-size: 1em;
    height: 40px;
    padding: 0;
}
.compactBooking_datePicker .dropdown-menu li table thead tr:first-child th button.pull-left, .compactBooking_datePicker .dropdown-menu li table thead tr:first-child th button.pull-right, .productBooking_dates .selecteddates .dropdown-menu li table thead tr:first-child th button.pull-left, .productBooking_dates .selecteddates .dropdown-menu li table thead tr:first-child th button.pull-right, .profileBirthday .dropdown-menu li table thead tr:first-child th button.pull-left, .profileBirthday .dropdown-menu li table thead tr:first-child th button.pull-right {
    cursor: pointer;
    display: block;
    width: 100%;
}
.compactBooking_datePicker .dropdown-menu li table thead tr:first-child th button.pull-left:hover, .compactBooking_datePicker .dropdown-menu li table thead tr:first-child th button.pull-right:hover, .productBooking_dates .selecteddates .dropdown-menu li table thead tr:first-child th button.pull-left:hover, .productBooking_dates .selecteddates .dropdown-menu li table thead tr:first-child th button.pull-right:hover, .profileBirthday .dropdown-menu li table thead tr:first-child th button.pull-left:hover, .profileBirthday .dropdown-menu li table thead tr:first-child th button.pull-right:hover {
    color: #343436;
}
.compactBooking_datePicker .dropdown-menu li table thead tr:first-child th button strong, .productBooking_dates .selecteddates .dropdown-menu li table thead tr:first-child th button strong, .profileBirthday .dropdown-menu li table thead tr:first-child th button strong {
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-weight: normal;
    text-transform: uppercase;
}
.profileBirthday .dropdown-menu li table tbody tr td:nth-child(1) {
    color: #B2B2B2;
    font-style: normal;
}
.profileBirthday .dropdown-menu li .uib-monthpicker table thead tr:last-child th,
.profileBirthday .dropdown-menu li .uib-yearpicker table thead tr:last-child th {
	background: #FFFFFF;
}
.profileBirthday .dropdown-menu li .uib-monthpicker table thead tr th,
.profileBirthday .dropdown-menu li .uib-monthpicker table tbody tr td {
	text-align: center;
	width: 33.3333%;
}
.profileBirthday .dropdown-menu li .uib-monthpicker table thead tr:first-child th:nth-child(3) button,
.profileBirthday .dropdown-menu li .uib-yearpicker table thead tr:first-child th:nth-child(3) button {
	text-align: right;
}
.profileBirthday .dropdown-menu li .uib-yearpicker table thead tr th,
.profileBirthday .dropdown-menu li .uib-yearpicker table tbody tr td {
	text-align: center;
	width: 20%;
} 
.profileBirthday .dropdown-menu li .uib-monthpicker table thead tr th button span,
.profileBirthday .dropdown-menu li .uib-monthpicker table tbody tr td button span,
.profileBirthday .dropdown-menu li .uib-yearpicker table thead tr th button span,
.profileBirthday .dropdown-menu li .uib-yearpicker table tbody tr td button span {
	width: auto !important;
}
.profileBirthday .dropdown-menu li .uib-monthpicker table thead tr:first-child th:nth-child(1) button,
.profileBirthday .dropdown-menu li .uib-yearpicker table thead tr:first-child th:nth-child(1) button {
	text-align: left;
}
.profileBirthday .dropdown-menu li .uib-monthpicker table thead tr:first-child th:nth-child(3) button,
.profileBirthday .dropdown-menu li .uib-yearpicker table thead tr:first-child th:nth-child(3) button {
	text-align: right;
}
.profileBirthday .dropdown-menu li .uib-monthpicker table thead tr:first-child th:nth-child(1) button .fa,
.profileBirthday .dropdown-menu li .uib-yearpicker table thead tr:first-child th:nth-child(1) button .fa {
	margin-left: 15px;
}
.profileBirthday .dropdown-menu li .uib-monthpicker table thead tr:first-child th:nth-child(3) button .fa,
.profileBirthday .dropdown-menu li .uib-yearpicker table thead tr:first-child th:nth-child(3) button .fa {
	margin-right: 15px;
}

.compactBooking_datePicker .dropdown-menu li table thead tr:first-of-type, .productBooking_dates .selecteddates .dropdown-menu li table thead tr:first-of-type, .profileBirthday .dropdown-menu li table thead tr:first-of-type {
    border-bottom: 1px solid #B2B2B2;
}
.compactBooking_datePicker .dropdown-menu li table thead tr:last-child th, .productBooking_dates .selecteddates .dropdown-menu li table thead tr:last-child th, .profileBirthday .dropdown-menu li table thead tr:last-child th {
    color: #B2B2B2;
    font-family: "brbold", Helvetica, Arial, sans-serif;
    font-size: 1em;
    font-weight: 400;
    height: 40px;
    padding: 0; 
}
.compactBooking_datePicker .dropdown-menu li table thead tr th, .productBooking_dates .selecteddates .dropdown-menu li table thead tr th, .profileBirthday .dropdown-menu li table thead tr th {
    padding: 0;
}
.compactBooking_datePicker .dropdown-menu li table thead tr:last-child th small, .productBooking_dates .selecteddates .dropdown-menu li table thead tr:last-child th small, .profileBirthday .dropdown-menu li table thead tr:last-child th small {
    font-size: 100%;
}
.compactBooking_datePicker .dropdown-menu li table tbody, .productBooking_dates .selecteddates .dropdown-menu li table tbody, .profileBirthday .dropdown-menu li table tbody {
    background: #FFFFFF;
}
.compactBooking_datePicker .dropdown-menu li table tbody tr td button, .productBooking_dates .selecteddates .dropdown-menu li table tbody tr td button, .profileBirthday .dropdown-menu li table tbody tr td button {
    background: none;
    border: none;
    color: #343436;
    cursor: pointer;
    font-family: "brregular", Helvetica, Arial, sans-serif;
    font-size: 1em;
    padding: 0;
    text-align: center;
}
.compactBooking_datePicker .dropdown-menu li table tbody tr td button span, .productBooking_dates .selecteddates .dropdown-menu li table tbody tr td button span, .profileBirthday .dropdown-menu li table tbody tr td button span {
    display: block;
    margin: 0 auto;
    padding: 0.75em 0;
    text-align: center;
    -webkit-border-radius: 3em;
    -moz-border-radius: 3em;
    -ms-border-radius: 3em;
    -o-border-radius: 3em;
    border-radius: 3em;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.compactBooking_datePicker .dropdown-menu li table tbody tr td button:hover span, .productBooking_dates .selecteddates .dropdown-menu li table tbody tr td button:hover span, .profileBirthday .dropdown-menu li table tbody tr td button:hover span {
    background: #F1F1F1;
    color: #343436;
}
.compactBooking_datePicker .dropdown-menu li table tbody tr td button[disabled=disabled] span, .compactBooking_datePicker .dropdown-menu li table tbody tr td button[disabled=disabled]:hover span, .productBooking_dates .selecteddates .dropdown-menu li table tbody tr td button[disabled=disabled] span, .productBooking_dates .selecteddates .dropdown-menu li table tbody tr td button[disabled=disabled]:hover span, .profileBirthday .dropdown-menu li table tbody tr td button[disabled=disabled] span, .profileBirthday .dropdown-menu li table tbody tr td button[disabled=disabled]:hover span {
    background: none;
    border: 2px solid #87A0FF;
    color: rgba(255,255,255,0.25);
    cursor: not-allowed;
}
.compactBooking_datePicker .dropdown-menu li table tbody tr td button.active span, .productBooking_dates .selecteddates .dropdown-menu li table tbody tr td button.active span, .profileBirthday .dropdown-menu li table tbody tr td button.active span {
    background: #19FFB9;
    color: #343436;
    font-family: "brbold", Helvetica, Arial, sans-serif;
}
.compactBooking_datePicker .dropdown-menu li:last-child, .productBooking_dates .selecteddates .dropdown-menu li:last-child, .profileBirthday .dropdown-menu li:last-child {
	display: none;
	/*padding: 0.5em 2.4% !important;*/
}
.compactBooking_datePicker .dropdown-menu li:last-child:before, .compactBooking_datePicker .dropdown-menu li:last-child:after, .productBooking_dates .selecteddates .dropdown-menu li:last-child:before, .productBooking_dates .selecteddates .dropdown-menu li:last-child:after, .profileBirthday .dropdown-menu li:last-child:before, .profileBirthday .dropdown-menu li:last-child:after {
    content: " ";
    display: table;
}
.compactBooking_datePicker .dropdown-menu li:last-child:after, .productBooking_dates .selecteddates .dropdown-menu li:last-child:after, .profileBirthday .dropdown-menu li:last-child:after { clear: both; }
.compactBooking_datePicker .dropdown-menu li:last-child, .productBooking_dates .selecteddates .dropdown-menu li:last-child, .profileBirthday .dropdown-menu li:last-child { *zoom: 1; }
.compactBooking_datePicker .dropdown-menu li:last-child .pull-left, .productBooking_dates .selecteddates .dropdown-menu li:last-child .pull-left, .profileBirthday .dropdown-menu li:last-child .pull-left {
    height: 10px;
    margin: 0;
    padding: 0;
}
.compactBooking_datePicker .dropdown-menu li:last-child button, .productBooking_dates .selecteddates .dropdown-menu li:last-child button, .profileBirthday .dropdown-menu li:last-child button {
	background: #CCCCCC;
    border: medium none;
    -webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
    color: #343436;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.82em;
    margin: 0;
    padding: 3px 10px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: text-bottom;
}
.compactBooking_datePicker .dropdown-menu li:last-child button:hover, .productBooking_dates .selecteddates .dropdown-menu li:last-child button:hover, .profileBirthday .dropdown-menu li:last-child button:hover {
	background: #87A0FF;
    color: #FFFFFF;
}
.compactBooking_datePicker .dropdown-menu li:last-child .pull-left button:last-child, .productBooking_dates .selecteddates .dropdown-menu li:last-child .pull-left button:last-child, .profileBirthday .dropdown-menu li:last-child .pull-left button:last-child {
    display: none;
}

/*	--------------------------------------------------------------------- */
/*  calender */
.productBooking_calendar .row {
	background: #87A0FF;
	border-bottom: 1px solid #FFFFFF;
	color: #FFFFFF;
	margin: 0;
	padding: 0;
}
.productBooking_calendar .row button {
	background: none;
    border: none;
    color: #FFFFFF;
    display: block;
    float: left;
    font-size: 1em;
    line-height: 58px;
    padding: 0;
    text-align: center;
    width: 10%;
}
.productBooking_calendar .row button:hover {
	color: #FFFFFF;
	cursor: pointer;
}

.productBooking_calendar .row h4 {
	border-left: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    box-sizing: border-box;
    color: #FFFFFF;
    display: block;
    float: left;
    height: 60px;
    line-height: 60px;
    margin: 0;
    text-align: center;
    vertical-align: text-bottom;
    width: 80%; 
}

.booking_calendar {
	background: #EEEEEE;
}
.booking_calendar .cal-day-box .cal-row-head {
	display: none;
	/*background: #87A0FF;
	border-top: 1px solid #FFFFFF;
	color: #FFFFFF;
	padding: 0 2%;*/
}
.booking_calendar .cal-day-box .cal-day-panel {
    border: none;
    height: 480px !important;
    overflow-x: auto;
    padding-left: 0;
}
.booking_calendar .cal-day-box .cal-day-panel-hour {
    margin-left: 0;
}
.booking_calendar .cal-day-box .cal-day-hour:nth-child(2n+1) {
    background: none;
}
.booking_calendar .cal-day-box .cal-day-hour-part {
    border-bottom: 1px solid #FFFFFF;
    padding: 0 2%;
}
.booking_calendar .cal-day-box .cal-day-hour-part:first-child {
    border-bottom-color: #EEEEEE;
}

.booking_calendar .cal-day-box .day-event {
	border-width: 2px !important;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.82em;
    font-weight: normal;
    left: 70px !important;
    line-height: 1.65em;
    padding: 5px 2% !important;
    text-transform: uppercase;
    width: calc(100% - (2% + 80px));
}
.booking_calendar .cal-day-box .cal-hours, .booking_calendar .cal-day-box .day-event a {
	color: #343436;
    font-size: inherit;
    font-weight: normal;
}
.booking_calendar .cal-day-box .day-event.dh-event-warning {
    background: rgba(135,201,191,0.5);
    border: 2px solid #6ED7A5;
    color: #343436;
} 
.booking_calendar .cal-day-box .day-event.dh-event-conflict {
    background: rgba(231,167,183,0.5);
    border: 2px solid #E9586D;
    color: #343436;
}
.booking_calendar .day-highlight:hover, .day-highlight, .booking_calendar .cal-day-box .day-highlight {
    background: rgba(158,195,236,0.5);
    border: 2px solid #55B9F5;
    color: #343436;
} 

/*	---------------------------------------------------------------------- */
/* 	Avaloq styling */
/*	---------------------------------------------------------------------- */
/* 	login */
body.login-body {
    padding: 0;
}
body.login-body .header-container {
    display: none;
}
body.login-body .footer-container {
    background: none;
    border: none;
    text-align: center;
}
body.login-body .footer-container .wrapper {
    border: none;
    color: #343436;
    max-width: 400px;
    padding: 0 0 2.5em 0;
}
body.login-body .footer-content .row {
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}
body.login-body .footer-content .row [class*='column-'] {
    float: none;
    margin: 0.5em 0;
    width: 100%;
}
body.login-body .footer-content a.language, body.login-body .footer-content a.location {
    background: #FFFFFF;
    border-color: #F1F1F1;
    color: #343436;
}
body.login-body .footer-content a.language .fa, body.login-body .footer-content a.location .fa {
    border-color: #F1F1F1;
}
body.login-body .footer-content .language-dropdown .language-dropdown-content, body.login-body .footer-content .location-dropdown .location-dropdown-content {
    background: #FFFFFF;
}
body.login-body .footer-container .footer-content .language-dropdown .language-dropdown-content a.language-dropdown-item:hover, body.login-body .footer-container .footer-content .location-dropdown .location-dropdown-content a.location-dropdown-item:hover {
    color: #FFFFFF;
}
 
body.login-body .footer-container .wrapper p {
    color: #666666;
	float: none;
	margin: 0;
    text-align: center;
	width: 100%;
}
body.login-body .footer-content .columnOne .footer-right {
    color: #343436;
    float: none;
    font-family: 'brregular', Helvetica, Arial, sans-serif;
    font-size: 1em;
    margin-top: 1.5em;
    text-align: center;
    width: 100%;
}
body.login-body .footer-content a {
    color: #666666;
}
.action-buttons a:hover, body.login-body .footer-content a:hover {
    color: #87A0FF;
}
body.login-body .footer-content .columnOne .footer-right .impressum.active a {
    margin-right: 0;
}
body.login-body .footer-content .columnOne .footer-right .impressum.active .address-container a {
    margin-right: 20%;
    text-align: right;
}
body.login-body .footer-content .columnOne .footer-right .impressum.active .address-container .address-email a {
    margin-right: 0;
    text-align: center;
}

.login-mask .login-container {
	margin: 10em 0 2.5em 0;
	text-align: center;
}
.login-mask .login-container .logo-container-login {
	margin: 0 auto 3em auto;
	max-width: 150px;
}
.login-mask .login-container h4 {
	margin-bottom: 1.5em;
}

body.login-body .footer-content ul.footer-links {
    margin-top: 0.75em;
}

/* 	error msg */
.productBooking_full .row.message_container {
    margin: 0;
}
.productBooking_full .row.message_container .alert.alert-danger,
.productBooking_full .noBooking {
    background: #E9586D;
    border-color: #E9586D;
    color: #FFFFFF;
    font-family: "brbold", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 1em;
    text-align: center;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
}
.productBooking_full .row.message_container .alert.alert-danger:before,
.productBooking_full .noBooking:before {
	content: "\f071";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 1em;
    margin: 0 0.5em 0 0;
    vertical-align: middle;
}
.productBooking_full .noBooking {
	margin: 5vh 0;
}
.productBooking_full .noBooking:before {
	display: block;
	font-size: 2em;
	margin: 0.5em 0;
}
.productBooking_full .row.message_container .alert.alert-danger,
.productBooking_full .row.message_container .alert.alert-warning {
    margin-bottom: 2em;
}
 
/* 	calender */
.productBooking-calendar .calendar-navbar {
	background: #FFFFFF;
	border-bottom: 1px solid #F1F1F1;
    color: #87A0FF;
    margin: 0;
    padding: 1em 2%;
    -webkit-border-radius: 0.5em 0.5em 0 0;
    -moz-border-radius: 0.5em 0.5em 0 0;
    -ms-border-radius: 0.5em 0.5em 0 0;
    -o-border-radius: 0.5em 0.5em 0 0;
    border-radius: 0.5em 0.5em 0 0; 
}
.productBooking-calendar .calendar-navbar:before, .productBooking-calendar .calendar-navbar:after {
    content: " ";
    display: table;
}
.productBooking-calendar .calendar-navbar:after { clear: both; }
.productBooking-calendar .calendar-navbar { *zoom: 1; }
.productBooking-calendar .calendar-navbar .nav-left,
.productBooking-calendar .calendar-navbar .calendar-header,
.productBooking-calendar .calendar-navbar .nav-right {
	display: block;
	float: left;
}
.productBooking-calendar .calendar-navbar .calendar-header {
	font-family: 'brbold', Helvetica, Arial, sans-serif;
	font-weight: normal;
	line-height: 2em;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
	width: calc(100% - 5em);
}
.productBooking-calendar .calendar-navbar .nav-left,
.productBooking-calendar .calendar-navbar .nav-right {
	width: 2.5em;
}
.productBooking-calendar .calendar-navbar button.btn {
	background: none;
    border: none;
    box-sizing: border-box;
    color: #87A0FF;
    cursor: pointer;
    display: block;
    font-size: 1em;
    height: 2em;
    line-height: 2em;
    margin: 0;
    text-align: center;
    width: 2.5em;
}
.productBooking-calendar .calendar-navbar button.btn .fa {
    vertical-align: middle;
}
.productBooking-calendar .calendar-navbar button.btn:hover {
	color: #19FFB9;
}

.productBooking-calendar .table-fixed {
    border-collapse: collapse;
	text-align: center;
	width: 100%;
}
.productBooking-calendar .table-fixed thead {
	background: #FFFFFF;
	color: #343436;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 1em;
    font-weight: normal !important;
    text-transform: uppercase;
}
.productBooking-calendar .table-fixed thead th {
    font-weight: normal !important;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
}
.productBooking-calendar .table-fixed thead th small {
	font-size: 0.9em !important;
}
.productBooking-calendar .table-fixed thead tr,
.productBooking-calendar .table-fixed tbody tr {
    border-bottom: 1px solid #F1F1F1;
    font-family: "brregular", Helvetica, Arial, sans-serif;
    font-size: 0.9em;
	height: 40px;
}
.productBooking-calendar .table-fixed thead tr th,
.productBooking-calendar .table-fixed tbody tr td {
	border-right: none;
	width: calc( 100% / 7); 
}
.productBooking-calendar .table-fixed thead tr th:last-of-type,
.productBooking-calendar .table-fixed tbody tr td:last-of-type {
	border-right: none;
}
.productBooking-calendar .today {
	background: #FFFFFF;
    display: inline-block;
    height: 28px;
    line-height: 28px;
    margin: 0 auto;
    width: 28px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
}
.productBooking-calendar .mv-ok, .calenderlegend-container .legend-container.ok:before { background-color: #cfe3a6;}
.productBooking-calendar .mv-ok-limited, .calenderlegend-container .legend-container.limited:before {background-color: #fed18b; }
.productBooking-calendar .mv-nok, .calenderlegend-container .legend-container.nok:before { background-color: #E9586D; }
.productBooking-calendar .mv-selected, .calenderlegend-container .legend-container.selected:before { background-color: #cfe3a6; }
.productBooking-calendar .mv-booked, .calenderlegend-container .legend-container.booked:before { background-color: #89d3f4; }
.productBooking-calendar .mv-reserved, .calenderlegend-container .legend-container.reserved:before { background-color: #00b6de; font-family: 'brbold', Helvetica, Arial, sans-serif; }
.productBooking-calendar .mv-not-bookable, .calenderlegend-container .legend-container.not-bookable:before { background-color: #FFFFFF; color: #B2B2B2; }
.productBooking-calendar .mv-secondary, .calenderlegend-container .legend-container.not-bookable:before { background-color: #FFFFFF; color: #B2B2B2; }
.calenderlegend-container .legend-container.not-bookable:before { border: 1px solid #F1F1F1; box-sizing: border-box; }
.calenderlegend-container .legend-container.not-bookable:before { content: "01"; color: #B2B2B2; text-align: center; }
.calenderlegend-container {
    background: #FFFFFF;
    padding: 1.5em 2%;
    -webkit-border-radius: 0 0 0.5em 0.5em;
    -moz-border-radius: 0 0 0.5em 0.5em;
    -ms-border-radius: 0 0 0.5em 0.5em;
    -o-border-radius: 0 0 0.5em 0.5em;
    border-radius: 0 0 0.5em 0.5em; 
}
.calenderlegend-container .legend-container {
	box-sizing: border-box;
    display: block;
    font-family: "brregular", Helvetica, Arial, sans-serif;
	float: left;
	font-size: 0.9em;
	line-height: 2em;
	margin: 2px 0;
	padding: 0 0 0 2.5em;
	position: relative;
	width: 33.33333%;
}
.calenderlegend-container .legend-container:before {
	content: "";
	height: 2em;
	left: 0;
	position: absolute;
	top: 0;
    width: 2em;
}

/* 	booking details */
.productBooking-calendar h3,
.productBooking-dates h3,
.productBooking-fees h3,
.bookingInfo-container h3,
.bookingDetails-container h3,
.confirmation-dates h3,
.productBooking-credentials h3 {
    color: #87A0FF;
    margin-bottom: 1em;
}
.productBooking-dates {
    background: #FFFFFF;
    margin: 2em 0 0 0;
    padding: 2em 2% 1em 2%;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em; 
}

.productBooking-dates .dates-container .dates-row,
.productBooking-fees .fees-row,
.bookingDetails-container .details-row,
.confirmation-dates .dates-row {
    border-top: 1px solid #E1E1E1;
    padding: 1em 0.5em;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox; 
    display: -webkit-flex; 
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.productBooking-dates .dates-container .dates-row {
    border-color: #E1E1E1;
}
.productBooking-dates .dates-container .dates-row:first-of-type,
.productBooking-fees .fees-row:first-of-type,
.bookingDetails-container .details-row:first-of-type,
.confirmation-dates .dates-row:first-of-type {
	border-top: none;
}
.productBooking-dates .dates-container .dates-row:hover,
.productBooking-fees .fees-row:hover,
.bookingDetails-container .details-row:hover,
.confirmation-dates .dates-row:hover {
	background: #FFFFFF;
}


.productBooking-dates .dates-container .dates-row .dates-title {
    width: calc(40% - 40px);
}
.productBooking-dates .dates-container .dates-row .dates-location {
    width: 30%; 
}
.productBooking-dates .dates-container .dates-row .dates-object {
    width: 15%; 
}
.productBooking-dates .dates-container .dates-row .dates-price { 
    width: 30%;
}

.productBooking-dates .dates-container .dates-row.with-service .dates-services {
    width: 15%;
}
.productBooking-dates .dates-container .dates-row.with-service .dates-price { 
    width: 15%;
}
.productBooking-dates .dates-container .dates-row.with-service .dates-services a {
    background: #FFFFFF;
    border: 2px solid #87A0FF;
    color: #343436;
    cursor: pointer;
    display: inline-block;
    font-family: "brbold", Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    line-height: 30px;
    margin: 0;
    padding: 0 1.5em;
    text-transform: uppercase;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-border-radius: 3em;
    -moz-border-radius: 3em;
    -ms-border-radius: 3em;
    -o-border-radius: 3em;
    border-radius: 3em;
}
.productBooking-dates .dates-container .dates-row.with-service .dates-services a:hover {
    background: #87A0FF;
    color: #FFFFFF;
}

.productBooking-dates .dates-container .dates-row .dates-delete {
	width: 40px;
}
.productBooking-dates .dates-container .dates-row .dates-delete a {
    background: #FFFFFF;
    border: 2px solid #E9586D;
    box-sizing: border-box;
    color: #343436;
    display: block;
    font-size: 1.25em;
    height: 40px;
    line-height: 38px;
    margin: -5px 0;
    text-align: center;
    width: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
}
.productBooking-dates .dates-container .dates-row .dates-delete a:hover {
	background: #E9586D;
	color: #FFFFFF;
} 
.productBooking-dates .dates-container .dates-row .dates-delete a .fa-times:before {
    content: '\0061';
    font-size: 0.8em;
}

.productBooking-dates .billlist-container {
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    padding: 1.5em 0;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox; 
    display: -webkit-flex; 
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.productBooking-dates .billlist-container .billlist-left {
    width: 75%;
}
.productBooking-dates .billlist-container .billlist-right {
    background: #F1F1F1;
    color: #343436;
    display: block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 25%;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
}
.productBooking-dates .billlist-info {
	display: block;
	font-size: 0.9em;
    text-align: right;
}

/* 	Cancellation fees + button */
.productBooking-fees {
    background: #FFFFFF;
    margin: 2em 0 0 0;
    padding: 2em 2% 1em 2%;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
}
.productBooking-fees .fees-row .fees-left {
	width: 75%;
}
.productBooking-fees .fees-row .fees-right {
	text-align: right;
	width: 25%;
}

.mainBooking-Button {
	display: block;
    padding: 3em 0 0 0;
    width: 100%;
}
.mainBooking-Button button.mainBook-Btn {
	color: #343436;
    background: #19FFB9;
	border: 2px solid #F1F1F1;
    cursor: pointer;
    display: block;
    float: right;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    height: 44px;
    padding: 0 5em 0 2.5em;
    position: relative;
    text-transform: uppercase;
    -webkit-border-radius: 3em;
    -moz-border-radius: 3em;
    -ms-border-radius: 3em;
    -o-border-radius: 3em;
    border-radius: 3em;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.mainBooking-Button button.mainBook-Btn:before {
    border-left: 2px solid #F1F1F1;
    content: '\0066';
    font-family: "wybyicons";
    font-size: 1.25em;
    height: 40px;
    right: 0;
    line-height: 40px;
    position: absolute;
    text-align: center;
    text-transform: none;
    top: 0;
    width: 40px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-border-radius: 0 3em 3em 0;
    -moz-border-radius: 0 3em 3em 0;
    -ms-border-radius: 0 3em 3em 0;
    -o-border-radius: 0 3em 3em 0;
    border-radius: 0 3em 3em 0;
}
.mainBooking-Button button.mainBook-Btn:hover {
    background: #FFFFFF;
    border-color: #19FFB9;
}
.mainBooking-Button button.mainBook-Btn:hover:before {
    background: #19FFB9;
    border-color: #19FFB9;
}
.mainBooking-Button button.mainBook-Btn.locationBtn:before {
    content: '\004b';
}
.mainBooking-Button a.mainBack-Btn,
.bookingsBack-Button a.mainBack-Btn,
.activateBack-Button a.mainLogin-Btn {
    background: #FFFFFF;
	border: 2px solid #F1F1F1;
    color: #343436;
    display: inline-block;
    font-family: "brbold", Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    height: 30px;
    line-height: 30px;
    margin: 2em 0 0 0;
    padding: 0 2em 0 4em;
    position: relative;
    text-transform: uppercase;
    -webkit-border-radius: 3em;
    -moz-border-radius: 3em;
    -ms-border-radius: 3em;
    -o-border-radius: 3em;
    border-radius: 3em;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.mainBooking-Button a.mainBack-Btn:before,
.bookingsBack-Button a.mainBack-Btn:before,
.activateBack-Button a.mainLogin-Btn:before {
    border-right: 2px solid #F1F1F1;
    content: '\004a';
    font-family: "wybyicons";
    font-size: 1em;
    height: 30px;
    left: 0;
    line-height: 30px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 30px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-border-radius: 3em 0 0 3em;
    -moz-border-radius: 3em 0 0 3em;
    -ms-border-radius: 3em 0 0 3em;
    -o-border-radius: 3em 0 0 3em;
    border-radius: 3em 0 0 3em;
}
.mainBooking-Button a.mainBack-Btn:hover,
.bookingsBack-Button a.mainBack-Btn:hover,
.activateBack-Button a.mainLogin-Btn:hover {
	background: #FFFFFF;
    border-color: #B2B2B2;
	color: #343436;
}
.mainBooking-Button a.mainBack-Btn:hover:before,
.bookingsBack-Button a.mainBack-Btn:hover:before,
.activateBack-Button a.mainLogin-Btn:hover:before {
    background: #B2B2B2;
    border-color: #B2B2B2;
}
.activateBack-Button {
	display: block;
	text-align: right;
}
.activateBack-Button a.mainLogin-Btn {
	display: inline-block;
	float: none;
}
.mainBooking-Button a.mainBack-Btn {
    margin-top: 3px;
}

*:focus {
    outline: none;
}

/* 	booking detail */
.button-container {
	display: block;
	padding: 2em 0 0 0;
}
.button-container button.btn,
.button-container a.btn {
	border: 2px solid #F1F1F1;
    color: #343436;
    cursor: pointer;
    display: block;
    font-family: "brbold", Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    height: 34px;
    padding: 0 2em;
    position: relative;
    text-transform: uppercase;
    -webkit-border-radius: 3em;
    -moz-border-radius: 3em;
    -ms-border-radius: 3em;
    -o-border-radius: 3em;
    border-radius: 3em;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.button-container button.btn.back,
.button-container button.btn.cancel,
.button-container a.btn.close {
    background: #FFFFFF;
}
.button-container button.btn.pdf,
.button-container button.btn.print {
    background: #19FFB9;
}
.button-container button.btn.back {
    float: left;
    padding-left: 4em;
}
.button-container button.btn.pdf,
.button-container button.btn.print,
.button-container button.btn.cancel,
.button-container a.btn.close {
    float: right;
    padding-right: 4em;
}
.button-container button.btn.pdf,
.button-container a.btn.close {
	margin-left: 15px;
}
.button-container a.btn.close {
	height: 30px;
    line-height: 30px;
}
.button-container a.btn.close:before {
	height: 30px;
    line-height: 30px;
}
.button-container button.btn.back:before,
.button-container button.btn.pdf:before,
.button-container button.btn.cancel:before,
.button-container button.btn.print:before,
.button-container a.btn.close:before {
    font-family: "wybyicons";
    font-size: 1em;
    height: 30px;
    line-height: 30px;
    position: absolute;
    text-align: center;
    text-transform: none;
    top: 0;
    width: 30px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.button-container button.btn.back:before {
    border-right: 2px solid #F1F1F1;
    content: '\004a';
    left: 0;
    -webkit-border-radius: 3em 0 0 3em;
    -moz-border-radius: 3em 0 0 3em;
    -ms-border-radius: 3em 0 0 3em;
    -o-border-radius: 3em 0 0 3em;
    border-radius: 3em 0 0 3em;
}
.button-container button.btn.pdf:before,
.button-container button.btn.cancel:before,
.button-container button.btn.print:before,
.button-container a.btn.close:before {
    border-left: 2px solid #F1F1F1;
    right: 0;
    -webkit-border-radius: 0 3em 3em 0;
    -moz-border-radius: 0 3em 3em 0;
    -ms-border-radius: 0 3em 3em 0;
    -o-border-radius: 0 3em 3em 0;
    border-radius: 0 3em 3em 0;
}
.button-container button.btn.pdf:before {
    content: '\0064';
}
.button-container button.btn.cancel:before,
.button-container a.btn.close:before {
    content: '\0052';
}
.button-container button.btn.print:before {
    content: '\0065';
}
.button-container button.btn.back:hover,
.button-container a.btn.close:hover {
	background: #FFFFFF;
    border-color: #B2B2B2;
	color: #343436;
}
.button-container button.btn.pdf:hover,
.button-container button.btn.print:hover {
    background: #FFFFFF;
    border-color: #19FFB9;
	color: #343436;
}
.button-container button.btn.cancel:hover {
    background: #FFFFFF;
    border-color: #E9586D;
    color: #E9586D;
}
.button-container button.btn.back:hover:before,
.button-container a.btn.close:hover:before {
	background: #B2B2B2;
    border-color: #B2B2B2;
}
.button-container button.btn.pdf:hover:before,
.button-container button.btn.print:hover:before {
    background: #19FFB9;
    border-color: #19FFB9;
}
.button-container button.btn.cancel:hover:before {
    background: #E9586D;
    border-color: #E9586D;
    color: #FFFFFF;
}

.bookingInfo-container .bookingInfo-content {
	background: #6ED7A5;
	color: #FFFFFF;
	margin: 0 0 3em 0;
    min-height: 125px;
    padding: 1em 0;
    position: relative;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}
.bookingInfo-container .bookingInfo-content .bookingInfo-left,
.bookingInfo-container .bookingInfo-content .bookingInfo-center,
.bookingInfo-container .bookingInfo-content .bookingInfo-right {
	box-sizing: border-box;
    padding: 0 2%;
    width: 33.33333%;
}
.bookingInfo-container .bookingInfo-content .bookingInfo-right {
	text-align: right; 
}
.bookingInfo-container .bookingInfo-content .bookingInfo-start,
.bookingInfo-container .bookingInfo-content .bookingInfo-status {
	color: #FFFFFF;
	display: block;
	font-family: 'brbold', Helvetica, Arial, sans-serif;
	font-size: 1.5em;
    line-height: 1.3em;
}
.bookingInfo-container .bookingInfo-content .bookingInfo-right .label,
.bookingInfo-container .bookingInfo-content .bookingInfo-right .value {
	display: inline-block;
}
.bookingInfo-container .bookingInfo-content .bookingInfo-right .value {
	font-family: 'brbold', Helvetica, Arial, sans-serif;
}
.bookingDetails-container .details-row .details-left {
    font-family: "brregular", Helvetica, Arial, sans-serif;
	width: 75%;
}
.bookingDetails-container .details-row .details-right {
    font-family: "brbold", Helvetica, Arial, sans-serif;
    font-size: 0.95em;
	text-align: right;
	width: 25%;
}
.productBooking_full.booked.today .bookingInfo-container .bookingInfo-content:before {
	background: #FFFFFF;
	border: 2px solid #6ED7A5;
    color: #6ED7A5;
    content: "\0058";
    display: block;
    font-family: "wybyicons";
    font-size: 1.5em;
    height: 40px;
    line-height: 40px;
    margin: 0; 
    position: absolute;
    right: -20px;
    text-align: center;
    top: -20px;
    width: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
}
.productBooking_full.cancelled .bookingInfo-container .bookingInfo-content {
	background: #E9586D;
	color: #FFFFFF;
}
.productBooking_full.booked .bookingInfo-container .bookingInfo-content .bookingInfo-status .value,
.productBooking_full.booked .bookingInfo-container .bookingInfo-content .bookingInfo-number .value {
	font-family: 'brbold', Helvetica, Arial, sans-serif;
}
.productBooking_full.cancelled .bookingInfo-container .bookingInfo-content .bookingInfo-right .bookingInfo-status .value {
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #343436;
    display: inline-block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    line-height: 30px;
    margin-left: 0.5em;
    padding: 0 30px;
    text-transform: uppercase;
}
.productBooking_full.cancelled .bookingInfo-container .bookingInfo-content .bookingInfo-right .bookingInfo-status .value {
	background: #FFFFFF;
}

/* 	confirmation */
.booking-confirmation {
	background: #87A0FF;
    color: #FFFFFF;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 1.25em;
    line-height: 1.5em;
    margin-bottom: 1.6em;
    padding: 2em 2%;
    text-align: center;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em; 
}
.confirmation-dates {
    background: #FFFFFF;
    margin: 2em 0 1em 0;
    padding: 2em 2%;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
}
.confirmation-dates .dates-row {
    border-color: #E1E1E1;
    padding-left: 0;
    padding-right: 0;
}
.confirmation-dates .dates-row.total {
    border: none;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    padding: 1.5em 0;
}
.confirmation-dates .dates-row.total .confirmationdates-left {
    margin-top: 7px;
	width: 75%;
}
.confirmation-dates .dates-row.total .confirmationdates-right {
	background: #F1F1F1;
    color: #343436;
    display: block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 25%;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
}

/* 	activation */
body.activation .main-container {
    margin-top: 75px;
}
body.activation .main-container .message_container {
	margin-top: 30px;
}

/* 	password */
body.forgotpwd .mainimg-container,
body.resetpwd .mainimg-container {
	margin-top: 4em;
    text-align: center;
}
body.forgotpwd .main-container .row {
    margin: 0;
}
body.forgotpwd .main-container .column_1_2 {
    float: none;
    width: 100%;
}
body.forgotpwd .main-container .column_1_2 form {
    background: #FFFFFF;
    margin: 0 auto;
    padding: 2em 2%;
    width: 47.5%;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
}
body.forgotpwd .main-container .column_1_2 form input {
    background: #F1F1F1;
    border: 1px solid #B2B2B2;
    box-sizing: border-box;
    display: block;
    font-family: 'brregular', Helvetica, Arial, sans-serif;
    font-size: 1.1em;
    margin: 0;
    padding: 0.75em;
    width: 100%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
body.forgotpwd .main-container .column_1_2 form input:hover, body.forgotpwd .main-container .column_1_2 form input:focus {
    background: #FFFFFF;
    border-color: #87A0FF;
}
body.forgotpwd .main-container .column_1_2 form button {
    background: #19FFB9;
    border: 2px solid #FFFFFF;
    color: #343436;
    cursor: pointer;
    display: block;
    font-family: "brbold", Helvetica, Arial, sans-serif;
    font-size: 1em;
    height: 44px;
    line-height: 40px;
    padding: 0 2.5em;
    position: relative;
    margin: 1.5em 0 0 0;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    -webkit-border-radius: 3em;
    -moz-border-radius: 3em;
    -ms-border-radius: 3em;
    -o-border-radius: 3em;
    border-radius: 3em;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
body.forgotpwd .main-container .column_1_2 form button:hover {
    background: #FFFFFF;
    border-color: #19FFB9;
    color: #343436;
}
body.forgotpwd .main-container .column_1_2 form .email-validation-error, body.forgotpwd .main-container .column_1_2 form .email-validation-success {
    margin-bottom: 1.5em;
    padding: 1.5em 2%;
}

/* 	credentials */
.productBooking-credentials {
    background: #FFFFFF;
    margin: 2em 0 0 0;
    padding: 2em 2% 1em 2%;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
}
.productBooking-credentials.profile {
    background: #F1F1F1;
    margin: 0;
    padding: 0;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
}
.productBooking-credentials .actions-paymentinfo {
    padding: 0.5em;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -ms-flex-line-pack: start;
    -webkit-align-content: flex-start;
    -moz-align-content: flex-start;
    align-content: flex-start;
}
.productBooking-credentials .actions-paymentinfo .cc-provider {
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    margin-right: 0.25em;
}
.productBooking-credentials .actions-paymentinfo .btn.delete-paymentinfo {
    background: #FFFFFF;
    border: 2px solid #E9586D;
    color: #343436;
    cursor: pointer;
    font-family: "brbold", Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    height: 30px;
    line-height: 30px;
    margin: 0 0 0 1em;
    padding: 0 2em;
    text-transform: uppercase;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear; 
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-border-radius: 3em;
    -moz-border-radius: 3em;
    -ms-border-radius: 3em;
    -o-border-radius: 3em;
    border-radius: 3em;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}
.productBooking-credentials .actions-paymentinfo .btn.delete-paymentinfo .fa {
    margin-left: 0.5em;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.productBooking-credentials .actions-paymentinfo .btn.delete-paymentinfo:hover {
    background: #E9586D;
    border: 2px solid #E9586D;
    color: #FFFFFF;
}

/*	---------------------------------------------------------------------- */
/* 	My Bookings */
/*	---------------------------------------------------------------------- */
.myBookingList_btns {
    margin: 0 0 2em 0;
}
.myBookingList_btns .bookingsBack-Button, .myBookingList_btns .bookingsArchive-Button {
    display: block; 
    float: left;
    width: 50%;
}
.myBookingList_btns .bookingsBack-Button a.mainBack-Btn {
    margin: 0;
}

.myBookingList_btns .btn.btn-primary {
    background: #FFFFFF;
    border: 2px solid #F1F1F1;
    color: #343436;
    cursor: pointer;
    float: right;
    font-family: "brbold", Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    height: 34px;
    line-height: 30px;
    margin: 0;
    padding: 0 2em;
    text-transform: uppercase;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear; 
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-border-radius: 3em;
    -moz-border-radius: 3em;
    -ms-border-radius: 3em;
    -o-border-radius: 3em;
    border-radius: 3em;
}
.myBookingList_btns .btn.btn-primary:hover {
    background: #FFFFFF;
    border-color: #19FFB9;
    color: #343436;
}
.myBookingList-container .table .tableheader, .myBookingList-container .table .tablerow {
    font-size: 0.95em;
    line-height: 19px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}
.myBookingList-container .table .tablerow {
    cursor: pointer;
}
.myBookingList-container .table .tableheader .tabledata, .myBookingList-container .table .tablerow .tabledata {
    box-sizing: border-box;
    display: block;
    float: left;
    padding: 0 0.5em;
}
.table .tableheader .tabledata.center, .table .tablerow .tabledata.center {
	text-align: center;
}
.table .tableheader .tabledata.right, .table .tablerow .tabledata.right {
	text-align: right;
}
.myBookingList-container .table .tableheader .tabledata.half, .myBookingList-container .table .tablerow .tabledata.half {
	width: calc(100% / 9);
}
.myBookingList-container .table .tableheader .tabledata.one, .myBookingList-container .table .tablerow .tabledata.one {
	width: calc(100% / 6);
}
.myBookingList-container .table .tableheader .tabledata.two, .myBookingList-container .table .tablerow .tabledata.two {
	width: calc(100% / 3);
}
.myBookingList-container .table .tablerow.cancelled .tabledata {
    color: #E9586D; 
}
.myBookingList-container .table .tablerow.booked .tabledata:last-of-type span,
.myBookingList-container .table .tablerow.cancelled .tabledata:last-of-type span {
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px; 
    border-radius: 3px;
    box-sizing: border-box;
    color: #FFFFFF;
    display: block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    line-height: 30px;
    margin: 0 0 0 auto;
    overflow: hidden;
    padding: 0 1em;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
    width: 90%;
}
.myBookingList-container .table .tablerow.booked .tabledata:last-of-type span {
	background: #6ED7A5;
}
.myBookingList-container .table .tablerow.cancelled .tabledata:last-of-type span {
	background: #E9586D;
}

.myBookingList-container .table .btn.btn-primary {
    background: #87A0FF;
    border: 2px solid #F1F1F1;
    color: #FFFFFF;
    cursor: pointer;
    font-family: "brbold", Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    height: 34px;
    line-height: 30px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    width: 95%;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear; 
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-border-radius: 3em;
    -moz-border-radius: 3em;
    -ms-border-radius: 3em;
    -o-border-radius: 3em;
    border-radius: 3em;
}
.myBookingList-container .table .btn.btn-primary:hover {
    background: #FFFFFF;
    border-color: #19FFB9;
    color: #343436;
}
.myBookingList-container .table .btn-bulk-cancel {
    background: #E9586D;
    -webkit-border-radius: 3em;
    -moz-border-radius: 3em; 
    border-radius: 3em;
    border: 2px solid #E9586D;
    box-sizing: border-box;
    color: #FFFFFF;
    display: block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.75em;
    line-height: 22px;
    overflow: hidden;
    padding: 0 0.75em;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
    width: 100%;
}
.myBookingList-container .table .btn-bulk-cancel:hover {
    background: #FFFFFF;
    color: #E9586D;
}
.myBookingList-container .table .tableheader .tabledata.checkbox .btn-bulk-cancel i {
    display: none;
}
.myBookingList-container .table .tabledata.checkbox {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-flex-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-shrink: 0;
    -webkit-box-flex: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.myBookingList-container .table .tabledata.checkbox input[type=checkbox] {
    cursor: pointer;
    height: 1.4em;
    width: 1.4em;
    -webkit-transform: scale(1.2,1.2);
}

.qrCanvas-container {
    background: #FFFFFF;
    margin-bottom: 3em;
    padding: 2em 2%;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -ms-flex-pack: justify;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
}
.qrCanvas-container img {
    margin: 0 auto;
}
.qrCanvas-container p.text {
    color: #343436;
    font-family: "brbold", Helvetica, Arial, sans-serif;
    font-size: 1.5em;
    margin: 1em 0 0 0;
    text-align: center;
    width: 100%;
}

/*	---------------------------------------------------------------------- */
/* 	My Profile */
/*	---------------------------------------------------------------------- */
.myProfile .mainimg-container, .myBookings .mainimg-container, .password-reset .mainimg-container {
    background: none;
    height: auto;
    margin-top: 4em;
    text-align: center;
}
.myProfile .mainimg-container .claim-container h1, .myProfile .mainimg-container .claim-container h2, .myBookings .mainimg-container .claim-container h1, .myBookings .mainimg-container .claim-container h2, .password-reset .mainimg-container .claim-container h1, .password-reset .mainimg-container .claim-container h2 {
    color: #87A0FF;
    width: 100%;
}
.myProfile .mainimg-container .claim-container h2, .myBookings .mainimg-container .claim-container h2, .password-reset .mainimg-container .claim-container h2 {
    font-family: 'brregular', Helvetica, Arial, sans-serif;
}
.myProfile .mainimg-container .claim-container h1, .myBookings .mainimg-container .claim-container h1, .password-reset .mainimg-container .claim-container h1 {
    font-size: 3.5em;
}
.myProfile .mainimg-container .claim-container .qrCanvas-container {
    margin-top: 3em;
}

.myProfile .main-container .row {
    margin-left: -1%;
    margin-right: -1%;
}
.myProfile .main-container .row.message_container {
    margin-left: 0;
    margin-right: 0;
    margin-top: 2em;
}
.myProfile .main-container .row .column_1_2, .myProfile .main-container .row .column_2_2 {
    margin: 0 1%;
    width: 47.5%;
}
.myProfile .main-container .row.profileBtn {
    margin: 2em 0 0 0;
}

.myProfile .main-container .column_1_2 h3, .myProfile .main-container .column_2_2 h3 {
    margin-bottom: 1em;
}

.formrow {
    display: block;
    margin: 1em 0;
}
.formrow .label {
    font-family: "brregular", sans-serif;
    margin: 0 0 0.25em 0;
}
.formrow .input {
    display: block;
    width: 100%;
}
.formrow .input input, .formrow .input select {
    background: #FFFFFF;
    border: 1px solid #B2B2B2;
    box-sizing: border-box;
    display: block;
    font-family: 'brregular', Helvetica, Arial, sans-serif;
    font-size: 1.1em;
    margin: 0;
    padding: 0.75em;
    width: 100%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.formrow .input select {
    -webkit-appearance: none;
}
.formrow .input input[readonly], .formrow .input input[readonly="readonly"], .formrow .input input[readonly]:hover, .formrow .input input[readonly="readonly"]:hover, .formrow .input input[readonly]:focus, .formrow .input input[readonly="readonly"]:focus {
    background: #F1F1F1;
    border: 1px solid #E1E1E1;
    cursor: not-allowed;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.formrow .checkbox input[type='checkbox'] {
    margin-right: 0.5em;
}

.formrow .input input:hover, .formrow .input select:hover, .formrow .input input:focus, .formrow .input select:focus {
	background: #FFFFFF;
    border-color: #87A0FF;
}
.myProfile .main-container .column_1_2 hr, .myProfile .main-container .column_2_2 hr {
    border: none;
    margin: 2em 0;
}
.myProfile .main-container .column_2_2 hr {
    margin: 1.75em 0;
}

.formrow .input input.valid {
	background: #6ED7A5;
    border-color: #6ED7A5;
}
.formrow .input input.invalid {
	background: rgba(231,167,183,0.3);
    border-color: #E9586D;
}

.formrow.btnGroup .btn.btn-primary {
    background: #FFFFFF;
    border: 2px solid #F1F1F1;
    box-sizing: border-box;
    color: #343436;
    cursor: pointer;
    display: block;
    float: left;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.8em;
    height: 34px;
    line-height: 30px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 49%;
    -webkit-border-radius: 3em;
    -moz-border-radius: 3em;
    -ms-border-radius: 3em;
    -o-border-radius: 3em;
    border-radius: 3em;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.formrow.btnGroup .btn.btn-primary.middle {
	margin: 0 0 0 2%;
}
.formrow.btnGroup .btn.btn-primary:hover {
    background: #FFFFFF;
    border-color: #19FFB9;
    color: #343436;
}
.formrow.btnGroup .btn.btn-primary.active, .formrow.btnGroup .btn.btn-primary.active:hover {
    background: #87A0FF;
    border-color: #87A0FF;
    color: #FFFFFF;
}

.profileBtn button.btn.btn-primary {
    background: #19FFB9;
    border: 2px solid #F1F1F1;
    color: #343436;
    cursor: pointer;
    display: inline-block;
    font-family: "brbold", Helvetica, Arial, sans-serif;
    font-size: 1em;
    height: 44px;
    line-height: 40px;
    padding: 0 2.5em;
    position: relative;
    margin: 0;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    -webkit-border-radius: 3em;
    -moz-border-radius: 3em;
    -ms-border-radius: 3em;
    -o-border-radius: 3em;
    border-radius: 3em;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.profileBtn button.btn.btn-primary:first-of-type {
    background: #FFFFFF;
    color: #343436;
    float: left;
    padding-left: 5em;
}
.profileBtn button.btn.btn-primary:last-of-type {
    float: right;
    padding-right: 5em;
}
.profileBtn button.btn.btn-primary:before {
    font-family: "wybyicons";
    font-size: 1em;
    height: 40px;
    line-height: 40px;
    position: absolute;
    text-align: center;
    text-transform: none;
    top: 0;
    width: 40px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.profileBtn button.btn.btn-primary:first-of-type:before {
    border-right: 2px solid #F1F1F1;
    content: '\0052';
    left: 0;
    -webkit-border-radius: 3em 0 0 3em;
    -moz-border-radius: 3em 0 0 3em;
    -ms-border-radius: 3em 0 0 3em;
    -o-border-radius: 3em 0 0 3em;
    border-radius: 3em 0 0 3em;
}
.profileBtn button.btn.btn-primary:last-of-type:before {
    border-left: 2px solid #F1F1F1;
    content: '\0062';
    right: 0;
    -webkit-border-radius: 0 3em 3em 0;
    -moz-border-radius: 0 3em 3em 0;
    -ms-border-radius: 0 3em 3em 0;
    -o-border-radius: 0 3em 3em 0;
    border-radius: 0 3em 3em 0;
}
.profileBtn button.btn.btn-primary:first-of-type:hover {
    background: #FFFFFF;
    border-color: #E9586D;
    color: #E9586D;
}
.profileBtn button.btn.btn-primary:first-of-type:hover:before {
    background: #E9586D;
    border-color: #E9586D;
    color: #FFFFFF;
}
.profileBtn button.btn.btn-primary:last-of-type:hover {
    background: #FFFFFF;
    border-color: #19FFB9;
    color: #343436;
}
.profileBtn button.btn.btn-primary:last-of-type:hover:before {
    background: #19FFB9;
    border-color: #19FFB9;
    color: #343436;
}
.profileBtn button.btn.btn-primary:disabled, .profileBtn button.btn.btn-primary:disabled:hover {
    background: #FFFFFF !important;
    border-color: #F1F1F1 !important;
    color: #B2B2B2 !important;
    cursor: not-allowed;
}
.profileBtn button.btn.btn-primary:disabled:before, .profileBtn button.btn.btn-primary:disabled:hover:before {
    background: #FFFFFF !important;
    border-color: #F1F1F1 !important;
    color: #B2B2B2 !important;
}
.profileBtn button#btn-signup {
    background: #19FFB9;
    padding: 0 5em 0 2.5em;
}
.profileBtn button#btn-signup:before {
    left: auto;
}
.profileBtn button#btn-signup:hover {
    background: #FFFFFF;
    border-color: #19FFB9;
    color: #343436;
}
.profileBtn button.btn.btn-primary.reset-save {
    background: #004893;
    color: #FFFFFF;
    padding-left: 2.5em;
}
.profileBtn button.btn.btn-primary.reset-save:before {
    left: auto;
}

.productBooking_full .row.message_container .alert,
.myProfile .row.message_container .alert,
.login-container .row.message_container .alert,
.bookingDetail-tables #consumables-msg.row.message_container .alert,
.productBooking .productBooking_left .alert, 
.productBooking .productBooking_right .alert,
.selectObject .selectObject_Message .alert,
body.activation .main-container .message_container .alert,
body.forgotpwd .main-container .column_1_2 .email-validation-success,
body.forgotpwd .main-container .column_1_2 .email-validation-error,
body.resetpwd .main-container .alert {
    border-style: solid;
    border-width: 2px;
    color: #FFFFFF;
    font-family: "brbold", Helvetica, Arial, sans-serif;
    margin: 0 0 0.5em 0;
    padding: 1em;
    text-align: center;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
}
.myProfile .row.message_container .alert.alert-danger,
.login-container .row.message_container .alert.alert-danger,
.productBooking .productBooking_left .alert.alert-danger, 
.productBooking .productBooking_right .alert.alert-danger,
.selectObject .selectObject_Message .alert.alert-danger,
body.activation .main-container .message_container .alert.alert-danger,
body.forgotpwd .main-container .column_1_2 .email-validation-error,
body.resetpwd .main-container .alert.alert-danger {
    background: #E9586D;
    border-color: #E9586D;
}
.productBooking_full .row.message_container .alert.alert-success,
.myProfile .row.message_container .alert.alert-success,
body.activation .main-container .message_container .alert.alert-success,
body.forgotpwd .main-container .column_1_2 .email-validation-success,
body.resetpwd .main-container .alert.alert-success {
    background: #6ED7A5;
    border-color: #6ED7A5;
}
.myProfile .row.message_container .alert.alert-info,
.bookingDetail-tables #consumables-msg.row.message_container .alert.alert-info,
.productBooking .productBooking_left .alert.alert-info,
body.activation .main-container .message_container .alert.alert-info,
body.resetpwd .main-container .alert.alert-info,
.productBooking_full .row.message_container .alert.alert-warning {
    background: #55B9F5;
    border-color: #55B9F5;
}

.productBooking_full .row.message_container .alert.alert-success:before,
.myProfile .row.message_container .alert.alert-danger:before,
.myProfile .row.message_container .alert.alert-success:before,
.myProfile .row.message_container .alert.alert-info:before, 
.login-container .row.message_container .alert.alert-danger:before,
.bookingDetail-tables #consumables-msg.row.message_container .alert.alert-info:before, 
.productBooking .productBooking_left .alert.alert-danger:before,
.productBooking .productBooking_left .alert.alert-info:before,
.productBooking .productBooking_right .alert.alert-info:before, 
.productBooking .productBooking_right .alert.alert-danger:before,
.selectObject .selectObject_Message .alert:before,
body.activation .main-container .message_container .alert.alert-danger:before,
body.activation .main-container .message_container .alert.alert-success:before,
body.activation .main-container .message_container .alert.alert-info:before,
body.forgotpwd .main-container .column_1_2 .email-validation-success:before,
body.forgotpwd .main-container .column_1_2 .email-validation-error:before,
body.resetpwd .main-container .alert.alert-danger:before,
body.resetpwd .main-container .alert.alert-success:before,
body.resetpwd .main-container .alert.alert-ingo:before,
.productBooking_full .row.message_container .alert.alert-warning:before {
    display: inline-block;
    font-family: FontAwesome;
    font-size: 1em;
    margin: 0 0.5em 0 0;
}
.productBooking_full .row.message_container .alert.alert-success:before,
.myProfile .row.message_container .alert.alert-danger:before,
.login-container .row.message_container .alert.alert-danger:before,
.productBooking .productBooking_left .alert.alert-danger:before, 
.productBooking .productBooking_right .alert.alert-danger:before,
.selectObject .selectObject_Message .alert.alert-danger:before,
body.activation .main-container .message_container .alert.alert-danger:before,
body.forgotpwd .main-container .column_1_2 .email-validation-error:before,
body.resetpwd .main-container .alert.alert-danger:before,
.productBooking_full .row.message_container .alert.alert-warning:before {
    content: "\f071";
} 
.myProfile .row.message_container .alert.alert-success:before,
body.activation .main-container .message_container .alert.alert-success:before,
body.forgotpwd .main-container .column_1_2 .email-validation-success:before,
body.resetpwd .main-container .alert.alert-success:before {
    content: "\f164";
}
.myProfile .row.message_container .alert.alert-info:before,
.bookingDetail-tables #consumables-msg.row.message_container .alert.alert-info:before,
.productBooking .productBooking_left .alert.alert-info:before,
body.activation .main-container .message_container .alert.alert-info:before,
body.resetpwd .main-container .alert.alert-info:before {
    content: "\f05a";
}
.password-hint {
    font-size: 0.8em;
    line-height: 1.65em;
}

/* 	license plates */
.license-plates .actions-lp {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
        align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
        justify-content: space-between;
}
.license-plates .btn.btn-primary {
    background: #87A0FF;
    border: 2px solid #F1F1F1;
    color: #FFFFFF;
    display: inline-block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    height: 30px;
    line-height: 30px;
    margin: 1em 0 0.5em 0;
    overflow: hidden;
    padding: 0 4em 0 2em;
    position: relative;
    text-transform: uppercase;
    -webkit-border-radius: 2.25em;
    -moz-border-radius: 2.25em;
    -ms-border-radius: 2.25em;
    -o-border-radius: 2.25em;
    border-radius: 2.25em;
}
.license-plates .btn.btn-primary.delete-lp {
    background: #FFFFFF;
    color: #343436;
    padding: 0 2em 0 4em;
}
.license-plates .btn.btn-primary .fa, .license-plates .btn.btn-primary.delete-lp .fa {
    height: 30px;
    line-height: 30px;
    text-align: center;
    width: 30px;
    position: absolute;
    top: 0;
}
.license-plates .btn.btn-primary .fa {
    border-left: 2px solid #F1F1F1;
    right: 0;
}
.license-plates .btn.btn-primary.delete-lp .fa {
    border-left: none;
    border-right: 2px solid #F1F1F1;
    color: #343436;
    left: 0;
}
.license-plates .btn.btn-primary:hover {
    background: #FFFFFF;
    border-color: #19FFB9;
    color: #343436;
}
.license-plates .btn.btn-primary:hover .fa {
    background: #19FFB9;
    border-color: #19FFB9;
    color: #343436;
}
.license-plates .btn.btn-primary.delete-lp:hover {
    border-color: #E9586D;
}
.license-plates .btn.btn-primary.delete-lp:hover .fa {
    background: #E9586D;
    border-color: #E9586D;
}

/*	---------------------------------------------------------------------- */
/* 	Booking Details */
/*	---------------------------------------------------------------------- */
.bookingDetail-actions {
    padding: 30px 0;
}
.detailActions-back, .detailActions-buttons {
	display: block;
	float: left;
	width: 50%;
}
.bookingDetail-actions .detailActions-back a, .bookingDetail-actions .detailActions-buttons button {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    color: #343436;
    display: block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.82em;
    height: 30px;
    line-height: 30px;
    padding: 0 2em;
    text-transform: uppercase;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.bookingDetail-actions .detailActions-back a {
    background: #DDDDDD;
    float: left;
}
.bookingDetail-actions .detailActions-buttons button.btn.btnCancel {
	background: #DDDDDD;
	color: #343436;
}
.bookingDetail-actions .detailActions-buttons button {
    background: #19FFB9;
    border: none;
    cursor: pointer;
    float: right;
    margin-left: 1em;
}
.bookingDetail-actions .detailActions-back a:hover, .bookingDetail-actions .detailActions-buttons button:hover, .bookingDetail-actions .detailActions-buttons button.btn.btnCancel:hover {
	background: #87A0FF;
	color: #FFFFFF;
}

.bookingDetail-cancelBooking {
    background: #55B9F5;
    border: 2px solid #55B9F5;
    color: #FFFFFF;
    margin-top: 3em;
    padding: 1em 1.5em 1em 1.5em;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
}
.bookingDetail-cancelBooking h3 {
    color: #FFFFFF;
}
.bookingInfo-instructions, .bookingInfo-amount, .bookingInfo-date {
    display: inline;
}
.detailCancelBooking-buttons {
    margin: 0.75em 0 0 0;
}
.detailCancelBooking-buttons button {
    background: #FFFFFF;
    border: 2px solid;
    cursor: pointer;
    display: block;
    float: right;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    margin-left: 1em;
    height: 34px;
    padding: 0 2em;
    text-transform: uppercase;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}
.detailCancelBooking-buttons button:first-of-type {
    background: #6ED7A5;
    border-color: #FFFFFF;
    color: #FFFFFF;
}
.detailCancelBooking-buttons button:last-of-type {
    border-color: #E9586D;
    color: #E9586D;
}
.detailCancelBooking-buttons button:hover {
    color: #FFFFFF;
}
.detailCancelBooking-buttons button:first-of-type:hover {
    background: #FFFFFF;
    border-color: #343436;
    color: #343436;
}
.detailCancelBooking-buttons button:last-of-type:hover {
    background: #E9586D;
    border-color: #E9586D;
    color: #FFFFFF;
}

.bookingDetail-infos {
	margin-top: 30px;
}
.detailInfos-left, .detailInfos-right {
    display: block;
    position: relative;
}
.detailInfos-left {
    float: left;
    width: 57.783%;
}
.detailInfos-right {
    background: #EEEEEE;
    float: right;
    width: 40.897%;
}
.detailInfos-productName {
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 2.25em;
    font-weight: 300;
    line-height: 1.35em;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.detailInfos-productLocation {
    font-family: "adlight",Georgia,"Times New Roman",Times,serif;
    font-size: 1.35em;
    text-transform: none;
}
.detailInfos-bookingNumber, .detailInfos-bookingDates, .detailInfos-bookingFulfillmentStatus {
	border: 1px solid #B0B0B0;
    border-width: 1px 0 0 0;
    margin: 30px 0 0 0;
    padding: 30px 0 0 0;
}
.detailInfos-bookingNumber h3, .detailInfos-bookingDates h3, .detailInfos-bookingFulfillmentStatus h3, .bookingDetail-tables h3, .bookingDetail-tables h4 {
	color: #87A0FF;
}
.detailInfos-bookingNumber .bookingNumber-data, .detailInfos-bookingDates .bookingDates-date, .detailInfos-bookingDates .bookingFulfillmentStatus-data, .detailInfos-bookingFulfillmentStatus .bookingFulfillmentStatus-data {
	background: #EEEEEE;
    border: 1px solid #CCCCCC;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px; 
    border-radius: 50px;
    box-sizing: border-box;
    color: #343436;
    display: inline-block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    height: 40px;
    line-height: 40px;
    min-width: 30%;
    padding: 0 3em;
    text-align: center;
    text-transform: uppercase;
}
.detailInfos-bookingFulfillmentStatus {
    border-width: 1px 0;
    padding: 30px 0;
}
.detailInfos-right .detailInfos-image {
    border-bottom: 1px solid #FFFFFF;
}
.detailInfos-right .detailInfos-image img {
    width: 100%;
}
.detailInfos-right .detailInfos-description {
    padding: 30px 3.232%;
}

.bookingDetail-tables {
    margin-top: 30px;
}
.table.cancelationfees {
	margin: 0 0 30px 0;
}
.table .tableheader {
    border-bottom: 1px solid #FFFFFF;
    font-weight: normal;
}
.table .tablerow {
    border-bottom: 1px solid #FFFFFF;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear; 
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.table .tablerow:hover {
    background: #FFFFFF;
}
.payment-container .table .tablerow:first-of-type {
    border-top: 1px solid #D7D7D7;
}

.table .tableheader, .table .tablerow {
    padding: 1em 0;
}
.table .tableheader .tabledata, .table .tablerow .tabledata {
    box-sizing: border-box;
    display: block;
    float: left;
    font-family: "brregular", Helvetica, Arial, sans-serif;
    padding: 0 0.5em;
}
.table .tableheader .tabledata {
    font-family: "brbold", Helvetica, Arial, sans-serif;
}
.bookingDetail-tables .payment-container .table.payment-content .subtotal .tabledata, .bookingDetail-tables .payment-container .table.payment-content .total .tabledata {
	padding: 0;
}

.table .tableheader .tabledata.center, .table .tablerow .tabledata.center { text-align: center; }
.table .tableheader .tabledata.right, .table .tablerow .tabledata.right { text-align: right; }
.table .tableheader .tabledata.one, .table .tablerow .tabledata.one { width: 8.33%; }
.table .tableheader .tabledata.two, .table .tablerow .tabledata.two { width: 16.66%; }
.table .tableheader .tabledata.three, .table .tablerow .tabledata.three { width: 24.99%; }
.table .tableheader .tabledata.four, .table .tablerow .tabledata.four { width: 33.32%; }
.table .tableheader .tabledata.five, .table .tablerow .tabledata.five { width: 41.65%; }
.table .tableheader .tabledata.six, .table .tablerow .tabledata.six { width: 50%; }
.table .tableheader .tabledata.seven, .table .tablerow .tabledata.seven { width: 58.33%; }
.table .tableheader .tabledata.eight, .table .tablerow .tabledata.eight { width: 66.66%; }
.table .tableheader .tabledata.nine, .table .tablerow .tabledata.nine { width: 74.99%; }
.table .tableheader .tabledata.ten, .table .tablerow .tabledata.ten { width: 83.32%; }
.table .tableheader .tabledata.eleven, .table .tablerow .tabledata.eleven { width: 91.65%; } 
.table .tableheader .tabledata.twelve, .table .tablerow .tabledata.twelve { width: 100%; }

.bookingDetail-tables .total, .bookingDetail-tables .subtotal {
    background: rgba(134,157,255,0.1);
    border-bottom: 1px solid #D7D7D7;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    margin: 0 0 30px 0;
    padding: 0.75em 0.5em;
}
.bookingDetail-tables .total .label, .bookingDetail-tables .subtotal .label {
    display: block;
    float: left;
}
.bookingDetail-tables .total .ammount, .bookingDetail-tables .subtotal .ammount {
    text-align: right;
}
.bookingDetail-tables .total {
    background: #19FFB9;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    margin-top: 30px;
    text-transform: uppercase;
}
.bookingDetail-tables .payment-container .total {
    margin-top: 0;
}
.bookingDetail-tables .payment-container .subtotal {
	margin-bottom: 0;
}

.table.consumables .tablerow .tabledata input {
	background: #FFFFFF;
    border: 1px solid #CCCCCC;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-sizing: border-box;
    display: block;
    font-family: "adlight",Georgia,"Times New Roman",Times,serif;
    font-size: 1em;
    line-height: 1.65em;
    padding: 1px 3.5%;
    transition: all 300ms linear 0s;
    width: 100%;
    -webkit-box-shadow: none;
	box-shadow: none;
}
.bookingDetail-tables .consumables .startval.active input, .bookingDetail-tables .consumables .endval.active input {
	background: rgba(134,157,255,0.3);
    border-color: #87A0FF;
    -webkit-box-shadow: 0 0 5px 0 #87A0FF;
	box-shadow: 0 0 5px 0 #87A0FF;
}
.table.consumables .tablerow .tabledata input:hover {
    background: rgba(134,157,255,0.2);
    border-color: #87A0FF;
    -webkit-box-shadow: none;
	box-shadow: none;
}
.table.consumables .tablerow .tabledata input:focus {
    background: rgba(134,157,255,0.1);
    border-color: #87A0FF;
    -webkit-box-shadow: none;
	box-shadow: none;
}

.bookingDetail-tables #consumables-msg.row.message_container {
	margin: 0;
}
.bookingDetail-tables #consumables-msg.row.message_container .alert.alert-info {
	margin: 0 0 1em 0;
}

.consumables-action {
	padding: 0.75em 25% 0.75em 41.65%;
	border-bottom: 1px solid #D7D7D7;
}
.consumables-action button {
	border: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    color: #343436;
    cursor: pointer;
    display: block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.82em;
    margin: 0 0.5em;
    height: 30px;
    line-height: 30px;
    padding: 0 2em;
    text-transform: uppercase;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.consumables-action button.consumablesAction-save {
    background: #19FFB9;
    float: right;
}
.consumables-action button.consumablesAction-cancel {
    background: #CCCCCC;
    float: left;
}
.consumables-action button:hover {
	background: #87A0FF;
    color: #FFFFFF;
}

/*	---------------------------------------------------------------------- */
/* 	Modal Window */
/*	---------------------------------------------------------------------- */
.modal-open {
    overflow: hidden;
}
.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}
.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    background-clip: padding-box;
    outline: 0;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}
.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}
.modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.modal-header:before, .modal-header:after {
    content: " ";
    display: table;
}
.modal-header:after {
    clear: both;
}
.modal-header .close {
    margin-top: -2px;
}
.modal-title {
    margin: 0;
    line-height: 1.428571429;
}
.modal-body {
    position: relative;
    padding: 15px;
}
.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal-footer:before, .modal-footer:after {
    content: " ";
    display: table;
}
.modal-footer:after {
    clear: both;
}
.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
    margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
    margin-left: 0;
}
.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

/*  custom  */
.modal-dialog {
    margin: 3em auto;
    width: 96% !important;
    max-width: 1024px !important;
}

.modal-content {
    background: #FFFFFF;
    border: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
}
.modal-content .modal-header {
    border-bottom: none;
    padding: 1.5em 2% 0.75em 2%;
}
.modal-content .modal-header h4.modal-title {
    color: #87A0FF;
    font-size: 1.25em;
    line-height: 1.3em;
    margin: 0;
}

.modal-content .modal-body {
    padding: 0.75em 2%;
}
.modal-content .modal-body .row {
    margin: 0;
}
.modal-content .modal-body .list-group .form-check {
    padding: 0.15em 0;
}
.modal-content .modal-body .list-group .form-check .form-check-label {
    font-family: 'brregular', Helvetica, Arial, sans-serif;
    margin: 0 0 0 0.25em;
}
.modal-content .modal-body .list-group .form-check input {
    -webkit-appearance: auto !important; 
}

.modal-footer {
    border-top: none;
    padding: 0.75em 2% 1em 2%;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.modal-footer button.btn.btn-primary, .modal-footer button.btn.btn-secondary {
    border-width: 2px;
    border-style: solid;
    cursor: pointer;
    display: block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    height: 40px; 
    line-height: 36px;
    overflow: hidden;
    padding: 0 2.25em;
    position: relative;
    text-transform: uppercase;
    -webkit-border-radius: 3em;
    -moz-border-radius: 3em;
    -ms-border-radius: 3em;
    -o-border-radius: 3em;
    border-radius: 3em;
    -webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
	transition: all 300ms linear;
}
.modal-footer button.btn.btn-primary.cancel {
    background: #FFFFFF;
    border-color: #E9586D;
    color: #E9586D;
}
.modal-footer button.btn.btn-primary.cancel:hover {
    background: #E9586D;
    color: #FFFFFF;
}
.modal-footer button.btn.btn-primary.confirm {
    background: #6ED7A5;
    border-color: #6ED7A5;
    color: #FFFFFF;
}
.modal-footer button.btn.btn-primary.confirm:hover {
    background: #FFFFFF;
    color: #6ED7A5;
}
.modal-footer:before, .modal-footer:after {
    display: none;
}
.modal-footer button.btn.btn-primary.confirm:disabled, .modal-footer button.btn.btn-primary.confirm:disabled:hover {
    background: #E1E1E1;
    border-color: #E1E1E1;
    color: #B2B2B2;
    cursor: not-allowed;
}
E9586D
 
.modal-backdrop {
    background: #F1F1F1;
}
.modal-backdrop.in {
    opacity: 1.0;
    filter: alpha(opacity=100);
}


/*	--------------------------------------------------------------------- */
/* 	footer */
/*	---------------------------------------------------------------------- */
.footer-content.wrapper {
	color: #E1E1E1;
	padding: 2em 0;
}
.footer-content a {
    color: #E1E1E1;
}
.footer-content a:hover {
    color: #87A0FF;
}

.footer-content .columnOne {
	margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    width: 100%;
    display: none;
}
.footer-content .columnOne p {
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 1.2em;
    line-height: 1.1em;
    margin: 0;
    width: 50%;
}
.footer-content .columnOne .footer-right {
    font-size: 0.9em;
    line-height: 1.7em;
	text-align: right;
	width: 50%;
}
.footer-content .columnOne .footer-right .impressum .address-container {
	display: none;
}
.footer-content .columnOne .footer-right .impressum.active {
    margin-top: 0.5em;
}
.footer-content .columnOne .footer-right .impressum.active .address-container {
	display: block;
	margin-top: -1.6em;
}
.footer-content .columnOne .footer-right .impressum.active a {
	font-family: 'brbold', Helvetica, Arial, sans-serif;
	margin-right: 1.75em;
}
.footer-content .columnOne .footer-right .impressum.active .address-container a {
	display: block;
	margin: 0;
	font-family: 'brregular', Helvetica, Arial, sans-serif;
}

.footer-content .row {
    margin: 1em -1%; 
}
.footer-content .row:after {
    content: "";
    clear: both;
    display: table;
}
.footer-content .row [class*='column-'] {
    display: block;
    float: left;
    min-height: 1px; 
    margin: 0 1%;
    padding: 0;
}
.footer-content .row .column-3 {
    width: 23%;
}
.footer-content .row .column-6 {
    width: 48%;
}
.footer-content p.footer-claim {
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 1.2em;
    line-height: 1.1em;
}
.footer-content ul.footer-links {
    font-family: "brregular", sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-content .language-dropdown, .footer-content .location-dropdown {
    position: relative;
}
.footer-content .language-dropdown {
    margin-bottom: 0.5em;
}
.footer-content a.language, .footer-content a.location {
    background: #E1E1E1;
    border: 2px solid #343436;
    color: #343436;
    display: block;
    font-family: "brbold", sans-serif;
    font-size: 0.9em;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    padding: 0 4em 0 2em;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    -webkit-border-radius: 2.25em;
    -moz-border-radius: 2.25em;
    -ms-border-radius: 2.25em;
    -o-border-radius: 2.25em;
    border-radius: 2.25em;
}
.footer-content a.language .fa, .footer-content a.location .fa {
    border-left: 2px solid #343436;
    height: 30px;
    line-height: 30px;
    text-align: center;
    width: 30px;
    position: absolute;
    right: 0;
    -webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
	transition: all 300ms linear;
}
.footer-content a.language:hover, .footer-content a.location:hover {
    border-color: #87A0FF;
    color: #343436;
}
.footer-content a.language:hover .fa, .footer-content a.location:hover .fa {
    background: #87A0FF;
    border-color: #87A0FF;
    color: #E1E1E1;
}
.footer-content .language-dropdown .language-dropdown-content, .footer-content .location-dropdown .location-dropdown-content {
    background: #E1E1E1;
    border: 2px solid #87A0FF;
    bottom: 32px;
    box-sizing: border-box;
    font-size: 0.9em;
    left: 0;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    transform: translateY(30px);
    visibility: hidden;
    width: 100%;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
    -webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
	transition: all 300ms linear;
}
.footer-content .language-dropdown .language-dropdown-content a.language-dropdown-item, .footer-content .location-dropdown .location-dropdown-content a.location-dropdown-item {
    border-bottom: 1px solid #87A0FF;
    color: #343436;
    display: block;
    font-family: "brbold", sans-serif;
    height: 30px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
}
.footer-content .language-dropdown .language-dropdown-content li:last-of-type a.language-dropdown-item, .footer-content .location-dropdown .location-dropdown-content li:last-of-type a.location-dropdown-item {
    border: none;
}
.footer-content .language-dropdown .language-dropdown-content a.language-dropdown-item:hover, .footer-content .location-dropdown .location-dropdown-content a.location-dropdown-item:hover {
    background: #87A0FF;
    color: #FFFFFF;
}
.footer-content .language-dropdown.open a.language, .footer-content .location-dropdown.open a.location {
    border-color: #87A0FF;
}
.footer-content .language-dropdown.open a.language .fa, .footer-content .location-dropdown.open a.location .fa {
    background: #87A0FF;
    border-color: #87A0FF;
    color: #E1E1E1;
}
.footer-content .language-dropdown.open a.language .fa:before, .footer-content .location-dropdown.open a.location .fa:before {
    -moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.footer-content .language-dropdown.open .language-dropdown-content, .footer-content .location-dropdown.open .location-dropdown-content {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

/*	---------------------------------------------------------------------- */
/* 	focused images */
.focuspoint {
	position: absolute; /*Any position but static should work*/
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.focuspoint img {
	position: absolute;
	left: 0;
	top: 0;
	margin: 0;
	display: block;
	/* fill and maintain aspect ratio */
	width: auto; height: auto;
	min-width: 100%; min-height: 100%;
	max-height: none; max-width: none;
}

/*	---------------------------------------------------------------------- */
/* 	responsive styles */
/*	---------------------------------------------------------------------- */
@media only screen and (min-width: 1025px) and (max-height: 1100px) {
.startpage .mainimg-container {
    height: auto;
    padding-top: 4em;
    padding-bottom: 4em;
}
.mainimg-container .blurredImage {
    display: none;
}
.startpage .mainimg-container .claim-container h1, .startpage .mainimg-container .claim-container h2 {
    width: 100%;
}
a.teaser-content.large, a.teaser-content.medium {
    height: 23em;
}
a.teaser-content.small {
    height: 11em;
}
.teaser-content.large:before, .teaser-content.medium:before {
    width: 9em;
    height: 9em;
}
.teaser-content.small:before {
    height: 7em;
    margin-top: -3.5em;
    width: 7em;
}
.teaser-content.small .fa {
    margin-top: -0.75em;
}
.teaser-content .fa:before {
    font-size: 1.5em;
}
}
@media only screen and (min-width: 1025px) and (max-height: 900px) {
.startpage .mainimg-container {
    background: none;
    padding-bottom: 0;
}
a.teaser-content.large, a.teaser-content.medium {
    height: 22em;
}
a.teaser-content.small {
    height: 10em;
}
.teaser-content.large:before, .teaser-content.medium:before {
    width: 8em;
    height: 8em;
}
.teaser-content.small:before {
    height: 6em;
    margin-top: -3em;
    width: 6em;
}
.teaser-content.small h1 {
    width: calc(100% - 3.5em);
}
}
@media only screen and (min-width: 1025px) and (max-height: 800px) {
a.teaser-content {
    padding: 1.5em;
}
a.teaser-content.large, a.teaser-content.medium, a.teaser-content.small {
    width: 31.33333%;
}
a.teaser-content.large, a.teaser-content.medium {
    height: 21em;
}
a.teaser-content.small {
    height: calc((21em - 1.5em)/2);
}
.teaser-content.large h1 {
    font-size: 2.25em;
}
.teaser-content.medium h1, .teaser-content.small h1, .bookingInfo .bookingInfo-date, .bookingInfo .bookingInfo-status, .bookingInfo .no-booking-today {
    font-size: 1.5em;
}
.bookingInfo .bookingInfo-status {
    margin-top: 0;
}
.teaser-content.large h2 {
    font-size: 1.25em;
} 
.bookingInfo {
    font-size: 1em;
}
.teaser-content.large:before, .teaser-content.medium:before {
    left: 1.5em;
    top: 1.5em;
}
.teaser-content.small:before {
    height: 5em;
    margin-top: -2.5em;
    right: 1em;
    width: 5em;
}
.teaser-content.small .fa {
    margin-top: -0.625em;
}
.teaser-content.large .fa, .teaser-content.medium .fa {
    bottom: 1.5em;
}
.teaser-content .fa:before {
    font-size: 1.25em;
}
.teaser-content:hover .fa {
    right: 1em;
}
}
@media only screen and (min-width: 1025px) and (max-height: 700px) {
a.teaser-content.large, a.teaser-content.medium {
    -ms-flex-line-pack: start;
    -webkit-align-content: flex-start;
    -moz-align-content: flex-start;
    align-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
}
a.teaser-content.large, a.teaser-content.medium {
    height: 20em;
}
a.teaser-content.small {
    height: calc((20em - 1.5em)/2);
}
.teaser-content.large:before, .teaser-content.medium:before {
    bottom: 1.5em;
    top: unset;
}
}

@media only screen and (max-width: 1024px) {
/* global */
body {
	font-size: 15px;
	line-height: 25px;
} 
.header-container, .header-content { height: 70px; }
.logo-container { width: 130px; }
.main-container, .startpage-container {
    margin-top: 3em;
    margin-bottom: 3em;
}
.footer-content.wrapper {
    padding: 1.5em 0;
}
.login-mask .login-container {
    margin: 8em 0 2em 0;
}
.login-mask .login-container h4 {
    margin-bottom: 1em;
}
body.login-body .footer-container .wrapper {
    padding: 0 0 2em 0;
}

/*	---------------------------------------------------------------------- */
/* typo */
h1 {
    font-size: 2.75em;
}
h2 {
    font-size: 1.5em;
}
h3 {
    font-size: 1.25em;
}
.myProfile .mainimg-container .claim-container h1, .myBookings .mainimg-container .claim-container h1, .password-reset .mainimg-container .claim-container h1 {
    font-size: 2.75em;
}

/*	---------------------------------------------------------------------- */
/* startpage */
.mainimg-container {
    margin-bottom: 3em;
}
a.teaser-content {
    padding: 1.5em;
}
a.teaser-content.large, a.teaser-content.medium {
	height: 20em;
}
a.teaser-content.small {
	height: 10em;
}
.teaser-content.large:before, .teaser-content.medium:before {
    top: 1.5em;
    left: 1.5em;
}
.teaser-content.small:before {
    left: unset;
    right: 1.5em;
    margin-top: -3.5em;
}
.teaser-content.large:before, .teaser-content.medium:before {
    width: 9em;
    height: 9em;
}
.teaser-content.small:before {
    width: 7em;
    height: 7em;
}
.teaser-content.medium h1, .teaser-content.small h1, .bookingInfo .no-booking-today {
    font-size: 1.5em;
}
.teaser-content .fa:before {
    font-size: 1.5em;
}
.teaser-content:hover .fa {
    right: 1.5em;
} 
.teaser-content.large .fa, .teaser-content.medium .fa {
    bottom: 1.5em;
}
.teaser-content.small .fa {
    bottom: 4em;
}
.bookingInfo .bookingInfo-status, .bookingInfo .bookingInfo-date {
    font-size: 1.25em;
}
.bookingInfo .bookingInfo-status {
    margin-top: 0;
}
a.teaser-content .bookingInfo-number { 
    font-size: 0.8em;
    margin-top: 0.6em;
}
.column-6, .page-licenseplates .license-plates .wiz-btn-next, .page-licenseplates .license-plates .message_container .alert.alert-danger { width: 100%; }
.offset-3, .page-licenseplates .license-plates .wiz-btn-next, .page-licenseplates .license-plates .message_container .alert.alert-danger { margin-left: 0%; }
.password-settings-container, .page-licenseplates .license-plates .container-lp {
    padding: 1em 3% 0.5em 3%; 
}

/*	---------------------------------------------------------------------- */
/*  numberplates */
.productBooking-licenseplates {
    padding: 1em 2%;
}
.productBooking-licenseplates .licenseplates-container .container-lp .previous-lp {
    padding: 1.5em 2%;
}

/*	---------------------------------------------------------------------- */
/*  select location */
.productBooking-previouslocation,
.productBooking-location,
.productBooking-previousobject,
.productBooking-object,
.productBooking-previouslocation .previouslocation-container .previous-location,
.productBooking-previousobject .previousobject-container .previous-location,
.productBooking-selection {
    padding: 1.5em 2%;
}
.productBooking-previouslocation,
.productBooking-previousobject,
.productBooking-selection {
    margin-bottom: 1.5em;
}
.productBooking-selection {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.productBooking-selection .productBooking-location,
.productBooking-selection .productBooking-object {
    padding: 0;
    width: 49%;
}
.productBooking-selection .productBooking-location:before, .productBooking-selection .productBooking-object:before {
    bottom: 0.7em;
    right: 3%;
}

/*	---------------------------------------------------------------------- */
/*  filters */
.miniwizard-collapsed {
    margin-bottom: 2em;
    margin-top: 90px;
}
.compactBooking_category, .compactBooking_subCategory, .compactBooking_location, .compactBooking_datePicker, .compactBooking_timePicker, .compactBooking_startTime h3, .startTime_wrapper, .filters .filters-actions {
    padding: 1em;
}
.miniwizard-collapsed .filters .compactBooking_startTime h3 {
    margin: 12px 0 0 0;
}
.compactBooking_category ul.dropdown-menu, .compactBooking_subCategory ul.dropdown-menu, .compactBooking_location ul.dropdown-menu {
    width: calc(100% - 2em);
}

/*	---------------------------------------------------------------------- */
/* search results */
ul.selectObject .selectObject_thumbnail {
    height: 100px;
    width: 100px;
}
ul.selectObject .selectObject_Details {
    height: 100px;
    margin-right: 2%;
    width: calc(100% - (115px + 2%));
}

/*	---------------------------------------------------------------------- */
/* calender */
.compactBooking_datePicker .dropdown-menu {
    width: calc(100% - 2em);
}
.compactBooking_datePicker .dropdown-menu li table tbody tr td button span, .productBooking_dates .selecteddates .dropdown-menu li table tbody tr td button span {
    width: auto;
}

/*	---------------------------------------------------------------------- */
/*  booking wizard step one */
.productBooking_back {
    padding: 2em 0;
}
.productBooking_back a {
    min-width: 15%;
    text-align: center;
}
.productBooking_dates {
    margin-top: 2em;
}
.productBooking_options {
    margin: 2em 0 0 0;
    padding: 2em 0 0 0;
}
.productBooking_information {
    height: 100px;
}
.productInformation_thumbnail {
    height: 100px;
    width: 100px;
}
.productInformation_name {
    margin-left: 115px;
}
.productBooking_bill {
    padding: 2em 3.232%;
}

/*	---------------------------------------------------------------------- */
/*  booking wizard step two */
.productConfirmation_bookingNumber, .productConfirmation_bookingDates {
	margin: 2em 0 0 0;
    padding: 2em 0 0 0;
}
.productBooking_right .productInformation_description {
    padding: 2em 3.232%;
}
.productBooking_summary {
    padding-top: 4em;
}
.productBooking-dates .dates-container .dates-row.with-service .dates-services a {
    padding: 0 1em;
}

/*	---------------------------------------------------------------------- */
/* 	product detail */
.productDetail .mainimg-container {
    height: 350px;
}
.productDetail .mainimg-container .claim-container {
	box-sizing: border-box;
    height: 350px;
    padding: 150px 0 0 0;
}
.productDetail .mainimg-container a.btn-book, .productDetail .mainimg-container a.btn-search {
    bottom: 1.5em;
    margin: 0;
    position: absolute;
}
.productDetail .mainimg-container a.btn-search {
    float: none;
    right: 0;
}
.productDetail .productDetail_features {
    margin: 2em 0 0 0;
}
.productDetail .productDetail_description, .productDetail .productDetail_offers, .productDetail .productDetail_consumables, .productDetail .productDetail_options, .productDetail .productDetail_cancelationfee {
    margin: 2em 0 0 0;
    padding: 2em 0 0 0;
}
.productDetail .productDetail_conditionalFees, .productDetail .productDetail_documents, .productDetail .productDetail_address {
    padding: 2em 3.232%;
}
.productDetail .productDetail_offers .offers_main .offers_unit, .productDetail .productDetail_options .optionsList_description, .productDetail .productDetail_cancelationfee .cancelationFee_day, .productDetail .productDetail_consumables .included_unit {
    margin-top: 0.2em;
    width: 66.66%;
}
.productDetail .productDetail_offers .offers_main .offers_price, .productDetail .productDetail_options .optionsList_price, .productDetail .productDetail_cancelationfee .cancelationFee_fix, .productDetail .productDetail_consumables .included_price {
    width: 33.33%;
}

/*	---------------------------------------------------------------------- */
/* 	Booking Details */
.bookingDetail-actions {
    margin: 2em 0;
    padding: 0;
}
.bookingDetail-infos, .bookingDetail-tables, .bookingDetail-tables .total {
    margin-top: 2em;
}
.detailInfos-bookingNumber, .detailInfos-bookingDates, .detailInfos-bookingFulfillmentStatus {
    margin: 2em 0 0 0;
    padding: 2em 0 0 0;
}
.detailInfos-bookingFulfillmentStatus {
    padding: 2em 0;
}
.bookingDetail-tables .total, .bookingDetail-tables .subtotal {
    margin: 0 0 2em 0;
}
.detailInfos-right .detailInfos-description {
    padding: 2em 3.232%;
}
.consumables-action {
    padding: 0.75em 0;
}

/*	---------------------------------------------------------------------- */
/* my Profile */
.myProfile .mainimg-container, .myBookings .mainimg-container, .password-reset .mainimg-container {
    margin-top: 3em;
}
.myProfile .main-container .column_2_2 hr {
    margin: 1.5em 0;
}
.formrow.btnGroup .btn.btn-primary {
	float: none;
    margin: 0.5em 0 !important;
    width: 100%;
}

/*	---------------------------------------------------------------------- */
/* 	Avaloq styling */
.productBooking-calendar .calendar-navbar {
    padding: 1em;
}
.calenderlegend-container {
    padding: 1em 2%;
}
.productBooking-dates, .productBooking-fees, .productBooking-credentials {
    margin: 1.5em 0 0 0;
    padding: 1.5em 2%;
}
.productBooking-dates h3, .productBooking-fees h3, .bookingInfo-container h3, .bookingDetails-container h3, .confirmation-dates h3 {
    margin-bottom: 0.5em;
}
.productBooking-dates .billlist-container {
    padding-bottom: 0;
} 
.mainBooking-Button {
    padding-top: 2em;
}
.mainBooking-Button a.mainBack-Btn,
.bookingsBack-Button a.mainBack-Btn,
.activateBack-Button a.mainLogin-Btn {
	margin: 1.5em 0;
}
.mainBooking-Button a.mainBack-Btn {
    margin: 3px 0 0 0 ;
}

/*	---------------------------------------------------------------------- */
/* 	booking detail */
.bookingInfo-container .bookingInfo-content {
    height: auto;
    margin-bottom: 2em;
}
.bookingInfo-container .bookingInfo-content .bookingInfo-left, .bookingInfo-container .bookingInfo-content .bookingInfo-right {
    padding: 2em 2%;
}
.bookingInfo-container .bookingInfo-content .bookingInfo-left {
    width: 60%;
}
.bookingInfo-container .bookingInfo-content .bookingInfo-right {
    width: 40%;
}
.button-container {
    padding-top: 1.5em;
}
.productBooking_full.booked.today .bookingInfo-container .bookingInfo-content:before {
	right: -15px;
    top: -15px;
}

/* 	confirmation */
.booking-confirmation {
    margin-bottom: 1.2em;
    padding: 1.5em 2%;
}
.confirmation-dates {
    margin: 1.5em 0 0 0;
    padding: 1.5em 2%;
}

/* 	password */
body.forgotpwd .mainimg-container, body.resetpwd .mainimg-container {
    margin-top: 3em;
}
body.forgotpwd .main-container .column_1_2 form {
    box-sizing: border-box;
    padding: 1.5em 3%;
    width: 100%;
}

/*	---------------------------------------------------------------------- */
/* footer */
.footer-content .row .column-6, .footer-content .row .column-3 {
    width: 31.33333%;
}

}

@media only screen and (max-width: 768px) {
/* global */
.main-container, .mainimg-container, .startpage-container {
    margin-bottom: 2em;
}
.main-container, .startpage-container {
    margin-top: 2em;
}
.logo-container {
    width: 110px;
}
.login-mask .login-container {
    margin: 6em 0 1.5em 0;
}
body.login-body .footer-container .wrapper {
    padding: 0 0 1.5em 0;
}
 
h1 {
    font-size: 2.375em;
}
h2, .teaser-content.large h1, .teaser-content.medium h1, .bookingInfo .bookingInfo-status, .bookingInfo .bookingInfo-date, .teaser-content.small h1, .mainimg-container .claim-container h2, .bookingInfo .no-booking-today {
    font-size: 1.375em;
}
h3 {
    font-size: 1.2em;
}
h4, .teaser-content.large h2 {
    font-size: 1.1em;
}

/*	---------------------------------------------------------------------- */
/* startpage */
.startpage .mainimg-container {
    height: auto;
    padding: 4em 0;
}
.startpage .mainimg-container .claim-container h1, .startpage .mainimg-container .claim-container h2 {
    width: 100%;
}
.mainimg-container .blurredImage {
    display: none;
}
.teaser-container {
    margin: 0;
}
a.teaser-content.large, a.teaser-content.medium, a.teaser-content.small {
    float: none;
    height: 9em;
    margin: 0.5em 0;
    padding: 1em 3%;
    width: 100%;
}
.teaser-content p {
	margin: 0;
}
.login-container {
    margin-top: 90px;
}
a.teaser-content.large:before, a.teaser-content.medium:before, .teaser-content.small:before {
    width: 7em;
    height: 7em;
    top: 50%;
    left: unset;
    right: 3%;
    margin-top: -3.5em;
}
a.teaser-content.large, a.teaser-content.medium {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -ms-flex-line-pack: center;
    -webkit-align-content: center;
    -moz-align-content: center;
    align-content: center;
}
.teaser-content.large h1, .teaser-content.large h2 {
    color: #343436;
}
.teaser-content.large:hover:before, .teaser-content.medium:hover:before {
    opacity: 0;
    filter: alpha(opacity=0);
}
a.teaser-content.booked .bookingInfo, a.teaser-content.noBooking .bookingInfo {
    width: auto;
}
.teaser-content.large .fa, .teaser-content.medium .fa, .teaser-content.small .fa {
    bottom: unset;
    top: 50%;
    margin-top: -0.75em;
}
.teaser-content.large:hover .fa, .teaser-content.medium:hover .fa, .teaser-content.small:hover .fa {
    right: 3%;
}

/*	---------------------------------------------------------------------- */
/*  numberplates */
.productBooking-licenseplates {
    padding: 1.5em 2% 1em 2%;
}
.productBooking-licenseplates .licenseplates-container {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.productBooking-licenseplates .licenseplates-container h3 {
    margin-bottom: 0.25em;
    width: 100%;
}
.productBooking-licenseplates .licenseplates-container .container-lp {
    margin: 0 -0.5em;
    width: calc(100% + 1em);
}

/*	---------------------------------------------------------------------- */
/*  select location */
.productBooking-previouslocation,
.productBooking-location,
.productBooking-previousobject,
.productBooking-object,
.productBooking-selection {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.productBooking-previouslocation h3,
.productBooking-location h3,
.productBooking-location select,
.productBooking-previousobject h3,
.productBooking-object h3,
.productBooking-object select, 
.productBooking-previouslocation .previouslocation-container,
.productBooking-previousobject .previousobject-container,
.productBooking-selection .productBooking-location,
.productBooking-selection .productBooking-object {
    width: 100%;
}
.productBooking-selection .productBooking-location,
.productBooking-selection .productBooking-object {
    padding: 0;
}
.productBooking-selection .productBooking-location {
    margin-bottom: 1.5em;
}
.productBooking-location h3, .productBooking-previouslocation h3, .productBooking-previousobject h3, .productBooking-object h3 {
    margin-bottom: 0.75em;
}
.productBooking-previouslocation .previouslocation-container .previous-location,
.productBooking-previousobject .previousobject-container .previous-location {
    width: 49%;
}
.productBooking-location:before, .productBooking-object:before {
    bottom: 1.9em;
    right: 4%;
}
.productBooking-selection .productBooking-location:before, .productBooking-selection .productBooking-object:before {
    bottom: 0.7em;
    right: 2%;
}

/*	---------------------------------------------------------------------- */
/*  filters */
.compactBooking_datePicker, .compactBooking_timePicker {
    float: none;
    width: 100%;
    padding-bottom: 0;
    border: none;
}
.compactBooking_startTime {
    border-top: none;
    padding: 1em;
}
.compactBooking_datePicker h3, .compactBooking_timePicker h3, .miniwizard-collapsed .filters .compactBooking_startTime h3 {
	display: block;
	float: left;
	line-height: 40px;
	width: 25%;
	margin: 0;
	padding: 0;
}
.startTime_wrapper, .duration_wrapper {
	padding: 0;
	width: 75%;
	float: right;
	display: block;
}
.compactBooking_datePicker input, .compactBooking_timePicker input, .compactBooking_startTime input {
	display: block;
	float: left;
	padding: 0;
}
.compactBooking_datePicker input {
	width: 75%;
}
.compactBooking_timePicker .duration_container input {
	width: 100%;
}
.compactBooking_timePicker input, .compactBooking_startTime input {
	width: calc(94% - 80px);
}
.compactBooking_datePicker .dropdown-menu {
    width: calc(75% - 1.5em);
}

/*	---------------------------------------------------------------------- */
/*  booking wizard step one */
.productBooking_back {
    padding: 1.5em 0;
}
.productBooking_left, .productBooking_right {
    float: none;
    width: 100%;
}
.productBooking_left {
	margin-bottom: 1.5em;
}
.productBooking_dates {
    margin-top: 1.5em;
}
.productBooking_options {
    margin: 1.5em 0 0 0;
    padding: 1.5em 0 0 0;
}
.productBooking_bill {
    padding: 1.5em 3%;
}
.mainBooking_Button {
    padding: 1.5em 0 0 0;
}

/*	---------------------------------------------------------------------- */
/*  booking wizard step two */
.productConfirmation_bookingNumber, .productConfirmation_bookingDates {
	margin: 1.5em 0 0 0;
    padding: 1.5em 0 0 0;
}
.productBooking_right:before, .productBooking_right:after {
    content: " ";
    display: table;
}
.productBooking_right:after { clear: both; }
.productBooking_right { *zoom: 1; }
.productBooking_right .productBooking_image {
    border-bottom: 0 none;
    display: block;
    float: left;
    width: 33.33%;
}
.productBooking_right .productInformation_description {
    box-sizing: border-box;
    display: block;
    float: right;
    padding: 1.5em 3%;
    width: 66.66%;
}
.productBooking_right .productInformation_description {
    padding: 1.5em 3%;
}
.productBooking_summary {
    padding-top: 1.5em;
}
.productBooking_summary a.mainBook_Btn {
	float: none;
    width: 100%;
    height: 40px;
    line-height: 40px;
}
.productBooking_summary a.mainBook_Btn.cancel {
    font-size: 0.82em;
    height: 26px;
    line-height: 26px;
    margin-bottom: 0.75em;
    margin-right: 0;
}

.productBooking-dates .dates-container .dates-row,
.productBooking-fees .fees-row,
.bookingDetails-container .details-row,
.confirmation-dates .dates-row {
    position: relative;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -webkit-flex-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.productBooking-dates .dates-container .dates-row .dates-title,
.productBooking-dates .dates-container .dates-row .dates-location,
.productBooking-dates .dates-container .dates-row .dates-object,
.productBooking-dates .dates-container .dates-row .dates-price,
.productBooking-dates .dates-container .dates-row.with-service .dates-price,
.productBooking-dates .dates-container .dates-row.with-service .dates-services {
    margin: 0;
    text-align: left;
    width: calc(100% - 40px);
}
.productBooking-dates .dates-container .dates-row.with-service .dates-services {
    margin-top: 0.5em;
}
.productBooking-dates .dates-container .dates-row.with-service .dates-services a {
    padding: 0 1.5em;
}
.productBooking-dates .dates-container .dates-row .dates-delete {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -15px;
}
.productBooking-dates .billlist-container .billlist-left, .productBooking-dates .billlist-container .billlist-right,
.confirmation-dates .dates-row.total .confirmationdates-left, .confirmation-dates .dates-row.total .confirmationdates-right {
    width: 50%;
}
.productBooking-dates .billlist-container .billlist-right,
.confirmation-dates .dates-row.total .confirmationdates-right {
    box-sizing: border-box;
    padding: 0 2em;
}

/*	---------------------------------------------------------------------- */
/* 	product detail */
.productDetail .mainimg-container {
    height: 300px;
}
.productDetail .mainimg-container .claim-container {
	height: 300px;
    padding: 110px 0 0 0;
}
.productDetail .mainimg-container a.btn-book, .productDetail .mainimg-container a.btn-search {
    width: 33.33%;
}

.productDetail_left, .productDetail_right {
    float: none;
    width: 100%;
}
.productDetail .productDetail_description, .productDetail .productDetail_offers, .productDetail .productDetail_consumables, .productDetail .productDetail_options, .productDetail .productDetail_cancelationfee {
    margin: 1.5em 0 0 0;
    padding: 1.5em 0 0 0;
}
.productDetail .productDetail_features {
    margin: 1.5em 0 0;
}
.productDetail .productDetail_conditionalFees, .productDetail .productDetail_documents, .productDetail .productDetail_address {
    padding: 1.5em 3.232%;
}
.productDetail .productDetail_offers .offers_main .offers_price, .productDetail .productDetail_options .optionsList_price, .productDetail .productDetail_cancelationfee .cancelationFee_fix, .productDetail .productDetail_consumables .included_price {
    height: 26px;
    line-height: 26px;
}

/*	---------------------------------------------------------------------- */
/* my Bookings */
.myBookingList-container .table .tableheader .tabledata.notablethigh, .myBookingList-container .table .tablerow .tabledata.notablethigh {
    display: none;
}
.myBookingList_btns {
    text-align: center;
}
.myBookingList_btns .bookingsBack-Button, .myBookingList_btns .bookingsArchive-Button {
    float: none;
    width: 100%;
}
.myBookingList_btns .bookingsBack-Button {
    margin-bottom: 0.5em;
}

.myBookingList_btns .btn.btn-primary {
    float: none;
}
.myBookingList-container .table .tableheader .tabledata.half, .myBookingList-container .table .tablerow .tabledata.half {
    width: calc(100% / 6);
}
.myBookingList-container .table .tableheader .tabledata.one, .myBookingList-container .table .tablerow .tabledata.one {
    width: calc(100% / 4);
}
.myBookingList-container .table .tableheader .tabledata.nomobile, .myBookingList-container .table .tablerow .tabledata.nomobile {
    display: none;
}

/*	---------------------------------------------------------------------- */
/* 	Booking Details */
.bookingDetail-actions {
    margin: 1.5em 0;
}
.bookingDetail-infos, .bookingDetail-tables, .bookingDetail-tables .total {
    margin-top: 1.5em;
}
.detailInfos-bookingNumber, .detailInfos-bookingDates, .detailInfos-bookingFulfillmentStatus {
    margin: 1.5em 0 0 0;
    padding: 1.5em 0 0 0;
}
.detailInfos-bookingFulfillmentStatus {
    padding: 1.5em 0;
}
.bookingDetail-tables .total, .bookingDetail-tables .subtotal {
    margin: 0 0 1.5em 0;
}
.detailInfos-right .detailInfos-description {
    padding: 1.5em 3.232%;
}
.detailInfos-bookingFulfillmentStatus {
    border-width: 1px 0 0 0;
}

.detailInfos-left, .detailInfos-right {
    float: none;
    width: 100%;
}
.detailInfos-right:before, .detailInfos-right:after {
    content: " ";
    display: table;
}
.detailInfos-right:after { clear: both; }
.detailInfos-right { *zoom: 1; }
.detailInfos-right .detailInfos-image {
    border-bottom: 0 none;
    display: block;
    float: left;
    width: 33.33%;
}
.detailInfos-right .detailInfos-description {
    box-sizing: border-box;
    display: block;
    float: right;
    padding: 1.5em 3%;
    width: 66.66%;
}

/*	---------------------------------------------------------------------- */
/* my Profile */
.myProfile .mainimg-container, .myBookings .mainimg-container, .password-reset .mainimg-container {
    margin-top: 2em;
}
.formrow .label, .formrow .input {
    float: none;
    padding: 0;
    width: 100%;
}
.myProfile .main-container .column_1_2 hr, .myProfile .main-container .column_2_2 hr {
    margin: 1em 0;
}
.myProfile .main-container .column_2_2 hr {
    margin-bottom: 1.5em;
}
.myProfile .main-container .row.profileBtn {
    margin-top: 1em;
}

/*	---------------------------------------------------------------------- */
/* modal window */
.modal-dialog {
    margin: 2em auto;
}

/*	---------------------------------------------------------------------- */
/* 	Avaloq styling */
.calenderlegend-container .legend-container {
    width: 50%;
}
.bookingInfo-container .bookingInfo-content {
    padding: 1em 2%;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.bookingInfo-container .bookingInfo-content .bookingInfo-left,
.bookingInfo-container .bookingInfo-content .bookingInfo-center, 
.bookingInfo-container .bookingInfo-content .bookingInfo-right {
    padding: 0;
    text-align: left;
    width: 100%;
}
.bookingInfo-container .bookingInfo-content .bookingInfo-right {
    margin-top: 1em;
}

/* 	password */
body.forgotpwd .mainimg-container, body.resetpwd .mainimg-container {
    margin-top: 2em;
}

}

@media only screen and (max-width: 575px) {
body {
    font-size: 14px;
    line-height: 23px;
}
.wrapper {
    width: 94%;
}
.login-mask .login-container {
    margin: 4em 0 1em 0;
}
.loading .loading-image {
    height: 7em;
	margin-top: 30vh;
}

/*	---------------------------------------------------------------------- */
/* fonts */
.myProfile .mainimg-container .claim-container h1, .myBookings .mainimg-container .claim-container h1, .password-reset .mainimg-container .claim-container h1 { font-size: 2.0em; }
h2, .teaser-content.large h1, .teaser-content.medium h1, .bookingInfo .bookingInfo-status, .bookingInfo .bookingInfo-date, .teaser-content.small h1, .mainimg-container .claim-container h2, .bookingInfo .no-booking-today { font-size: 1.3em; }
h3 { font-size: 1.2em; } 
h4, .teaser-content.large h2 { font-size: 1.1em; }
input { -webkit-appearance: none; }
input[type=checkbox], input[type="radio"] { -webkit-appearance: auto; }

/*  ---------------------------------------------------------------------- */ 
/*  header  */
.header-container, .header-content {
    height: 60px;
}
.logo-container {
    width: 90px;
}
.user-container {
    max-width: 50%;
}
.user-container a {
    box-sizing: border-box;
    height: 34px;
    margin: 0 0 0 auto;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.user-container .dropdown ul.dropdown-menu {
    width: 200%;
    min-width: 250px;
    max-width: 300px;
}
.main-container, .mainimg-container, .startpage-container {
    margin-bottom: 1em;
}
.main-container, .startpage-container {
    margin-top: 1em;
}
.myProfile .mainimg-container, .myBookings .mainimg-container, .password-reset .mainimg-container {
    margin-top: 1.5em;
}

/*	---------------------------------------------------------------------- */
/* 	new login mask */
.login-mask .wrapper .logo-container-login {
    margin: 3em auto 2em auto;
	max-width: 125px;
}

/*  ---------------------------------------------------------------------- */ 
/*  startpage  */
.startpage .mainimg-container {
    padding: 2em 0;
}
a.teaser-content.booked .bookingInfo,
a.teaser-content.noBooking .bookingInfo, 
a.teaser-content.large h1, a.teaser-content.large h2, .teaser-content.small h1 {
    width: calc(100% - 6.5em);
}
a.teaser-content.large:before, a.teaser-content.medium:before, .teaser-content.small:before {
    height: 6em;
    margin-top: -3em;
    right: 2%;
    top: 50%;
    width: 6em;
}
.teaser-content:hover .fa {
    right: 3%;
}

/*	---------------------------------------------------------------------- */
/*  numberplates */
.productBooking-licenseplates {
    margin: 1em 0 0 0;
    padding: 1em 3%;
}
.productBooking-licenseplates .licenseplates-container {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.productBooking-licenseplates .licenseplates-container h3 {
    margin-bottom: 0.75em;
}
.productBooking-licenseplates .licenseplates-container .container-lp {
    margin: 0;
    width: 100%;
}
.productBooking-licenseplates .licenseplates-container .container-lp .previous-lp {
    margin-bottom: 1em;
    padding: 1em 3%;
    width: 100%;
}
.productBooking-licenseplates .licenseplates-container .container-lp .previous-lp:last-of-type {
    margin-bottom: 0;
}

/*	---------------------------------------------------------------------- */
/*  select location */
.productBooking-previouslocation,
.productBooking-location,
.productBooking-previousobject,
.productBooking-object,
.productBooking-selection {
    margin: 1em 0 0 0;
    padding: 1em 3%;
}
.productBooking-selectedlocation {
    margin: 1em 0;
    padding: 1em 3%;
}
.productBooking-selection .productBooking-location {
    margin-top: 0;
    margin-bottom: 0;
}
.productBooking-selection .productBooking-location:before, .productBooking-selection .productBooking-object:before {
    right: 3%;
}
.productBooking_full .row.message_container .alert.alert-danger,
.productBooking_full .row.message_container .alert.alert-warning {
    margin: 1em 0 0 0; 
}
.productBooking-location:before, .productBooking-object:before {
    bottom: 1.5em;
    right: 6%;
}
.productBooking-previouslocation .previouslocation-container,
.productBooking-previousobject .previousobject-container {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.productBooking-previouslocation .previouslocation-container .previous-location,
.productBooking-previousobject .previousobject-container .previous-object,
.productBooking-previousobject .previousobject-container .previous-location {
    margin-bottom: 1em;
    padding: 1em 3%;
    width: 100%;
}
.productBooking-previouslocation .previouslocation-container .previous-location:last-of-type,
.productBooking-previousobject .previousobject-container .previous-object:last-of-type,
.productBooking-previousobject .previousobject-container .previous-location:last-of-type {
    margin-bottom: 0;
}

/*	---------------------------------------------------------------------- */
/*  filters */
.miniwizard-collapsed {
    margin-bottom: 1.5em;
    margin-top: 0.5em;
}
.miniwizard-collapsed .compactBooking_btn a {
	height: 30px;
	line-height: 30px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}
.miniwizard-collapsed .compactBooking_btn.active a, .miniwizard-collapsed .compactBooking_btn.active a:hover {
	-webkit-border-radius: 15px 15px 0 0;
	-moz-border-radius: 15px 15px 0 0;
	border-radius: 15px 15px 0 0;
	height: 30px;
	line-height: 30px;
}
.compactBooking_category, .compactBooking_subCategory, .compactBooking_location, .compactBooking_datePicker, .compactBooking_timePicker, .compactBooking_startTime h3, .startTime_wrapper, .filters .filters-actions, .compactBooking_startTime {
    padding: 0.75em;
}
.compactBooking_category ul.dropdown-menu, .compactBooking_subCategory ul.dropdown-menu, .compactBooking_location ul.dropdown-menu {
    width: calc(100% - 1.5em);
}
.compactBooking_category, .compactBooking_subCategory, .compactBooking_location {
    border-right: none;
    float: none;
    width: 100%;
    padding-bottom: 0;
}
.compactBooking_location {
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 0.75em;
}
.miniwizard-collapsed .filters .compactBooking_dateTime {
    border-top: none;
}
.compactBooking_datePicker, .compactBooking_timePicker {
    float: none;
    padding-bottom: 0 !important;
    width: 100%;
}
.compactBooking_datePicker h3, .compactBooking_timePicker h3, .miniwizard-collapsed .filters .compactBooking_startTime h3 {
    float: none;
    line-height: inherit;
    margin: 0 0 0.3em;
    width: 100%;
}
.compactBooking_startTime {
    border-top: none;
}
.miniwizard-collapsed .filters .compactBooking_startTime h3 {
    float: none;
    margin: 0 0 0.3em 0;
    padding: 0;
    width: 100%;
}
.startTime_wrapper {
    float: none;
    padding: 0;
    width: 100%;
}
.miniwizard-collapsed .filters {
    -webkit-border-radius: 0 0 15px 15px;
	-moz-border-radius: 0 0 15px 15px;
	border-radius: 0 0 15px 15px;
}
.filters .filters-actions a.btn-apply-filters, .filters .filters-actions a.btn-cancel-filters {
    width: 100%;
    float: none;
    height: 30px;
    line-height: 30px;
}
.filters .filters-actions a.btn-apply-filters {
	margin-bottom: 0.75em;
}
.miniwizard-collapsed .filters input {
    height: 30px;
}
.compactBooking_datePicker input, .startTime_wrapper, .duration_wrapper {
    float: none;
    width: 100%;
}
.compactBooking_timePicker .duration, .startTime_container .duration {
    width: 30px;
}
.miniwizard-collapsed .filters input {
    height: 30px;
}
.compactBooking_timePicker input, .compactBooking_startTime input {
    width: calc(94% - 60px);
}
.compactBooking_timePicker .duration a, .startTime_container .duration a {
    height: 30px;
    line-height: 30px;
    width: 30px;
}
.compactBooking_category input, .compactBooking_subCategory input, .compactBooking_location input, .duration_container input {
    display: none !important;
}
.compactBooking_category select, .compactBooking_subCategory select, .compactBooking_location select, .duration_container select {
    background: rgba(255,255,255,0.5);
    border-radius: 50px;
	border: 1px solid #FFFFFF;
	box-sizing: border-box;
	display: block !important;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    height: 30px;
	padding: 0 1em;
    width: 100%;
    -webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	text-transform: uppercase !important;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.compactBooking_category:before, .compactBooking_subCategory:before, .compactBooking_location:before, .duration_container:before {
    bottom: 0;
    color: #343436;
    content: "\f107";
    font-family: FontAwesome;
    font-size: 1.5em;
    font-style: normal;
    font-weight: normal;
    height: 30px;
    line-height: 30px;
    position: absolute;
    right: 1em;
    z-index: 10;
}
.compactBooking_location:before {
	bottom: 10px;
}
.duration_container:before {
    bottom: 0;
    right: 0.5em;
}
.compactBooking_category select option, .compactBooking_subCategory select option, .compactBooking_location select option, .duration_container select option {
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 1em;
    text-transform: uppercase !important;
}

/*  ---------------------------------------------------------------------- */ 
/*  calender  */
.compactBooking_datePicker .dropdown-menu {
    width: calc(100% - 1.5em);
    z-index: 15;
}
.compactBooking_datePicker .dropdown-menu li table thead tr:first-child th button, .compactBooking_datePicker .dropdown-menu li table thead tr:last-child th {
    height: 30px;
}
.productBooking_calendar .row h4 {
    height: 40px;
    line-height: 40px;
}
.compactBooking_datePicker .dropdown-menu li table tbody, .productBooking_dates .selecteddates .dropdown-menu li table tbody, .profileBirthday .dropdown-menu li table tbody {
    font-size: 1.1em;
}

/*  ---------------------------------------------------------------------- */ 
/*  search results  */
ul.selectObject li {
    position: relative;
    height: 100px;
    -webkit-transform-style: preserve-3d;
  	-moz-transform-style: preserve-3d;
  	transform-style: preserve-3d;
}
ul.selectObject .selectObject_thumbnail {
	box-sizing: border-box;
	height: 100px;
    width: 20%;
}
ul.selectObject .selectObject_Details {
	float: right;
    height: auto;
    margin: 0;
    width: 78%;
    position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.selectObject_Primary, .selectObject_Secondary {
    top: 0;
    -webkit-transform: none;
	-ms-transform: none;
	transform: none;
    width: 70%;
}
.selectObject_name {
	height: 1.45em;
    overflow: hidden;
}
.selectObject_Btns {
    bottom: 0;
    float: none;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: none;
	-ms-transform: none;
	transform: none;
    width: 30%;
}
.selectObject_Btns a.selectObject_details, .selectObject_Btns a.selectObject_book {
	font-size: 0.8em;
	height: 30px;
    line-height: 30px;
    margin: 0;
    padding: 0;
    width: 100%;
    position: absolute;
    -webkit-border-radius: 30px;
	-webkit-border-top-right-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-radius: 30px;
	-moz-border-radius-topright: 0;
	-moz-border-radius-bottomright: 0;
	border-radius: 30px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.selectObject_Btns a.selectObject_details {
	top: 0.4em;
}
.selectObject_Btns a.selectObject_book {
	bottom: 0.4em;
}

/*	---------------------------------------------------------------------- */
/*  booking wizard step one */
.productBooking .main-container {
    margin-top: 0;
}
.productBooking_back {
    padding: 1em 0 1.5em 0;
}
.productBooking_back a {
    display: block;
    height: 26px;
    line-height: 26px;
    padding: 0;
}
.booking_calendar .cal-day-box .cal-day-panel {
    height: 300px !important;
}
.productBooking_calendar .row, .productBooking_calendar .row button {
    height: 40px;
    line-height: 40px;
    padding-top: 0;
    padding-bottom: 0;
}
.productBooking_dates .from-date, .productBooking_dates .to-date {
    width: 100%;
    float: none;
}
.productBooking_dates .selecteddates input {
    height: 30px;
}
.productBooking_dates .selecteddates .time-picker-custom .hour_container, .productBooking_dates .selecteddates .time-picker-custom .minute_container {
    margin: 0.5em 0 0 0;
}
.productBooking_dates .selecteddates .time-picker-custom .hour_container .plus a, .productBooking_dates .selecteddates .time-picker-custom .hour_container .minus a, .productBooking_dates .selecteddates .time-picker-custom .minute_container .plus a, .productBooking_dates .selecteddates .time-picker-custom .minute_container .minus a {
    height: 30px;
    line-height: 30px;
    width: 30px;
}

.productBooking_dates .dash {
	display: none;
}
.productBooking_dates .bis {
    clear: both;
    display: block;
    font-family: 'brbold', Helvetica, Arial, sans-serif;
    font-size: 1em;
    padding: 1em 0;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}
ul.productAccessories_list li.accessoriesList_item .accessoriesList_name {
    width: 50%;
}
ul.productAccessories_list li.accessoriesList_item .accessoriesList_price, ul.productAccessories_list li.accessoriesList_item .accessoriesList_unit {
    width: 24%;
}
ul.productAccessories_list li.accessoriesList_item .accessoriesList_price, ul.productAccessories_list li.accessoriesList_item .accessoriesList_unit, .productBooking_bill ul.bookingBill_list li .billList_price {
    font-size: 0.9em;
    height: 26px;
    line-height: 26px;
}
.productBooking_information {
    height: 70px;
}
.productInformation_thumbnail {
    height: 70px;
    width: 70px;
}
.productInformation_name {
    margin-left: 80px;
}
.mainBooking_Button button.mainBook_Btn {
    height: 40px;
    line-height: 40px;
}

/*	---------------------------------------------------------------------- */
/*  booking wizard step two */
.productBooking_summary button.mainBook_Btn {
	height: 40px;
    line-height: 40px;
}
.productConfirmation_bookingNumber .bookingNumber_data, .productConfirmation_bookingDates .bookingDates_date {
    height: 30px;
    line-height: 30px;
    min-width: 100%;
    padding: 0;
    display: block;
}
.productBooking .main-container .productBooking_left .productConfirmation_bookingNumber {
	display: none;
}

/*	---------------------------------------------------------------------- */
/* 	product detail */
.productDetail .mainimg-container {
    height: auto;
    margin: 0.5em auto 1em;
}
.productDetail .mainimg-blurcontainer {
    display: none;
}
.productDetail .mainimg-container .claim-container {
	height: auto;
    padding: 0;
}
.productDetail .mainimg-container a.btn-book, .productDetail .mainimg-container a.btn-search {
    bottom: auto;
    display: block;
    float: none;
    height: 30px;
    line-height: 30px;
    margin: 0;
    position: relative;
    width: 100% !important;
}
.productDetail .mainimg-container a.btn-search {
    background: #DDDDDD;
    border: none;
    margin-top: 0.5em !important;
}
.productDetail .productDetail_calendar .row h4 {
    height: 40px;
    line-height: 40px;
}
.productDetail .productDetail_calendar .row button {
    line-height: 38px;
}
.productDetail .productDetail_calendar .booking_calendar .cal-day-box .cal-day-panel {
    height: 300px !important;
}

/*	---------------------------------------------------------------------- */
/*  my bookings */
.myBookingList_btns {
    margin-bottom: 1em;
}
.selecteddates_Button button.selecteddates_Btn {
    height: 26px;
    line-height: 26px;
}
.myBookingList-container .table .tableheader, .myBookingList-container .table .tablerow {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.myBookingList-container .table .tableheader .tabledata.checkbox, .myBookingList-container .table .tablerow .tabledata.checkbox {
    width: 13% !important;
    position: absolute;
    left: 0;
    margin: 0;
}

.myBookingList-container .table .btn-bulk-cancel {
    font-size: 1.1em;
    width: 2.5em;
    height: 2.5em;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-flex-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.myBookingList-container .table .tableheader .tabledata.checkbox .btn-bulk-cancel span {
    display: none;
}
.myBookingList-container .table .tableheader .tabledata.checkbox .btn-bulk-cancel i {
    display: block;
}
.myBookingList-container .table .tableheader .tabledata, .myBookingList-container .table .tablerow .tabledata {
    padding: 0;
    margin-left: 15%;
    width: 50% !important;
}
.myBookingList-container .table .tableheader .tabledata:last-of-type, .myBookingList-container .table .tablerow .tabledata:last-of-type {
    width: 32% !important;
    position: absolute;
    right: 3%;
}

/*	---------------------------------------------------------------------- */
/* 	Booking Details */
.bookingDetails .main-container {
    margin-top: 0;
}
.bookingDetail-actions {
    margin: 1em 0 1.5em 0;
}
.detailActions-back, .detailActions-buttons {
    float: none;
    width: 100%;
}
.bookingDetail-actions .detailActions-back a, .bookingDetail-actions .detailActions-buttons button {
    display: block;
    float: none;
    height: 26px;
    line-height: 26px;
    margin: 0.5em 0 0 0;
    padding: 0;
    text-align: center;
    width: 100%;
}
.bookingDetail-actions .detailActions-back a {
	margin-top: 0;
}
.detailCancelBooking-buttons {
    margin: 0;
}
.detailCancelBooking-buttons button {
    float: none;
    margin: 0.5em 0 0 0;
    padding: 0;
    text-align: center;
    width: 100%;
}

.bookingDetails .bookingDetail-infos .detailInfos-left .detailInfos-bookingNumber {
	display: none;
}

.detailInfos-bookingNumber .bookingNumber-data, .detailInfos-bookingDates .bookingDates-date, .detailInfos-bookingDates .bookingFulfillmentStatus-data, .detailInfos-bookingFulfillmentStatus .bookingFulfillmentStatus-data {
    display: block;
    height: 30px;
    line-height: 30px;
    padding: 0;
    width: 100%;
}

.bookingDetail-tables .total, .bookingDetail-tables .subtotal, .productBooking_summary .total, .productBooking_summary .subtotal {
    font-size: 0.9em;
    padding: 0.5em 0.25em;
}
.table .tableheader .tabledata, .table .tablerow .tabledata {
    padding: 0 0.25em;
}
.table .tableheader .tabledata.one, .table .tablerow .tabledata.one { width: 12.5%; }
.table .tableheader .tabledata.two, .table .tablerow .tabledata.two { width: 25%; }
.table .tableheader .tabledata.three, .table .tablerow .tabledata.three { width: 31.2%; }
.table .tableheader .tabledata.ten, .table .tablerow .tabledata.ten { width: 75%; }
.table .tableheader .tabledata.nomobile, .table .tablerow .tabledata.nomobile { display: none; }

.consumables-action button {
    height: 26px;
    line-height: 26px;
    margin: 0;
    padding: 0 1em;
}

/*	---------------------------------------------------------------------- */
/* my Profile */
.myProfile .main-container .row {
    margin: 0;
}
.myProfile .main-container .row .column_1_2, .myProfile .main-container .row .column_2_2 {
    float: none;
    margin: 0;
    width: 100%;
}
.myProfile .main-container .row .column_1_2 {
    margin-bottom: 2em; 
}
.myProfile .main-container .column_1_2 hr {
    margin: 1em 0;
}
.myProfile .main-container .column_2_2 hr {
    display: none;
}
.myProfile .main-container .column_2_2 .license-plates hr {
    display: block;
    margin: 1em 0;
}
.myProfile .main-container .column_1_2 h3, .myProfile .main-container .column_2_2 h3 {
    margin-bottom: 0.75em;
}
.profileBtn button.btn.btn-primary {
    float: none !important;
    margin: 0.25em 0;
    width: 100%;
}
.license-plates .btn.btn-primary {
    margin: 0.5em 0;
}

/*	---------------------------------------------------------------------- */
/* modal window */
.modal-dialog {
    margin: 1em auto;
}
.modal-content .modal-header {
    padding: 1em 3% 0.5em 3%;
}
.modal-content .modal-body {
    padding: 0.5em 3%;
}
.modal-footer {
    padding: 0.5em 3% 1em 3%;
}

/*	---------------------------------------------------------------------- */
/* 	Avaloq styling */
.login-mask .login-container .logo-container-login {
    margin: 0 auto 2em auto;
    max-width: 125px;
}
body.login-body .footer-container .wrapper {
    font-size: 1em;
}
.productBooking-calendar {
    margin-top: 1em;
}
.productBooking-calendar .calendar-navbar {
    padding: 0.5em;
}
.productBooking-calendar .table-fixed thead tr,
.productBooking-calendar .table-fixed tbody tr {
	height: 35px;
}
.productBooking-calendar .today {
	height: 25px;
    line-height: 25px;
    width: 25px;
}
.calenderlegend-container {
    padding: 1em 3%;
}
.calenderlegend-container .legend-container {
    float: none;
    line-height: 1.5em;
    margin: 3px 0;
    padding: 0 0 0 2.25em;
    width: 100%;
}
.calenderlegend-container .legend-container:before {
    height: 1.5em;
    width: 1.5em;
}
.productBooking-dates, .productBooking-fees, .productBooking-credentials {
    margin-top: 1em;
    padding-top: 1em;
}
.mainBooking-Button {
    padding: 0.5em 0 0 0;
}
.mainBooking-Button button.mainBook-Btn {
	display: block;
    float: none;
    margin: 0.5em 0 0 0;
    width: 100%;
}
.mainBooking-Button a.mainBack-Btn,
.activateBack-Button a.mainLogin-Btn {
    display: block;
    float: none;
    text-align: center;
}
.bookingInfo-container {
    margin-top: 1em;
}
.bookingInfo-container .bookingInfo-content {
    margin-bottom: 1.5em;
    padding: 1em 4%;
}
.bookingInfo-container .bookingInfo-content .bookingInfo-start, .bookingInfo-container .bookingInfo-content .bookingInfo-status {
    font-size: 1.25em;
    line-height: 1.4em;
}
.productBooking_full.booked .bookingInfo-container .bookingInfo-content .bookingInfo-right .bookingInfo-status .value,
.productBooking_full.cancelled .bookingInfo-container .bookingInfo-content .bookingInfo-right .bookingInfo-status .value {
    font-size: 0.9em;
    padding: 0 1em;
} 
.bookingInfo-container .bookingInfo-content .bookingInfo-right {
    margin-top: 0.5em;
}
.productBooking_full.booked.today .bookingInfo-container .bookingInfo-content:before {
	height: 34px;
    line-height: 34px;
    right: 0.25em;
    top: 0.25em; 
    width: 34px;
}
.bookingDetails-container .details-row {
    padding-left: 0;
    padding-right: 0;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap; 
}
.bookingDetails-container .details-row .details-left, .bookingDetails-container .details-row .details-right {
    width: 50%;
}

.booking-confirmation {
	margin: 1.2em auto;
    padding: 1em;
}
.confirmation-dates .dates-row.total {
    padding: 0;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
}

.button-container {
    padding-top: 0.5em;
}
.button-container button.btn,
.button-container a.btn,
.login-container input.login {
    float: none !important;
    margin: 0.25em 0 !important;
    width: 100%;
}
.button-container a.btn.close {
    height: 34px;
    line-height: 34px;
    box-sizing: border-box;
    text-align: center;
}
.bookingDetail-cancelBooking {
    margin-top: 1em;
}

/*  ---------------------------------------------------------------------- */ 
/*  footer  */
.footer-content .row {
    margin: 0;
}
.footer-content .row .column-6, .footer-content .row .column-3 {
    float: none;
    margin: 0;
    width: 100%;
}
.footer-content ul.footer-links {
    margin: 1em 0;
}
.footer-content ul.footer-links li {
    display: inline-block;
    margin-right: 1em;
}

}

@media only screen and (max-width: 480px) {

.compactBooking_timePicker .duration, .startTime_container .duration {
    width: 20%;
}
.timeunit_container input, .startTime_container input, .startTime_container input {
    width: 50%;
    margin: 0 5%;
}
.compactBooking_category ul.dropdown-menu, .compactBooking_subCategory ul.dropdown-menu, .compactBooking_location ul.dropdown-menu {
    width: 90%;
}
.compactBooking_timePicker .duration a, .startTime_container .duration a {
    width: 100%;
}


}

/*	---------------------------------------------------------------------- */
/* retina display graphics */
/*	---------------------------------------------------------------------- */
@media only screen and (min-width: 480px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {

}

/*	---------------------------------------------------------------------- */
/* 	helper classes */
/*	---------------------------------------------------------------------- */
.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }

/*	---------------------------------------------------------------------- */
/* 	print help */
/*	---------------------------------------------------------------------- */
@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}