@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap);

:root {

    --fs-300: 16pt;
    --fs-400: 20pt;
    --fs-500: 25pt;


    --ff: 'Roboto', sans-serif;

    --fw-400: 400;
    --fw-500: 500;

    --primary-clr: #f15125;
    --secondary-clr: #000;
    --tertiary-clr: #717070;
    --tertiary-clr--light: #e8e8e8;

    --sp-100: 1rem;
    --sp-200: 1.875rem;
    --sp-400: 3.75rem;
    --sp-900: 10rem;

    --page-width: 105rem;
    --min-height-main: 69rem;

    --header-height: 5rem;
    --footer-height: 3.5rem;

    --logo-width: 350px;
    --logo-height: 150px;

    --banner-width: 99vw;
    --banner-height: 645px;

    --debug-border: 1px solid fuchsia;
}

html, body {
	min-height: 100%;
}

strong {
    font-weight: bold;
}

.debug-border {
    border: var(--debug-border);
}

.v-app.maintheme.mainui {
    background-color: white;
}

.v-ui.v-scrollable>.v-customlayout.v-layout.v-widget.v-has-width[style="border-style: none; margin: 0px; padding: 0px; width: 100%;"] {
    overflow: unset;
}

body {
    background-color: white;
	font: 300 16px/1.55 "Open Sans", sans-serif;
    color: #464646;
    cursor: default;
}

h2 {
    font-size: 1.6em !important;
    margin-top: 1.6em !important;
    margin-bottom: 0.77em !important;
    letter-spacing: -0.02em !important;
    line-height: 1.1 !important;
    font-weight: 200 !important;
    color: #141414 !important;
}

h3 {
    font-size: 1.2em !important;
    margin-top: 1.8em !important;
    margin-bottom: 0.77em !important;
    line-height: 1.1 !important;
    font-weight: 200 !important;
    color: #141414 !important;
}

.flex {
    display: flex;
}

.flex--column {
    flex-direction: column;
}

.flex--end {
    justify-content: flex-end;
}

.flex--around {
    justify-content: space-around;
}

.modulContainer {
    height: fit-content;
}

.pageWidthWrapper {
	max-width: 105rem;
    width: var(--page-width);
    margin-inline: calc((100% - var(--page-width)) / 2);
}

.container {
    height: fit-content;
    display: flex;
    flex-direction: column;
}

body .container {
	min-height: 100vh;
}

.relative {
    position: relative;
}

.fixed {
    position: fixed;
}

.logo {
    top: var(--sp-100);
    position: relative;
}

.LogoImage {
    display: inline-block;
}

.responsiveDesignImageContainer{
	display: none;
}

#formatImage {
    width: var(--logo-width);
    height: var(--logo-height);
}

.LogoImage img {
    max-width: 100%;
    vertical-align: middle;
}

.logo .editButton {
    left: 2rem;
}

.separator {
    margin-block: 4rem;
    border-top: 2px solid var(--primary-clr);
}

.separator--menu-logo {
    height: .25rem;
    background-color: var(--tertiary-clr--light);
    color: var(--tertiary-clr);
    margin-block-start: var(--sp-400);
    border: none;
}

header {
    width: 100%;
    z-index: 99;
    position: sticky;
    top: 0;
    background-color: white;
	margin-bottom: var(--sp-400);
}

.sticky {
    position: sticky;
}

.breadcrumb.sticky {
    z-index: 100;
    width: fit-content;
    top: calc(var(--header-height) - 1.25rem);
    padding-top: 2rem;
    padding-left: 0%;
    margin-bottom: var(--sp-400);
}

.breadcrumbText {
    background-color: white;
}

.border-link {
    text-decoration: none;
    color: black;
}

.copyright_div a::after {
    content:"  ";
	height: 110%;
	margin: 0 0.5em;
    border-left: 0.5pt solid var(--primary-clr);
}
.copyright_div a:last-child::after {
    content:"";
	border: none;
	width: 0;
	margin: 0;
} 

main {
    position: relative;
    top: calc(var(--header-height) + 5%);
    /*min-height: var(--min-height-main);*/
    height: max-content;
    flex: 1;
}

.footer {
    padding: 2em 0;
    font-family: var(--ff);
	background-color: #d6d6d5;
	font-size: 9pt;
    color: #575756;
}

