/*variables*/





:root {
    /*colors*/
    --gray-border: #DFDFDF;
    --light-gray-a: #F2F2F2;
    --light-gray-b: #F8F8F8;
    --light-gray: #EEEEEE;
    --gray: #707070;
    --gray-text: #777777;
    --gray-button: #828282;
    --dark-gray: #3C3C3C;
    --dark-gray-2: #282828;
    --dark-gray-3: #BBBBBB;
    --black: #060606;
    --blue: #0088FF;
    --green: #26B105;
    --red: #FF0000;
    --light-blue: rgba(0, 136, 255, 0.05);




    --border-sidebar: 1px solid var(--black);



}





body{
    margin: 0;
    font-family: Roboto !important;
    font-size: 15px;
    font-weight: normal;
    box-sizing: border-box;
    overflow: hidden;
}
body *{
    box-sizing: border-box;
}
input,textarea{
    -webkit-appearance: none;
    font-family: Roboto !important;
    border: none;
    background: var(--light-gray);
    padding: 14px;
    border-radius: 5px;
    width: 100%;
}

th{
    font-weight: normal;
}
.welcome{
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--black);
    color: white;
}
.content{
    max-height: calc(100vh - 230px);
}
.welcome img{
    width: 65px;
    height: 65px;
    margin-bottom: 10px;
}
.f-bold{
    font-weight: 600!important;
}
.t-right{
    text-align: right!important;
}
.bg-white{
    background: white!important;
}
.icon-blue svg{
    fill: var(--blue);
}
.full-width{
    width: 100% !important;
}
.sidebar{
    max-width: 350px;
    min-width: 350px;
    height: 100vh;
    background: var(--dark-gray-2);
    overflow-y: auto;
    overflow-x: hidden;
}

.cockpit-wrapper{
    display: flex;
    flex-wrap: nowrap;
}
.main-content{
    width: 100%;
    overflow: auto;
}
.menu-entry-wrapper{
    background: var(--dark-gray);
    position: relative;
}
.menu-entry-wrapper:not(:last-child) .menu-entry,
.menu-entry-wrapper:not(:last-child) .menu-sub-entry{
    border-bottom: var(--border-sidebar);
}
.menu-entry-wrapper:not(:last-child) .menu-entry + .menu-sub-entry{
    border-top: var(--border-sidebar);
}
.menu-sub-entry,
.menu-entry{
    display: flex;
    flex-wrap: nowrap;
    padding: 20px;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.menu-entry .icon{
    height: 22px;
    opacity: 0.5;
}
.menu-entry-wrapper.active .menu-entry .icon{
    opacity: 1;
}
.menu-entry img{
    width: 22px;
    height: 22px;
}
.menu-sub-entry,
.menu-entry .text{
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    font-size: 20px;
}
.menu-top-bar .text{
    cursor: initial;
}
.menu-top-bar .text,
.menu-entry:hover .text,
.menu-sub-entry:hover,
.menu-sub-entry.active,
.active .menu-entry .text{
    color: white;
}
.menu-sub-entry{
    padding: 13px 0 13px 62px;
    background: var(--gray);
}
.active .menu-entry:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 7px;
    background: var(--blue);
}
.sidebar .name{
    text-transform: capitalize;
}
.header-bar{
    background: #F6F6F6;
    height: 65px;
    display: flex;
    justify-content: flex-end;
}

.header-bar .actions {
    justify-content: flex-end;
    padding-right: 50px;
}

.header-bar [value^="#"],
#popup-notifications .close{
    display: inline-block;
    width: auto;
    padding: 10px 15px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.main-content-wrapper > div{
    padding: 50px;
}

.status-bar-wrapper{
    padding-left: 25px;
}
.status-bar{
    display: flex;
    position: relative;
}
.status-bar:before{
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 47px;
    transform: translate(0,-25px);
    height: 1px;
    background: var(--gray);
}
.status{
    writing-mode: vertical-rl;
    justify-content: center;
    align-items: center;
    transform: rotate(-135deg) translate(-50%, 45px);
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 5px;
    position: relative;

}

