@import url("fonts.css");
@import url("fontawesome.min.css");
@import url("datetimepicker.min.css");
@import url("lightbox.css");

/* GLOBAL */
:root {
	--primary: #cea456;
	--primary2: #9d7835;
	--secondary: #1a1c1f;
	--success: #318e1b;
	--white: #ffffff;
}

html, body {
	height: 100%;
}
body {
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-weight: 300;
	color: var(--secondary);
	background: #eee;
  line-height: 1.5;
}


/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-weight: 200;
  margin: 0 0 30px 0;
  text-transform: uppercase;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
	display: block;
}

p {
  margin: 15px 0;
  text-align: justify;
}

a {
  color: var(--primary);
  transition: all .25s;
	text-decoration: none;
}
a:hover {
  color: var(--primary2);
  text-decoration: none;
}

small {
  font-size: 65%;
	display: block;
}

strong {
  font-weight: 800;
}

hr {
	margin: 45px 0;
}

ul.ul {
	list-style: square;
}
ul.ul li {
	margin-bottom: 10px;
}

/* offcanvas */
.offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {
  --bs-offcanvas-width: 620px;
	padding: 15px;
}

/* BUTTONS */
.btn {
  border-radius: 0;
  text-transform: uppercase;
  border-radius: 25px;
  font-weight: 600;
}
.btn:hover,
.btn:focus {
  box-shadow: none !important;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 16px;
}

.btn-primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary2) !important;
  border-color: var(--primary2) !important;
  color: var(--white) !important;
}

.btn-whatsapp {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  color: var(--white) !important;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background-color: #075E54 !important;
  border-color: #075E54 !important;
  color: var(--white) !important;
}


/* HEADER */
header {
  display: block;
  position: relative;
  background: var(--secondary);
  color: var(--white);
}
header .header-inner {
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  z-index: 500;
}
header .header-inner .header-logo {
  font-size: 32px;
  text-transform: uppercase;
}
header .header-inner .header-logo strong {
  color: var(--primary);
}
header .header-inner .header-logo img {
  width: 175px;
}
header .header-image {
  min-height: 375px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
header .header-image .container {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 100%;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
header .header-image .header-title {
  padding: 15px;
  line-height: 1;
  font-size: 38px;
  background: var(--primary);
  color: var(--white);
  text-transform: uppercase;
}
header .header-slogan {
	font-size: 25px;
	color: var(--primary);
	text-align: center;
	line-height: 1.25;
	font-weight: 800;
}
header .header-slogan #header-slogan1 {
	color: var(--white);
}
header .btn {
  text-align: start;
  font-size: 14px;
}
header .btn i {
  display: inline-block;
  width: 20px;
}
.header-nav {
  display: block;
}
.header-nav a {
  font-size: 28px;
	position: fixed;
	bottom: 15px;
	right: 15px;
	height: 55px;
	width: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: var(--secondary);
	border: 2px solid var(--white);
	z-index: 500;
}
.header-nav a .badge {
	font-size: 16px;
	position: absolute;
	right: -5px;
	top: -5px;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	line-height: 1;
	padding: 0;
	background-color: var(--white);
	color: var(--secondary);
	border-radius: 50%;
}


/* MAIN */
main {
  padding: 45px 0;
}


/* FOOTER */
footer {
  padding: 45px 0;
  background: var(--secondary);
  color: var(--white);
}
footer strong {
  color: var(--primary);
}
footer .footer-nav a {
  margin-right: 15px;
}
footer .footer-nav a:hover {
  color: var(--white);
}
footer .footer-nav a:last-child {
  margin-right: 0;
}


/* PRODUCTS */
.product-item {
  display: block;
  background: var(--white);
  margin-bottom: 60px;
	transition: all .25s;
}
.product-item .product-img {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 280px;
  border-bottom: 5px solid var(--primary);
  padding: 5px;
}
.product-item .product-info {
  padding: 30px;
  display: block;
  position: relative;
  transition: all .25s;
}
.product-item .product-info .product-title {
  font-weight: 600;
  color: var(--secondary);
  min-height: 80px;
}
.product-item .product-info .product-price {
  margin-bottom: 15px;
  font-size: 25px;
  color: var(--primary);
}
.product-item .product-info .product-description {
  font-size: 14px;
  line-height: 1.2;
  color: var(--secondary);
}
.product-item .product-info .product-controls {
	position: absolute;
  right: 10px;
  bottom: -20px;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}
.product-item .product-info .product-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
	margin-left: 5px;
	cursor: pointer;
}
.product-item .product-info .product-btn:hover {
	background: var(--primary2);
}
.product-item:hover {
  transform: scale(1.025);
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
}