.footer > * {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.footerText {
    display: flex;
    flex-direction: column;
}

.footerText p{
    margin: 0;
}

.social_media_div {
	display: flex;
    gap: 1rem;
}

.social_media_div a {
    text-decoration: none;
}

img.installation-image {
    height: 40px;
}

.adminSection {
    position: absolute !important;
    left: 1rem;
	top: -6rem;
    font-size: initial;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.adminSection a {
    justify-self: center;
}

.adminSection vaadin-button{
    color: var(--secondary-clr);
    background-color: white;
    border: 1px solid var(--secondary-clr);
    padding-inline: 1rem;
}

.adminSection vaadin-button:hover {
    cursor: pointer;
    filter: invert(1);
}


/*LanguageDropdown*/

.languageButtonsHL {
	display: flex;
	flex-direction: column;
	--vaadin-button-background: transparent;
	--vaadin-button-padding: 0;
	--vaadin-button-margin: 0;
	--vaadin-button-height: 100%;
	gap: 0;
	height: 44px;
	justify-content: space-evenly;
}

.languageButtonsHL vaadin-button::part(prefix) {
	margin-right: 1em;
}

.languageButtonsHL vaadin-button {
	height: 1em;
}

.langDropdownWrapper {
	position: absolute;
    top: 19px;
    right: calc((100% - var(--page-width)) / 2);
}


/*MenÃ¼*/

.menu {
    --_menu-item-margin: 2px;
}

.menu li a {
    font-family: var(--ff);
    font-size: var(--fs-500);
    color: var(--secondary-clr);
    background-color: white;
	padding-bottom: 2px;
}

.menu ul {
    list-style-type: none;
}

.menu .editFrame {
	min-height: 40px !important;
}

.menu a {
    text-decoration: none;
    color: black;
}

.menu ul li button {
    width: 100%;
    height: 100%;
    background-color: white;  
    display: flex;
    justify-content: center;
    align-items: center;  
}

.menu ul li button:hover {
    text-decoration: none;
}

.menu li a:hover {
    text-decoration: none;
}

.menu li.selected>button>a, .menu >li.hasSelectedDescendant>button>a {
    border-bottom: .125rem solid var(--primary-clr);
}

.menuLevel1 button,
.menuLevel2 button,
.menuLevel3 button {
	float: inherit;
    border: none;
    background-color: transparent;
}

.menuLevel1 {
    display: flex;
    padding: 0;
}

.menuLevel1>li {
    width: fit-content;
}

.menuLevel1>li>button>a:hover {
    border-bottom: .125rem solid var(--primary-clr);
	padding-bottom: 0;
}

.menuLevel1>.liMenuEditButton {
    top: 0;
    font-size: initial;
    position: absolute;
    top: -3rem;
}

.menuLevel1>li>button::after {
    font-size: var(--fs-500);
    content: '|';
    padding-inline-start: 2rem;
    padding-inline-end: 1.25rem;
}

.menuLevel1 li:last-child button::after {
	content: none;
}

.menuLevel2,
.menuLevel3 {
    display: none;
    z-index: 99;
}

.menuLevel2>li,
.menuLevel3>li {
	float: left;
	clear: left;
    margin-block-end: var(--_menu-item-margin);
}

.menuLevel2 {
    padding: 0;
}

.menuLevel2>li>button:hover,
.menuLevel3>li>button:hover {
    filter: invert(1);
}

.menuLevel1 li button:focus+.menuLevel2,
.menuLevel1 li:hover>.menuLevel2 {
    display: block;
    background: white;
    width: max-content;
    position: absolute;
}

.menuLevel2 li {
    width: 100%;
    border: 1px solid var(--secondary-clr);
}

.menuLevel2 li.selected>button>a {
    text-decoration: none;
}

.menuLevel2>li>button {
    width: 15rem;
    text-align: left;
}

.menuLevel2 li button:focus+.menuLevel3,
.menuLevel2 li:hover>.menuLevel3 {
    display: block;
    position: absolute;
    left: 100%;
    background: white;
    padding: 0;
    margin-inline-start: calc(var(--_menu-item-margin) * 2);
}

.menuLevel2>.liMenuEditButton {
    left: -12rem;
    top: 0rem;
    font-size: initial;
}

.menuLevel3 {
    width: 100%;
}

.menuLevel3>.liMenuEditButton {
    width: 100%;
    bottom: -1rem;
    font-size: initial;
}

.menuLevel3>li {
    width: 100%;
    border: 1px solid var(--secondary-clr);
    display: inline-flex;
}

.menuLevel3 .liMenuEditButton {
    width: initial;    
}

.menuLevel3>li:hover>.menuEditButton,
.menuLevel3 .liMenuEditButton:hover {
    background: initial;
}

.menuLevel3>li>button>a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-align: left;
}

.editButton .edit_icon,
.menuEditButton .edit_icon {
    width: 1.5rem;
}

.productlist_text_jobs .productlist_title {
    font-size: var(--fs-500);
    font-family: var(--ff);
    color: var(--secondary-clr);
}

.productlist_description_jobs {
    font-size: var(--fs-400);
    font-family: var(--ff);
    color: var(--tertiary-clr);
}

.productlist_text_leistung p, .productlist_text_jobs p, .shopItem_text p {
	white-space: pre-wrap;
}

.productlist_text_leistung .productlist_title, .productlist_description_leistung h1, .shopItem_text .shopItemBezeichnung, .shopItem_detail_entry .shopItemBezeichnung {
    font-size: var(--fs-500);
    font-family: var(--ff);
    color: var(--secondary-clr);
}

.preisWrapper {
	display: flex;
    gap: .5em;
    font-size: x-large;
	align-items: center;
}

.shopItem_detail_entry {
	display: grid;
	grid-template-columns: auto auto auto;
}

.versandArtInfoIcon {
	height: 20px;
}

.productlist_description_leistung h1 {
    font-weight: unset;
    margin: 0;
	
}

.shopItemAttributFelder div {
	display: flex;
	flex-direction: column;
}

.detailButtons {
	display: flex;
    justify-content: space-between;
    align-items: center;
    grid-column-start: 1;
    grid-column-end: 4;
}

.WarenkorbOptionen {
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
	gap: 1em;
}

.shopItemWarenkorbButton, .shopItemWarenkorbButton > * {
	width: 100%;
}

.putInShoppingCartButton, .zurKasse, .deleteProdukt, .editProdukt, .btnKasse {
	--vaadin-button-background: #f15125cc;
    --vaadin-button-text-color: black;
}

.shopItemBackButton {
	font-size: 26.6px;
    align-self: flex-start;
    color: var(--primary-clr);
}

.warenkorbHeader, .kasseHeader {
	font-size: xx-large;
    font-weight: bolder;
    border-bottom: 1px solid var(--primary-clr);
    margin-bottom: 1em;
}

.warenkorbItems {
	display: grid;
	grid-template-columns: auto auto auto auto;
    width: 100%;
	justify-content: space-between;
}

.warenkorbItemWrapper {
	display: contents;
}

.warenkorbItemWrapper::after {
	content: '';
    height: 1px;
    background: var(--primary-clr);
	grid-column: 1 / 5;
	margin: 10px 0 ;
}

.warenkorbImgWrapper, .produktImgNotfound{
	grid-column: 1;
	max-width: 80%;
}

.warenkorbImgWrapper, .warenkorbImg {
	max-width: 80%;
	height: auto;
}

.warenkorbDetailsWrapper {
	grid-column: 2;
}

.warenkorbDetailsWrapper {
	display: contents;
}

.warenkorbItemInfo {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
	align-content: flex-start;
    column-gap: 1em;
	row-gap: 5px;
}

.produktTitelKasse {
	font-size: x-large;
}

.anzahlField {
	width: 120px;
}

.kasseItemButtons, .artikelnummerWrapper, .warenkorbAttrWrapper > div {
    gap: 10px;
    display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.warenkorbOverview > * {
	display: flex;
    flex-direction: column;
    align-items: flex-end;
}

div[location="Verwaltung"] {
    top: 2rem;
    left: 1rem;
    position: absolute;
}

.Warenkorb {
	position: absolute;
    top: -50px;
    right: calc((100% - var(--page-width)) / 2);
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.anzahlArtikelDiv {
	position: absolute;
	height: 15px;
	width: 15px;
	color: white;
	background-color: var(--primary-clr);
	border-radius: 50%;
	z-index: 2;
	left: 17px;
	top: 13px;
	font-size: 12px;	
}

.anzahlArtikelDiv * {
	margin: 0;
	height: 100%;
	width: 100%;
    text-align: center;
}

.shopIcon {
	height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.bestellübersichtHeader {
	font-size: x-large;
}

.emailWrapper {
	display: flex;
    gap: 1em;
}

.emailWrapper > vaadin-text-field {
	width: 250px;
	max-width: calc(50% - .5em);
}

.emailWrapper > vaadin-date-picker {
	width: 250px;
	max-width: calc(50% - .5em);
}

.kasse > div > div > .adresseWrapper {
	margin-bottom: 2em;
}

.adresseWrapper .adresseWrapper, .adresseWrapper .adresse1Wrapper {
	display: grid;
    grid-template-columns: 250px 250px 250px;
    column-gap: 1em;
	grid-row: 2;
}

.adresseWrapper .adresseWrapper vaadin-combo-box:first-child, .adresseWrapper .adresse1Wrapper vaadin-combo-box:first-child {
	grid-column-start: 1;
    grid-column-end: 3;
}

.adresseWrapper > div {
	display: inline-grid;
	grid-template-columns: auto auto;
	column-gap: 2em;
}

.adresseWrapper > div > vaadin-checkbox {
	grid-row: 3;
}

.versandartWrapper, .zahlartWrapper {
	display: inline-block;
	margin-right: 1em;
}

.buttonWrapper {
	display: flex;
    justify-content: space-between;
	margin-top: 1em;
	margin-bottom: 1em;
}

.agbWrapper > div {
	display: flex;
    gap: 0.5em;
    flex-direction: column;
}

.datenschutzWrapper, .agbWrapper {
	display: flex;
	gap: .5em;
}

.preisInfoWrapper > div {
	display: inline-block;
    margin-top: 1em;
    margin-bottom: 1em;
}

.versandBestellung, .gesamtpreisBestellung, .mwstBestellung, .zwischensummeBestellung {
	display: flex;
	gap: 0.7em;
	justify-content: space-between;
}

.kasseLabel, .kassePreis {
	font-size: larger;
}

.kassePreis{
	font-weight: bold;
}

.kasse_required_checkbox {
	border-style: ridge;
	background-color:  #e5153b;
	padding: 5px;
	margin-bottom: 10px;
	margin-top: -2px;
}

.artikelnummerWert, .warenkorbAttributAuspraegung {
	font-weight: 600;
}

.editFrame.edit-on:has(.shopItemPreisDetails > a:hover):hover {
	box-shadow: unset !important;
    min-width: unset !important;
    min-height: unset !important;
    background: unset !important;
	cursor: unset !important;
}

.warenkorbItemInfo {
	display: grid;
	grid-template-columns: auto auto auto;
}

.warenkorbPreisinfo {
	display: flex;
	gap: 1em;
	justify-content: space-between;
}

.produktTitelKasse {
	grid-column-start: 1;
    grid-column-end: 4;
}

.warenkorbAttributName {
	grid-column-start: 1;
	grid-column-end: 2;
}

.warenkorbAttributPreis {
	grid-column-start: 2;
	grid-column-end: 3;
}

.warenkorbAttributAuspraegung, .artikelnummerWert {
	grid-column-start: 3;
	grid-column-end: 4;
}

.productlist_description_leistung, .shopItemBeschreibung, .shopItemPreisDetails {
    font-size: var(--fs-400);
    font-family: var(--ff);
    color: var(--tertiary-clr);
}

.headLine {
    font-size: var(--fs-500);
    font-family: var(--ff);
    color: var(--secondary-clr);
}

.text {
    font-size: var(--fs-400);
    font-family: var(--ff);
    color: var(--tertiary-clr);
}

.productlist_more, .shopItemDetailButton {
    font-size: var(--fs-300);
    font-family: var(--ff);
    color: var(--secondary-clr);
    background-color: white;
    border: 1px solid var(--secondary-clr);
    padding-inline: 1rem;
}

.productlist_more a{
    font-size: inherit;
    text-decoration: none;
    color: var(--secondary-clr);
}

.productlist_more a:hover {
    text-decoration: none;
}

.productlist_more:hover {
    filter: invert(1);
}

/*---------------------------------Edit Icon----------------------*/
.edit_icon{
	width: 25px;
	height: 25px;
	border: 0;	
	padding-left: 5px;
}

.edit_icon:hover{
	cursor: pointer;
}

.tooltiptext {
	cursor: pointer;
	font-size: 18px;
	font-weight: 100;
}

.editButtonLogo{
	position: absolute;
	left: 0;
	top: 1.5rem;
}

.editButtonLeft{
	position: absolute;
}

.productToogle_editButtonLeft {
	position: absolute;
	top: -2.25rem;
}

.productToogle_text .editButtonTextBearbeiten {
    position: absolute;
    margin-top: 2.25rem;
	left: unset;
}

.produkt_editButtonLeft {
	position: absolute;
	top: -2.25rem;
}

.editButtonTextBearbeiten {
    position: absolute;
    margin-top: -6%;		
}


.articleDownloadsWrapper{
	list-style: none;
}

.articleDownloadsWrapper li{
	display:flex;
	flex-direction: column-reverse;
	margin-top: 11px;
	margin-left: 17px;
}

.articleModul .editButtonLeft {
	position: absolute;
	/* margin-top: -2rem !important; */
}

.articelImageWrapper .editButtonRight {
	top: -2rem;
	left: 5rem;
}

.contact_text .editButtonLeft {
	position: absolute;
	top: -0.5rem;
}

.contacts_div .editButtonLeft {
	position: absolute;
	margin-top: -3%;
}

.contactEditButton {
	position: absolute;
	margin-left: -12rem;
	top: 8rem;
}

.editButtonRight{
	position: absolute;
}

.editButtonHeader{
	position: absolute;
	top: -1.5%;
    left: -14.5%;
}

.editButtonModul{
	position: absolute;
}

.bannerImageWrapper .tooltip {
	position: absolute;
	top: -1rem;	
	z-index: 1;
}

.menuEditButton {
	position: absolute;
	width: 10rem;
}

.menuEditButton:hover{
	cursor: pointer;
}

.menuLevel1>li>.menuEditButton {
	top: -3.75rem;
}




/*Firmenkontakt*/

.kontakt {
    --_kontakt-width: 94.06rem;
    --_kontakt-height: 35.357rem;
    --_kontaktbild-width: 520px;
    --_kontaktbild-height: 360px;

    /* width: min(var(--_kontakt-width), 100%);
    height: var(--_kontakt-height); */
    justify-content: space-between;
    /* overflow-y: scroll;
    overflow-x: hidden; */
}

.contact_text p{
	margin-block: 0;
	font-size: 14pt;
}

.kontakt .editButton {
    width: max-content;
}

.kontaktContent .articelImageWrapper {
    width: var(--_kontaktbild-width);
    height: var(--_kontaktbild-height);
    margin: 0;
}

.kontaktContent .articelImageWrapper .editButton {
    top: var(--_kontaktbild-height);
}

.kontakt-text {
    height: fit-content;
    word-wrap: break-word;
}

.kontaktContent {
    display: flex;
}

.kontaktContent .articelTextWrapper {
    font-family: var(--ff);
    font-size: var(--fs-400);
    color: var(--tertiary-clr);
    width: inherit;
    max-width: calc(var(--_kontakt-width) - var(--_kontaktbild-width));
    margin-inline-end: var(--sp-400);
}

/*Kontakt - Ansprechpartner*/


.editButton--kontaktText {
    left: -10rem;
}

.contacts_div {
    --_kontaktbild-height: 531px;
    --_kontaktbild-width: 354px;

    --_ansprechpartner-width: 60.94rem;
    --_ansprechpartner-height: 14.69rem;
}

.contact {
    display: flex;
}

.contact_data {
    max-width: var(--_ansprechpartner-width);
    max-height: var(--_ansprechpartner-height);
    margin-left: 1cm;
    overflow-y: auto;
	align-self: flex-end;
}

.contact_data p {
    margin-block: 0;
    font-family: var(--ff);
    font-size: 14pt;
	color: #464646;
}

.contact_image_div {
    max-width: var(--_kontaktbild-width);
    max-height: var(--_kontaktbild-height);
}

/*Produkt (Jobs)*/

.produkt_editButtonLeft {
    position: absolute;
    left: -12rem;
    top: 8rem;
}


.produkt-beschreibung {
    flex: 1;
}

.productlist_div p {
    margin: 0;
}

.productlist_description_leistung a {
    text-decoration: none;
    color: black;
    border: 1px solid var(--primary-clr);
}

.productlist_description_leistung a:hover {
    text-decoration: none;
}

.produkt-mehr {
    height: fit-content;
    align-self: flex-start;
}

.beschreibungWrapper.flex {
    flex-direction: column;
}


/*Produkt (Leistungen)*/
.produktHeader .editButton {
    left: -2rem;
    top: -3rem;
}

.produktHeader {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.produktHeader div {
    width: 100%
}
.produktHeader p {
    width: 100%;
	padding-top: 0.5em;
    padding-bottom: 0.75em;
    border-bottom: 2px solid var(--primary-clr);
}

.produkt_text {
    font-size: var(--fs-400);
    font-family: var(--ff);
    color: var(--tertiary-clr);
}


.productlist_entry_leistung .produktBildWrapper, .shopItemImg{
    margin-inline-end: var(--sp-900);
    max-width: var(--_produkt-leistungen-bild-width);
    max-height: var(--_produkt-leistungen-bild-height);
    width: calc(var(--_produkt-leistungen-bild-width) - 100px);
}


.productlist_entry_leistung .productlist_text_leistung, .shopItem_text {
    width: var(--_produkt-leistungen-text-width);
}

.productlist_entry_leistung, .shopItem_entry {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.productlist_image_div_leistung, .shopItemImgWrapper{
    margin-inline-end: var(--sp-900);

    max-width: var(--_produkt-leistungen-bild-width);
    max-height: var(--_produkt-leistungen-bild-height);
    /*kek*/
    width: calc(var(--_produkt-leistungen-bild-width) - 100px);
}

.produkt.leistung .produkt-text {
    max-width: var(--_produkt-leistungen-text-width);
    max-height: var(--_produkt-leistungen-text-height);
}

:root {
    --_produkt-leistungen-bild-width: 565px;
    --_produkt-leistungen-bild-height: 455px;
    --_produkt-leistungen-text-width: 55rem;
    --_produkt-leistungen-text-height: 110rem;
}

img.productlist_image_leistung, img.shopItemImg{
    width: var(--_produkt-leistungen-bild-width);
    max-height: var(--_produkt-leistungen-bild-height);
}

/*Produkt (BÃ¼cher und Kassetten)*/

.headerWrapper {
    background-color: var(--tertiary-clr--light);
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-start;
}

input#hamburg {
    display: none;
}

.headerText {
    font-weight: var(--fw-500);
    font-size: var(--fs-500);
    color: var(--secondary-clr);
    padding: 20px;
}

.editButton--headerImage-produkt .editButton {
    top: -2rem;
}

.produkt-text {
    width: 86rem;
}

.produktliste.buecherKassetten {
    width: 100%;
}


.buecherKassetten .produktBildWrapper {
    margin-inline-start: var(--sp-400);
    float: right;
}

.buecherKassetten .produktBildWrapper .produktBild {
    width: 584px;
    height: 410px;
}

.produktliste.buecherKassetten>.produkt {
    margin-inline: var(--sp-400);
    max-width: 50rem;
    min-width: fit-content;
}

.produktliste.buecherKassetten>.separator {
    margin-inline: var(--sp-400);
}



/*Produkt (Startseite)*/

.banner--startseite .editButton {
    top: -2rem;
}

.banner--startseite {
    max-width: var(--banner-width);

    position: relative;
    float: left;
    /*banner immer zentriert, geht bestimmt einfacher, komme aber grad nicht drauf ~prz*/
    left: calc(-1 * ( ((100vw - var(--page-width)) / 2) - (((100vw - var(--banner-width)) / 2) )));

}

.banner--startseite .bannerImage>img {
    width: var(--banner-width);
}

.banner--startseite .bannerImage .bannerTextWrapper {
    display: none;
}

.container--produkt-startseite {
    margin-block-start: var(--sp-400);
    display: inline-block;
    top: var(--banner-height);
    --_produkt-startseite-bild-width: 345px;
    --_produkt-startseite-bild-height: 240px;
}

.produkt.leistung.startseite>.produktBildWrapper>.produktBild {
    width: var(--_produkt-leistungen-bild-width);
    height: var(--_produkt-leistungen-bild-height);
}



/*Datenschutz, Datenschutz*/

.artikel>.editButton,
.editButton--impressum>.editButton,
.editButton--datenschutz>.editButton {
    left: -12rem;
    width: max-content;
}



/*Artikel*/

.editButtonLeft {
	position: absolute;
    left: -10rem;
}

.articleModul {
	display: flex;
	flex-wrap: wrap;
}

.articelTextWrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 400px;
}

.articelTextWrapper p a:any-link{
    text-decoration: underline;
    color: var(--primary-clr);
    font-weight: 400;
}

.articelTextWrapper p a:any-link:hover {
    font-weight: 600;
}

.articelTextWrapper {  
    font-size: var(--fs-400);
    font-family: var(--ff);
    color: var(--tertiary-clr);
}

.articelTextWrapper ul li p {
    margin-block-end: 0;
}

a.productArticleBackButton{
	font-size: 26.6px;
    align-self: flex-start;
    color: var(--primary-clr);
}

.articelImageWrapper .editButton {
    top: 4rem;
}

.articelImageWrapper {
	margin-right: 100px;
    float: right;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

.articelImageWrapper .editButtonRight {
	display: ruby;
}

.articleImage {
	text-align: center;
    width: 565px;
    height: 455px;
}

.articleImage #mainimage {
    object-fit: contain;
}

img.edit_icon {
    width: 1.5rem;
}

.artikelThumbbar {
    list-style-type: none;
    display: flex;
    padding-left: 0px;
	width: 565px;
	overflow-x: auto;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.artikelThumbbar .artikelThumbbarImage:first-child {
	margin-left: auto;
}

.artikelThumbbar .artikelThumbbarImage:last-child {
	margin-right: auto;
}
.artikelThumbbarImage {
	margin: 2px;
}

#thumbnailimage{
	height: 100%;
}

/* Seitengröße muss sich für Darstellungen <100rem abhängig von der tatsächlichen Größe verhalten */
@media only screen and (max-width: 100rem) {	
	:root {
		--page-width: 90vw;
	}
}

/* Seitengröße zu klein, um Menü voll anzuzeigen */
@media only screen and (max-width: 1280px) {	
	.languageButtonsHL vaadin-button{
		height: unset;
	}
	.languageButtonsHL vaadin-button::part(prefix){
		margin-right: 0px;
		margin-left: 0px;
	}
	.languageButton div{
		width: 2em !important;
		justify-content: center;
	}
	.languageButtonsHL{
		flex-direction: inherit;
		width: 25px;
	}

	.langDropdownWrapper {
		position: unset;
		order: 2;
		margin-left: auto;
		margin-right: 65px;
	}
	
	.Warenkorb {
		top: 40px;
	}
	
	#formatImage {
		max-width: calc(95vw - 185px);
		max-height: 100%;
	}
	
	.LogoImage, .separator--menu-logo {
	   display: none;
	}
	
	header {
		height: unset;
		margin-bottom: 1rem;
	}
	
	.responsiveDesignImageContainer {
		display: unset;
		order: 1;
		max-height: 130px;
	}    
	
	.responsiveDesignImageContainer img {
		max-height: 100px;
	}
	
	.menu {
        width: 100%;
        display: flex;
		flex-wrap: wrap;
        justify-content: space-between;
		background: white;
		align-items: flex-end;
    }
	
	label.hamburg { 
	   display: block; 
	   width: 75px; 
	   height: 50px; 
	   position: relative; 
	   border-radius: 4px;
	   order: 3;
	}
	.line { 
	   position: absolute; 
	   left:10px;
	   height: 4px; width: 55px; 
	   background: var(--primary-clr);
	   border-radius: 2px;
	   display: block; 
	   transition: 0.5s; 
	   transform-origin: center; 
	}

	.line:nth-child(1) { top: 12px; }
	.line:nth-child(2) { top: 24px; }
	.line:nth-child(3) { top: 36px; }

	#hamburg:checked + .hamburg .line:nth-child(1){
	   transform: translateY(12px) rotate(-45deg);
	}

	#hamburg:checked + .hamburg .line:nth-child(2){
	   opacity:0;
	}

	#hamburg:checked + .hamburg .line:nth-child(3){
	   transform: translateY(-12px) rotate(45deg);
	}
	
	#hamburg:checked ~ .menuLevel1 {
	   display: flex;
	}
	
	li.menu_opened>ul {
		visibility: visible;
		display: block;
		opacity: 1;
	}
	
	.menuLevel1 {
		display: none;
	    flex-direction: column;
	    position: relative;
	    align-items: center;
	    background: #ffffff;
	    padding-inline-start: 0px;
	    width: var(--page-width);
		border-top: 1px solid var(--primary-clr);
		margin-left: 0px;
    	flex: none;
		order: 4;
	}
	
	.menu_icon_level_1{
		display:block;	
		width: 48px;
	    height: 48px;
	    margin-right: 2.8rem;
	}
	
	.menuLevel1>li {
     	margin-left: 0px;
    	width: 100%;
    	display: flex;
	    justify-content: space-between;
	    flex-wrap: wrap;
	}

	.menuLevel1>li:last-child {
    	border-bottom: none;
	}
	
	.menuLevel1>li>button>a {
		margin-left: 2rem;
		margin-right: auto;
	}
	
	.menuLevel1>li.selected>button>a::after, .menuLevel1>li.hasSelectedDescendant>button>a::after {
    	display: none;
	}

	.menuLevel1>li>button>a::before, .menuLevel1>li>button::after  {
	  	display:none;
	}
	
	.menu_icon_level_2{
		display:block;
		margin-right: 2.8rem;
	}
	
	.menuLevel2{
		display: none;
		position: relative !important;
        width: 100% !important;
	}
	
	.menuLevel2 > li{
	    margin-bottom: 0px;
	    border: none;
		background-color: var(--primary-clr);
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	.menuLevel2>li>button:HOVER {
		color: black; 
		border-color: var(--primary-clr);
}
	.menu ul li button, .menu li a {
		background: none;
	}
	
	.menuLevel2>li>button>a{
	    margin-left: 4rem;
	    margin-right: auto;
	}
	
	
	.menuLevel3 {
		padding-inline-start: 0px;
		display: none;
		position: relative;
		left: 0px;
	}
	
	.menuLevel3>li {
		background-color: #79d44f;
		border: none;
		margin-bottom: 0px;
	}
	
	.menuLevel3>li>button>a {
		margin-left: 6rem;
	}
	
	video {
		width: var(--_produkt-leistungen-bild-width);
	}
	
	.shopItem_detail_entry {
		display: flex;
		flex-wrap: wrap;
	}

	.shopItemAttributFelder div {
		display: flex;
		flex-direction: column;
	}

	.detailButtons {
		width: 100%;
	}
}


