@import url("https://fonts.googleapis.com/css?family=Heebo:300,400,500,700");
@import url("parsley.css");

/* stylelint-disable no-descending-specificity */

:root {
    --primary-color: #024089;
    --secondary-color: #ffffff;
    --on-tile: #024089;
    --on-background: #ffffff;
}

.on-tile {
    color: var(--on-tile);
}

.on-background {
    color: var(--on-background);
}

/* must be added, because the background for the cart is always black and the h4 must be white to be readable */
.cart-body h4 {
    color: white;
}

/* Hide Login Icon */
/* stylelint-disable-next-line selector-id-pattern -- can't change because all themes needs to be changed if this was changed within the code */
#loginButton .small-circle {
    display: none;
}

body {
    font-family: Heebo, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #383838;
    background: none;
    padding: 0;
}

/* Logo Login */
.logo-single-container {
    margin: 0 auto;
    height: 65px;
    width: 100%;
    background-image: url("img/logo.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: relative;
    z-index: 1;
}

header.text-center {
    background: #ffffff;
    z-index: 0;
    height: 120px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (width <= 767px) {
    header.text-center {
        margin-top: 50px;
    }
}

/* Logo Sidebar */
.logo {
    width: 190px;
    height: 100px;
    background-image: url("img/logo.png");
    background-repeat: no-repeat;
    background-size: contain !important;
    background-position: center center !important;
    position: fixed;
    left: 20px;
    z-index: 3;
}

/* Buttons */
.btn-co-link {
    color: #ffffff;
    background-color: #024089;
}

.btn-co-link[disabled] {
    color: #ffffff;
}

.btn-co-link:hover,
.btn-co-link:focus {
    color: #ffffff;
    background-color: #024089;
}

.btn-co-link-attention {
    background-color: #024089;
    border-color: #024089;
}

.btn-co-link-attention:hover,
.btn-co-link-attention:focus {
    background-color: #024089 !important;
    border-color: #024089 !important;
}

.btn-co-action {
    background-color: #024089;
    border-color: #024089;
}

.btn-co-action:hover,
.btn-co-action:focus {
    background-color: #024089;
    border-color: #024089;
}

.btn-co-paging {
    background-color: #024089;
    border-color: #024089;
}

.btn-co-paging:hover,
.btn-co-paging:focus {
    background-color: #024089;
    border-color: #024089;
}

.btn-co-default {
    background-color: #024089;
    border-color: #024089;
}

.btn-co-default:hover,
.btn-co-default:focus {
    background-color: #ffffff;
    border-color: #024089;
}

/*********************
 * Labels
 ********************/

/*********************
 * Badge
 ********************/
.badge {
    border-radius: 0.25rem;
    color: #ffffff;
    display: inline-block;
    font-weight: 400;
    padding: 0.2rem 0.5rem 0.1rem;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

/*********************
 * Other
 ********************/
.progress-bar-co-wizard {
    background-color: #56bc76;
}

/*********************
 * Retina stuff
 ********************/
@media only screen and (resolution >= 192dpi), only screen and (resolution >= 2dppx) {
    .logo-single-container,
    .logo {
        background-image: url("img/logo.png");
        background-size: contain;
        background-position: center center;
        display: block;
    }
}

/*********************
 * UPDATE TN
 ********************/

html,
body {
    width: 100%;
    background: #024089;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgb(0 0 0 / 0%);
}

/* BUTTONS */

button,
.btn,
.btn-primary,
.cmmds-to-offer-button,
.btn-co-action,
.btn-info {
    color: #ffffff;
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
}

/* stylelint-disable-next-line selector-id-pattern -- can't change because all themes needs to be changed if this was changed within the code */
.btn,
#loginButton {
    align-items: center;
    border-radius: 2px;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 500;
    height: 50px;
    justify-content: center;
    margin: 6px 8px;
    min-width: 88px;
    outline: 0;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), color 1ms;
    user-select: none;
    vertical-align: middle;
}

/* stylelint-disable-next-line selector-id-pattern -- can't change because all themes needs to be changed if this was changed within the code */
#loginButton:hover {
    opacity: 0.9;
}

.btn:hover,
.btn:focus {
    color: #ffffff;
}

.btn-primary,
.btn-co-link,
.btn-info,
.btn-co-default {
    background-color: #024089;
    border-color: #024089;
}

.btn-sm {
    font-size: 13px;
    height: 28px;
    padding: 0 8px;
}