.product-item-vert {
  display: flex;
  padding: 15px;
  margin-bottom: 30px;
}
.product-item-vert .product-img {
  width: 450px;
  min-height: 320px;
  border-bottom: none;
  border-right: 5px solid var(--primary);
}
.product-item-vert .product-title {
  font-size: 22px;
  min-height: auto !important;
  margin-bottom: 15px;
}
.product-item-vert .product-text {
  color: var(--secondary);
  font-size: 16px;
  margin-bottom: 15px;
}
.product-item-vert .product-info .product-controls {
  position: relative;
  right: auto;
  bottom: auto;
}
.product-item-vert .product-info .product-btn {
  height: auto;
  width: auto;
  display: block;
  padding: 10px 15px;
  border-radius: 25px;
  font-weight: 800;
  margin-left: 0;
}
.product-item-vert .product-info .product-btn i {
  margin-left: 5px !important;
}
.product-item-vert .product-info .product-price {
  font-size: 32px;
  margin-bottom: 0;
  line-height: 1.25;
  text-align: start;
}
.product-item-vert .product-info .product-price small {
  font-size: 16px;
  display: inline-block;
}
.product-item-vert .product-info .product-description {
  text-align: start;
}


/* SHOPPING LIST */
.shoplist {
  display: block;
	margin-bottom: 15px;
}
.shoplist .shoplist-content {
  display: block;
  padding: 15px 0;
}
.shoplist .shoplist-item {
  display: block;
  background: var(--white);
  color: var(--secondary);
  position: relative;
  margin: 15px 0;
	border-bottom: 1px solid #ccc;
}
.shoplist .shoplist-item:last-child {
	border-bottom: 0;
}
.shoplist .shoplist-item .shoplist-itemdrop {
  color: var(--primary);
	cursor: pointer;
	font-size: 14px;
	margin-top: 15px;
	text-align: end;
}
.shoplist .shoplist-item .shoplist-itemdrop:hover {
  background: var(--danger);
}
.shoplist .shoplist-item .shoplist-item-img {
	display: block;
	width: 100%;
	min-width: 100px;
	height: 70px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.shoplist .shoplist-item .shoplist-item-title {
  font-weight: 600;
	margin-bottom: 15px;
	display: block;
	font-size: 16px;
}
.shoplist-item-price-area {
	text-align: right;
}
.shoplist-item-price {
  font-size: 22px;
  text-align: right;
	display: inline-block;
	margin-left: 15px;
	padding-right: 15px;
	border-right: 1px solid #ccc;
	line-height: 1.2;
}
.shoplist-item-price:last-child {
	border-right: none;
	padding-right: 0;
}
.shoplist-item-price small {
  display: block;
  font-size: 12px;
}
.shoplist .shoplist-result {
  display: block;
  text-align: right;
  padding-top: 15px;
  border-top: 1px solid var(--secondary);
}
.shoplist .shoplist-result #shoplist-result {
  font-weight: 600;
  font-size: 28px;
}
.shoplist-period {
	margin: 0;
	text-align: start;
}
.shoplist-caption {
	font-size: 16px;
	text-align: start;
	margin: 0;
}

/* FORMSTEP */
.form-step {
	display: none;
}
.form-step#form-step1 {
	display: block;
}

/* FORM */
label {
	font-weight: 400;
}
.form-group {
	margin-bottom: 15px;
}
.form-control,
.form-select {
  border-radius: 0;
  padding: 10px 15px;
}
.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.form-check-input {
  box-shadow: none !important;
}
.form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  border-color: rgba(0,0,0,.25);
}
.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.custom-control-input:checked ~ .custom-control-label::before { 
  border-color: var(--primary);
  background-color: var(--primary);
}

.input-group-search {
  border-radius: 0;
}
.input-group-search .input-group-text {
  border-radius: 0;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  transition: all .25s;
  padding: 10px 15px;
  border: 1px solid var(--primary);
}
.input-group-search .input-group-text:hover {
  background: var(--secondary);
}