@media only screen and (max-width: 1750px) {	
	.adresseWrapper .adresseWrapper, .adresseWrapper .adresse1Wrapper {
		grid-template-columns: 250px 250px;
	}
}

@media only screen and (max-width: 1450px) {	
	.warenkorbItems {
		grid-template-columns: auto auto auto;
	}
	
	.kasseItemButtons {
		grid-column: 3;
		justify-content: flex-end;
	}
	
	.warenkorbPreisinfo {
		grid-column: 3;
		flex-direction: column;
		align-items: flex-end;
		justify-content: flex-start;
	}

	.warenkorbItemWrapper::after {
		grid-column: 1 / 4;
	}
}

@media only screen and (max-width: 1150px) {	
	.adresseWrapper > div {
		grid-template-columns: auto;
	}

	.adresseWrapper > div > vaadin-checkbox {
		grid-row: 3;
	}
	
	adresseWrapper .adresseWrapper, .adresseWrapper .adresse1Wrapper {
		grid-row: 4;
	}
	
	.warenkorbItems {
		grid-template-columns: auto auto;
	}
	
	.kasseItemButtons {
		grid-column: 1;
		justify-content: flex-start;
		margin-top: -44px;
	}
	
	.warenkorbPreisinfo {
		grid-column: 2;
		flex-direction: row;
		align-items: flex-end;
		justify-content: flex-start;
	}

	.warenkorbItemWrapper::after {
		grid-column: 1 / 3;
	}
}


