/* ex lux styles */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: 0;
}
input::-moz-focus-inner { border: 0; }
.unselectable { cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }


.less-table {
    width: 100%;
    margin-bottom: 1rem;
    color: #2f3037;
    border-collapse: collapse;
}
.less-table td, .less-table th {
    padding: 8px;
    vertical-align: top;
    border-top: 1px solid #e3e6f0;
}
.table-slim td, .table-table th { padding: 4px; }

input, button, select, option, textarea {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
.inblock { display: inline-block; }
.vatop { vertical-align: top; }
.formblock, .formblock-half, .formblock-quarter, .formblock-quarter3, .formblock-inlineblock {
    display: inline-block;
    font-size: 13px;
    min-width: 110px;
}
.formblock {
    width: 100%;
}
.formblock-half {
    padding: 0 16px;
    width: calc(50% - 32px);
}
.formblock-quarter {
    padding: 0 16px;
    width: calc(25% - 32px);
}
.formblock-quarter3 {
    padding: 0 16px;
    width: calc(75% - 32px);
}
.formblock-inlineblock {
    padding: 0 16px;
}
.formblock label, .formblock-half label {
    width: 100%;
    display: inline-block;
}
.form-controll {
    width: 100%; width: -moz-available; width: -webkit-fill-available;
    background-color: white;
    border: 1px solid gray;
    height: 28px;
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 14px;
}
textarea.form-controll {
    min-height: 28px;
    font-size: 13px;
    padding: 6px 6px;
    resize: vertical;
    height: 56px;
}
button.form-controll {
    cursor: pointer;
}
select.form-controll:not([multiple]) {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center no-repeat #fff;
    background-size: 8px 10px;
    padding: 3px 1.75rem 3px 3px;
    color: #495057;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-controll:disabled { background-color: #00000030 !important; }
.alert {
    margin: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.cln-button {
    background: white;
    border: 1px solid gray;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
}
.aktiv-button {
    display: block;
    padding: 4px 8px;
    border: 1px solid gray;
    border-radius: 6px;
    cursor: pointer;
}
/* animated spoiler */
input[id^="spoiler"] { display: none; }
input[id^="spoiler"] + label {
    display: block;
    width: auto;
    margin: 4px;
    padding: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all .6s;

    color: #333;
    background: #ccc;
    text-decoration: underline;
}
input[id^="spoiler"]:checked + label {
    transition: all .6s;
    background: none;
}
input[id^="spoiler"] ~ .spoiler-content {
    height: auto;
    opacity: 1;
    padding: 10px; 
    transition: all .6s;
    border: 1px solid gray;
    border-radius: 6px;
}
input[id^="spoiler"]:checked + label + .spoiler-content {
    width: 95%;
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: all .6s;
}
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border: 0;
    cursor: pointer;
}
.btn:disabled { cursor: not-allowed; background: #ccc; color: gray }
.btn-primary { background: #007bff; color: white; }
.btn-bmr {
    display: block;
    width: initial;
    margin-left: auto;
}
.btn-cta {
    display: block;
    margin-left: auto;
    background: #9EC536;
    border: none;
    padding: 9px 15px;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}


/* Higher Priority Classes*/
.m-auto { margin: auto; }
.m-1 { margin: 8px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mb-1 { margin-bottom: 8px; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.ml-1 { margin-left: 8px; }
.mr-1 { margin-right: 8px; }

.p-1 { padding: 8px; }
.pt-1 { padding-top: 8px; }
.pb-1 { padding-bottom: 8px; }
.pl-1 { padding-left: 8px; }
.pr-1 { padding-right: 8px; }
.p-2 { padding: 16px; }
.pt-2 { padding-top: 16px; }
.pb-2 { padding-bottom: 16px; }
.pl-2 { padding-left: 16px; }
.pr-2 { padding-right: 16px; }

.bbdg-1 { border-bottom: 1px dashed gray; }
.w-ini { width: initial !important; }
.cursor-click { cursor: pointer; }

@media (max-width: 714px) {
    .formblock-half {
        width: calc(100% - 32px);
    }
    .formblock-quarter {
        width: calc(50% - 32px);
    }
    .d-d { display: none !important; }
}

@media (min-width: 715px) {
    .d-m { display: none !important; }
}
/* ex lux styles END*/

.text-btn {
    text-decoration: underline;
    cursor: pointer;
}
h2.title {
    margin-bottom: 6px;
}
#hotelanfrage {
    position: relative; 
    width:100%; max-width: 1000px; 
    height: fit-content; height: -moz-fit-content; 
    color: white;
    margin: auto;
    padding-top: 4px;
}
#hotelanfrage_header {
    width: 100%;
    padding: 10px;
    margin: 0;
    background: #e71;
    color: white;
}
#hotelanfrage_title2 {
    padding: 20px 0 10px 16px;
}
.hotelanfrage_link, .hotelanfrage_link:link, .hotelanfrage_link:visited, .hotelanfrage_link:hover, .hotelanfrage_link:active {
    color: white; cursor: pointer; text-decoration: underline;
}
.datatable, .datatable tr, .datatable td, .datatable th {
    color: black;
}
.datatable {
    width: 100%;
}
#picture_overlay {
    position: fixed; display: none; top: 0; left: 0; right: 0; bottom: 0; width:100%; height: 100%; z-index: 1010; background-color:rgba(0, 0, 0, 0.5);
}
#picture_overlay_innercontainer {
    padding: 20px; margin: auto;
    width: 520px; max-width: 95%;
    height: 520px; max-height: 90%; 
    background-color: white; 
}
@media (min-height: 720px) {
    #picture_overlay_innercontainer {
        height: 700px; 
    }
}
#picture_overlay_text { margin-bottom: 20px; }
#picture_overlay_body {
    width: 100%; max-width: 100%;
    max-height: calc(100% - 32px);
    overflow-y: auto;
}
#picture_overlay_img_container {
    position: relative;
    margin: auto;
    background: gray;
}
#picture_overlay_pre, #picture_overlay_next {
    display: table-cell;
    vertical-align: middle;
    position: absolute;
    top: 0; bottom: 0;
    height: 100%;
    width: 48px;
    font-size: 60px;
    cursor: pointer;
    -webkit-transition: opacity 1s ease-in;
       -moz-transition: opacity 1s ease-in;
        -ms-transition: opacity 1s ease-in;
         -o-transition: opacity 1s ease-in;
            transition: opacity 1s ease-in;
    opacity: 0.6;
}
#picture_overlay_pre:hover, #picture_overlay_next:hover,
  #picture_overlay_pre:active, #picture_overlay_next:active {
    background: rgba(255, 128, 0, 0.6);
    color: white;
    opacity: 1;
}
#picture_overlay_pre { left: 0; }
#picture_overlay_next { right: 0; }
#picture_overlay_pre i, #picture_overlay_next i {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%);
    margin: 0;
}
#picture_overlay_pre i { left: 6px; }
#picture_overlay_next i { right: 6px; }
.picture_overlay_img {
    max-width: 100%; max-height: 300px; align-self: center; margin: auto;
}
#picture_overlay_title {
    width: calc(100% - 28px);
    display: inline-block;
    margin-bottom: 0px;
}
.btn_none {
    background: none;
    border: none;
    cursor: pointer;
    min-width:24px;
    min-height:24px;
}
.bold { font-weight: bold; }
.btn_filter {
    cursor: pointer;
    border: 1px solid #FF6215;
    min-height: 30px;
    width: 125px;
    border-radius: 5px;
    background: white;
}
.checkbox_button {
    display: inline-block; 
    height: 30px;
    padding: 4px 6px 0 4px;
    color: black; 
    cursor: pointer;
    user-select: none;
    border-radius: 5px;
    background: white;
}
.checkbox_button input {
    position: relative; 
    top: 3px;
}
#hotels_hotelsuche_filter {
    background-color: #ee7711;
    padding: 4px;
    clear: both;
}
#hotels_hotelsuche_filter_region, #hotels_hotelsuche_filter_zimmertyp, #plz {
    width: 200px; height: 20px; padding: 4px; margin-right: 4px;
    border: 1px solid #FF6215;
}
#btn_map_visibility_changer {
    float: right;
    width: 140px;
}
.btn_buchen {
    display: inline-block;
    width: max-content;
    background-color: #ee7711;
    border: 0;
    padding: 8px 16px;
    cursor: pointer;
    text-decoration: none;
}
.btn_buchen:hover {
    color: #000;
    font-weight: bold;
}
.page_controll_half {
    width: 50%; height: 100%;
}
.leaflet-pane, .leaflet-pane * {
    z-index: 10 !important;
}