.status:before{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 100%;
    background: white;
    border: 1px solid var(--gray);
    box-sizing: border-box;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    width: 14px;
    height: 14px;
}
.status.f-bold:before{
    width: 20px;
    height: 20px;
    /*left: 50%;*/
    bottom: calc(100% - 5px);
    border-width: 3px;
    border-color: black;
}
.status:after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 2px);
    background: #fff;
    border: 2px solid #fff;
    box-sizing: border-box;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    width: 12px;
    height: 12px;
}
.status.f-bold:after{
    width: 16px;
    height: 16px;
    /*left: 0;*/
    bottom: calc(100% - 1px);
    border-width: 3px;
}
.status.active:after{
    background: var(--green);
}
#dashboard table{
    border-collapse: collapse;
}
#dashboard tr:not(:last-child){
    border-bottom: 1px solid var(--gray-border);
}
#dashboard td{
    height: 55px;
}
#dashboard .date,
#dashboard .name,
#dashboard .number{
    padding-right: 15px;
    height: 100%;
    display: flex;
    align-items: end;
    padding-bottom: 20px;
    font-size: 18px;
    opacity: 50%;

}
.title{
    font-size: 27px;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.title:after{
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    background: var(--gray);
    height: 1px;
    width: 100%;
}
.main-content-wrapper .active{
    display: block!important;
}

html .button:not(.no-style){
    padding: 5px 15px!important;

    color: white;
    min-height: 43px;
    pointer-events: all!important;
    display: inline-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    border-radius: 5px!important;
    transition: 0.3s;
}
html .button{
    cursor: pointer;
}
html .button.button-disabled{
    pointer-events: none;
    opacity: 60%;
}
html .button:hover{
    color: rgba(255, 255, 255, 0.5);
}
html .button img{
    transition: 0.3s;
}

html .button:hover img{
    opacity: 0.7;
}
html .red-button{
    background: var(--red);
}
html .blue-button{
    background: var(--blue) !important;
}
html .green-button{
    background: var(--green) !important;
}
html .gray-button{
    background: var(--dark-gray) !important;
}
html .red-button *,
html .blue-button *,
html .green-button *,
html .gray-button *{
    color: white;
}
.table_layout th > div,
.table_layout td > div{
    padding: 8px 15px;
}

.controls{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

body.is_rd .controls {
    justify-content: end;
}

.small-wrapper{
    display: flex;
}

#create_reservation table,
.table_layout table{
    border-collapse:collapse;
    width: 100%;
}
.table_layout thead{
    font-weight: normal;
    background: black;
    color: white;
}
.table_layout th{
    text-align: left;
}
.table_layout tbody tr:not(.first) .client-name,
.table_layout tbody tr:not(.first) .client-number,
.table_layout tbody tr:not(.first) .status,
.table_layout tbody tr:not(.first) .date{
    display: none;
}

.color-a{
    background: var(--light-gray-a);
}
.color-b{
    background: var(--light-gray-b);
}
th.real-estate-price div{
    width: 100px;
}
th.real-estate-fee div{
    width: 70px;
}


.popup-overlay{
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.0);
    z-index: -2!important;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.popup-overlay.active{
    z-index: 0!important;
    background: rgba(0,0,0,0.6);
}
.popup{
    position: fixed;
    max-width: calc(100vw - 30px);
    max-height: calc(100vh - 70px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100!important;
    box-sizing: border-box;
    transition: 0.3s;
}
.popup-wrapper{
    position: relative;
    max-height: calc(100vh - 130px);
    padding: 0;
    background: white;
}
.popup-inner-wrapper{
    max-height: calc(100vh - 130px);
    width: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px;
}

.popup-close{
    position: absolute;
    display: flex;
    width: 30px;
    height: 30px;
    cursor: pointer;
    top: 6px;
    left: 6px;
    color: var(--blue);
    text-decoration: underline;
}
.popup-close:after{
    content: "Abbrechen";
    left: 0;
    right: unset;
}
.popup-close > div{
    position: relative;
    width: 100%;
    height: 100%;
}
.popup-close div:before,
.popup-close div:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    width: 3px;
    height: 14px;
    background: var(--black);
    display: none!important;
}
.popup-close div:after{
    transform: translate(-50%, -50%) rotate(-45deg);
}
.popup-overlay.visible{
    z-index: 2!important;
    background: #0009;
}
.popup.visible{
    left: 50%!important;
}
.popup-overlay.visible{
    left: 0!important;
}
#create_reservation .content{
    display: flex;
}
#create_reservation .left{
    width: 100%;
}
#create_reservation .right{
    min-width: 360px;
    width: 360px;
}

