/* Allgemein */

body {
    font-family: Roboto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Roboto;
    font-weight: 700;
}

main {
    min-height: 97vh;
}

main img {
    height: 300px;
    width: 300px;
}

.abo_bild {
    max-height: 300px;
    min-height: 260px;
    max-width: 300px;
    min-width: 260px;
}

.pointer {
    cursor: pointer;
}

.bg-header-footer {
    background-color: #383737;
}

.card-light {
    -webkit-box-shadow: 0px 3px 4px -1px #B4B4B4;
    box-shadow: 0px 3px 4px -1px #B4B4B4;
    border-radius: 1rem;
    padding: 15px 18px 15px 18px;
}


/* Modal */

.modal-backdrop {
    z-index: 1040;
}


/* Navbar */

.navbar-brand img {
    transform: translateX(-50%);
    left: 50%;
    right: 50%;
    top: 10px;
    position: fixed;
}

.warenkorb-anzahl {
    padding: 0px 5px;
    font-size: 12px;
}

.mobile-navigation a {
    padding: 10px 15px;
    border-bottom: 1px lightgrey solid;
    color: rgb(61, 61, 61);
}

.mobile-navigation a:hover {
    background-color: rgb(248, 249, 250);
}


/* Footer */

footer a {
    text-decoration: none;
}

.footer_icons img {
    max-height: 40px;
    margin: 5px;
}

.payment_img img {
    width: 50px;
}


/* Artikel Bild - Overlay */

.artikel_img {
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .3s ease;
    background-color: var(--bs-primary);
}

.artikel_img:hover .overlay {
    opacity: 0.6;
}

.artikel_img a:focus {
    outline: none;
    border: 0;
}

.overlay p {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}


/* Artikel Titel */

.homeProductTitle {
    height: 70px;
}


/* Benutzerkonto */

.btn-account {
    text-align: start;
    padding: 2px 0 2px 0;
}

a.btn-account {
    font-weight: bold;
}

.btn-account:hover {
    color: var(--bs-primary);
}

.account-active {
    color: var(--bs-primary);
}


/* Input */

input:valid:focus {
    border-color: rgb(12, 122, 249);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 122, 255, 0.514);
    box-shadow: 0 0 0 0.25rem rgba(223, 238, 255, 0.485);
}

.required::after {
    content: "*";
    color: var(--bs-primary);
}


/* Bestellabschluss Zahlungsarten */

.bestell_zahlung_icon {
    height: 20px;
    width: 20px;
    margin: 0 5px;
}


/* Anpassungen Meier */

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0B5C8E;
    --bs-btn-border-color: #0B5C8E;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #07507d;
    --bs-btn-hover-border-color: #07507d;
    --bs-btn-focus-shadow-rgb: 209, 44, 47;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0B5C8E;
    --bs-btn-active-border-color: #0B5C8E;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0B5C8E;
    --bs-btn-disabled-border-color: #0B5C8E;
}

:root {
    --bs-primary-rgb: 11, 92, 142 !important;
    --bs-link-color: #0B5C8E !important;
    --bs-link-color-rgb: 11, 92, 142;
    --bs-link-hover-color: #0B5C8E !important;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: var(--bs-primary);
    outline: 0;
}

input:invalid:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.514);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.485);
}

/* Datepicker */

a.btn.disabled {
  position: relative;
  overflow: hidden;
}

a.btn.disabled::after {
  content: "";
  position: absolute;
  left: -25%;
  top: 50%;
  width: 150%;
  height: 2px;
  background: rgba(255,255,255,0.7);
  transform: rotate(45deg) translateY(-50%);
  pointer-events: none;
  mix-blend-mode: overlay;
}