.anmeldung {
	
}

/* -----------------------------------
  xx. Seite :: Shop / Produkte :: Produkte-Kategorien
--------------------------------------*/
.produkte-kategorien {
	border-left: 1px solid var(--template-color-2);
	border-right: 1px solid var(--template-color-2);
	border-bottom: 1px solid var(--template-color-2);
}
.produkte-kategorien ul {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}

.produkte-kategorien ul li {
	position: relative;
	/*border: 1px solid #efefef;*/
	/*border-bottom: 1px solid #efefef;*/
	margin-bottom: 1px;
}

.produkte-kategorien ul li:last-of-type {
	margin-bottom: 0px;
}

.produkte-kategorien ul li li {
	/*padding-left: 15px;*/
}

.produkte-kategorien ul li a {
    display: block;
	padding: 7px 10px;
	cursor: pointer;
}

.produkte-kategorien ul li a.ebene-0 {
	background-color: var(--template-color-2);
	color: #fff;
}

.produkte-kategorien ul li a.active {
	background-color: #efefef;
}

.dropdown-toggle::after {
    position: absolute;
    top: 15px;
    right: 15px;
}

/* -----------------------------------
  xx. Seite :: Shop / Produkte
--------------------------------------*/
.produkte {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin-bottom: 28px;
}

.produkte .produkt {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border: 1px solid var(--template-color-3);
}

.produkte .produkt:hover {
	border: 1px solid var(--template-color-1);
}


/* Produkte-Bild */
.produkte .produkte-bild {
	overflow: hidden;
}

.produkte .produkte-bild .image {
	height: 180px;
	width: 95%;
	display: inline-block;
	position: relative;
}