.form{
    overflow-x: hidden;
    /*overflow-y: auto;*/
    max-height: 100%;
}
.form .input-wrapper,
.form .input-wrapper > div,
.form .input-wrapper input{
    width: 100%;
}

.form .input-wrapper input[type="number"]::-webkit-outer-spin-button,
.form .input-wrapper input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

form .input-wrapper input[type="number"] {
    -moz-appearance: textfield;
}

.form .input-wrapper{
    display: flex;
    padding: 4px;
    align-items: center;
}
.form .search-wrapper .blue-button{
    width: 5px;
    height: 23px;

}
.form .input-wrapper-multiple .space-between{
    justify-content: space-between;
}
.form .input-wrapper-multiple{
    display: flex;
}
.form .input-wrapper-multiple > *{
    width: 100%;
}
.form .input-wrapper-multiple > *.small{
    width: 90px;
}
.form .input-wrapper-multiple > *:first-child{
    margin-right: 5px;
}
.from .input-wrapper-multiple > *:last-child{
    margin-left: 5px;
}
.input-header td{
    background: white;
}
#create_reservation tr:not(.black-tr) td {
    border: 3px solid white;
}
#create_reservation tr:not(.black-tr) td > div{
    background: var(--light-gray);
    border-radius: 5px;
    padding: 13px 15px;
}
#create_reservation tr.input-header td > div{
    padding: 0;
}
#create_reservation .real-estate-rented{
    text-align: center;
}
#create_reservation .real-estate-rented img{
    height: 32px;
    width: 32px;
}

#create_reservation tr.black-tr{
    background: black;
    color: white;
    border: 5px solid white;
}
#create_reservation tr.black-tr td > div{
    padding: 11px 15px;
    font-weight: normal;
}
#ajax-spinner {
    border: 16px solid #f3f3f300; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    animation: spin 2s linear infinite;
    position: fixed;
    left: 50px;
    top: 50px;
    width: 10vw;
    height: 10vw;
    max-width: 60px;
    max-height: 60px;
    cursor: default;
    z-index: 99;
}



@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ajax-feedback-icon > div{
    transition: 1s;
}
.ajax-feedback-icon > .afs path,
.ajax-feedback-icon > .afs polygon{
    fill: #36c334;
}
.ajax-feedback-icon > .afe path,
.ajax-feedback-icon > .afe rect{
    fill: #FF0219;
}
.ajax-feedback-icon{
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 99999;
    width: 80px;
    height: 80px;
}
.ajax-feedback-error{
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 99999;
    background-color: white;
    border-radius: 22px;
    border-color: #FF0219;
    border-width: 2px;
    border-style: solid;
    padding: 8px 20px;
    max-width: 90vw;
    width: 900px;
    transition: 1s;
}
.ajax-feedback-error .button{
    background-color: #656565;
    color: white;
}
.button-wrapper > *{
    cursor: pointer;
}
.controls-filter{
    background: #000;
    margin: 20px 0px;
    padding: 15px;
    color: #fff;
}
.button-small{
    min-width: 118px;
}
.button-wide{
    min-width: 220px;
}
.button-100{
    width: 100%;
}
.popup-text{
    font-size: 27px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}
.popup-inner-wrapper{
    padding: 20px;
}
.popup-content{
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.popup-content.flex-row{
    flex-direction: row;
    flex-wrap: wrap;
}
.popup-content.flex-row .button{
    margin-left: 10px;
}
.main-content-wrapper .icon-button.magnifier{
    width: 51px!important;
    height: 43px;
    padding: 0!important;
}
.icon-button img{
    width: 100%;
    height: 100%;
}
.no-padding{
    padding: 0!important;
}
.upload-file-wrapper{
    width: 70vh;
    height: auto;
    max-width: 900px;
    background: white;
    position: relative;
}
.upload-file-wrapper form{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 250px;
    border: dashed 1px;
    background-color: var(--light-blue);
}
.upload-file-wrapper form > div{
    position: relative;
    height: 100%;
    width: 100%;
}
.upload-file{
    width: 100%;
    height: 100%;
    opacity: 0;
}
.upload-file{
    background: none;
}
.upload-file-wrapper label{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    background: #f00;
    justify-content: center;
    max-height: 1px;
    z-index: 2;
    overflow: visible;
}
.upload-file-wrapper > img{
    width: 100%;
    height: auto;
}
.file-upload-label{
    font-size: 27px;
    font-weight: normal;
    z-index: 2;
}

.custom-file-upload > div{
    pointer-events: none;
    z-index: -1;
}
.custom-file-upload.button{
    z-index: 2;
}
.file-upload-file{
    margin-top: 40px;
    opacity: 80%;
}
#popup-upload-file .popup-inner-wrapper{
    padding: 30px 60px;
}
#popup-upload-file .popup-content > .button{
    display: none;
}