.btn-inverse:hover,
.btn-primary:hover,
.btn-co-link:hover,
.btn-inverse:focus,
.btn-inverse.focus,
.btn-inverse:active,
.btn-inverse.active,
.btn-info:hover,
.btn-info:active,
.btn-info:focus,
.btn-co-default:hover,
.btn-co-default:active,
.btn-co-default:focus,
.open > .btn-inverse.dropdown-toggle {
    color: #fffff1;
    background-color: #024089;
    border-color: #024089;
    opacity: 0.9;
}

.btn-default:hover,
.btn-inverse:hover,
.btn-primary:hover,
.btn-co-link:hover,
.btn-inverse:focus,
.btn-inverse.focus,
.btn-inverse:active,
.btn-inverse.active,
.btn-co-action:hover,
.btn-co-default:hover,
.btn-co-default:active,
.btn-co-default:focus,
.open > .btn-inverse.dropdown-toggle {
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
}

.btn-default:active,
.btn-inverse:active,
.btn-primary:active,
.btn-co-link:active,
.btn-co-action:active {
    box-shadow: 0 5px 5px -3px rgb(0 0 0 / 20%), 0 8px 10px 1px rgb(0 0 0 / 14%), 0 3px 14px 2px rgb(0 0 0 / 12%);
}

/* FORMS */

input,
button,
select,
textarea {
    min-height: 40px;
}

select.form-control {
    height: 40px !important;
}

legend {
    padding-bottom: 10px;
}

.radio label {
    margin-bottom: 10px;
}

/* TYPOGRAPHY */
html {
    font-size: 16px;
}

label,
input,
button,
select,
textarea {
    font-weight: 400;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: inherit;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
}

.h1,
h1 {
    font-size: 1.75rem;
}

.h2,
h2 {
    font-size: 1.5rem;
}

.h3,
h3 {
    font-size: 1.375rem;
}

.h4,
h4,
.error-info {
    font-size: 1.125rem;
}

.h5,
h5,
.tab-header,
.widget > header h4,
.modal-title {
    font-size: 1rem;
}

.h6,
h6,
.label,
.badge {
    font-size: 0.875rem;
}

/*
.thumbnail .caption .description {
    font-size: .75rem;
}
*/

.page-title {
    font-weight: 500;
    line-height: 1.2;
    font-size: 1.5rem;
}

h1.error-code {
    line-height: 1.2;
}

.wizard-navigation a {
    color: #f5f5f5;
}

.form-actions,
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.btn-default.selectpicker,
.btn-default.selectpicker:hover,
.btn-default.selectpicker:active,
.btn-default.selectpicker:focus,
.open > .btn-default.dropdown-toggle,
.privacy-frame {
    background-color: #f5f5f5;
}

.panel-group .panel-heading {
    background: #f5f5f5;
    color: #ffffff;
}

.panel-group .panel .panel-heading a {
    color: #495057;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    padding: 1rem;
    text-decoration: none;
}

.feed-item-body .time,
caption {
    color: #7a7a7a;
}

.form-control.input-transparent {
    background-color: #f5f5f5;
}

a,
.input-group-addon,
footer div,
.form-actions .forgot,
.platzhalter,
.description {
    color: #757575;
}

a {
    color: #024089;
}

a:hover,
a:focus {
    color: #024089;
}

.input-group-addon {
    background: #024089;
    color: #ffffff;
}

/* stylelint-disable-next-line selector-id-pattern -- can't change because all themes needs to be changed if this was changed within the code */
.radio label::after,
body #sendFeedbackForm .radio input[type = "radio"]:checked + label::after {
    background-color: #757575;
}

footer div {
    background: #262626;
    color: #ffffff;
}

.privacy-frame,
.help-block,
legend small {
    color: #383838;
}

.form-control.input-transparent::placeholder,
.error-help {
    color: #383838;
    opacity: 0.75;
}

h1,
h2,
h3,
h4,
h5,
h6,
.thumbnail .caption,
.search-result-item .description,
.page-title,
legend,
.widget .table th,
.form-control.input-transparent,
.btn-default.selectpicker,
.btn-default.selectpicker:hover,
.btn-default.selectpicker:active,
.btn-default.selectpicker:focus,
.open > .btn-default.dropdown-toggle,
.panel-group .panel-heading + .panel-collapse .panel-body,
#wizard .nav-pills > li.active > a,
#wizard .nav-pills > li.active > a:hover,
#wizard .nav-pills > li.active > a:focus,
.form-control.input-transparent:focus,
.form-control.input-transparent:active,
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.alert-danger,
#wizard .nav-pills > li > a:hover,
#wizard .wizard-navigation li.active a,
.error-code {
    color: #383838;
    opacity: 1;
}