h3 { margin-bottom: 6px; }
#hotelanfrage_tooltip {
    position: absolute;
    z-index: 1011;
    background: white;
    color: black;
    padding: 20px;
    border-radius: 6px;
    max-width: 200px;
    border: 1px solid black;
    text-align: center;
}
#hotelanfrage_tooltip_close { 
    float: right; 
    cursor: pointer; 
    border: 1px solid black;
    padding: 0px 5px;
    border-radius: 360%;
}

#hotelanfrage_innercontainer { 
    line-height: 1.46;
    max-width: 700px;
    margin: auto;
}
.description {
    margin-bottom: 10px;
}
.d-block { display: block; }
.inblock { display: inline-block; }
.vatop { vertical-align: top; }
.vabottom { vertical-align: bottom; }
.formblock, .formblock-half, .formblock-quarter, .formblock-quarter3, .formblock-inlineblock {
    display: inline-block;
    min-width: 110px;
}
.formblock {
    width: 100%;
    margin-bottom: 8px;
}
.formblock-half {
    padding: 0 16px;
    width: calc(50% - 32px);
}
.formblock-quarter {
    padding: 0 16px;
    width: calc(25% - 32px);
}
.formblock-quarter3 {
    padding: 0 16px;
    width: calc(75% - 32px);
}
.formblock-inlineblock {
    padding: 0 16px;
}
.formblock label, .formblock-half label {
    width: 100%;
    display: inline-block;
}
.form-controll {
    width: 100%;
    width: calc(100% - 12px);
    width: -moz-available;
    width: -webkit-fill-available;
    padding: 2px 6px;
    background-color: white;
    border: 1px solid #ee7711;
    height: 28px;
    border-radius: 6px;
}
textarea.form-controll {
    font-size: 13px;
    padding: 6px 6px;
    resize: vertical;
}
select.form-controll {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center no-repeat #fff;
    background-size: auto;
    background-size: 8px 10px;
    padding: 3px 24px 3px 3px;
    color: #495057;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.checkbox_container label {
    display: inline;
}
.ta-right { text-align: right; }
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
input, button, select, option, textarea {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
.numberControll {
    display: inline-block;
}
.numberControll input {
    width: 15px !important;
    height: 16px;
    padding: 4px 10px;
}
.btn-numberControll {
    cursor: pointer;
    border: 0;
    background: white;
    padding: 0 2px;
    border-radius: 3px;
    padding: 4px 6px;
    margin: 0px 4px;
}
.hidden {
    display: none !important;
}
.inputRatingStars {
    background: #fff;
    border: none;
    border-radius: 10px;
    width: fit-content;
    width: -moz-fit-content;
    padding: 6px 4px 10px 4px;
}
.rating {
    display:inline-block;
    text-align:center;
    font-size:18px;
    color: #ccc;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0px 4px 0 0;
    position: relative;
    top: 3px;
    left: 1px;
}
.rating .active { color: #ff9900; }
.privacy_explain {
    font-size: 11px;
    text-align: center;
    margin-top: 12px;
}
@media (max-width: 420px) {
    .privacy_explain {
        display: inline;
    }
}
input:focus,
select:focus,
textarea:focus,
button:focus, * {
    outline: 0;
}
input::-moz-focus-inner { border: 0; }

.nobreak {
    display: inline-block;
    white-space: nowrap;
}
.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}
.media-body {
    -ms-flex: 1;
    flex: 1;
}
.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}
.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.hotel_result_row {
    margin: 20px;
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.hotel_result_image {
    display: inline-block;
    vertical-align: top;
    width: 208px;
    min-height: 140px; max-height: 164px;
    border-radius: 6px;
}
.hotel_result_body {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 380px);
    padding-left: 20px;
}
.hotel_result_side {
    display: inline-block;
    vertical-align: bottom;
    padding-left: 8px;
    width: 144px;
    text-align: right;
    color: #333;
}