.ui-datepicker{
    background: white;
}
.ui-datepicker-next,
.ui-datepicker-prev{
    display: flex!important;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.ui-datepicker-next span,
.ui-datepicker-prev span{
    width: 100%;
    height: 100%;
    position: relative!important;
    overflow: visible!important;
    top: unset!important;
    left: unset!important;
    margin: 0!important;
}
.ui-datepicker-prev span{
    transform: rotate(135deg);
}
.ui-datepicker-next span{
    transform: rotate(-45deg);
}
.ui-datepicker-next span:before,
.ui-datepicker-prev span:before{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    width: 10px;
    height: 10px;
}
.divider{
    border-bottom: 1px solid var(--light-gray);
    margin: 8px 5px;
}
.form{
    color: var(--gray-text);
}
.date-minimal{
    width: 100px!important;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--gray-text);
    font-weight: lighter;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--gray-text);
    font-weight: lighter;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--gray-text);
    font-weight: lighter;
}


#create_reservation:not(.create-reservation) .create-reservation,
#create_reservation:not(.edit-reservation) .edit-reservation,
#create_reservation:not(.confirm) .confirm,
#create_reservation:not(.report) .report{
    display: none;
}

.pdf-preview{
    width: 130px!important;
}

.tableFixHead {
    position: relative;
    overflow: auto;
    height: 100%;
}

.tableFixHead thead {
    position: sticky;
    top: 0;
    z-index: 1;
}

thead{
    position: relative;
}
thead > tr:first-child > td:first-child > div:first-child:before{
    position: absolute;
    content: "";
    left: 0;
    top: -3px;
    background: #fff;
    z-index: -1;
    width: 100vw;
    height: 150%;
}
.actions{
    display: flex;
    align-items: center;
}
.actions .button-icon{
    height: 30px;
    width: 30px;
    min-width: 30px;
    margin: 0!important;
}
.actions .button-icon img{
    width: 100%;
    height: 100%;
}
.actions > *{
    width: 100%;
    margin-left: 10px;
}
.table_layout .actions .button{
    min-height: 30px!important;
    /*height: 30px!important;*/
}
.actions .gray-button{
    background: var(--gray-button) !important;
}

.actions .pdf-download, .actions .webform-link {
    font-size: 22px;
    text-align: center;
}

.actions .pdf-download i, .actions .webform-link i {
    color: black;
}