.page-title small {
    color: rgb(255 255 255 / 75%);
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus,
.wizard-navigation a {
    color: #383838;
    opacity: 0.33;
}

.btn-default.selectpicker .caret {
    border-top-color: #383838;
}

.cmmds-cart-page .alert-warning {
    background: #383838;
    border: none;
    color: #ffffff;
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active {
    background: #024089;
}

.open > .btn-default.dropdown-toggle {
    background: #ffffff;
}

.panel {
    background: #ffffff;
}

/* stylelint-disable-next-line selector-class-pattern -- can't change because all themes needs to be changed if this was changed within the code */
.removeLinkStyling {
    color: initial !important;
}

/* PAGE HEADER */

.page-header {
    margin: 0;
    background: #f5f5f5;
    border-radius: 0;
    z-index: 1;
    box-shadow: 0 4px 15px 0 rgb(0 0 0 / 9%);
}

@media (width <= 767px) {
    .page-header {
        position: fixed;
        width: 100%;
    }

    #sidebar {
        z-index: 999;
    }

    #sidebar .side-nav > li span {
        display: inline-block;
    }

    .content {
        padding: 85px 2.5641% 100px !important;
    }
}

.page-header .col-sm-6 {
    display: none;
}

.page-header .navbar {
    display: inline-block !important;
    width: 100%;
}

.page-header .nav > li > a,
.page-header .nav > li > form > a,
.page-header .nav > li > form > a > i,
.page-header .navbar .nav > li > a:hover,
body .page-header .nav > li > a:focus {
    color: #383838;
    transition: all 0.1s ease;
}

.page-header .nav > li > a:hover,
.page-header .nav > li > form > a:hover i {
    transform: scale(1.1);
}

/* SIDEBAR */

.sidebar {
    width: 100%;
    margin-left: 0;
    top: 56px;
    background: #ffffff;
    z-index: 0;
    margin-top: 0;
    font-weight: 400;
}

.side-nav li.active > a {
    font-weight: 500;
    color: #024089;
}

@media (width <= 767px) {
    .sidebar .side-nav,
    .sidebar-on-right .sidebar .side-nav {
        margin: 30px 0;
    }

    .logo {
        width: 150px;
        height: 54px;
    }
}

@media (768px <= width) {
    .sidebar {
        top: 0;
        padding-top: 130px;
        height: 100%;
        z-index: 2;
        width: 250px;
        box-shadow: 0 0 10px 0 rgb(0 0 0 / 50%);
    }
}

@media (768px <= width <= 1199px) {
    .sidebar {
        width: 190px;
    }

    .wrap {
        margin-left: 190px !important;
    }

    .logo {
        width: 150px !important;
    }
}

.side-nav li a:hover,
.side-nav li a:focus {
    background: rgb(17 75 139 / 20%);
}

.side-nav li i[class *= "fa"] {
    width: 16px;
    margin-right: 15px;
    line-height: 20px;
    font-size: 14px;
    opacity: 0.7;
}

.side-nav li a {
    padding: 14px 20px;
    border-radius: 2px;
    color: #020303;
}

/* CONTENT */

.content {
    padding: 25px 2.5641% 100px;
}

.wrap {
    margin-left: 250px;
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
}

.widget {
    padding: 0;
}

.widget header,
.widget .body,
.modal-body,
.modal-header {
    padding: 1rem 1.25rem;
}

.widget .body {
    margin-top: 0;
}

.widget:not(.widget-tabs) .tab-content,
.widget .body header {
    padding: 0;
}

.widget-tabs .body.tab-content,
.widget,
.widget:not(.widget-tabs) .tab-content {
    background: #ffffff;
}

.widget,
.widget-tabs .tab-content:not(.cmmds-inner-container) {
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 20%);
}

.widget-tabs .tab-pane .body,
.widget:not(.widget-tabs) .tab-content {
    background: #ffffff;
}

.widget-tabs .nav > li:not(.active) > a {
    background: transparent;
    color: #383838;
}

.widget-tabs .nav > li > a {
    margin-right: 20px;
    padding: 12px 0 8px;
}

.widget-tabs .nav > li.active > a,
.widget-tabs .nav > li.active > a:hover,
.widget-tabs .nav > li > a:hover {
    background: transparent;
    color: #383838;
    border-bottom: 2px solid #383838 !important;
    border-radius: 0 !important;
}