.hotel_result_image_small {
    display: inline-block;
    width: 140px;
    min-height: 140px;
}
.hotel_result_title {
    font-size: 16px;
    margin-bottom: 4px;
}
.hotel_result_body_attr {
    font-size: 15px;
    color: #262626;
    font-weight: 500;
}
.hotel_result_price {
    padding-top: 2px;
    padding-right: 8px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}
.hotel_result_button {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    line-height: 28px;
    font-weight: 500;
    border: 0;
    border-radius: 2px;
    color: #fff !important;
    margin: 0;
    white-space: nowrap;
    padding: 4px 0;
    background: #0071c2;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}
.hotel_result_button:hover { background: #005999; }
.hotel_result_service i { margin-right: 4px; }
.hotel_result_service {
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

.hotel_result_body_attr_first {
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

@media (max-width: 714px) {
    .hotel_result_image { width: 100%; }
    .hotel_result_body { width: 100%; margin-top: 4px; padding: 0; }
    .hotel_result_side { width: 100%; margin-top: 4px; padding: 0; }
}


#hotel_selection * {
    width: 33%;
    padding: 4px;
    margin: 0;
    background: #2E76CF;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
}

.media-body i {
    padding-right: 2px;
}

.hotel_result_kachel {
    display: inline-block;
    vertical-align: top;
    width: calc(33% - 20px);
    padding: 4px 10px;
}
.hotel_result_kachel .hotel_result_image {
    display: inline-block;
    width: 100%;
    height: 180px;
    border-radius: 5px;
}
.hotel_result_kachel_title {
    width: calc(100% - 100px);
    font-size: 16px;
    color: #f5993d;
    margin-bottom: 4px;
}
.kachel_rating {
    display: inline-block;
    width: calc(100% - 100px);
    color: #f5993d;
    font-size: 12px;
}
.kachel_price {
    display: inline-block;
    width: 100px;
    text-align: right;
    font-size: 12px;
}
.results_bottom_container {
    width: 100%;
}
.results_button_container {
    position: relative;
    width: 100px;
}
.results_button_container .btn_buchen {
    width: calc(100% - 28px);
}
.not-available {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color:rgba(200,200,200,0.5);
    color:black;
    font-weight: bold;
    line-height: 1.1;
    height: calc(100% - 4px);
    width: 100%;
    padding: 2px;
}
select.select-text-input {
    width: calc(40% - 3px);
    border-top-right-radius: 0; 
    border-bottom-right-radius: 0; 
    border-right: none;
}
input[type="text"].select-text-input {
    width: calc(60% - 20px);
    height: 26px;
    padding: 0 10px;
    border-radius: 0;
}
button.select-text-input {
    width: unset; 
    height: 28px;
    cursor: pointer;
    border: 1px solid #FF6215;
    border-left: 0; 
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
    background: white;
}

#part3_unterkunft_container {
    color: black;
    background: white;
    padding: 8px;
    border-radius: 6px;
}


.hotelanfrage_unterkunft_container:nth-child(n+4){
    display: none;
    visibility: hidden;
}


.hotelanfrage_unterkunft_container:not(:first-child) {
    margin-top: 14px;
}
.hotelanfrage_unterkunft_container:not(:last-child) {
    border-bottom: 1px dashed black;
}
.hotelanfrage_unterkunft_container {
    width: calc(100% - 16px) !important;
    padding: 8px;
    border-radius: 4px;
}
.hotelanfrage_unterkunft_container.checked {
    background: rgb(255, 128, 0, 0.6);
}
.hotelanfrage_unterkunft_container.primaer.checked {
    background: rgb(33, 115, 186, 0.6)
}
.hotelanfrage_unterkunft_trenner {
    padding: 8px;
    border-bottom: 1px dashed black;
    border-radius: 4px;
}
.hotelanfrage_unterkunft_bild {
    display: inline-block;
    vertical-align: top;    
    width: 126px;
    max-height: 100px;
    margin-bottom: 4px;
}
.hotelanfrage_unterkunft_text {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 140px);
    min-width: 160px;
    padding-left: 8px;
}

.hotelanfrage_unterkunft_checkbox_container {
    display: inline-block;
    vertical-align: top;
    margin-top: 18px;
    padding-right: 6px;
}
.hotelanfrage_unterkunft_checkbox {
    display:none;
}
.checkbox_helper {
    display: block;
    width: 18px !important;
    height: 18px;
    border: 1px solid black;
    text-align: center;
    border-radius: 4px;
}
.hotelanfrage_unterkunft_checkbox:checked+.checkbox_helper::before {
    display: block;
    margin-top: -1px;
    content: "✔";
}

#hotelanfrage_fortschritt {
    width: 100%;
    margin: 0;
    border-radius: 6px;
    border-bottom: 2px solid #eee;
    overflow: hidden;
    background: #ffec80;
    height: 20px;
    line-height: 6px;
    font-size: 0;
}