.produkte .produkte-bild .image img {
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

/*-- Produkte-Informationen (Text) --*/
.produkte .produkt-info {
	border-top: 1px solid #eeeeee;
	padding: 10px;
}

.produkte .produkt-info .title {
	display: block;
	font-size: 15px;
	line-height: 1.5em;
	font-weight: 400;
}

.produkte .produkt-info .title a {
	display: inline-block;
	color: #000;
	text-decoration: none;
}

.produkte .produkt-info .title a:hover {
	color: var(--template-color-2);
}

/*-- Preis --*/
.produkte .produkt-info .price-area {
	margin-top: 10px;
	margin-bottom: 0;
}

.produkte .produkt-info .price {
	display: block;
	font-size: 16px;
	font-weight: 800;
	line-height: 18px;
	padding-top: 8px;
	color: var(--template-color-1);
}

.produkte .produkt-info .price span {
	display: inline-block;
	line-height: 18px;
}

/* zum Warenkorb Button */
.produkte .produkt-info .price-area .btn-warenkorb {
	border: 1px solid var(--template-color-1);
	color: var(--template-color-1);
}

.produkte .produkt-info .price-area .btn-warenkorb:hover {
	background-color: var(--template-color-1);
	border: 1px solid var(--template-color-3);
	color: var(--template-color-3);
}

.produkte .produkt-info .price-area .btn-warenkorb i {
	color: var(--template-color-1);
}

.produkte .produkt-info .price-area .btn-warenkorb:hover i {
	color: var(--template-color-3);
}

/* Artikel-Verfügbarkeit */
.produkte .produkt-info .verfuegbarkeit {
	display: block;
	margin-top: 10px;
	color: var(--template-color-2);
}

/* Staffelpreise */
.tblStaffelpreise {
	margin-top: 6px;
}

.staffelpreise-titel {
	color: var(--template-color-1);
}


/* Produkt Single */
.produkt-single img {
}

.produkt-single h1 {
    font-size: 22px;
    font-weight: bolder;
}

.produkt-single h2 {
    font-size: 18px;
    /*font-weight: bolder;*/
	font-weight: normal;;
}

.produkt-single h3 {
    font-size: 14px !important;
    font-weight: bolder;
}
.produkt-single p {
    font-size: 16px !important;
    font-weight: normal;
}


/*-- Preis --*/
.produkt-single .price-area {
	margin-top: 10px;
	margin-bottom: 0;
}

.produkt-single .price {
	display: block;
	font-size: 16px;
	font-weight: 800;
	line-height: 18px;
	padding-top: 5px;
	color: var(--template-color-1);
}

.produkt-single .price span {
	display: inline-block;
	line-height: 18px;
}

/* zum Warenkorb Button */
.produkt-single .price-area .btn-warenkorb,
.tblStaffelpreise .btn-warenkorb {
	border: 1px solid var(--template-color-1);
	color: var(--template-color-1);
}

.produkt-single .price-area .btn-warenkorb:hover,
.tblStaffelpreise .btn-warenkorb:hover {
	background-color: var(--template-color-1);
	border: 1px solid var(--template-color-3);
	color: var(--template-color-3);
}

.produkt-single .price-area .btn-warenkorb i,
.tblStaffelpreise .btn-warenkorb i {
	color: var(--template-color-1);
}

.produkt-single .price-area .btn-warenkorb:hover i,
.tblStaffelpreise .btn-warenkorb:hover i {
	color: var(--template-color-3);
}



/* Shop :: Seitenwechsel */
.pagination {
	margin-bottom: 28px;
}

.pagination li span,
.pagination li span:hover {
	color: var(--template-color-1);
	cursor: pointer;
}

.pagination li.active .page-link,
.pagination li.active:hover {
	background-color: var(--template-color-1);
	border-color: var(--template-color-1);
	color: #fff;
}

.pagination li a {
	color: var(--template-color-1);
}

.pagination li a:hover {
	background-color: var(--template-color-1);
	border-color: var(--template-color-1);
	color: #fff;
}

/* -----------------------------------
  xx. Warenkorb-Symbol im Header
--------------------------------------*/
.cart-toggle {
	margin-right: 10px;
    position: relative;
}
.cart-toggle span {
    background-color: var(--template-color-1);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    position: absolute;
	top: -9px;
	right: -13px;
	width: 20px;
    text-align: center;
}

/* -----------------------------------
  xx. Bestellprozess :: Schritte
--------------------------------------*/
.progressbar {
    margin: 0;
    padding: 0;
    counter-reset: step;
}
.progressbar li {
    list-style-type: none;
    width: 33.333%;
    float: left;
    font-size: 12px;
    position: relative;
    text-align: center;
    color: var(--template-color-1);
    font-size: 16px;
}
.progressbar li:before {
    width: 50px;
    height: 50px;
    content: counter(step);
    counter-increment: step;
    line-height: 50px;
    font-size: 18px;
    border: 2px solid var(--template-color-1);
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
}
.progressbar li:after {
    width: 100%;
    height: 2px;
    content: '';
    position: absolute;
    background-color: var(--template-color-1);
    top: 25px;
    left: -50%;
    z-index: -1;
}
.progressbar li:first-child:after {
    content: none;
}
.progressbar li.active {
    color: var(--template-color-2);
}
.progressbar li.active:before {
    border-color: var(--template-color-2);
    background-color: var(--template-color-2);
    color: #fff;
}
.progressbar li.active + li:after {
    background-color: var(--template-color-2);
}

/* -----------------------------------
  xx. Bestellprozess
--------------------------------------*/
.pageContent .rahmen {
    border: 1px solid var(--template-color-3);
    padding: 20px;
}

.pageContent h3, .form-header label {
    font-size: 24px;
    line-height: 28px;
    padding-bottom: 10px;
}
.divKundenkontoLieferadresse, .divGastLieferadresse {
	margin-top: 8px;
}
.form-header input {
	font-size: 18px;
}

.pageContent h3.border-bottom {
    border-bottom: 1px solid var(--template-color-3);
}

.pageContent i {
	padding-right: 5px;
}

.pageContent p {
	font-size: 18px;
}

/* -----------------------------------
  xx. Warenkorb
--------------------------------------*/

.warenkorb table thead th,
.zusammenfassung table thead th {
	background-color: #efefef;
}

/* Position entfernen */
.warenkorb .position-entfernen {
    opacity: 0.25;
    -webkit-transition: ease all .5s;
       -moz-transition: ease all .5s;
         -o-transition: ease all .5s;
            transition: ease all .5s;

}
.warenkorb .position-entfernen i {
	color: var(--template-color-1);
}

.warenkorb .wk-position:hover .position-entfernen {
    opacity: 1;
    -webkit-transition: ease all .5s;
       -moz-transition: ease all .5s;
         -o-transition: ease all .5s;
            transition: ease all .5s;
}

.warenkorb .wk-bild {
	float: left;
	margin-right: 15px;
	width: 75px;
	text-align: center;
}
.warenkorb .wk-bild img {
	max-width: 75px;
	max-height: 75px;
}

.warenkorb .wk-text {
	float: left;
}

/* Artikel-Bezeichnung */
.warenkorb tbody h1,
.zusammenfassung tbody h1 {
    font-size: 16px;
    font-weight: bolder;
}
.warenkorb tbody h2,
.zusammenfassung tbody h2 {
    font-size: 15px;
    font-weight: normal;
}
.warenkorb tbody h3,
.zusammenfassung tbody h3 {
    font-size: 14px;
    font-weight: normal;
}
.warenkorb tbody h4,
.zusammenfassung tbody h4 {
    font-size: 14px;
    font-weight: normal;
}

/* Warenkorb-Menge */
.warenkorb .menge {
    border: 1px solid #ddd;
    display: block;
    padding: 0 30px;
    position: relative;
    width: 100px;
}
.warenkorb .menge input {
    border: medium none;
    height: 38px;
    text-align: center;
    width: 40px;
}
.warenkorb .menge span {
    cursor: pointer;
    color: #848484;
    display: block;
    height: 38px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 29px;
}
.warenkorb .menge span i {
    display: block;
    font-size: 16px;
    line-height: 38px;
}
.warenkorb .menge span.inc {
    right: 0;
}
.warenkorb .menge span.dec {
    left: 0;
}

/* Stückpreis */
.warenkorb .stueckpreis {
	color: #777777;
}
/* Position Summe */
.warenkorb .betrag {
	font-weight: 600;
}

.warenkorb .subtotal,
.zusammenfassung .subtotal {
	width: 200px;
	border-top: 2px solid black;
}
.warenkorb .versandkosten,
.zusammenfassung .versandkosten {
	font-weight: normal;
}
.warenkorb .total,
.zusammenfassung .total {
	width: 200px;
	border-top: 2px solid black;
	border-bottom: 3px double black;
}

/* -----------------------------------
  xx. Lieferart / Zusammenfassung / Bezahlung
--------------------------------------*/

.lieferart h3,
.zusammenfassung h3,
.bezahlung h3 {
	text-transform: uppercase;
	padding-bottom: 10px;
	margin-bottom: 20px;
    border-bottom: 1px solid var(--template-color-3);
}

/* -----------------------------------
  xx. Zahlungsarten
--------------------------------------*/
.zahlungs-arten-area {
	display: none;
}
.zahlungs-arten {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}
.zahlungs-arten .za-methode {
	text-align: center;
}
.zahlungs-arten .za-methode input[type=radio] { 
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.zahlungs-arten label.za-methode {
    cursor: pointer;
    background-color: #fafafa;
    border-radius: 2px;
    border: 1px solid transparent;
    width: 100%;
	height: 100%;
    font-weight: normal;
}
.zahlungs-arten label.radio {
    margin-top: 0px;
}
.zahlungs-arten .za-logo {
    height: 60px;
}
.zahlungs-arten .za-logo img {
    max-width: 100%;
    height: auto;
}

.zahlungs-arten .za-methode, .zahlungs-arten .za-methode input[type=radio] + .za-item {
    cursor: pointer;
}
.zahlungs-arten .za-methode input[type=radio] + .za-item {
    padding: 20px;
}

.zahlungs-arten .za-methode:hover .za-item {
    background-color: var(--template-color-3);
    -webkit-transition: ease all .3s;
       -moz-transition: ease all .3s;
         -o-transition: ease all .3s;
            transition: ease all .3s;
}
.zahlungs-arten .za-methode input[type=radio]:checked + .za-item {
    /*outline: 3px solid #D5B079;*/
    background-color: var(--template-color-4);
	color: #fafafa;
    font-weight: 600;
    -webkit-transition: ease all .3s;
       -moz-transition: ease all .3s;
         -o-transition: ease all .3s;
            transition: ease all .3s;
}


.bestellen-area {
	/*display: none;*/
}


/* -----------------------------------
  xx. Passwort
--------------------------------------*/

.boldgreen{
	font-weight:bold;
	color:green;
}

.passwort-minimum span{
	display:none;
	padding-left:10px;
	color:green;
}
.passwort-grossundklein span{
	display:none;
	padding-left:10px;
	color:green;
}
.passwort-buchstabenundzahlen span{
	display:none;
	padding-left:10px;
	color:green;
}
.passwort-sonderzeichen span{
	display:none;
	padding-left:10px;
	color:green;
}