#offers-section.widget-tabs .nav > li > a:hover {
    border-bottom-color: #ffffff !important;
}

.widget-tabs .nav > li:not(.active) > a:hover {
    background: rgb(255 255 255 / 25%);
    color: #383838;
}

.tab-header,
.widget,
.widget > header {
    color: #383838;
}

@media (1199px <= width <= 1299px) {
    .search-result-item .image-link {
        max-width: 150px !important;
    }

    .search-result-item-body {
        margin-left: 150px;
    }
}

.search-result-item,
.thumbnail {
    background: transparent;
}

.search-result-item .info {
    color: #757575;
}

/* meine Vorteile */

.widget-tabs .body {
    overflow: visible;
}

.widget-tabs .body.cmmds-advantages-container {
    padding: 12px 0;
}

@media (width <= 768px) {
    .widget-tabs header {
        border-bottom: none;
        margin-bottom: 20px;
    }
}

/* ANGEBOTE */

.cmmds-offer-container {
    margin-bottom: 38px;
    background: #ffffff;
    padding: 1rem 0.75rem;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 20%);
}

.cmmds-offer-container,
.cmmds-offer-container-reward {
    transition: all 0.3s ease;
    -webkit-font-smoothing: subpixel-antialiased;
    backface-visibility: hidden;
    transform: perspective(1px) translateZ(0);
}

.cmmds-offer-container:hover,
.cmmds-offer-container-reward:hover {
    box-shadow: 0 1px 20px 1px rgb(0 0 0 / 20%);
    transform: scale(1.022) perspective(1px) translateZ(0);
    transform-origin: 50% 50%;
}

.cmmds-offer-container small {
    opacity: 0.65;
}

.thumbnail {
    margin-bottom: 40px;
}

/* und ausserdem... */

#additional img {
    border: none !important;
    margin-bottom: 0;
}

#additional tr {
    display: inline-block;
    padding: 1rem 0.75rem;
    background: #ffffff;
    margin-bottom: 40px;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 20%);
    border-radius: 3px;
}

/* DATENSCHUTZ */

#user-form dt {
    font-weight: 400;
}

#user-form dt,
#user-form dd {
    padding: 1rem 0;
}

/* TABLES */

.table {
    width: 100%;
}

@media (768px <= width) {
    table {
        width: 100% !important;
    }
}

.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
    color: #383838;
    font-size: 14px;
    height: 3.75rem;
    vertical-align: middle;
    border-top: none;
    text-transform: none;
}

tbody tr:last-child {
    border-bottom: 1px solid rgb(0 0 0 / 12%);
}

form tbody tr:last-child {
    border-bottom: none;
}

table tbody tr {
    transition: background 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
    will-change: background;
}

.table-striped > tbody > tr:nth-child(odd) {
    background: #ffffff;
}

table tbody tr:nth-child(2n),
table thead tr {
    background-color: #f5f5f5;
}

form table tbody tr:nth-child(2n) {
    background-color: #ffffff;
}

tfoot {
    background: transparent;
    border-top: 1px solid #f5f5f5;
}

table tbody td:first-child,
table tbody td:not(:first-child),
table tbody th:first-child,
table tbody th:not(:first-child),
table thead td:first-child,
table thead td:not(:first-child),
table thead th:first-child,
table thead th:not(:first-child),
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
    padding: 0 24px;
}

input[type = "search"].input-transparent,
input.search.input-transparent {
    border: none;
    color: #383838;
    background: url("../img/search-blue.png") 5px 10px no-repeat #f5f5f5;
}