.drag_drop_box {
  min-height: 280px;
	width: 100%;
  text-align: center;
  border: 3px dashed var(--primary);
  position: relative;
  display: flex;
	align-content: center;
	align-items: center;
	justify-content: space-around;
	padding: 60px;
	color: #888;
	background: repeating-linear-gradient(45deg, #fff, #fff 25px, #eee 25px, #eee 50px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all .25s;
}
.drag_drop_box:hover {
	color: var(--primary);
}
.drag_drop_box input[type="file"].drag_drop {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.has-error .form-control,
.has-error .form-select,
.has-error .drag_drop_box {
  border-color: #ce0000;
}
.has-error label,
.has-error .help-block {
  color: #ce0000;
}

.has-success .form-control,
.has-success .form-select,
.has-success .drag_drop_box {
  border-color: #119600;
}
.has-success label,
.has-success .help-block {
  color: #119600;
}

#danke {
  display: none;
}

.lieferung {
	display: none;
}

/* TOAST */
#meldung-toast {
	position: fixed;
	right: 30px;
	bottom: 30px;
	border-radius: 0;
  z-index: 1200;
}
#meldung-toast .toast-header {
  background-color: var(--primary);
	color: #fff;
	text-transform: uppercase;
	border-radius: 0;
}
#meldung-toast .toast-header .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
	opacity: 1;
	box-shadow: none !important;
}
#meldung-toast .toast-body {
	text-align: center;
	min-width: 300px;
	background-color: var(--white);
}

/* LIGHTBOX */
.lb-image {
  border-radius: 0 !important;
  border: none !important;
}
.lb-dataContainer {
  padding: 15px 0 !important;
}

/* PRODUCT-DETAILS */
.product-media {
  margin-bottom: 15px;
  display: block;
  position: relative;
	background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
	min-height: 360px;
}
.product-media-item {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-height: 120px;
  opacity: 0.5;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  transition: all .25s;
  margin-bottom: 15px;
  position: relative;
}
.product-media-item:hover,
.product-media-item.active {
  opacity: 1;
  border: 1px solid var(--primary);
}
.product-media-item i {
  font-size: 45px;
  color: var(--primary);
}
.product-footer {
	padding: 10px 15px;
	background: var(--white);
	line-height: 1;
	margin: 30px 0 15px 0;
}
.product-price {
  text-align: right;
  font-size: 38px;
  font-weight: 600;
  color: var(--primary);
} 
.product-price small {
  font-size: 14px;
  color: var(--secondary);
}

/* MODAL */
.modal-content {
	border-radius: 0;
}
.modal-header {
	border-radius: 0;
	background: var(--primary);
	border: none;
	padding: 30px;
}
.modal-header .modal-title {
	color: var(--white);
}
.modal-header .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}
.modal-body {
	padding: 30px;
}

.video-modal .modal-body {
	padding: 0;
}


/* ERROR */
#countDaysError {
  border-radius: 0;
  display: none;
}

/* MOBIL */
@media (max-width: 1199.98px) { 
  .product-item-vert .product-img {
    width: 320px;
    min-height: 220px;
    border-bottom: none;
    border-right: 5px solid var(--primary);
  }
  .product-item-vert .product-info {
    padding: 0;
  }
}
@media (max-width: 991.98px) { 
  /* HEADER */
	header .header-image {
  	min-height: 280px;
	}
	header .header-image .header-title {
		font-size: 24px;
	}
	
	/* PRODUCT-DETAILS */
	.product-media {
		min-height: 120px;
		opacity: 0.5;
	}
	.product-media:hover,
	.product-media:focus {
		opacity: 1;
  	border: 1px solid var(--primary);
	}

  .product-item-vert .product-img {
    width: 100%;
    min-height: 420px;
    border-bottom: 5px solid var(--primary);
    border-right: none;
  }
  .product-item-vert .product-info {
    padding: 15px 0 0 0;
  }
	
	/* SHOPLIST */
	.shoplist .shoplist-item .shoplist-item-img {
		max-width: 100px;
		height: 70px;
	}
}
@media (max-width: 767.98px) { 
  .product-item-vert .product-img {
    min-height: 320px;
  }
}
@media (max-width: 575.98px) { 
	/* SHOPLIST */
	.shoplist .shoplist-item {
		padding: 15px;
		background-color: #f8f8f8;
		margin: 0;
	}
	.shoplist .shoplist-item .shoplist-item-title {
		margin-bottom: 0;
		font-size: 16px;
	}
	.shoplist-item-price {
		font-size: 20px;
	}
	.shoplist-item-price:first-child {
		margin-left: 0;
	}
	.shoplist .shoplist-item .shoplist-item-img {
		max-width: 80px;
		height: 60px;
	}
	.shoplist-period {
		font-size: 16px;
	}
	.shoplist-period strong {
		display: block;
	}

  .product-item-vert .product-img {
    min-height: 250px;
  }
}