.client-search,
.real-estate-number{
    position: relative;
}
.preview{
    position: absolute;
    left: 1px;
    top: 50px;
    width: 100%;
    background: white;
    max-height: 400px;
    overflow: auto;
    z-index: 2;
    border-radius: 0!important;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.preview > div:hover{
    opacity: 0.5;
}
.preview > div{
    padding: 4px 13px;
    background: var(--light-gray-a);
    cursor: pointer;
    color: var(--dark-gray);
}
.preview > div:nth-child(2n){
    background: var(--light-gray-b);
}
.radiobutton{
    display: flex;
    justify-content: right;
}
.radiobutton span:not(:last-child){
    margin-right: 10px;
}
.radiobutton span{
    cursor: pointer;
    transition: 0.3s;
}
.radiobutton span img{
    width: 45px;
}
.radiobutton span:not(.active){
    filter: grayscale(100%);
}
#login{
    display: flex;
    justify-content: center;
    align-items: center;

}
.login-inner-wrapper{
    display: flex;
    flex-direction: column;
    padding: 30px;
    width: 400px;
    background: white;
    max-width: calc(100vw - 80px    );
}
#popup-account .headline,
.login-title{
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
}
#login .checkbox-wrapper {
    justify-content: flex-start;
    padding: 4px 15px;
}
#login .checkbox-wrapper .checkbox-checkmark, #login .checkbox-wrapper .checkbox {
    right: 15px;
}
#feedback{
    margin-top: 20px;
    padding: 15px;
    color: red;
}
#login .checkbox-wrapper,
#login .input {
    margin-bottom: 10px;
}
#login .button{
    width: 100%;
}
.lost-pw{
    cursor: pointer;
    transition: 0.3s;
}
.lost-pw:hover{
    text-decoration: underline;
}
#popup-account .ma-input-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
#popup-account .ma-input-wrapper img{
    width: 30px;
    height: 19px;
    cursor: pointer;
    margin-left: 10px;
}
.change-pw{
    margin-bottom: 10px;
}
#popup-account .button{
    width: 100%;
}
#feedback_account{
    margin-top: 10px;
}
.header-wrapper .text{
    padding-right: 30px;
}
.header-wrapper .account-icon{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0,-50%);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
}
#popup-cancel-single-unit .popup-inner-wrapper{
    overflow: inherit;
}
#popup-cancel-single-unit .button-wrapper {
    flex-basis: 100%;
    text-align: center;
    margin-top: 25px;
}
#popup-cancel-single-unit .popup-dropdown {
    width: auto;
    flex-basis: 100%;
}
#popup-cancel-single-unit .popup-dropdown .storno-unit-wrapper {
    display: flex;
    width: auto;
    align-items: center;
    justify-content: center;
}
#popup-cancel-single-unit .popup-dropdown .storno-unit-wrapper + .storno-unit-wrapper {
    margin-top: 25px;
}
#popup-cancel-single-unit .immo_id{
    font-weight: 500;
    margin-right: 30px;
}
.popup-dropdown{
    width: 260px;
}
.toggle-filter{
    margin-left: 10px;
}
.client-form-outer-wrapper{
    background: rgb(21,71,109);
    background: radial-gradient(circle, rgba(21,71,109,1) 0%, rgba(15,40,60,1) 100%);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: scroll;
}
.client-form-inner-wrapper{
    background: white;
    width: 70%;
    min-height: 85%;
    border-radius: 5px;
    overflow-y: scroll;
}
.client-form-another-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
}
.client-form-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1456px;
    background: #fff;
    padding: 10px;
}
#page .button-disabled{
    filter: grayscale(100%);
    pointer-events: none!important;
}
.send-client-form{
    margin: 0 4px;
}
.client-from-title{
    font-size: 27px;
    font-weight: 500;
    text-align: center;
}
.popup-text .client-from-title{
    margin-bottom: 10px;
}
.client-form-options{
    width: 100%;
    padding: 10px 30px;
    background: var(--black);
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: space-between;
}
.client-form-options .radiobutton span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.client-form-options .button{
    min-height: 30px!important;

}
#page .form-disabled{
    pointer-events: none!important;
}

.client-form-outer-wrapper[value="1"] .client-form-wrapper > div:nth-child(1){
    display: block!important;
}
.client-form-outer-wrapper[value="2"] .client-form-wrapper > div:nth-child(1),
.client-form-outer-wrapper[value="2"] .client-form-wrapper > div:nth-child(2){
    display: block!important;
}
.client-form-outer-wrapper[value="3"] .client-form-wrapper > div:nth-child(1),
.client-form-outer-wrapper[value="3"] .client-form-wrapper > div:nth-child(2),
.client-form-outer-wrapper[value="3"] .client-form-wrapper > div:nth-child(3){
    display: block!important;
}
.client-form-outer-wrapper[value="4"] .client-form-wrapper > div:not(:last-child){
    display: block!important;
}
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.client-form-outer-wrapper[value="1"] .client-form-wrapper{
    max-width: 379px;
}

.client-form-outer-wrapper[value="2"] .client-form-wrapper{
    max-width: 744px;
}

.client-form-outer-wrapper[value="3"] .client-form-wrapper{
    max-width: 1106px;
}
.client-form-outer-wrapper[value="4"] .client-form-wrapper{
    max-width: 1470px;
}
#main-form.form-disabled,
.headline.form-disabled {
    opacity: 0;
}