/* LOGIN */
body.cmmds-login-page::before {
    content: "";
    position: absolute !important;
    inset: 75vh 0 0;
    z-index: 1;
    background: url("img/cmmds-wave.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.cmmds-login-page,
.cmmds-registration-page,
.cmmds-article-details-page,
.cmmds-booking-list-page,
.cmmds-help-page,
.cmmds-imprint-page,
.cmmds-cart-page,
.cmmds-account-page,
.cmmds-bikeleasing-page,
.cmmds-dashboard-page {
    position: absolute !important;
    inset: 0;
    background: url("img/background.jpg") no-repeat #024089;
    background-size: cover;
}

.cmmds-login-page .widget {
    border-radius: 0;
}

.cmmds-login-page .container,
.cmmds-login-page .row {
    height: 100%;
}

@media (768px <= width) {
    .cmmds-login-page > .container > .row {
        display: flex;
        align-items: center;
    }
}

.cmmds-login-page .widget > footer {
    border-radius: 0;
}

/* stylelint-disable-next-line selector-id-pattern -- can't change because all themes needs to be changed if this was changed within the code */
a#loginButton {
    margin: 0;
}

.form-actions .small-circle {
    margin-right: 5px;
}

.form-actions .small-circle i {
    margin: 0;
}

/* BUTTONS ETC */

.btn {
    margin: 0;
}

.btn .fa {
    margin: 0 0.5rem;
}

.bootstrap-select > .btn {
    margin-top: 0;
}

.bootstrap-select.btn-group .dropdown-menu.open {
    min-width: inherit !important;
}

.dropdown-menu {
    border-radius: 0;
    top: calc(100% + 12px);
    padding: 0;
    border: 0;
}

.dropdown-menu > li > a {
    padding: 10px 25px 10px 12px;
}

/* stylelint-disable-next-line selector-class-pattern -- can't change because all themes needs to be changed if this was changed within the code */
.dataTables_length > label {
    margin-top: 8px;
}

/* stylelint-disable-next-line selector-class-pattern -- can't change because all themes needs to be changed if this was changed within the code */
.dataTables_length > label .form-control {
    margin-top: -8px;
    margin-right: 8px;
}

/* MISC */
/* stylelint-disable-next-line selector-class-pattern -- can't change because all themes needs to be changed if this was changed within the code */
.welcomeAndName {
    position: absolute;
    right: 10px;
    width: auto;
    font-weight: 400;
    padding: 10px;
}

#cart span:not(.fa) {
    font-size: 14px;
    padding: 0 4px;
    font-weight: 600;
    display: inline-block;
    line-height: 36px;
}

/* stylelint-disable-next-line selector-id-pattern -- can't change because all themes needs to be changed if this was changed within the code */
#contentPanelGroup .btn {
    width: auto !important;
}

/* stylelint-disable-next-line selector-id-pattern -- can't change because all themes needs to be changed if this was changed within the code */
#datatable-table_wrapper {
    overflow-x: scroll;
}

@media (1021px <= width) {
    #datatable-table .btn {
        width: 100%;
    }
}

/* stylelint-disable-next-line selector-id-pattern -- can't change because all themes needs to be changed if this was changed within the code */
#datatable-table_wrapper #datatable-table {
    margin-top: 30px;
}

/* stylelint-disable-next-line selector-id-pattern -- can't change because all themes needs to be changed if this was changed within the code */
.cmmds-cart-page #datatable-table_wrapper #datatable-table {
    margin-top: 20px;
}

.widget-tabs .body.cmmds-free-txt-advantages-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* FOOTER */

body > footer {
    font-weight: 400;
    position: relative;
}

@media (768px <= width) {
    body > footer {
        position: fixed;
    }
}

/* MODAL */

.modal-header .close {
    margin-top: -10px;
    font-size: 1.5rem;
    box-shadow: none;
}

.modal-body p {
    margin: 0 0 30px;
}

/* TOUR / WELCOME PAGE */

.cmmds-registration-page header {
    padding-top: 5%;
    padding-bottom: 20px;
}

body.cmmds-registration-page {
    font-size: 16px;
}

body.cmmds-registration-page p {
    line-height: 1.8;
}

.cmmds-registration-page .container {
    max-width: 860px;
}

.cmmds-registration-page .widget .body {
    padding: 1.25rem 2.25rem;
}

#wizard .tab-pane {
    padding: 0;
}

#wizard .description {
    margin: 2rem 0 0;
}

#wizard .nav-justified > li {
    padding: 0;
    width: 33.333%;
}

#wizard .wizard-navigation {
    display: flex;
    margin-bottom: 0;
}

#wizard .nav-pills > li > a {
    margin: 0;
}

#wizard .nav-pills > li.active > a,
#wizard .nav-pills > li.active > a:hover,
#wizard .nav-pills > li.active > a:focus {
    background: transparent;
}

#wizard .progress-small {
    height: 15px;
}

.form-wizard .progress {
    margin-bottom: 30px;
}

.privacy-frame {
    margin-top: 1.5rem;
    margin-bottom: 1.75rem;
}

.privacy-frame h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-frame h5 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.cmmds-registration-page table tbody td {
    padding: 0;
}

.error-info {
    line-height: 1.6em;
}

.widget.large {
    height: auto;
}

.cmmds-offer-container-reward {
    background: #ffffff;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 20%);
}