.hotelanfrage_fortschritt_item {
    display: inline-block;
    vertical-align: bottom;
    width: calc(33.33% - 8px);
    height: 30px;
    padding: 8px 0 0 8px;
    border-bottom: 2px solid white;
    font-size: 13px;
    white-space: nowrap;
}
.hotelanfrage_fortschritt_item.active {
    background: #ffd700;
    color: black;
}
#part3_buchung_buttons {
    position: relative;
    margin-top: 10px;
}
#part3_buchung_anfrage, #hotelanfrage_buchung_payment_container { vertical-align: top; }
#hotelanfrage_buchung_payment_container {
    position: relative; 
    background: white;
    margin-top: 10px; 
    padding: 6px;
    border-radius: 6px;
}
#hotelanfrage_next {
    display: block;
    min-height: 34px;
    margin-left: auto;
}
.priority_text { 
    width: 100%;
    font-weight: bold; 
}
.unterkunft_selectbutton_style { 
    display: block !important;
    margin-left: auto;
    margin-top: 8px;
    width: 150px !important;
    font-weight: bold; 
    padding: 0 4px;
    line-height: 30px;
    text-align: center;
}
#hotelsabfrage_map_container_link { margin-bottom: 8px; width: min-content; margin-left: auto; white-space: nowrap; }
#objekt_genau_container { margin: 16px; }
#hotelsuche_tabscontroller {
    background: #e2e3e1;
    color: #ff8000;
}
.hotelsuche_tab {
    display: inline-block;
    padding: 10px;
    cursor: pointer;
}
.hotelsuche_tab.active { background: #ff8000 !important; color: white !important; }
#hotelsuche_tabs_container { background: #ff8000; padding: 10px; }
.u_portal_bild { 
    min-height: 340px; 
    background: url('/images_portal/1a-onlinemarkt-new-header-bg-no-ico.jpg');
    background-repeat: no-repeat;
}
@media screen and (-webkit-min-device-pixel-ratio:0) { 
    /* Safari only override */
    ::i-block-chrome,.u_portal_bild, ::i-block-chrome,.u_portal_bild_ort {
        background-attachment: fixed;
        background-size: cover;
        -webkit-background-size: cover;
    }
}
.u_portal_background { background-color: #ff8000; }
.part0 {
    padding-top: 70px;
}

.offer_table_container { margin-top: 10px; }
.offer_table_title { background: #FF6215; color: white; padding: 8px; font-weight: bold; }
.offer_table { width: 100%; border-collapse: collapse; }
.offer_table td, .offer_table th { border: 1px solid #FF6215; padding: 8px;  }



/* Schriftgrößen */
.font_title1 { font-size: 24px; }
.font_title2 { font-size: 18px; }
.font_title3 { font-size: 16px; }
.font_body { font-size: 14px; }
.font_small { font-size: 12px; }

@media (max-width: 714px) {
    .font_title1 { font-size: 15px; }
    .font_title2 { font-size: 14px; }
    .font_title3 { font-size: 13px; }
    .font_body { font-size: 12px; }
}

/* Media Querys */
@media (max-width: 477px) {
    #part4_name_container { width: 100% !important; }
}


@media (max-width: 714px) {
    #1a-content { padding: 0px !important; }
    #buchungsabfrage_content { padding: 0px !important; }
    h1.font_title3 { padding: 0 4px !important; }
    #hotelanfrage { padding: 0 4px !important; width: calc(100% - 8px) !important; }

    .formblock-resp-full { width: calc(100% - 32px) !important; }
    .formblock-quarter { width: calc(50% - 32px) !important; }
    .unterkunft_datatable_bild, #hotelsabfrage_map_container { display: none; }
    #hotelanfrage_innercontainer { max-width: 100% !important; }
    .m-none { display: none; }
    #seo_content_bild, #seo_content_text { display: block; width: auto; }

    .part0 {
        padding: 0 10px;
        padding-top: 40px;
    }
    
    .part3 { display: table; width: 100%; }
    .part3 > .formblock-half { width: calc(100% - 32px); }
    #part3_unterkunft_body { padding:0; width: 100%; margin-top: 10px; }
    #part3_map_container { display: table-header-group; }
}

@media (max-width: 815px) {
    .hotelanfrage_unterkunft_bild { width: 100%; max-height: 300px; }
    .hotelanfrage_unterkunft_text { width: 100%; }
}