/* Medium devices (landscape tablets, up to 991px) */
@media only screen and (max-width: 991px) {	
	html {
		word-break: break-word;
	}

	.articelImageWrapper img {
		max-width: var(--_produkt-leistungen-bild-width);
		max-height: var(--_produkt-leistungen-bild-height);
	}

	.artikelThumbbarImage img {
		width: unset;
		height: unset;
	}
	
	.kontaktContent {
		flex-direction: column-reverse;
	}
	
	.kontaktContent .articelImageWrapper {
		max-width: var(--_kontaktbild-width);
		max-height: var(--_kontaktbild-height);
		width: 100%;
		height: 100%;
	}
	
	.contact_image_div * {
		width: 100%;
	}
	
	.articelImageWrapper * {
		max-width: var(--page-width);
	}
	
	.articleModul .articleImage, .shopItem_detail_entry .articleImage {
		height: auto;
	}

	.articleImage {
		width: 100%;
		height: 100%;
		max-width: 565px;
		max-height: 455px;
		line-height: 0;
		display: flex;
	}

	.footer{
		padding: 2em 2em;
	}
	
	.footer .pageWidthWrapper{
		align-items: center;
		width: 100%;
	}
	
	.social_media_div{
		align-self: end;
	}
	
	.copyright_div.flex.flex--end{
		align-self: end;
	}
	
	.produktHeader {
		margin-inline: 1vw;
		width: 100%;
	}

	.produktliste--leistungen {
		margin-inline: 1vw;
	}
	

	.productlist_entry_leistung .productlist_text_leistung {
		width: 100%;
	}
	
	.productlist_entry_leistung, .shopItem_entry {
		width: 100%;
	}	
	
	:root {
        --_produkt-leistungen-bild-width: 375px;
        --_produkt-leistungen-bild-height: 265px;
    }
	
	
	
	.warenkorbItems {
		grid-template-columns: 100%;
	}
	
	.kasseItemButtons {
		grid-column: 1;
		margin-top: 0;
	}
	
	.warenkorbPreisinfo {
		grid-column: 1;
	}

	.warenkorbItemWrapper::after {
		grid-column: 1 / 2;
	}
	
}

