<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*------------------------------------*\
    RESET
\*------------------------------------*/
/**
 * Einfaches Reset. Kein reset.css da
 * es ansonsten Einfluss auf die Seite haben kÃ¶nnte
 */

.bn--request * {
    font-family: inherit;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    *behavior: url(../../boxsizing.htc);
}

.ui-datepicker {
    min-width: 14em;
}


/*------------------------------------*\
    CUSTOM FORM STYLES
\*------------------------------------*/
/**
 * Keine Ã„nderungen in dieser Datei vornehmen!!
 * Projektspezifische style.css fÃ¼r Anpassungen verwenden.
 * BEM Syntax fÃ¼r Scope in CSS http://csswizardry.com/2013/05/scope-in-css/
 */

.bn--request {
    max-width: 610px;
    line-height: 1.5;
    padding: 0 10px;
}

.bn--request input,
.bn--request select,
.bn--request textarea {
    padding: 6px;
    margin-right: 5px;
    background: #FFF;
    border: 1px solid #e1e1e1;
    outline: none;
}

.bn--request input:focus,
.bn--request select:focus,
.bn--request textarea:focus {
    border-color: #1f8dd6;
    -webkit-box-shadow:  0px 0px 3px 1px rgba(229, 241, 250, 1);
    box-shadow:  0px 0px 3px 1px rgba(229, 241, 250, 1);
}

.bn--request label {
    display: inline-block;
    vertical-align: top;
    width: 130px;
    padding-right: 10px;
}

.bn--request select {
    max-width: 250px;
    min-width: 60px;
}

.bn--request input {
    width: 250px;
}

.bn--request .tiny input {
    width: 100px;
}

.bn--request .small input {
    width: 140px;
}

.bn--request textarea {
    width: 396px;
    height: 100px;
}

.bn--request input[type=checkbox] {
    width: auto;
    border: 0;
    background: transparent;
    padding: 0;
}

.bn--request .bn__block {
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #e1e1e1;
}

.bn--request .bn__icon {
    background: url('../img/formsprite.png') no-repeat;
    display: inline-block;
    vertical-align: middle;
}

.bn--request .required:after {
    content: "*";
}

.bn--request .span,
.bn--request .error {
    display: none;
}

.bn--request .facebook--login {
    position: absolute;
    right: 0;
    z-index: 1;
}

.bn--request .facebook--login a:hover {
    text-decoration: none;
}

.bn--request .facebook--login span {
    display: inline-block;
    cursor: pointer;
}

.bn--request .facebook--login .bn__icon {
    background-position: 0 -55px;
    width: 24px;
    height: 24px;
}

.bn--request .facebook--login .bn__icon + span {
    background: #3a5897;
    vertical-align: middle;
    margin-left: 1px;
    -webkit-border-radius: 0px 2px 2px 0px;
    border-radius: 0px 2px 2px 0px;
    color: #FFF;
    font-size: 12px;
    line-height: 24px;
    padding: 0 10px;
}

.bn--request .facebook--login.bn__disabled span {
    cursor: default;
}


.bn--request .date .tiny {
    float: left;
    margin-right: 40px;
    position: relative;
}

.bn--request .addAltDate,
.bn--request .removeAltDate {
    line-height: 2;
}

.bn--request .bn__icon.calendar {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.bn--request__room {
    position: relative;
    margin-top: 20px;
    padding: 10px;
}

.bn--request__room:nth-child(odd),
.lt-ie9 .bn--request__room.odd {
    background: #f3f3f3;
}

.bn--request__room:first-child {
    margin: 0;
}

.bn--request__room:first-child .removeRoom {
    display: none;
}

.bn--request__room .removeRoom {
    position: absolute;
    right: 10px;
    top: 10px;
}

.bn--request__room .bn__icon.remove {
    background-position: 0 -22px;
    width: 10px;
    height: 11px;
}

.bn--request .bn__btn {
    background: #4da1dd;
    border: 0;
    padding: 7px 10px;
    color: #FFF;
    font-size: 13px;
    margin: 10px 0;
}

.bn--request .submit button {
    padding: 10px 20px;
    display: block;
}

/*
Ladeanimation beim Abschicken des Formulars
Gif muss neu generiert werden wenn Farbe des Buttons geÃ¤ndert wird
http://loadinggif.com/


.bn--request .submit button.submitted {
    background-image: url('../img/loading.gif');
    background-repeat: no-repeat;
    background-position: 3px 50%;
}
*/


/*------------------------------------*\
    Fehlermeldungen
\*------------------------------------*/

.bn--request .notvalid {
    border: 1px solid #640000;
    background: #FF9999;
    color: #640000;
}

.bn--request input[type="checkbox"].notvalid ~ .error,
.bn--request input[type="radio"].notvalid ~ .error {
    background: url('../img/formsprite.png') no-repeat 0 -36px;
    display: inline-block;
    width: 14px;
    height: 14px;
    vertical-align: top;
}

/*------------------------------------*\
    BN FORM GRID
\*------------------------------------*/
/**
 * Wird in jedem eHotelier Formular verwendet und sollte nicht verÃ¤ndert werden.
 * VerbesserungsvorschlÃ¤ge gerne willkommen.
 */

.bn__block {
    position: relative;
    padding: 10px 0;
}

.bn__row {
    position: relative;
    padding: 3px 0;
}

.bn__row:first-child {
    padding-top: 0;
}

.bn__col {
    position: relative;
    display: inline-block; /* muss inline el sein, sonst ie7 */
}

.bn__btn {
    display: inline-block;
    cursor: pointer;
}

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

.bn__clearfix:after {
    clear: both;
}

.bn__clearfix {
    *zoom: 1;
}

.bn__hidden {
    display: none;
}

.bn__disabled {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
    opacity: 0.6;
}


/*------------------------------------*\
    MEDIA QUERIES
\*------------------------------------*/

@media only screen and (max-width: 470px) {
    .bn__row,
    .bn__row input,
    .bn__row select,
    .bn__row textarea,
    .bn__row label,
    .bn__row .tiny,
    .bn__row .tiny input,
    .bn__row .tiny select,
    .bn__row .tiny textarea,
    .bn__row .tiny label {
        display: block;
        width: 100%;
        max-width: none;
        float: none;
        margin: 0;
    }

    .bn--request .calendar {
        position: absolute;
        right: 5%;
        top: 50%;
    }

    .bn--request .facebook--login {
        position: relative;
    }

    /* http://stackoverflow.com/questions/6483425/prevent-iphone-from-zooming-in-on-select-in-web-app */
    .bn--request select:focus, .bn--request textarea:focus, .bn--request input:focus {
        font-size: 16px;
    }
}
</pre></body></html>