/**
 * SFD 2015
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2015 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage forms
 * @author     degener
 * @since      07.10.2015
 * @version    $Id: forms.css 1249 2016-09-05 08:49:53Z oswald $
 **/
/*  =========================================================
    0. global settings
  1. global search
  2. accommodation search
  3. footer teaser newsletter
  4. filter
========================================================== */
/*  =========================================================
    0. global settings
========================================================== */
@media screen {
  form,
  fieldset,
  legend,
  .formRow {
    width: 100%;
    float: left;
  }
  form.formFullsize {
    padding: 24px;
  }
  form.noMargin {
    margin: 0;
  }
  form .left {
    float: left;
    margin: 0;
  }
  form .right {
    float: right;
    margin: 0;
  }
  form .formBlock {
    width: 45%;
  }
  form .formCol {
    width: 48%;
  }
  form .formCol.enumeration {
    width: auto;
    float: left;
    margin-right: 10px;
  }
  form .formCol.zip {
    width: 18%;
  }
  form .formCol.city {
    width: 78%;
  }
  form .formRow {
    width: 100%;
    float: left;
    margin-bottom: 10px;
  }
  form .formRow.center {
    text-align: center;
  }
  form .formRow.marginTop {
    margin-top: 29px !important;
  }
  form .asterisk {
    font-family: 'Neutra Demi';
    color: #f01414;
    cursor: help;
  }
  form acronym {
    font-family: 'Neutra Demi';
    color: #f01414;
    cursor: help;
  }
  form .hint {
    font-size: 1rem;
    color: #f01414;
    margin: 30px 0;
  }
  fieldset.borderBottom {
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #d3d3d3;
  }
  /* label */
  label {
    float: left;
    font-size: 1.375rem;
  }
  label.check {
    position: relative;
    padding: 7px 0;
    margin-left: 0px;
  }
  .globalSearch label.check {
    padding: 7px;
  }
  label.beside {
    margin-top: 12px;
  }
  .labelStyle {
    font-size: 1.375rem;
  }
  /* input/select/textarea */
  input[type="text"]:not(.formTravelDate),
  input[type="tel"],
  input[type="email"],
  textarea,
  select {
    width: 100%;
    height: 46px;
    float: left;
    font-size: 1.375rem;
    background-color: #fff;
    border: 1px solid #bbb;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding-left: 10px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  #contactForm_departure,
  #contactForm_arrival {
    width: 102%;
    padding-left: 5px;
  }
  input[type="text"]:hover,
  input[type="tel"]:hover,
  input[type="email"]:hover,
  textarea:hover,
  select:hover,
  input[type="text"]:focus,
  input[type="tel"]:focus,
  input[type="email"]:focus,
  textarea:focus,
  select:focus {
    border-color: #5e5e5e;
    -webkit-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.2);
  }
  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #ffffff url(/portal/assets/images/environment/arrow_select.svg) no-repeat 97% 50%;
  }
  select option {
    padding-left: 10px;
  }
  /* hide browser-styling (arrow) in IE10 */
  select::-ms-expand {
    display: none;
  }
  textarea {
    height: 370px;
    padding: 10px;
    margin-bottom: 30px;
  }
  textarea.noBottom {
    margin-bottom: 0;
  }
  /* input modifications */
  input[type="text"].date {
    background: #ffffff url(/portal/assets/images/environment/calendar_input.svg) no-repeat 97% 50%;
  }
  #accommodation_dateFrom,
  #accommodation_dateTo {
    font-size: 1.2rem;
  }
  input[type="text"]:disabled,
  [disabled] {
    background-color: #d3d3d3;
  }
  input.disabled {
    background-color: #d3d3d3 !important;
  }
  /* select modifications */
  select.amount {
    width: 116px;
  }
  /* checkbox/radio */
  input[type='checkbox'],
  input[type='checkbox']:checked,
  input[type='checkbox']:not(:checked),
  input[type='radio'],
  input[type='radio']:checked,
  input[type='radio']:not(:checked) {
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
    padding: 0;
    border: 0;
    margin: -1px;
    clip: rect(0 0 0 0);
  }
  input[type='checkbox']:checked + label::before,
  input[type='checkbox']:not(:checked) + label::before,
  input[type='radio']:checked + label::before,
  input[type='radio']:not(:checked) + label::before {
    content: ' ';
    width: 32px;
    height: 32px;
    float: left;
    margin-bottom: 5px;
    margin-right: 7px;
    border: 1px solid #bbb;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: white;
    -webkit-box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  }
  .globalSearch input[type='checkbox']:checked + label,
  .globalSearch input[type='checkbox']:not(:checked) + label {
    /* Style for "button" */
    height: 48px;
    background-color: rgba(120, 120, 120, 0.1);
    border: 1px solid rgba(120, 120, 120, 0.35);
    border-radius: 4px 5px 5px 4px;
    margin-right: 20px;
    margin-top: 10px;
  }
  .globalSearch input[type='checkbox']:not(:checked) + label:last-of-type {
    margin-right: 0px;
  }
  input[type=radio]:checked + label::before,
  input[type=radio]:not(:checked) + label::before {
    -webkit-border-radius: 30px;
    border-radius: 30px;
  }
  input[type='checkbox']:hover + label::before,
  input[type='checkbox']:focus + label::before,
  input[type='radio']:hover + label::before,
  input[type='radio']:focus + label::before {
    background: #ddd;
    -webkit-box-shadow: inset 0 0 0 3px white;
    box-shadow: inset 0 0 0 3px white;
  }
  input[type='checkbox']:checked + label::before {
    background: #ffffff url(/portal/assets/images/environment/checkmark.svg) no-repeat 50% 50%;
    -webkit-box-shadow: inset 0 0 0 3px white;
    box-shadow: inset 0 0 0 3px white;
  }
  input[type='radio']:checked + label::before {
    background: #4d680f;
    -webkit-box-shadow: inset 0 0 0 3px white;
    box-shadow: inset 0 0 0 3px white;
  }
  /* submitbutton */
  button[type="submit"] {
    min-height: 48px;
    display: inline-block;
    font-family: 'Neutra Demi';
    font-style: normal;
    font-size: 1.375rem;
    color: #fff;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    background-color: #e5112d;
    padding: 0 20px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin: 30px auto 0 auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  button[type="submit"]:hover,
  button[type="submit"]:active,
  button[type="submit"]:focus {
    background-color: #787878;
    -webkit-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.2);
  }
  /* captcha dummy */
  img.dummy {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 5px;
  }
  label.formerror,
  p.formerror,
  span.formerror {
    color: #f01414;
  }
  p.formerror,
  span.formerror {
    font-size: 1.375rem;
  }
  p.formerror.lotteryError {
    padding-top: 5%;
    text-align: left;
  }
  #lotteryForm input.formerror,
  input.formerror,
  textarea.formerror,
  div.formerror {
    border: 2px solid #f01414;
  }
  div.formerror.g-recaptcha {
    display: inline-block;
  }
  .captcha > .labelStyle {
    display: block;
    text-align: left;
  }
  .formRow > div.flexbox {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  div.flexbox > .flexItem {
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .name-cmsrecipient {
    display: none;
  }
  .formRow.privacy a.tooltipster {
    float: left;
    margin-left: 20px;
  }
  .formRow.floating_label > label:nth-of-type(2) {
    float: none;
  }
}
@media only screen and (max-width: 1200px) {
  form .formBlock {
    width: 48%;
  }
}
@media only screen and (max-width: 1150px) {
  label,
  .labelStyle,
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  textarea,
  select {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 1000px) {
  form .formBlock {
    width: 100%;
  }
  form .formBlock:last-child {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #d3d3d3;
  }
  form.request .formBlock:last-child {
    padding-top: 0;
    margin-top: 0;
    border-top: 0 none;
  }
  label,
  .labelStyle,
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  textarea,
  select {
    font-size: 1.375rem;
  }
  textarea {
    height: 100px;
  }
  button[type="submit"] {
    margin: 20px auto;
  }
}
@media only screen and (max-width: 580px) {
  form.formFullsize {
    padding: 24px 12px;
  }
  form .formCol {
    width: 100%;
  }
  form .formCol:first-child {
    margin-bottom: 10px;
  }
  form .formCol.zip,
  form .formCol.city {
    width: 100%;
  }
}
/*  =========================================================
    1. global search
========================================================== */
@media screen {
  #globalSearch {
    height: 82px;
    position: absolute;
    top: 55px;
    left: 138px;
    z-index: 10;
    background-color: #fff;
    -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  #globalSearch.hidden {
    width: 0;
  }
  #globalSearch.active {
    width: 685px;
  }
  #globalSearch input[type="text"] {
    width: 560px;
    height: 48px;
    color: #ababab;
    border-style: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    border-right: 1px solid #787878;
    margin: 17px 0 0 60px;
  }
  #globalSearch input[type="text"]:hover,
  #globalSearch input[type="text"]:active,
  #globalSearch input[type="text"]:focus {
    color: #787878;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .globalSearch button[type="submit"] {
    width: 48px;
    height: 48px;
    float: left;
    position: relative;
    color: #787878;
    background-color: #fff;
    -webkit-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
    margin-top: 17px;
  }
  #detailSearch button[type="submit"] {
    position: absolute;
    right: 13px;
    margin-top: 11px;
  }
  .globalSearch button[type="submit"]:hover,
  .globalSearch button[type="submit"]:active,
  .globalSearch button[type="submit"]:focus {
    color: #fff;
    background-color: #787878;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .globalSearch button[type="submit"]:before {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    content: '\e601';
    font-size: 2rem;
    vertical-align: middle;
  }
  #detailSearch input[type="text"] {
    margin-top: 10px;
    height: 50px;
  }
  #detailSearch input[type="text"]::before {
    font-family: 'iconset';
    content: '\e603';
    display: inline-block;
    position: absolute;
    top: 49%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 0.75rem;
  }
  #detailSearch label {
    line-height: 2rem;
  }
  #globalSearch:hover ::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #787878;
  }
  #globalSearch:hover :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #787878;
    opacity: 1;
  }
  #globalSearch:hover ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #787878;
    opacity: 1;
  }
  #globalSearch:hover :-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #787878;
  }
}
@media screen {
  /* sticky header */
  header.sticky #globalSearch {
    top: -2px;
    left: 220px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
@media only screen and (max-width: 1085px) {
  #globalSearch.active {
    width: 625px;
  }
  #globalSearch input[type="text"] {
    width: 510px;
  }
}
@media only screen and (max-width: 880px) {
  #globalSearch.active {
    width: 475px;
  }
  #globalSearch input[type="text"] {
    width: 360px;
  }
}
@media only screen and (max-width: 760px) {
  #globalSearch.hidden {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  #globalSearch.active,
  header.sticky #globalSearch.active {
    width: 100%;
    height: auto;
    top: 80px;
    left: 0;
    padding: 17px 0;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  #globalSearch fieldset {
    width: 96%;
    float: left;
    margin: 0 2%;
    padding: 0;
    border: 1px solid #bbb;
    -webkit-border-radius: 5px;
    border-radius: 5px;
  }
  #globalSearch input[type="text"] {
    border-right: 1px solid #787878;
    color: #ababab;
    float: left;
    font-size: 1.375rem;
    height: 48px;
    margin: 9px 0 9px 1%;
    width: 83%;
  }
  #globalSearch button[type="submit"] {
    background-color: #fff;
    color: #787878;
    display: table;
    float: left;
    height: 48px;
    margin: 9px 1% 9px 0;
    width: 10%;
  }
}
@media only screen and (max-width: 500px) {
  #globalSearch.active,
  header.sticky #globalSearch.active {
    top: 58px;
  }
}
/*  =========================================================
    2. accommodation search
========================================================== */
@media only screen and (max-height: 800px) {
  .headercontentWrapper > #accommodationSearch {
    height: 725px;
  }
}
@media only screen and (max-height: 750px) {
  .headercontentWrapper > #accommodationSearch {
    height: 685px;
  }
}
@media only screen and (max-height: 650px) {
  .headercontentWrapper > #accommodationSearch {
    height: 595px;
  }
}
@media only screen and (max-height: 600px) {
  .headercontentWrapper > #accommodationSearch {
    height: 535px;
  }
}
@media only screen and (max-height: 500px) {
  .headercontentWrapper > #accommodationSearch {
    height: 445px;
  }
}
@media only screen and (max-height: 400px) {
  .headercontentWrapper > #accommodationSearch {
    height: 345px;
  }
}
@media screen {
  /* global settings */
  #accommodationSearch {
    position: absolute;
    top: 139px;
    left: 95px;
    z-index: 10;
    background-color: #fff;
    -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
    height: 700px;
    overflow: hidden;
  }
  #accommodationSearch.hidden {
    width: 0;
    height: 0;
    padding: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  #accommodationSearch.active {
    width: 348px;
    padding: 24px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  /* form elements */
  #accommodationSearch legend {
    font-family: 'Crimson-Italic';
    font-size: 1.375rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    margin-bottom: 17px;
  }
  #accommodationSearch label {
    float: left;
    font-size: 1.375rem;
    margin-top: 13px;
  }
  #accommodationSearch label.small {
    font-size: 1.125rem;
    margin: 13px 0 2px 0;
  }
  #accommodationSearch select.destination {
    width: 100%;
  }
  #accommodationSearch button[type='submit'] {
    width: 100%;
    font-size: 1.25rem;
    margin: 10px 0 20px 0;
  }
  /* footer with contact-data */
  #accommodationSearch .contact {
    width: 100%;
    float: left;
    font-size: 1rem;
    text-align: left;
    line-height: 1.2rem;
    padding-top: 20px;
    border-top: 1px solid #e4e4e4;
    margin: 10px 0;
  }
  #accommodationSearch a.blank {
    float: left;
    font-size: 1rem;
    margin: 10px 0;
  }
  #accommodationSearch a.phone {
    color: #5e5e5e;
    cursor: default;
    margin: 10px 0;
  }
  #accommodationSearch a.phone > span {
    display: inline-block;
    font-size: 2rem;
    padding: 10px 10px 20px 10px;
  }
  #accommodationSearch a.underline {
    margin-left: -5px;
  }
  #ibeRequestForm fieldset {
    margin-bottom: 30px;
  }
  #ibeRequestForm fieldset:last-of-type {
    margin-bottom: 0;
  }
}
@media screen {
  /* sticky header */
  header.sticky #accommodationSearch {
    top: 70px;
    left: 144px;
  }
}
@media only screen and (max-width: 950px) {
  #bookingCalendar {
    display: none !important;
  }
}
@media only screen and (max-width: 760px) {
  #accommodationSearch,
  header.sticky #accommodationSearch {
    top: 70px;
    left: 0;
  }
}
@media only screen and (max-width: 600px) {
  #accommodationSearch.active {
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
@media only screen and (max-width: 500px) {
  #accommodationSearch,
  header.sticky #accommodationSearch {
    top: 58px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
@media only screen and (max-width: 380px) {
  #accommodationSearch.active,
  header.sticky #accommodationSearch.active {
    width: 100%;
    font-size: 90%;
  }
  #accommodationSearch legend {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  #accommodationSearch .formCol,
  #accommodationSearch .formRow {
    margin: 5px 0;
  }
  #accommodationSearch label,
  #accommodationSearch input[type="text"],
  #accommodationSearch select {
    font-size: 1.125rem;
  }
}
/*  =========================================================
    3. teaser footer newsletter
========================================================== */
@media screen {
  .newsletterTeaser a {
    width: 100%;
    height: 46px;
    float: right;
    font-size: 1rem;
    letter-spacing: 0.08rem;
    background-color: #787878;
    margin: 14px 0 0 0;
    text-transform: uppercase;
    padding: 6px;
    text-align: center;
    color: #fff;
    font-family: 'Neutra Demi';
    font-style: normal;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .newsletterTeaser a:hover,
  .newsletterTeaser a:focus,
  .newsletterTeaser a:active {
    background-color: #f01414;
    -webkit-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.2);
  }
  .newsletterTeaser a::before {
    content: "\e904";
    display: inline-block;
    font-size: 24px;
    position: relative;
    top: 5px;
    left: 0;
    margin-right: 10px;
  }
  #privacy-tooltip-content {
    color: #fff;
  }
  /**/
}
/*  =========================================================
    4. filter
========================================================== */
@media screen {
  #filterSection {
    width: 320px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -410px;
    z-index: 40000;
    background: #f7f7f7 url(/portal/assets/images/environment/shadow_navi.png) repeat-y 100% 0;
  }
  #filterSection.overlay::after {
    content: '';
    width: 100vw;
    height: 100vh;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 320px;
    z-index: 40001;
    background-color: rgba(0, 0, 0, 0);
  }
  #filterSection.nano {
    height: 98vh;
  }
  /* close button */
  #filterSection a.closeFilter {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 11000;
    background-color: #f01414;
  }
  #filterSection a.closeFilter::before {
    content: '\e800';
    font-size: 32px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
  /* header */
  #filterSection h2 {
    width: 100%;
    min-height: 48px;
    float: left;
    font-family: 'Crimson-Italic';
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: 0.08rem;
    text-align: left;
    background-color: #787878;
    padding: 14px 48px 14px 24px;
  }
  #filterSection h3 {
    letter-spacing: 0.1rem;
    width: 100%;
    float: left;
    font-family: Crimson-Italic;
    font-size: .875rem;
    letter-spacing: .1rem;
    text-align: left;
    text-transform: uppercase;
    padding: 30px 0 0 24px;
  }
  #filterSection .slidingContent,
  #filterSection .nonSlidingContent {
    width: 100%;
    float: left;
    padding: 24px 24px 0 24px;
    display: none;
  }
  #filterSection .nonSlidingContent {
    display: inline-block;
    padding-right: 24px;
  }
  #filterSection fieldset {
    border-bottom: 1px solid #dedede;
    padding: 20px 0;
  }
  #filterSection fieldset legend {
    float: left;
    font-family: 'Neutra Demi';
    font-style: normal;
    font-size: 1.25rem;
    letter-spacing: 0.08rem;
    text-align: left;
    text-transform: uppercase;
    padding: 0 0 0 24px;
  }
  #filterSection fieldset legend.icon {
    cursor: pointer;
  }
  #filterSection fieldset legend.icon::after {
    content: '\e901';
    position: relative;
    top: 2px;
    margin-left: 10px;
  }
  #filterSection fieldset legend.icon.active::after {
    content: '\e900';
  }
  #filterSection fieldset span.demand {
    font-size: 1.25rem;
    color: #fff;
    padding: 5px 10px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
  }
  #filterSection fieldset span.demand.easy {
    background-color: #488ccb;
  }
  #filterSection fieldset span.demand.moderate {
    background-color: #f01414;
  }
  #filterSection fieldset span.demand.hard {
    background-color: #000;
  }
  #filterSection fieldset .formCol.left {
    width: 55%;
    background: transparent url(/portal/assets/images/environment/arrow_minmax.svg) no-repeat 100% 5px;
  }
  #filterSection fieldset .formCol.left.blank {
    background: none;
  }
  #filterSection fieldset .formCol.left.date {
    width: 49%;
    background-image: none;
  }
  #filterSection fieldset .formCol.right {
    width: 43%;
  }
  #filterSection fieldset .formCol.right.date {
    width: 49%;
  }
  #filterSection fieldset label.minmax {
    font-size: 1rem;
    text-align: left;
    margin-top: 5px;
  }
  #filterSection fieldset select.minmax {
    width: 105px;
  }
  #filterSection fieldset input[type="text"].fullsize,
  #filterSection fieldset select.fullsize {
    width: 95%;
  }
  #filterSection fieldset input[type="text"].search {
    background: #ffffff url(/portal/assets/images/environment/magnifier.svg) no-repeat 98% 50%;
  }
  #filterSection fieldset button[type="submit"] {
    font-size: 1.1rem;
    letter-spacing: .1rem;
  }
  label.small {
    font-size: 1rem;
  }
  #accommodationErrorTooltip > a.closebutton,
  .mp-level > a.closebutton {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #f01414;
    right: -13%;
    visibility: hidden;
    z-index: 30;
    cursor: pointer;
  }
  #accommodationErrorTooltip > a.closebutton {
    right: 0px;
    visibility: visible;
  }
  #accommodationErrorTooltip > a.closebutton::before,
  .mp-level > a.closebutton::before {
    content: '\e800';
    font-size: 32px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
  #accommodationErrorTooltip > a.closebutton::hover,
  .mp-level > a.closebutton:hover {
    cursor: pointer;
  }
}
@media only screen and (max-width: 400px) {
  .mp-level > a.closebutton {
    right: -20%;
  }
}
/*  =========================================================
    5. request form
========================================================== */
@media screen {
  .request {
    margin: 10px 0;
  }
  .formWrapper {
    width: 100%;
    float: left;
    position: relative;
    display: none;
  }
  /* close button */
  .formWrapper > .closeForm {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: absolute;
    top: 40px;
    right: 20px;
  }
  .formWrapper > .closeForm::before {
    content: '\e800';
    font-size: 24px;
    color: #787878;
    display: inline-block;
  }
  .closeMessage {
    top: 0px !important;
  }
  .request h1 {
    font-size: 1.875rem;
    margin: 0 0 30px 0;
  }
  .request p.title {
    font-size: 1.75rem;
    margin: 0 0 20px 0;
  }
  .request legend {
    width: 90%;
    float: left;
    font-family: 'Neutra Demi';
    font-style: normal;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .request .hint {
    width: 100%;
    float: left;
    margin-top: 0;
    text-align: right;
  }
  .request .labelStyle {
    width: 100%;
    float: left;
    font-size: 1.375rem;
    line-height: 1.5rem;
    text-align: left;
  }
  .request .g-recaptcha {
    float: right;
  }
  .request .captcha .labelStyle {
    float: right;
    text-align: right;
  }
  .request select.accommodations {
    width: 100%;
  }
  .request .formCol_three-quarter {
    width: 65%;
  }
  .request .formCol_one-quarter {
    width: 30%;
  }
  .request input[type="text"].compact:not(.formTravelDate),
  .request input[type="tel"].compact,
  .request input[type="email"].compact,
  .request textarea.compact,
  .request select.compact {
    width: 65%;
  }
  .request label.compact {
    width: 35%;
    line-height: 46px;
  }
  .request .formCol_auto {
    width: auto;
    float: left;
    max-width: 30%;
    margin-right: 5%;
  }
  .request .formCol_auto label {
    width: 100%;
  }
  .request .formCol_auto:last-of-type {
    margin-right: 0;
  }
  .request .formCol_one-third {
    width: auto;
    float: left;
    width: 30%;
    margin-right: 5%;
  }
  .request .formCol_one-third:last-of-type {
    margin-right: 0;
  }
  .request .formCol_one-half {
    width: 47.5%;
    margin-right: 5%;
  }
  .request .formCol_one-half label {
    width: 100%;
  }
  .request .formCol_one-half:last-of-type {
    margin-right: 0;
  }
  .request .formCol_full-width {
    width: 100%;
    margin-right: 0;
  }
  .request .formCol_full-width label:not(.compact) {
    width: 100%;
  }
  .request textarea {
    height: 190px;
  }
  .request .buttonstyle {
    padding-left: 40px;
  }
  .buttonstyle.addRoom,
  .buttonstyle.deleteRoom {
    width: auto;
    float: none;
  }
  .request .buttonstyle.addRoom::after,
  .request .buttonstyle.deleteRoom::after {
    content: '';
    font-size: 0;
  }
  .request .buttonstyle.addRoom::before,
  .request .buttonstyle.deleteRoom::before {
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .request .buttonstyle.addRoom::before {
    content: '\e913';
  }
  .request .buttonstyle.deleteRoom::before {
    content: '\e912';
  }
  .request button[type="submit"] {
    float: right;
  }
  #formStatus {
    padding: 50px;
  }
}
@media only screen and (max-width: 1460px) {
  .request .formCol_three-quarter {
    width: 55%;
  }
  .request .formCol_one-quarter {
    width: 43%;
  }
}
@media only screen and (max-width: 1080px) {
  .request .formCol_three-quarter,
  .request .formCol_one-quarter {
    width: 100%;
  }
  .request .formCol_one-quarter {
    margin-top: 10px;
  }
  .request .formCol_one-quarter label {
    margin: 12px 10px 0 0;
  }
}
@media only screen and (max-width: 1000px) {
  .request input[type="text"].compact:not(.formTravelDate),
  .request input[type="tel"].compact,
  .request input[type="email"].compact,
  .request textarea.compact,
  .request select.compact {
    width: 100%;
  }
  .request label.compact {
    width: auto;
    line-height: inherit;
  }
}
@media only screen and (max-width: 600px) {
  .request .formCol_auto {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
  .request .formCol_auto:last-of-type {
    margin-bottom: 0;
  }
  .request .formCol_auto label {
    width: 100%;
  }
  .request .formCol_one-third {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
  .request .formCol_one-third:last-of-type {
    margin-bottom: 0;
  }
  .request .formCol_one-third label {
    width: 100%;
  }
  .request .formCol_one-half,
  .request .formCol_one-half label {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .request legend {
    font-size: 1.25rem;
  }
  .request .g-recaptcha {
    float: none;
    transform: scale(0.84);
    -webkit-transform: scale(0.84);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
  .request fieldset.captcha .formRow {
    max-width: 82.5%;
  }
  .request fieldset.captcha .hint,
  .request fieldset.captcha .labelStyle {
    text-align: left;
  }
}
/*  =========================================================
    6. routing form, accommodations
========================================================== */
@media screen {
  #routing {
    width: 65%;
    float: left;
    margin-top: 24px;
  }
  #routing legend {
    width: 100%;
    float: left;
    font-family: 'Neutra Demi';
    font-style: normal;
    font-size: 1.25rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    margin: 0 0 10px 0;
  }
  #routing p {
    width: 100%;
    float: left;
    font-size: 1.25rem;
    line-height: 1.3rem;
  }
  #routing label.routing {
    margin: 12px 10px 0 0;
  }
  #routing input[type="text"].routing {
    width: 50%;
    margin: 0 10px 0 0;
  }
  #routing button[type="submit"].routing {
    min-height: 46px;
    margin: 0;
  }
}
@media only screen and (max-width: 1350px) {
  button[type="submit"].routing {
    font-size: 1.25rem;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 1240px) {
  label.routing {
    width: 100%;
    margin: 0 0 5px 0;
  }
}
@media only screen and (max-width: 900px) {
  #routing {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 800px) {
  #routing legend,
  #routing p {
    margin: 0 0 5px 0;
  }
  #routing input[type="text"].routing {
    width: 100%;
    margin: 0;
  }
  #routing button[type="submit"].routing {
    float: right;
    margin: 10px 0;
  }
}
@media only screen and (max-width: 500px) {
  #routing p,
  #routing label.routing {
    font-size: 1rem;
    line-height: 1.3rem;
    padding-top: 0;
  }
  #routing label.routing {
    margin: 0;
  }
}
@media only screen and (max-width: 400px) {
  #routing button[type="submit"].routing {
    font-size: 1rem;
  }
}
/*  =========================================================
    7. booking form, accommodations
========================================================== */
@media screen {
  form#booking > h2 {
    width: 100%;
    float: left;
    text-align: left;
    font-family: 'Neutra Demi';
    font-style: normal;
    font-size: 1.875rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
  button.buttonstyle.checkout {
    padding-left: 10px;
  }
  button.buttonstyle.checkout::before {
    content: '\e938';
    font-size: 1.5rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  button.buttonstyle.checkout::after {
    content: '';
  }
  button.disabled {
    pointer-events: none;
    background-color: #787878 !important;
  }
}
@media only screen and (max-width: 800px) {
  form#booking > h2 {
    font-size: 1.5rem;
    letter-spacing: 0.12rem;
  }
}
@media only screen and (max-width: 480px) {
  form#booking > h2 {
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
    margin-bottom: 20px;
  }
}
/*  =========================================================
    8. map search
========================================================== */
@media screen {
  #mapSearch {
    width: 348px;
    float: left;
    background-color: #fff;
    padding: 5px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  }
  #mapSearch legend span {
    width: 1px;
    height: 1px;
    position: absolute;
    padding: 0;
    margin: -1px;
    border: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
  }
  #mapSearch label {
    width: 40px;
    height: 40px;
    float: left;
    position: relative;
  }
  #mapSearch label::before {
    content: '\e603';
    font-size: 2rem;
    color: #787878;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
  #mapSearch input[type="text"] {
    width: 255px;
    height: 40px;
    float: left;
    border-style: none;
    border-right: 2px solid #787878;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  #mapSearch button[type="submit"] {
    width: 40px;
    min-height: 40px;
    float: left;
    background-color: #fff;
    position: relative;
    margin: 0 0 0 0;
    padding: 0 0 0 10px;
    -webkit-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  #mapSearch button[type="submit"]::before {
    content: '\e601';
    font-size: 2rem;
    color: #787878;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
  #mapSearch button[type="submit"]:hover,
  #mapSearch button[type="submit"]:focus,
  #mapSearch button[type="submit"]:active {
    background-color: #f01414;
  }
  #mapSearch button[type="submit"]:hover::before,
  #mapSearch button[type="submit"]:focus::before,
  #mapSearch button[type="submit"]:active::before {
    color: #fff;
  }
}
@media only screen and (max-width: 900px) {
  #mapSearch {
    width: 50px;
    height: 50px;
    margin: 6px 0 0 12px;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  #mapSearch label {
    display: none;
  }
  #mapSearch legend {
    width: 50px;
    height: 50px;
    position: relative;
    margin-left: 60px;
    cursor: pointer;
    color: #787878;
    background-color: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  #mapSearch legend:hover {
    color: #fff;
    background-color: #787878;
  }
  #mapSearch legend::before {
    content: '\e603';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
  #mapSearch .mapFormWrapper {
    width: 100vw;
    height: 0;
    display: inline-block;
    position: absolute;
    top: 56px;
    left: -2px;
    background-color: #fff;
    padding: 0 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  #mapSearch:hover .mapFormWrapper {
    height: auto;
    padding: 10px;
    -webkit-box-shadow: 0 3px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 1px 1px rgba(0, 0, 0, 0.1);
  }
  #mapSearch input[type="text"] {
    width: -webkit-calc(50%);
    width: calc(50%);
    border: 1px solid #ebebeb;
    -webkit-border-radius: 3px;
    border-radius: 3px;
  }
  #mapSearch button[type="submit"] {
    margin: 0 0 0 10px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
  }
}
@media screen {
  #newsletterTeaserFormSpecialized legend {
    font-family: 'Crimson-Italic', Times, serif;
    font-style: italic;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    margin-bottom: 12px;
  }
  .checkNewsletter {
    padding-right: 2%;
  }
  .checkNewsletter:before {
    margin-top: -3px;
  }
  .newsletterCheckbox {
    padding-right: 15px;
  }
  form.formPersons {
    font-weight: normal;
    font-size: 16px;
    color: #787878;
    font-family: 'Neutra Book', Arial, Helvetica, sans-serif;
  }
  input.formTravelDate {
    width: 100%;
    height: 46px;
    font-size: 20px;
    float: left;
    font-weight: normal;
    color: #787878;
    background-color: #fff;
    font-family: 'Neutra Book', Arial, Helvetica, sans-serif;
    border: 1px solid #bbb;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding-left: 10px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  select.formPeople {
    font-weight: normal;
    font-family: 'Neutra Book', Arial, Helvetica, sans-serif;
    font-size: 22px;
  }
}
@media screen {
  form #filter_form select,
  form #filter_form input {
    font-size: 1.375rem;
    font-family: 'Neutra Book', Arial, Helvetica, sans-serif;
    font-weight: normal;
    color: #787878;
    text-decoration: none;
    text-overflow: ellipsis;
  }
  form #request_form select,
  form #request_form input,
  form #request_form textarea {
    font-size: 1.375rem;
    font-family: 'Neutra Book', Arial, Helvetica, sans-serif;
    font-weight: normal;
    color: #787878;
    text-decoration: none;
    text-overflow: ellipsis;
  }
  #lotteryForm legend {
    font-family: 'Crimson-Italic', Times, serif;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    margin-bottom: 12px;
    padding-top: 30px;
  }
  .lotteryQuestion {
    font-size: 1.375rem;
    font-weight: normal;
    color: #787878;
    text-decoration: none;
    text-overflow: ellipsis;
  }
  .lotteryQuestion > p {
    font-weight: bold;
  }
  p.lotteryDescription {
    font-family: 'Neutra Book', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6rem;
    text-decoration: none;
    text-align: left;
    font-weight: normal;
  }
  .col-8.bodycopy.center > h2#lotteryTitle {
    font-family: 'Crimson-Italic', Times, serif;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    margin-bottom: 12px;
  }
  .lotteryConsent {
    padding-top: 15px;
  }
}
