/* Spur */
.dash {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
}

.dash-app {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
    flex-grow: 2;
    margin-top: 84px;
    padding-right: 0.1px;
}

@media (min-width: 992px) {
    .dash-app {
        margin-left: 320px;
    }

    .dash-compact .dash-app {
        margin-left: 0;
    }
}

.dash-content {
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
    flex-grow: 2;
    padding: 25px;
}

@media (max-width: 767.98px) {
    .dash-content {
        padding: 15px 0px;
    }
}

.dash-nav {
    min-width: 320px;
    max-width: 320px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow: auto;
}

.dash-compact .dash-nav {
    display: none;
}

.dash-nav::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

@media (max-width: 991.98px) {
    .dash-nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 1070;
    }

        .dash-nav.mobile-show {
            display: block;
        }
}

.dash-nav header {
    min-height: 84px;
    /*padding: 8px 27px;*/
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

    .dash-nav header .menu-toggle {
        display: none;
        margin-right: auto;
    }

@media (max-width: 991.98px) {
    .dash-nav header .menu-toggle {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.dash-nav.dash-nav-dark {
    background-color: #181F2C;
}

    .dash-nav.dash-nav-dark a {
        color: #fff;
    }

.dash-nav-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .dash-nav-list a {
        color: #445463;
    }

        .dash-nav-list a:hover {
            text-decoration: none;
            color: #0c2f4e;
            background-color: #ffffff;
            box-shadow: 0px 3px 9.4px 0.6px rgba(50,102,148,0.1)
        }

.dash-nav-title {
    background: transparent;
    color: #adb5bd;
    padding: 0.375rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: none;
    text-align: left;
}

.dash-nav-item {
    min-height: 56px;
    padding: 8px 20px 8px 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    letter-spacing: .02em;
}

@media (max-height: 670px) {
    .dash-nav-item {
        min-height: 42px;
    }
}

    .dash-nav-item i {
        width: 36px;
        font-size: 24px;
    }

    .dash-nav-item.active {
        text-decoration: none;
        color: #0c2f4e;
        background-color: #ffffff;
        box-shadow: 0px 3px 9.4px 0.6px rgba(50,102,148,0.1);
    }

    .dash-nav-item span {
        width: 35px;
        margin-left: auto;
    }

.dash-nav-dark .dash-nav-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.dash-nav-dropdown {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.dash-nav-dark .dash-nav-dropdown.show {
    background: rgba(255, 255, 255, 0.04);
}

.dash-nav-dropdown.show > .dash-nav-dropdown-toggle {
    font-weight: bold;
}

    .dash-nav-dropdown.show > .dash-nav-dropdown-toggle:after {
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }

.dash-nav-dropdown.show > .dash-nav-dropdown-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.dash-nav-dropdown.show .dash-nav-dropdown.show {
    background: none;
}

.dash-nav-dropdown-toggle:after {
    content: "";
    margin-left: auto;
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-end: 5px solid transparent;
    border-top: 5px solid rgba(81, 81, 81, 0.8);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.dash-nav-dark .dash-nav-dropdown-toggle:after {
    border-top-color: rgba(255, 255, 255, 0.72);
}

.dash-nav-dropdown-menu {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .dash-nav-dropdown-menu > .dash-nav-dropdown .dash-nav-dropdown-menu .dash-nav-dropdown-item {
        padding-left: 87px;
    }

.dash-nav-dropdown-item {
    min-height: 40px;
    padding: 8px 20px 8px 70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

    .dash-nav-dropdown-item:hover {
        background: rgba(255, 255, 255, 0.04);
    }

.menu-toggle, .searchbox-toggle, .searchbox-submit, .tools-item {
    position: relative;
    width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #515151;
}

    .menu-toggle:hover, .searchbox-toggle:hover, .searchbox-submit:hover, .tools-item:hover, .menu-toggle:active, .searchbox-toggle:active, .searchbox-submit:active, .tools-item:active, .menu-toggle:focus, .searchbox-toggle:focus, .searchbox-submit:focus, .tools-item:focus {
        text-decoration: none;
        color: #515151;
    }

    /*    .menu-toggle i, .searchbox-toggle i, .searchbox-submit i, .tools-item i {
        font-size: 20px;
    }*/

    .tools-item .tools-item-count {
        width: 15px;
        height: 15px;
        border-radius: 20px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        top: 3px;
        right: 3px;
        font-style: normal;
        font-size: 11px;
        background: #FF5A00;
        color: #fff;
    }

.dash-toolbar {
    min-height: 90px;
    background-color: #FFFFFF;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 27px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
}

@media (min-width: 992px) {
    .dash-toolbar {
        left: 320px;
    }

    .dash-compact .dash-toolbar {
        left: 0;
    }
}

.tools {
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

    .tools a {
        color: #515151;
    }

/*   Zusätzliches  */
.input-group-text-datum {
    padding: 0.315rem 0.75rem;
}

.bg-light {
    background-color: #f3f3f3 !important;
}

.headerContainer {
    min-height: 400px;
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 0px !important;
    /*margin-top: -3rem;*/
}

@media (max-width: 768px) {
    .headerContainer {
        min-height: 280px;
        height: 280px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        padding: 0px !important;
        /*margin-top: -3rem;*/
    }
}

.background-home {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("./themes/bbt/images/bbtheaderbild.jpg");
}

.background-startseite {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("./themes/bbt/images/bbtheaderbild.jpg");
}

.background-person {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("./themes/bbt/images/bbtheaderbild.jpg");
}

.background-policen {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("./themes/bbt/images/bbtheaderbild.jpg");
}

.background-fragebogen {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("./themes/bbt/images/bbtheaderbild.jpg");
}

.background-dokumente {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("./themes/bbt/images/bbtheaderbild.jpg");
}

.background-praemien {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("./themes/bbt/images/bbtheaderbild.jpg");
}

.background-leistungen {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("./themes/bbt/images/bbtheaderbild.jpg");
}

.background-kobe {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("./themes/bbt/images/bbtheaderbild.jpg");
}

.background-rechnung {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("./themes/bbt/images/bbtheaderbild.jpg");
}

.background-veka {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("./themes/bbt/images/bbtheaderbild.jpg");
}

.background-anfrage {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("./themes/bbt/images/bbtheaderbild.jpg");
}

.background-mitteilungen {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("./themes/bbt/images/bbtheaderbild.jpg");
}

.background-service {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("./themes/bbt/images/bbtheaderbild.jpg");
}

.headerTitle {
    padding: 2px 0px 2px 30px;
    background-color: rgba(37, 93, 142, 0.8);
    color: #fff;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.headerBeschreibung {
    padding: 10px 30px 2px 0px;
    color: #fff;
    float: right !important;
}

.headerBeschreibung h1 {
    font-size: 60px;
}

@media (max-width: 768px) {
    .headerTitle {
        padding: 2px 0px 2px 15px;
    }
    .headerBeschreibung {
        padding: 2px 15px 2px 0px;
    }
    .headerBeschreibung h1 {
        font-size: 26px;
    }
}


/*.logo {
    min-width: 290px;
}*/

body {
    margin: 0px;
    font-family: 'Nunito', Arial, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

h1 {
    font-size: 26px;
    margin-top: 0.5rem;
}

h2 {
    font-size: 24px;
    color: #02537f;
    margin-top: 0.5rem;
}

h3 {
    font-size: 18px;
    color: #02537f;
}

h4 {
    font-size: 14px;
    color: #02537f;
    margin-top: 0.75rem;
}

h5 {
    font-size: 14px;
    color: #02537f;
}

p {
    font-size: 16px;
}

    p.autohyphens {
        -moz-hyphens: auto;
        hyphens: auto;
    }

/* Bootstrap */
.border-end.border-md {
    border-end-width: 0 !important;
    margin-bottom: 0px;
}

@media (min-width: 768px) {
    .border-end.border-md {
        border-end-width: 1px !important;
        margin-bottom: 0px;
    }
}

.border-start.border-md {
    border-end-width: 0 !important;
}

@media (min-width: 768px) {
    .border-end.border-md {
        border-end-width: 1px !important;
    }
}

.btn-block-100height {
    height: 100%;
}

.btn {
    border-radius: 0em !important;
}

    .btn:focus, .btn.focus {
        outline: 0;
        box-shadow: none;
    }

.btn-primary {
    background-color: #0c2f4e;
    border-color: #0c2f4e;
}

    .btn-primary:hover {
        background-color: #50aecd;
        border-color: #50aecd;
    }

    .btn-primary.disabled, .btn-primary:disabled {
        background-color: #50aecd;
        border-color: #50aecd;
    }

    .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
    .show > .btn-primary.dropdown-toggle {
        background-color: #50aecd;
        border-color: #50aecd;
    }

.btn-outline-primary {
    color: #0c2f4e;
    border-color: #0c2f4e;
}

    .btn-outline-primary:hover {
        background-color: #0c2f4e;
        border-color: #0c2f4e;
    }

    .btn-primary.disabled, .btn-outline-primary:disabled {
        background-color: #0c2f4e;
        border-color: #0c2f4e;
    }

    .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
    .show > .btn-primary.dropdown-toggle {
        background-color: #0c2f4e;
        border-color: #0c2f4e;
    }

.form-control, .form-control-lg,
.form-select, .form-select-lg {
  border-radius: 0em !important;
}

  .form-control:focus, .form-select:focus {
      border-color: #0c2f4e;
      box-shadow: none;
  }

  .form-control:disabled, .form-control[readonly],
  .form-select:disabled, .form-select[readonly] {
    background-color: #e9ecef;
    opacity: 1;
  }

/*.input-group > .form-control {
    border: none;
    border-right: 1px solid #ced4da;
    border-left: none;
    border-bottom: 1px solid #ced4da;
    border-top: 1px solid #ced4da;
}*/

.flex {
    display: flex;
}

.input-group-text {
    color: #515151;
    background-color: #dddddd;
    border-radius: 0em !important;
}

.card {
    border-radius: 0rem;
}

.card-header {
    border-radius: 0rem !important;
}

#accordion .card-header {
    cursor: pointer;
}

.nav-pills .nav-link {
    border-radius: 0rem;
}

    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        background-color: #0c2f4e;
        border-color: #0c2f4e;
    }

.badge-secondary {
    background-color: #50aecd;
}

.alert {
    border-radius: 0rem !important;
}

.bg-praemie {
    background-color: #17a2b8 !important;
}

.fontsize-landing-icon {
    font-size: 14px;
}

a, .nav-link {
    color: #50aecd;
    text-decoration: none !important;
}

a.underline {
    text-decoration: underline !important; 
}

.text-danger {
    color: #ee4a4a !important;
}

.validation-summary-errors ul {
    list-style: none;
    margin-left: -40px
}

.validation-summary-valid.alert-danger {
    display: none;
}

.alert-bbt {
    background-color: #f8d7da !important;
    border-color: #ee4a4a !important;
    border: 0px !important;
    border-start: 4px solid !important;
    border-radius: 0rem !important;
}

.list-group-startseite {
    border-radius: 0rem;
}

.list-group-item-startseite::before {
    content: "●";
    margin-right: 0.5rem;
    font-size: 12px;
}

.text-info.ungelesen::before {
    content: "●";
    padding-right: 15px;
}

.dokumentStichdatum {
    padding-left: 27px;
}

.dokumentGelesen {
    padding-left: 27px;
}

.dokumentcard:last-child {
    border-bottom: 3px !important;
}

.popover {
    max-width: 500px;
}

.overflowVisible {
    overflow: visible;
}

/* Landing page: Image / Teaser */
.container-teaser {
    position: relative;
    text-align: left;
    /*height: 400px;*/
}

.card-teaser {
    border: 0px;
    background-color: transparent;
}

.teaser-ueberschrift {
    position: absolute;
    top: 25%;
    left: 16px;
}

.teaser-title {

}

.teaser-subtitle {
    font-weight: 300 !important;
    color: #6c757d !important;
}

@media (max-width: 768px) {
    .teaser-ueberschrift h2 {
        font-size: 10px;
    }

    .teaser-ueberschrift p {
        font-size: 8px;
    }
}

/* Dashbord: Image / Teaser */
/*.headerDashbord {
    padding: 2px 0px 2px 30px;
    background-color: rgba(37, 93, 142, 0.8);
    color: #fff;
    position: absolute;
    width: 100%;
    bottom: 0;
}

@media (max-width: 768px) {

    .headerDashbord h1 {
        font-size: 1.2rem;
    }
}*/
/* Accordion Icons */
[data-bs-toggle="collapse"] i.material-icons.accordion-toggle:before {
    content: "arrow_drop_down";
}

[data-bs-toggle="collapse"].collapsed i.material-icons.accordion-toggle:before {
    content: "arrow_left";
}

/* DateTimePicker */
.bootstrap-datetimepicker-widget {
    font-size: 14px;
}

div.bootstrap-datetimepicker-widget table {
    width: 190px;
    margin: 0px 20px;
}

.datepicker table tr td.new, .datepicker table tr td.old {
    height: 0;
    line-height: 0;
    visibility: hidden;
}

.date-picker:hover,
.date-picker-12months:hover,
.date-picker-firstDayNextMonth:hover,
.date-picker-notinfuture:hover,
.date-picker-onlyFuture:hover,
.date-picker-StartOfYear:hover {
  cursor: pointer;
}

/* Modal */
.modal {
    text-align: center;
}

.modal-title {
  width: 100%;
}

@media screen and (min-width: 768px) {
    .modal:before {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

.modal-backdrop.in {
    opacity: 0.1;
}

/* Spinner */
.searching_spinner_center {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
}

/* Datumsfelder */
.datumstagfeld {
    width: 45px !important;
    margin-left: 2px;
    padding: 6px 12px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px !important;
}

.datumsmonatfeld {
    width: 120px !important;
    margin-left: 2px;
    padding: 6px 12px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px !important;
}

.datumsjahrfeld {
    width: 60px !important;
    margin-left: 2px;
    padding: 6px 12px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px !important;
}

/* DocumentUploader */
.DocumentUploader iframe {
    width: 100%;
    height: 750px;
    background: #FFF;
    border: inset;
}

/*Temporär ???*/

/*.input-group-prepend > div > i {
    width: 12px;
}*/

/* Cookies Infoblock */
#cookieInfoBlockPortal, #cookieInfoBlockOfferten, #cookieInfoBlockVermittler {
    text-align: center;
    color: grey;
    background: rgba(229, 229, 229, 0.90);
    position: fixed;
    bottom: 0px;
    z-index: 10000;
    width: 100%;
    font-size: 15px;
}

#cookieInfoBlockText {
    padding-bottom: 30px;
    padding-left: 10px;
    padding-right: 200px;
    padding-top: 30px;
}

#cookieInfoBlockCloser {
    position: absolute;
    right: 30px;
    top: 20px;
    cursor: pointer;
}

@media (max-width: 768px) {
    #cookieInfoBlockText {
        padding-right: 10px;
    }

    #cookieInfoBlockCloser {
        position: relative;
        bottom: 10px;
        right: 0px;
        top: -20px;
    }
}

.card-block span {
    width: 35px;
    float: right;
}

@media (min-height: 900px) {
    .bodyHeight {
        height: 100%;
    }
}

.ibbt-icon {
    color: #0c2f4e;
    background: linear-gradient(63deg, rgba(80,174,205,1) 0%, rgba(12,47,78,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-icon {
    color: #0c2f4e;
    background: linear-gradient(63deg, rgba(80,174,205,1) 0%, rgba(12,47,78,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.SpinnerHausarztSuchen {
    position: absolute;
    display: block;
    top: 55%;
    left: 50%;
    display: none;
}

.veka-image {
    max-width: 100%;
    padding-bottom: 20px;
}

.mitteilung-versicherter {
    background-color: lightgray;
    margin-left: 20%;
}

.mitteilung-versicherung {
    margin-right: 20%;
}

#fensterMitteilungErstellenId .modal-dialog {
    width: 60%;
    max-width: 100%;
}

#fensterMitteilungErstellenId textarea {
    height: 400px;
}

@media (max-width: 768px) {
    #fensterMitteilungErstellenId .modal-dialog {
        width: 90%;
    }

    #fensterMitteilungErstellenId textarea {
        height: 200px;
    }
}

.uploadFile-TextArea {
    display: inline;
    width: 97%;
}

.uploadFile-Icon {
    width: 3%;
    display: inline;
    position: absolute;
    cursor: pointer;
}

/* nunito-regular - cyrillic_cyrillic-ext_latin_latin-ext_vietnamese */
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    src: url('../webfonts/google/nunito-v25-cyrillic_cyrillic-ext_latin_latin-ext_vietnamese-regular.eot'); /* IE9 Compat Modes */
    src: url('../webfonts/google/nunito-v25-cyrillic_cyrillic-ext_latin_latin-ext_vietnamese-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../webfonts/google/nunito-v25-cyrillic_cyrillic-ext_latin_latin-ext_vietnamese-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../webfonts/google/nunito-v25-cyrillic_cyrillic-ext_latin_latin-ext_vietnamese-regular.woff') format('woff'), /* Modern Browsers */
    url('../webfonts/google/nunito-v25-cyrillic_cyrillic-ext_latin_latin-ext_vietnamese-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../webfonts/google/nunito-v25-cyrillic_cyrillic-ext_latin_latin-ext_vietnamese-regular.svg#Nunito') format('svg'); /* Legacy iOS */
}