#main-form.form-disabled{
    position: relative;
}
.table_layout .tableFixHead{
    max-height: calc(100vh - 265px);
}
#create_reservation.confirm .delete-real-estate,
#create_reservation.report .delete-real-estate,
#create_reservation.confirm  #main-form.form-disabled:after,
#create_reservation.report #main-form.form-disabled:after{
    display: none;
}
#create_reservation.confirm .form-disabled,
#create_reservation.report .form-disabled{
    pointer-events: all!important;
}
#create_reservation.confirm .checkbox-wrapper,
#create_reservation.report .checkbox-wrapper,
#create_reservation.confirm .dropdown-wrapper,
#create_reservation.report .dropdown-wrapper,
#create_reservation.confirm .radiobutton,
#create_reservation.report .radiobutton,
#create_reservation.confirm input,
#create_reservation.report input{
    pointer-events: none;
}
.flex-wrap{
    flex-wrap: wrap;
}
.file-name{
    width: 100%;
    display: flex;
    min-height: 43px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.file-name.hidden{
    display: none;
}
#dashboard .content{
    overflow-y: auto;
    width: 100%;
}
.button .button-icon-2{
    transition: 0.3s;
    margin-left: 10px;
}
.delete-real-estate{
    margin-left: 3px;
}

.reservierungs-type {
    display: flex;
    margin-bottom: 30px;
}

.reservierungs-type input {
    width: auto;
}

#popup-upload-file .wrapper-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

#popup-upload-file .wrapper-buttons > div {
    cursor: pointer;
}

#popup-confirm-reservation iframe,
#popup-verkaufsmeldung-approval-handler iframe {
    height: 70vh;
    width: 80vw;
}

.archived-item {
    opacity: 0.5;
}

.reservation-entry > td > .canceled,
.reservation-entry.reservation_canceled > td > div {
    text-decoration: line-through;
}

.reservation-entry.reservation_canceled > td:last-of-type > div{
    text-decoration: none;
}

.reservation-entry.reservation_canceled {
    opacity: 0.5;
}

#customer-form .step {
    display: none;
}

#customer-form .page-content,
#customer-form .progress-bar,
#customer-form .step.active {
    display: flex;
    justify-content: center;
}

#customer-form .client-form-inner-wrapper {
    padding-top: 50px;
}

#customer-form .page-header {
    width: 500px;
    margin: auto;
    text-align: center;
}

#customer-form .step-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 500px;
    text-align: center;
}

#customer-form .progress-bar > div {
    flex: 25%;
    height: 5px;
    background-color: var(--light-gray);
}

#customer-form .progress-bar > div + div{
    margin-left: 5px;
}

#customer-form .progress-bar > div.active {
    flex: 25%;
    height: 5px;
    background-color: #96D59A;
}

#customer-form .step-wrapper .page-header,
#customer-form .step-wrapper .page-content,
#customer-form .step-wrapper .page-content > div{
    flex-basis: 100%;
}

#customer-form .step-wrapper .page-content {
    flex-wrap: wrap;
    margin-top: 50px;
    border: solid 2px var(--light-gray);
    padding: 0 25px 25px 25px;
}

#customer-form .step-wrapper .form-tabs-controller {
    margin-top: 50px;
}

#customer-form .step-wrapper .form-tabs-controller + .page-content  {
    margin-top: 0px;
    position: relative;
    z-index: 2;
    background: white;
    padding-top: 25px;
}

#customer-form .step-wrapper .page-content .radiobutton {
    justify-content: center;
    margin-bottom: 25px;
}

#customer-form .step-wrapper .page-content .button {
    background: #008DFF;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

#customer-form .step-wrapper .page-content .button-prev {
    background-color: var(--dark-gray-3);
}

#customer-form .page-into h3 {
    position: relative;
    top: -25px;
}

#customer-form .page-into h3 span {
    background-color: white;
    padding: 15px 25px;
}

#customer-form .step-wrapper .page-content .buttons-wrapper {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

#customer-form .step-wrapper .page-content .buttons-wrapper .button + .button {
    margin-left: 15px;
}

#customer-form .step-wrapper .page-content .buttons-wrapper .dd-head .dd-title-wrapper {
    padding: 10px 25px;
}

#customer-form .step-wrapper .form-tabs-controller {
    display: flex;
    width: 100%;
}

#customer-form .step-wrapper .tab-controller {
    display: none;
}

#customer-form .step-wrapper .tab-controller.required {
    display: block;
}

#customer-form .step-wrapper .tab-controller {
    padding: 15px 25px;
    border: solid 2px var(--light-gray);
    background: white;
    cursor: pointer;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    position: relative;
    top: 5px;
    border-bottom: none;
    box-shadow: 3px -36px 16px -34px rgb(0 0 0 / 25%) inset;
    -webkit-box-shadow: 3px -36px 16px -34px rgb(0 0 0 / 25%) inset;
    -moz-box-shadow: 3px -36px 16px -34px rgb(0 0 0 / 25%) inset;
}