/* Small devices (portrait tablets and large phones, up to 767px) */
@media only screen and (max-width: 767px) {		
	.productlist_entry_leistung, .shopItem_entry {
		display: block;		
	}
	
	.banner--startseite .bannerImage>img{
		width: 98vw;
	}
	
	.flex.flex--around.pageWidthWrapper{
		width: 100%;
		margin-inline: 0px;
		justify-content: inherit;
	}
	.flex.flex--around.logo.pageWidthWrapper{
		display: none;
	}
	.responsiveDesignImageContainer{
		display: block;
	}
	.separator--menu-logo{
		display: none;
	}
	
	.footer .pageWidthWrapper{
		flex-wrap: wrap;
		align-items: center;
		width: 100%;
		margin-inline: 0px;
	}
	
	.footerText{
		width: calc(100% - 45px);
	}
	
	.social_media_div{
		width: 45px;
		flex-direction: column;
	}
	
	.copyright_div.flex.flex--end{
		margin-top: 15px;
		gap: 1vw;
        justify-content: center;
        width: 200px;
        margin-left: auto;
        margin-right: auto;
	}
	.contact {
		display: block;
	}
	
	.contact_data {
		margin-left: 0;
	}
	
	video {
		width: var(--page-width);
		height: unset;
	}
}

/* Extra small devices (phones, up to 600px) */
@media only screen and (max-width: 600px) {
	:root {
        --_produkt-leistungen-bild-width: 282.5px;
        --_produkt-leistungen-bild-height: 227.5px;
    }
	
	.articelTextWrapper {
		min-width: unset;
	}	
	
	.menuLevel1 a {
		font-size: 30px !important;
	}
	
	.menuLevel2 a {
		font-size: 26px !important;
	}
}