#offers-section table h4,
#offers-section table h5 {
    color: #333333;
}

#offers-section .cmmds-outer-container {
    background: transparent;
}

#offers-section.widget-tabs .tab-content:not(.cmmds-inner-container) {
    box-shadow: none;
}

#offers-section .nav-tabs > li > a {
    border-radius: 3px;
}

.feed-item .icon {
    background: rgb(51 51 51 / 10%);
}

/* MITARBEITERVORTEILE */

/* stylelint-disable-next-line selector-class-pattern -- can't change because all themes needs to be changed if this was changed within the code */
#mivo .listImage {
    padding: 0;
    overflow: visible;
    margin-left: -12px;
    margin-right: -12px;
    margin-top: -16px;
}

/* stylelint-disable-next-line selector-class-pattern -- can't change because all themes needs to be changed if this was changed within the code */
#mivo .listImage img {
    position: relative;
}

#mivo .thumbnail .label {
    position: absolute;
    top: 15px;
    left: 15px;
    border-radius: 100px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 6px 14px;
    background: #f91942;
}

.cmmds-article-details-page #mivo .thumbnail .label:not(.more-images) {
    padding: 12px 28px;
    font-size: 16px;
}

#mivo .thumbnail .label.more-images {
    bottom: 15px;
    top: initial !important;
    right: 15px;
}

#mivo .thumbnail .caption .description {
    height: 70px;
    position: relative;
}

#mivo .cmmds-offer-container:hover .action {
    color: #000000;
}

#mivo .thumbnail .caption .description::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 30px;
    background: linear-gradient(rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 100%) 56%, rgb(255 255 255 / 100%) 100%);
    left: 0;
    bottom: 0;
}

/* detail page */
/* stylelint-disable-next-line selector-class-pattern -- can't change because all themes needs to be changed if this was changed within the code */
.cmmds-article-details-page .back-Button {
    border: none;
    box-shadow: none;
    margin-right: 5px;
}

.cmmds-article-details-page #mivo .thumbnail {
    padding: 0;
    margin: -16px -20px 0;
}

.body.description {
    margin-top: -20px;
}

.cmmds-article-details-page .widget-tabs {
    margin-bottom: 15px;
}

.cmmds-article-details-page #mivo ol {
    margin-bottom: 20px;
}

/* Light Typo on dark Backgrounds */

.cmmds-imprint-page h1.page-title,
.cmmds-help-page h1.page-title,
.cmmds-account-page h1.page-title,
.cmmds-dashboard-page h1.page-title,
.cmmds-bikeleasing-page h1.page-title,
.cmmds-dashboard-page h5,
.cmmds-article-details-page h1.page-title,
.cmmds-booking-list-page h1.page-title,
.cmmds-booking-list-page h1.page-title small,
.cmmds-article-details-page .asterisk-text,
#offers-section.widget-tabs .nav a,
#offers-section label,
#offers-section .tab-header {
    color: #ffffff;
}

#profile ~ .row ol,
#profile ~ .row ol small {
    color: rgb(255 255 255 / 75%);
}

#offers-section.widget-tabs .nav > li.active > a,
#offers-section.widget-tabs .nav > li.active > a:hover {
    border-bottom: 2px solid #ffffff !important;
}

#offers-section #additional > div * {
    color: #ffffff !important;
}

/* marketing */

#marketing tr {
    background: #ffffff;
}

#marketing td {
    vertical-align: middle !important;
    padding: 24px !important;
}

#marketing td img {
    margin-bottom: 0 !important;
}

#marketing table {
    border-collapse: separate;
    border-spacing: 0 24px;
}

#dashboard-introduction tr {
    background: #ffffff;
}

#dashboard-introduction td {
    vertical-align: middle !important;
    padding: 24px !important;
}

#dashboard-introduction td img {
    margin-bottom: 0 !important;
}

#dashboard-introduction table {
    border-collapse: separate;
    border-spacing: 0 24px;
}

#primary-color-tabs .nav-tabs > li.active > a,
#primary-color-tabs .nav-tabs > li.active > a:hover,
#primary-color-tabs .nav-tabs > li > a:hover,
#primary-color-tabs .nav-tabs > li.active > a:focus {
    border-bottom: 2px solid #024089 !important;
}

#primary-color-tabs .nav-tabs > li.active > a {
    background-color: transparent;
}

#primary-color-tabs .nav a {
    color: #024089;
}

.secondary-color {
    color: #ffffff;
}

/* ----- Ende der Datei ----- */