#customer-form .step-wrapper .tab-controller + .tab-controller {
    margin-left: 10px;
}

#customer-form .step-wrapper .tab-controller.active {
    position: relative;
    top: 2px;
    z-index: 3;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

.client-form-outer-wrapper .form-tabs-controller + .page-content .clientform {
    display: none !important;
}

.client-form-outer-wrapper .form-tabs-controller + .page-content .clientform.active.required{
    display: block !important;
}

.client-form-outer-wrapper .summary .customer-header {
    display: flex;
    justify-content: space-between;
    padding: 5px 15px;
    background-color: var(--gray-button);
    color: white;
    align-items: center;
}

.client-form-outer-wrapper .summary{
    max-height: 500px;
    overflow: scroll;
}

.client-form-outer-wrapper .summary .customer-body {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    background-color: var(--light-gray);
    padding: 15px;
}

.client-form-outer-wrapper .summary .customer-body > div {
    flex-basis: 50%;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
}

.client-form-outer-wrapper .summary .customer-body > div.right {
    justify-content: end;
    text-align: right;
}

.client-form-outer-wrapper .summary .customer-body .bankdata,
.client-form-outer-wrapper .summary .customer-body span {
    flex-basis: 100%;
}

.client-form-outer-wrapper .summary .customer-body .bankdata {
    margin-top: 25px;
}

.client-form-outer-wrapper .summary span + span {
    margin-top: 5px;
}

.client-form-outer-wrapper .summary img {
    cursor: pointer;
}

.client-form-outer-wrapper .additional-customer {
    width: 100px;
    margin: auto;
}

.client-form-outer-wrapper .client_bic_owner {
    margin-right: 0 !important;
}

.client-form-outer-wrapper .client-form.disabled .radiobutton-controlled{
    display: none;
}

.button.reject-reported-reservation.confirm-reject + .accept-reported-reservation {
    display: none;
}

.checkbox-storno-email {
    margin-top: 15px;
}

.client_storno_email {
    flex-basis: 100%;
}

.client_storno_email .input-wrapper {
    width: 50%;
    margin: 15px auto 0;
}

.client_storno_email .input-wrapper .hint{
    font-style: italic;
    font-size: 13px;
    margin-bottom: 15px;
}

.sort-dropdown .dd-title-wrapper .dd-title {
    margin-left: 5px;
}

.show-mobile {
    display: none;
}

#popup-notifications {
    left: 210%;
    top: unset;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: none;
    max-width: 100%;
    max-height: 100%;
}

#popup-notifications.popup.visible{
    left: 0 !important;
}

#popup-notifications .popup-wrapper {
    height: 100%;
    max-height: 100%;
}

#popup-notifications .popup-wrapper .content {
    width: 100%;
    max-height: 100%;
}

#popup-notifications .popup-wrapper .title,
#popup-notifications .popup-wrapper .content table {
    width: 100%;
    border-collapse: collapse;
}

#popup-notifications .popup-wrapper .content table thead {
    background: black;
    color: white;
}

#popup-notifications .popup-wrapper .content table tbody tr {
    background:  var(--light-gray-a);
    cursor: pointer;
}

#popup-notifications .popup-wrapper .content table tbody tr:hover {
    background:  rgba( 0, 136, 255, 0.1 );
    cursor: pointer;
}

#popup-notifications .popup-wrapper .content table tbody tr + tr {
    border-top: 2px white solid;
}

#popup-notifications .popup-wrapper .content table thead th,
#popup-notifications .popup-wrapper .content table tbody td {
    padding: 10px;
    text-align: left;
}

#popup-notifications .popup-wrapper .content table tr > td:first-of-type {
    position: relative;
}

#popup-notifications .popup-wrapper .content table tr.reservierung > td:first-of-type:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--blue);
}

#popup-notifications .popup-wrapper .content table tr.storno > td:first-of-type:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: red;
}

#popup-notifications .popup-wrapper .content table tr[value-seen="1"] > td:first-of-type:before{
    display: none;
}

#popup-notifications .popup-wrapper .content table tr[value-seen="1"] {
    font-weight: 100;
}

#popup-notifications .close {
    position: absolute;
    right: 50px;
    top: 20px;
    z-index: 1;
}

#popup-notifications .popup-inner-wrapper {
    padding-left: 50px;
    padding-right: 50px;
}

.sidebar .notification-counter {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
}

.sidebar .menu-sub-entry-wrapper {
    position: relative;
}

.sidebar .notification-counter .counter {
    min-width: 25px;
    min-height: 25px;
    background: var(--blue);
    display: flex;
    text-align: center;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: white;
}

.verkaufsmeldung-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.notartermin-single-view .notartermin-entry {
    border-bottom: solid 2px var(--light-gray);
}

.notartermin-single-view .notartermin-entry td {
    padding: 5px 0;
}

.verkaufsmeldung-details .detail-col {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 33%;
    align-content: flex-start;
}

.verkaufsmeldung-details .detail-col .detail-item {
    display: flex;
    flex-basis: 100%;
}

.verkaufsmeldung-details .detail-col .detail-item.enable{
    display: flex !important;
}

.verkaufsmeldung-details .detail-col .detail-item .detail-title,
.verkaufsmeldung-details .detail-col .detail-item .content {
    flex-basis: 50%;
}

.verkaufsmeldung-details .detail-col .detail-item .detail-title {
    font-weight: 300;
}

.verkaufsmeldung-details .detail-col .detail-item .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.verkaufsmeldung-details .detail-col .detail-item .checkbox-labels {
    margin-right: 50px;
}

.verkaufsmeldung-details .detail-col .detail-item.fee-input + div {
    margin-top: 0;
}

.verkaufsmeldung-details .detail-col .detail-item .checkbox-labels > div + div,
.verkaufsmeldung-details .detail-col .detail-item + .detail-item,
.verkaufsmeldung-details .detail-col .detail-item.fee-input.enable + div {
    margin-top: 15px;
}

.verkaufsmeldung-details .detail-col .detail-item .all-checkboxes {
    position: relative;
}

.verkaufsmeldung-details .detail-col .detail-item .all-checkboxes:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    padding: 15px;
    border: solid 1px var(--blue);
    border-radius: 5px;
    z-index: -1;
}

.verkaufsmeldung-details .detail-col .detail-item .all-checkboxes .checkbox-outer-wrapper + .checkbox-outer-wrapper {
    margin-top: 18px;
}

.verkaufsmeldung-details .detail-col .detail-item .all-checkboxes .checkbox,
.verkaufsmeldung-details .detail-col .detail-item .all-checkboxes .checkbox-checkmark {
    position: relative;
    right: unset;
    top: unset;
    transform: unset;
}

.verkaufsmeldung-details .detail-col .detail-item .all-checkboxes .checkbox-wrapper.checked .checkbox {
    display: none;
}

.notartermin-single-view .currency input {
    padding-right: 30px;
    padding-left: 0;
}

.notartermin-single-view .currency input {
    border: solid 1px var(--blue);
}

.error-validation,
.notartermin-single-view .error-validation{
    border-left: solid 7px red !important;
}

.notartermin-single-view .currency {
    padding: 0;
    position: relative;
}

.notartermin-single-view .currency:after {
    content: '€';
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}

#all_verkaufsmeldung .button:not(.no-style),
#all_rejected_verkaufsmeldung .button:not(.no-style) {
    padding: 10px 15px !important;
}

#all_verkaufsmeldung .notartermin-entry + .notartermin-entry,
#all_rejected_verkaufsmeldung .notartermin-entry + .notartermin-entry {
    border-top: solid 2px var(--light-gray);
}

/**
    Css ToolTips
 */
.tooltip {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
}

.tooltip.tooltip-checkboxes {
    top: -25px;
    right: -25px;
}

.tooltip.tooltip-input-price,
.tooltip.tooltip-input-fee {
    top: 50%;
    left: 10px;
    right: unset;
    transform: translateY(-50%);
}

.tooltip i {
    color: var(--blue);
    font-size: 22px;
    background: white;
}

.tooltip.tooltip-input-price i,
.tooltip.tooltip-input-fee i {
    background: transparent;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 150px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -98px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* only for placeholder can be removed after integration of animation*/
#popup-verkaufsmeldung-animation iframe {
    left: 0;
}

#all_verkaufsmeldung .tableFixHead  {
    overflow: unset;
}

#all_verkaufsmeldung .tableFixHead thead  {
    z-index: 0;
}

.tooltip.tooltip-input-price .tooltiptext {
   margin-left: -75px;
}
