@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@700&display=swap');

html {
	scroll-behavior: smooth;
	scroll-snap-type: y proximity;
	scroll-padding-top: 50px;
}

body {
	margin: 0;
	font-family: "Poppins", serif;
	font-weight: normal;
	background: #fafafa;
}

.wrapper {
	width: 94%;
	max-width: 1174px;
	margin: 0 auto;
	position: relative;
}

.none {
	display: none !important;
}

.mt0 {
	margin-top: 0 !important;
}

.mr0 {
	margin-right: 0 !important;
}

.mt20 {
	margin-top: 20px !important;
}

.mt-100 {
	margin-top: 100px !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mb-50 {
	margin-bottom: 50px !important;
}

.mb-100 {
	margin-bottom: 100px !important;
}

.mb5 {
	margin-bottom: 5px !important;
}

.h2-mt0 h2 {
	margin-top: 0 !important;
}

.pl-0 {
	padding-left: 0 !important;
}

h1,
h2,
h3 {
	font-family: 'PT Serif', serif !important;
}

.message {
	position: relative;
	padding: .75rem 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: .25rem;
	color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8;
}

.message.ok {
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
}

.message.error {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

header {
	width: 100%;
	float: left;
	padding: 20px 0;
	background: rgba(0,0,0,0.4);
	-webkit-backdrop-filter: saturate(180%) blur(15px);
	backdrop-filter: saturate(180%) blur(15px);
	border-bottom: 1px solid rgba(255,255,255,0.1);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10000;
}

.logo {
	text-decoration: none;
	background: url('../img/logo.svg') no-repeat left center;
	background-size: contain;
	width: 120px;
	height: 25px;
	font-size: 36px;
	line-height: 1;
	float: left;
	margin-right: 25px;
}

.menu-holder {
	float: left;
	width: 80%;
}

nav {
	float: left;
	margin-left: 10px;
}

nav a {
	margin-right: 45px;
	text-decoration: none;
	transition: .35s all;
	line-height: 27px;
	font-size: 17px;
	font-weight: 300;
	color: #fff;
	position: relative;
	z-index: 1;
}

nav a::after {
	position: absolute;
	bottom: 0;
	top: 0;
	margin: auto;
	border-radius: 15px 5px 15px 5px;
	left: -20px;
	content: '';
	width: calc(100% + 40px);
	height: 30px;
	background: rgba(185, 157, 107, 0.8);
	border: 1px solid rgba(185, 157, 107, 1);
	transition: .3s all;
	opacity: 0;
	z-index: -1;
}

nav a:hover::after,
nav a.active::after {
	opacity: 1;
}

nav a:hover,
nav a.active {

}

.basket {
	border-radius: 4px;
	font-size: 13px;
	color: #fff;
	padding: 11px 13px;
	min-height: 20px;
	line-height: 1;
	min-width: 130px;
	background: rgba(255,255,255,.2);
	border: 1px solid rgba(255,255,255,0.3);
	text-decoration: none;
	transition: .3s all;
	position: absolute;
	right: 0;
	top: -5px;
	box-sizing: border-box;
	z-index: 1000;
}

.basket .right {
	transition: .3s all;
	color: #fff;
	float: right;
	margin-left: 15px;
}

.basket span {
	color: #fff;
}

.icon-basket-arrow {
	opacity: 0;
	background: url('../img/arrow-right.svg') no-repeat right center;
	transition: .3s all;
	position: absolute;
	width: 15px;
	height: 15px;
	transform: scale(0);
	transition: .3s all;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
}

.basket::after {
	content: '';
	width: 100%;
	height: 50px;
	bottom: -50px;
	background: transparent;
	position: absolute;
	left: 0;
	display: none;
}

.basket:hover {
	background: rgba(185, 157, 107, 0.8);
	border: 1px solid rgba(185, 157, 107, 1);
}

.basket:hover .right {
	opacity: 0;
}

.basket:hover::after {
	display: block;
}

.basket:hover .icon-basket-arrow {
	opacity: 1;
	transform: scale(1);
}

.banner {
	width: 100%;
	height: 60vh;
	float: left;
	background: url('../img/hp.jpg') no-repeat center center; /*banner2.jpg*/
	background-attachment: fixed;
	background-size: cover;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	padding: 150px 0;
	display: table;
	margin-top: 68px;
}

.banner video {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
	z-index: -1;
}

.center {
	display: table-cell;
	vertical-align: middle;
}

.center .wrapper {
	max-width: 790px;
}

.banner::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 0;
}

.banner h1 {
	color: #fff;
	font-size: 32px;
	text-align: center;
	margin-bottom: 0;
}

.section-about {
	width: 100%;
}

.section-about p {
	line-height: 1.7;
	opacity: .5;
}

.sec-image {
	width: 50%;
	display: inline-block;
	box-sizing: border-box;
	vertical-align: top;
	aspect-ratio: 4/3;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 0;
}

.sec-image.border-radius {
	border-radius: 15px 5px 15px 5px;
}

p {
	font-size: 16px;
	line-height: 1.4;
}

p a {
	color: rgba(185, 157, 107, 1);
}

h2 {
	font-size: 24px;
}

.drobeckova {
	float: left;
	height: 30px;
	margin-top: 10px;
	overflow: hidden;
	line-height: 30px;
	font-size: 14px;
	color: #a2a2a2;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 100%;
	
	a {
		font: inherit;
		color: #a2a2a2;
		text-decoration: none;
		position: relative;
		transition: 0.3s all ease-in-out;
		
		&:after {
			content: '';
			width: 100%;
			height: 1px;
			position: absolute;
			left: 0;
			bottom: -1px;
			background: #a2a2a2;
			z-index: 999;
			transition: 0.25s all ease-in-out;
		}
		
		&:before {
			content: '';
			width: 0%;
			height: 1px;
			position: absolute;
			right: 0;
			bottom: -1px;
			background: #b99d6b;
			z-index: 999;
			transition: 0.5s all ease-in-out;
		}
		
		&:hover {
			color: #b99d6b;
			
			&:after { width: 0%; }
			&:before { width: 100%; }
		}
	}
	
	strong {
		font-size: inherit;
		font-weight: 600;
		color: #b99d6b;
	}
	
	span {
		font-family: 'awesome';
		margin: 0 4px;
		color: inherit;
	}
}

.sec-left img,
.sec-right img {
	width: 100%;
	border-top-left-radius: 20px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 20px;
}

.sec-right,
.sec-left {
	width: 50%;
	display: inline-block;
	box-sizing: border-box;
	padding-left: 50px;
	vertical-align: top;
}

@media (min-width: 765px) {
	.sec-left:not(.sec-image) {
		padding: 30px;
		text-align: right;
	}
	
	.sec-left:not(.sec-image) .box {
		float: right;
		padding-right: 30px;
	}
}

.box {
	max-width: 600px;
}

u {
	text-decoration: none;
	color: rgba(185, 157, 107, 1);
	border-bottom: 1.5px solid rgba(185, 157, 107, 1);
}

.banner p {
	color: #fff;
	font-size: 17px;
	text-align: center;
	margin-top: 30px;
	font-weight: 300;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left !important;
}

.text-justify {
	text-align: justify;
}

.button {
	color: #fff;
	padding: 12px 25px;
	font-size: 16px;
	border-radius: 4px;
	text-decoration: none;
	transition: .35s all;
	font-family: 'PT Serif', serif;
	display: inline-block;
	cursor: pointer;
	border: 0;
	transition: .3s all;
	
	background: rgba(185, 157, 107, 1);
	border: 1px solid rgba(185, 157, 107, 1);
	border-top-left-radius: 20px !important;
	border-top-right-radius: 5px !important;
	border-bottom-left-radius: 5px !important;
	border-bottom-right-radius: 20px !important;
}

.button::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  font-size: 20px;
  color: white;
  transition: opacity 0.3s ease;
}

.button.success::after {
  opacity: 1;
}

.banner .button {
	background: rgba(255,255,255,0.3);
	-webkit-backdrop-filter: saturate(180%) blur(15px);
	backdrop-filter: saturate(180%) blur(15px);
	border: 1px solid rgba(255,255,255,0.3);
}

.button:hover {
	background: rgba(185, 157, 107, 0.8);
	border: 1px solid rgba(185, 157, 107, 1);
}

.detail .button,
.basket-items .button {
	background: rgba(185, 157, 107, 1);
	border: 1px solid rgba(185, 157, 107, 1);
	border-top-left-radius: 20px !important;
	border-top-right-radius: 5px !important;
	border-bottom-left-radius: 5px !important;
	border-bottom-right-radius: 20px !important;
}

.detail .button {
	width: 100%;
	font-weight: bold;
	font-family: 'PT Serif', serif !important;
	font-size: 18px;
	text-transform: uppercase;
}

.detail .button:hover,
.basket-items .button:hover {
	background: #937643;
	border-color: #937643;
	border-bottom-left-radius: 20px !important;
	border-top-right-radius: 20px !important;
	
	border-bottom-right-radius: 5px !important;
	border-top-left-radius: 5px !important;
}

.button.disabled {
	opacity: .5;
	pointer-events: none;
}

.detail .button.add-cart.loading {
  background-color: rgba(27, 197, 0, 1);
  border-color: rgba(27, 197, 0, 1);
  font-family: "Poppins", serif !important;
  pointer-events: none;
  box-shadow: none !important;
}

.detail .desc {
  width: 35%;
  float: right;
}

.detail table {
	border-collapse: collapse;
	text-align: left;
	border-top: 1px solid #e5e5e5;
	width: 100%;
	margin-top: 20px;
	background: none !important;
	box-shadow: none !important;
	border: 0 !important;
}

.detail table th {
	width: 150px;
	color: #4b4b4b;
	font-size: 15px;
	background: none !important;
	padding-left: 0 !important;
	font-family: 'PT Serif', serif !important;
	padding: 8px 0;
	border-bottom: 1px solid #e5e5e5;
	vertical-align: middle;
}

.detail table tr {
	background: none !important;
}

.detail table td {
	color: #686868;
	background: none !important;
	padding: 8px 0;
	font-size: 15px;
	border-bottom: 1px solid #e5e5e5;
	vertical-align: middle;
}

.detail table tr:last-child td,
.detail table tr:last-child th {
	border-bottom: 0;
}

.lg-toolbar {
	z-index: 108200 !important;
}

.lg-backdrop {
	z-index: 10400 !important;	
}

.lg-outer {
	z-index: 10500 !important;
}

.main {
	width: 100%;
	float: left;
	margin: 80px 0;
}

.column {
  float: left;
  width: 33.33%;
  box-sizing: border-box;
  padding: 10px;
  position: relative;
  z-index: 100;
}

@media (max-width: 700px) {
	.f-dir-row .column {
		width: 50%;
	}
}
	
.row:after {
	content: "";
	display: table;
	clear: both;
}

.row {
	width: calc(100% + 10px);
	float: left;
	margin-left: -10px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
}

.category {
	width: 100%;
	float: left;
	background: #fff;
	background-size: 30px;
	border-top-left-radius: 20px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 20px;
	
	box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, .08);
	margin-top: -20vh;
	cursor: pointer;
	transition: .35s all;
	position: relative;
	z-index: 1000;
	text-align: center;
}

.animate__delay-35s {
	animation-delay: .35s !important;
}

.animate__delay-55s {
	animation-delay: .55s !important;
}

.category a {
	text-decoration: none;
}

.category h2 {
	font-size: 19px;
	color: #000;
	text-decoration: none;
}

.category:hover {
	text-decoration: none;
	box-shadow: 8px 8px 32px 0 rgba(0, 0, 0, .12);
	transform: translateY(-3px);
}

.category .image {
	width: 100%;
	height: 200px;
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.link {
	color: rgba(185, 157, 107, 1);
	margin-left: 15px;
}

.flex-name {
	display: flex;
}

.flex-name h1 {
	font-size: 28px;
	line-height: 1;
	text-align: center;
}

.preparing {
	width: 100%;
	float: left;
	margin-top: 10px;
}

.image-holder {
	width: 60%;
	float: left;
	position: relative;
}

.image-holder .images {
	width: 100%;
	float: left;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.image-holder .images .image {
	width: 50%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 25px;
	cursor: zoom-in;
	background-color: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,0.05);
	flex-basis: calc(50% - 7.5px);
}

.image-holder .images .image:first-child {
	width: 100%;
	min-width: 100%;
}

.image-holder .image::before {
	content: '';
	padding-top: 100%;
	display: block;
}

.main-image {
	width: 100%;
	height: 550px;
	background-size: 70% auto;
	background-position: center center;
	background-color: #fff;
	background-repeat: no-repeat;
	position: relative;
	border-radius: 25px 5px 25px 5px;
	margin-bottom: 0px;
	box-shadow: 0 0 15px rgba(0,0,0,0.05);
	flex-basis: 100%;
	cursor: zoom-in;
}

.detail .price {
	float: left;
	font-size: 48px;
	text-align: center;
	width: 100%;
	white-space: nowrap;
	font-weight: bold;
	color: rgba(185, 157, 107, 1);
	font-family: 'PT Serif', serif !important;
}

.detail {
	width: 100%;
	float: left;
	margin: 30px 0;
}

.desc h1 {
	margin-top: 0;
}

.desc p {
	font-size: 15px;
	line-height: 1.6;
	opacity: .8;
	font-weight: 400;
	clear: both;
}

.desc {
	position: sticky;
	top: 100px;
	box-sizing: border-box;
	padding: 25px;
	background: #fff;
	border-radius: 5px 15px 5px 15px; 
	box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.lg-close {
	position: absolute;
	right: 10%;
	top: 90px;	
}

.hp-products {
	width: 100%;
	float: left;
}

.hp-products h2 {
	font-size: 39px;
}

.hp-products h2 span {
	position: relative;
	display: block;
	opacity: .4;
	font-size: 27px;
}

.tags {
	display: flex;
	gap: 10px;
	align-content: center;
	margin-bottom: 10px;
}

.form-detail {
	width: 100%;
	float: left;
	clear: both;
	gap: 20px;
	margin: 30px 0;
	justify-content: center;
}

#qty {
	width: 50px;
	height: 50px;
	margin-bottom: 0;
	text-align: center;
	box-sizing: border-box;
	outline: none !important;
	border-radius: 5px 15px 5px 15px;
	border: 1px solid rgba(0, 0, 0, 0.15);
}

#qty:focus {
	border-color: rgba(185, 157, 107, 1);
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(@darkGreen, 0.25);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	/* display: none; <- Crashes Chrome on hover */
	-webkit-appearance: none;
	margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
	-moz-appearance:textfield; /* Firefox */
}

.tag {
	flex: 100%;
	letter-spacing: 1px;
	padding: 9px 10px;
	border-radius: 15px 5px 15px 5px;
	font-size: 10px;
	position: relative;
	line-height: 1;
	display: flex;
	line-height: 1.4;
	align-content: center;
	align-items: center;
	background: #e5e5e5;
	text-align: center;
	color: #6b6b6b;
}

.tag--green {
	background: green;
	color: #fff;
}

.tag--red {
	background: red;
	color: #fff;
}

.tags .tag:nth-child(1) {
	animation-delay: 1s;
}

.tags .tag:nth-child(2) {
	animation-delay: 2s;
}

.tags .tag:nth-child(3) {
	animation-delay: 3s;
}

.tag--preparing {
	background: #f2b7c9;
	color: #C30E59;
	text-decoration: none;
	position: absolute;
	right: 10px;
	top: 10px;
}

.tag span {
	width: 100%;
	text-align: center;
	display: block;
}

@keyframes tagAnim {
  0% {
	background: #e5e5e5;
	color: #6b6b6b;
	box-shadow: 0 0 25px rgba(185, 157, 107, 0);
  }

  50% {
	background: rgba(185, 157, 107, 1);
	color: #fff;
	box-shadow: 0 0 25px rgba(185, 157, 107, 0.6);
  }
  
  100% {
	  background: #e5e5e5;
	  color: #6b6b6b;
	  box-shadow: 0 0 25px rgba(185, 157, 107, 0);
	}
}

.product {
	width: 100%;
	border-radius: 15px 5px 15px 5px;
	min-height: 100px;
	margin-right: 16px;
	float: left;
	transition: .35s all;
	box-sizing: border-box;
	position: relative;
	margin-bottom: 16px;
	text-align: left;	
	margin-bottom: 30px !important;
	background: #fff;
	box-shadow: 8px 8px 32px 0 rgba(0, 0, 0, .12);
}

.product a {
	text-decoration: none;
}

.product p,
.product h2 {
	clear: both;
	box-sizing: border-box;
}

.product-bottom {
	padding: 0 15px;
	clear: both;
	box-sizing: border-box;
}

.product:hover {
	text-decoration: none;
	transform: translateY(0);
	box-shadow: 8px 8px 32px 0 rgba(0, 0, 0, .05);
}

.product .price {
	color: #b7a66e;
	font-family: 'PT Serif', serif !important;
	font-size: 19px;
	font-weight: bold;
	margin-bottom: 15px;
}

.product p {
	color: rgba(0,0,0,0.5);
	line-height: 1.6;
	font-size: 14px;
	font-weight: 400;
}

.product .image {
	width: 100%;
	height: 300px;
	float: left;
	margin-bottom: 15px;
	border-radius: 15px 5px 0 0;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}

.product h2 {
	color: #000;
	font-size: 21px;
	margin-bottom: 5px;
}

.product h2 a {
	color: inherit;
	text-decoration: none;
}

.triangle {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 200px 200px 0;
	position: absolute;
	pointer-events: none;
	border-color: transparent #18191b transparent;
	right: 0;	
	pointer-events: none;
}

footer {
	width: 100%;
	background: #18191b;
	float: left;
	text-align: center;
	padding: 50px 0 25px;
	position: relative;
}

footer ul {
	list-style: none;
	padding: 0;
	display: inline-block;
	vertical-align: top;
	margin: 0 50px;
}

footer li {
	line-height: 25px;
}

footer li.title {
	font-family: 'PT serif';
	color: #fff;
	font-size: 21px;
	margin-bottom: 20px;
}

footer a {
	color: #fff;
	text-decoration: none;
}

footer ul:not(.social-list) li a {
	border-bottom: 1px solid rgba(255,255,255,.6);
}

footer p {
	font-size: 13px;
	width: 100%;
	float: left;
	display: block;
	margin-bottom: 0;
	margin-top: 40px;
	color: #fff;
}

footer .social-list li a {
	font-family: 'awesome';
	text-decoration: none;
	font-size: 30px;
}

footer li:not(.title) {
	opacity: .6;
	transition: .3s all;
}

footer li:hover {
	opacity: 1;
}

footer .social-list li:not(.title) {
	display: inline-block;
	margin-right: 10px;
}

strong.label {
	display: inline-block;
	width: 170px;
}

table {
	width: 100%;
	border-collapse: collapse;
	
	thead {
		tr {
			background: rgba(0,0,0,0.1);
			border: 1px solid rgba(0,0,0,0.1);
			
			th {
				padding: 14px 16px;
				text-align: left;
			}
		}
	}
}

table.table {
	margin: 40px 0;
	background: #fff !important;
	color: #000 !important;
	border: 1px solid #e1e6ea !important;
	border-bottom-color: rgb(225, 230, 234);
	border-bottom-color: #d4dbe1;
	box-shadow: 0 3px 2px -2px #e1e6ea,0 2px 1px -1px #f8fafb !important;
}

table.table th,
table.table td {
	border-bottom: 0.1rem solid #e1e1e1;
	padding: 1.2rem 1.5rem;
	text-align: left;
}

table.table th a {
	color: #000;
}

table td {
	vertical-align: middle;
}

table small {
	display: block;
	margin-top: 5px;
}

table td:first-child,
table th:first-child {
	padding-left: 15px;
}

tr:nth-child(even) {
	background: rgba(0, 0, 0, 0.025);
}

table td a {
	color: rgba(185, 157, 107, 1);
	text-decoration: underline;
	text-underline-offset: 2px;
}

table td a:hover {
	color: rgba(185, 157, 107, 1);
	text-decoration: none;
	text-underline-offset: 2px;
}

table .dblclick {
	cursor: pointer;
	transition: .3s all;
}

table .dblclick:hover {
	background: rgba(106,227,195, 0.065);
}

.delivery {
	width: 100%;
	float: left;
	margin-top: 25px;
	position: relative;
}

.delivery label {
	margin-top: 7.5px;
}

.delivery h2 {
	margin: 0;
	margin-bottom: 10px;
}

.basket-items .button {
	width: 100%;
	margin-top: 25px;
	border-radius: 15px;
}

.basket-items label {
	width: 100%;
	float: left;
	padding-top: 3px;
	margin-top: 10px;
	box-sizing: border-box;
}

h2 small {
	display: block;
	font-size: 60%;
	opacity: .35;
}

#hidden-section {
	transition: .3s all ease-in-out;
	height: 0;
	overflow: hidden;
}

#hidden-section.active {
	height: 380px;
	transform-origin: top;
	overflow: auto;
}

.pd-image {
	width: 100%;
	border-radius: 25px 5px 25px 5px;
	padding: 30px 15px;
	box-sizing: border-box;
	margin-top: 25px;
	/*background: url('../uploads/banner.jpg') no-repeat center center;
	background-size: cover;*/
	background-color: #e5e5e5;
	position: relative;
	z-index: 1;
	text-align: center;
}

.pd-image p {
	font-family: 'PT Serif', serif !important;
	opacity: .5;
}

/*
.pd-image::before {
	width: 100%;
	height: 100%;
	border-radius: 25px 5px 25px 5px;
	position: absolute;
	left: 0;
	top: 0;
	-moz-backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	content: '';
	background: rgba(255,255,255,.8);
	z-index: -1;
	box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}
*/

.col {
	width: 50%;
	float: left;
	box-sizing: border-box;
}

.col-l {
	padding-left: 20px;
}

.col-r {
	padding-right: 20px;
}

.basket-items {
	width: 35%;
	float: right;
	min-height: 50px;
	background: #fff;
	border-radius: 15px 5px 15px 5px;
	border: 1px solid rgba(0,0,0,0.1);
	box-sizing: border-box;
	padding: 15px;
	box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, .05);
}

.basket-items .item {
	width: 100%;
	line-height: 1;
	float: left;
	padding: 12px 0;
	border-bottom: 1px solid #e8e8e8;
}

.basket-items .col-left {
	width: 65%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: clip;
	overflow-clip-margin: 5px;
	float: left;
}

.basket-items .col-left small {
	opacity: .5;
	font-size: 12px;
	margin-left: 5px;
}

.basket-items .col-right {
	width: 35%;
	text-align: right;
	float: right;
	box-sizing: border-box;
	padding-right: 25px;
	position: relative;
}

.basket-items .delete {
	width: 25px;
	height: 16px;
	display: inline-block;
	text-decoration: none;
	position: absolute;
	top: 0px;
	right: 0;
	background: url('../img/delete.svg') no-repeat right center;
	transition: all 0.3s;
}

.col1 {
	max-width: 300px;
	float: left;
	box-sizing: border-box;
	padding-right: 10px;
}

.clear {
	clear: both;
}

.basket-order {
	width: 60%;
	float: left;
	
	label {
		width: 100%;
		margin-bottom: 3px;
		display: block;
	}
}

input,
textarea {
	width: 100%;
	background: #fff;
	border-radius: 3px;
	height: 35px;
	line-height: 35px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
	outline: none !important;
	padding: 0 10px;
	font-size: 15px;
	appearance: none;
	-webkit-appearance: none;
	transition: .3s all;
	margin-bottom: 20px;
	
	&:focus {
		border-color: rgba(185, 157, 107, 1);
		outline: 0;
		box-shadow: 0 0 0 0.2rem rgba(@darkGreen, 0.25);
	}
}

textarea {
	height: 65px;
}

.fs15 {
	font-size: 15px;
	line-height: 32.5px;
}

.float-right {
	float: right;
	
	.col {
		float: right;
	}
	
	input[type="text"] {
		height: 42px !important;
		line-height: 42px !important;
	}
	
	.button {
		padding: 0;
	}
}

.input label {
	width: 100%;
	margin-bottom: 3px;
	display: block;
}
	
.input input,
.input textarea,
.input select {
	width: 100%;
	background: #fff;
	border-radius: 3px;
	height: 40px;
	line-height: 40px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
	outline: none !important;
	padding: 0 10px;
	font-size: 15px;
	appearance: none;
	-webkit-appearance: none;
	transition: .3s all;
	margin-bottom: 20px;
	box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, .05);
}

.input input:focus {
	border-color: rgba(185, 157, 107, 1);
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(@darkGreen, 0.25);
}
	
.input select {
	appearance: none;
	background: #fff url('../img/arrow-down.svg') no-repeat center right 15px !important;
	background-size: 15px !important;
}

.col {
	width: 50%;
	float: left;
}

.col--left {
	box-sizing: border-box;
	padding-right: 7.5px;
}

.col--right {
	box-sizing: border-box;
	padding-left: 7.5px;
}

.col-3 {
	width: 33.333%;
	float: left;
	box-sizing: border-box;
	padding-right: 10px;
}

.col--w100p {
	width: 100%;
}

.col--w100p .input {
	float: left;
	box-sizing: border-box;
	padding-right: 10px;
}

.col--w100p .input:nth-child(1) {
	width: 40%;
}

.col--w100p .input:nth-child(2) {
	width: 35%;
}

.col--w100p .input:nth-child(3) {
	width: 25%;
	padding-right: 0;
}

.pr-0 {
	padding-right: 0 !important;
}

input[type="checkbox"]:not(:checked),
input[type="checkbox"]:checked {
  position: absolute;
  left: 40px;
  opacity: 0;
}
input[type="checkbox"]:not(:checked) + label,
input[type="checkbox"]:checked + label {
  position: relative;
  padding-top: 0 !important;
  padding-left: 1.95em;
  cursor: pointer;
}

/* checkbox aspect */
input[type="checkbox"]:not(:checked) + label:before,
input[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 1.25em; height: 1.25em;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  border-radius: 3px;
}
/* checked mark aspect */
input[type="checkbox"]:not(:checked) + label:after,
input[type="checkbox"]:checked + label:after {
  content: '\f00c';
  font-family: 'awesome';
  position: absolute;
  top: 2px; left: 2px;
  margin: auto;
  font-size: 12px;
  line-height: 0.8;
  background: #b99d6b;
  color: #fff;
  text-shadow: 0 0 5px rgba(0,0,0,0.2);
  text-align: center;
  line-height: 17px;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  transition: all .2s;
}
/* checked mark aspect changes */
input[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
input[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
input[type="checkbox"]:disabled:not(:checked) + label:before,
input[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
input[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
input[type="checkbox"]:disabled + label {
  color: #aaa;
}

input[type="radio"]:not(:checked),
input[type="radio"]:checked {
  position: absolute;
  left: 40px;
  opacity: 0;
}
input[type="radio"]:not(:checked) + label,
input[type="radio"]:checked + label {
  position: relative;
  padding-top: 0;
  padding-left: 1.95em;
  cursor: pointer;
}

/* checkbox aspect */
input[type="radio"]:not(:checked) + label:before,
input[type="radio"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 1.25em; height: 1.25em;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  border-radius: 100%;
}
/* checked mark aspect */
input[type="radio"]:not(:checked) + label:after,
input[type="radio"]:checked + label:after {
   content: '';
  font-family: 'awesome';
  position: absolute;
  top: 3px; left: 3px;
  margin: auto;
  font-size: 12px;
  line-height: 0.8;
  background: #b99d6b;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  transition: all .2s;
}
/* checked mark aspect changes */
input[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
input[type="radio"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
input[type="radio"]:disabled:not(:checked) + label:before,
input[type="radio"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
input[type="radio"]:disabled:checked + label:after {
  color: #999;
}
input[type="radio"]:disabled + label {
  color: #aaa;
}

table small {
	display: block;
	margin-top: 5px;
}

table td:first-child,
table th:first-child {
	padding-left: 15px;
}

tr:nth-child(even) {
	background: rgba(0, 0, 0, 0.025);
}

table .dblclick {
	cursor: pointer;
	transition: .3s all;
}

table .dblclick:hover {
	background: rgba(106,227,195, 0.065);
}

.relative {
	position: relative;
	float: left;
}

table .view a,
table .delete a,
table .status a,
table .inf a,
table .month-1 a,
table .month-2 a,
table .month-3 a,
table .users_actions a,
table .pdf a {
	display: inline-block;
	width: 30px;
	height: 20px;
	text-decoration: none;
	opacity: 0.5;
	transition: 0.3s all;
}

table .pdf a {
	width: 25px;
}

table .view a:hover,
table .pdf a:hover,
table .month-1 a:hover,
table .month-2 a:hover,
table .month-3 a:hover,
table .inf a:hover,
table .users_actions a:hover,
table .delete a:hover,
table .status a:hover {
	opacity: 1;
}

table .view a {
	background: url('../img/pencil.svg') no-repeat center left;
	background-size: contain;
}

table .delete a {
	background: url('../img/trash.svg') no-repeat center left;
	background-size: contain;
}

table .status a {
	background: url('../img/check.svg') no-repeat center left;
	background-size: contain;
}

table .status.deactive a {
	background: url('../img/ban.svg') no-repeat center left;
	background-size: contain;
}

#notify {
	background: #fff;
	position: absolute;
	right: 140px;
	z-index: 100;
	line-height: 16.5px;
	top: -4px;
	box-sizing: border-box;
	padding: 10px 15px;
	box-shadow: 0 .188rem .375rem rgba(0,0,0,.16);
	border-radius: 3px;
	font-size: 13px;
	pointer-events: none;
	opacity: 0;
	transform: translateX(-30px);
	transition: .3s all ease-in-out;
}

#notify i {
	font-style: normal;
}

#notify::before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-color: transparent transparent transparent #fff;
	position: absolute;
	right: -5px;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
}

#notify.active {
	opacity: 1;
	transform: translateX(0);
}

.total_basket_price {
	margin-top: 20px;
	margin-bottom: 10px;
	width: 100%;
	float: left;
	border-top: 1px solid #e8e8e8;
	padding: 15px 0;
	font-weight: bold;
	border-bottom: 1px solid #e8e8e8;
}

.total_basket_price strong {
	float: right;
	font-weight: normal;
}

.total_basket_price var {
	font-style: normal;
	float: right;
}

.add-doprava span,
.add-platba span {
	color: #000;
	font-weight: bold;
	padding: 3px 5px;
	border-radius: 4px;
	margin-left: 5px;
	position: relative;
	top: -2px;
	float: right;
}

.row.no-flex {
	display: block;
}

.checkbox-for-fields {
	padding-left: 40px;
	position: relative;
	cursor: pointer;
}

.checkbox-for-fields:before {
	content: '';
	width: 20px;
	height: 20px;
	border: 1px solid rgba(0,0,0,0.15);
	border-radius: 100%;
	background: #fff;
	position: absolute;
	left: 0;
	top: 10px;
}

.checkbox-for-fields.active:before {
	background: rgba(185, 157, 107, 1);
	border: 2px solid #fff;
	outline: 1px solid rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
	.menu {
		margin-left: 0;
		white-space: nowrap;
		overflow-x: scroll;
		overflow-y: hidden;
		width: 100%;
		margin-top: 15px;
	}
	
	.comma {
		font-size: 36px !important;
	}
	
	.detail .images {
		white-space: nowrap;
		flex-wrap: nowrap;
		overflow: scroll;
		scroll-snap-type: x mandatory;
	}
	
	.image-holder {
		overflow: clip;
		overflow-clip-margin: 11px;
		position: relative;
		right: -10px;
	}
	
	.detail .images .image {
		width: 90% !important;
		min-width: 90% !important;
		max-width: 90% !important;
		display: inline-block;
		
	}
	
	.main {
		margin-top: 95px;
	}
	
	.detail .button {
		font-size: 16px;
	}
	
	.col-l,
	.col-r {
		padding: 0;
	}
	
	.col,
	.col--w100p .input {
		width: 100% !important;
		padding: 0 !important;
	}
	
	.custom-image,
	.custom-text {
		width: 100% !important;
	}
	
	.custom-image {
		margin-top: 0 !important;
	}
	
	.section-about.d-flex {
		display: flex;
		text-align: center;
		flex-direction: column;
	}
	
	.section-about .sec-image.sec-left,
	.section-about .sec-image.sec-right {
		border-radius: 0 !important;
		order: 1;
		margin-bottom: 20px !important;
	}
	
	.section-about .sec-right:not(.sec-image),
	.section-about .sec-left:not(.sec-image) {
		border-radius: 0 !important;
		order: 2;
		margin-bottom: 0 !important;
	}
	
	.section-about.d-flex .sec-right {
		box-sizing: border-box;
		padding: 15px;
	}
	
	nav a::after {
		top: 4px;
		bottom: auto;
		height: 5px;
		width: 100%;
		left: 0;
	}
	
	/*
	.detail form {
		box-sizing: border-box;
		background: #fff;
		padding: 15px;
		position: sticky;
		top: 0;
		margin-left: -3%;
		width: 106%;
	}
	*/
	
	header {
		padding-bottom: 5px;
	}
	
	footer ul {
		margin-bottom: 30px;
	}
	
	.main-image {
		margin-top: 20px;
	}
	
	.menu a {
		display: inline-block;
		margin-right: 20px;
	}
	
	.banner {
		background-attachment: scroll;
	}
	
	.column {
		padding: 4px;
	}
	
	.row {
		width: calc(100% + 8px);
		margin-left: -4px;
		flex-flow: column;
	}
	
	.product {
		margin: 0;
	}
	
	.category .image {
		height: 140px;
	}
	
	.sec-left,
	.sec-right {
		width: 100%;
		padding: 0;
	}
	
	.sec-left {
		margin-bottom: 20px;
	}
	
	.hp-products .column {
		width: 100%;
	}
	
	.product p {
		font-size: 15px;
		line-height: 1.3;
		letter-spacing: normal;
	}
	
	.product h2 {
		font-size: 19px;
	}
	
	.hp-products .h2 {
		text-align: center;
		font-size: 24px;
	}
	
	.detail .desc {
		margin-top: 50px;
	}
	
	.image-holder,
	.detail .desc,
	.basket-order,
	.basket-items {
		width: 100%;
	}
	
	.basket-order {
		margin-top: 30px;
	}
	
	.main-image {
		height: 300px;
		background-size: contain;
	}
	
	.flex-name h1 {
		font-size: 28px;
		padding-right: 15px;
	}
	
	.image-holder .thumbs .image {
		float: left;
	}
	
	html {
		scroll-padding-top: 70px;
	}
	
	header {
		padding-bottom: 0;
	}
	
	nav a {
		padding-bottom: 7px;
	}
	
	nav a::after {
		bottom: 0;
	}
	
	.banner {
		height: 80vh;
	}
}

@supports (backdrop-filter: blur(5px)) {
  header {
	  background: rgba(0,0,0,0.7);
  }
}

@media (max-width: 1100px) {
	.banner {
		background-attachment: scroll;
	}
}

.d-flex {
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
}

.custom-design {
	display: block;
	width: 100%;
	padding-bottom: 15px;
	padding-top: 15px;
	border-top: 1px solid rgba(0,0,0,0.05);
}

.custom-design a {
	color: rgba(0,0,0,0.35);
	text-decoration: none;
	border-bottom: 1px solid rgba(0,0,0,0.25);
}

.detail .custom-design {
	margin: 15px 0;
	border-bottom: 1px solid rgba(0,0,0,0.05);
	text-align: center;
	line-height: 1;
}

.note-custom textarea {
	height: 200px;
}

.alert {
	background: #def7ec;
	border: 1px solid #b2f5d8;
	color: #046c4e;
	padding: 13px;
	display: inline-block;
	border-radius: 5px 15px 5px 15px;
}

.custom-image {
	width: 48%;
	float: left;
}

.custom-text {
	width: 50%;
	float: right;
}

.f-dir-row {
	flex-direction: row;
}

.dz-details,
.dz-error-message,
.dz-success-mark,
.dz-error-mark {
  display: none !important;
}

.dz-upload {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 6px;
}

#dropzone {
  display: flex;
  width: 220px;
  height: 100px !important;
  min-height: 100px !important;	
  flex-wrap: wrap;
  float: left;
  gap: 15px;
  margin: 0 !important;
  margin-bottom: 30px !important;
  margin-right: 30px !important;
  box-sizing: border-box !important;
  text-align: center;
}

.dz-success .dz-success-mark {
  display: block !important;
  position: absolute;
  top: 31px;
  left: 0;
  right: 0;
}

.dz-image img {
  border-radius: 10px;
}

.dz-preview {
  position: relative;
}

.dz-default {
  width: 100%;
}


.sortable-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.dropzone .dz-preview {
	cursor: grab;
}

.dz-image-preview {
	display: flex;
}

.dz-image,
.dz-image img {
	max-width: 100px !important;
	height: 100px !important;
	object-fit: cover;
	cursor: grab;
}

.dz-remove-btn {
	position: absolute;
	top: -10px;
	right: -10px;
	background-color: red;
	color: white;
	border: none;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	cursor: pointer;
	z-index: 10;
}

.dz-remove-btn:hover {
	background-color: darkred;
}

.dz-preview {
	position: relative;
}

.bundle {
	width: 100%;
	float: left;
	margin-top: 20px;
	margin-bottom: 20px;
}

.bundle .link-bundle {
	width: 100%;
	font-size: 16px;
	margin-bottom: 10px;
	display: flex;
	padding: 15px 60px;
	padding-right: 15px;
	position: relative;
	background: #fff;
	border: 1px solid #bcbcbc;
	border-radius: 10px;
	box-sizing: border-box;
	cursor: pointer;
	justify-content: space-between;
	text-decoration: none;
	color: #000;
}

.preview-video {
	width: 100%;
	border-radius: 25px 50px 25px 50px;
}

.message {
	background: #D3EE98;
	color: #4a8f4f;
	border-color: #72BF78;
}

.bundle .link-bundle .discount-tag {
	color: #72BF78;
	display: block;
	position: relative;
	border-radius: 10px;
}

.bundle legend {
	display: block;
	margin-bottom: 10px;
	font-weight: bold;
	text-align: center;
	font-size: 18px;
}

.info-bundle {
	color: #000;
}

.info-bundle strong,
.price-bundle strong {
	color: #000;
	display: inline-block;
}

.price-bundle small {
	text-decoration: line-through;
	float: right;
}

.price-bundle strong {
	color: #b99d6b;
	width: 80px;
	display: block;
	text-align: right;
}

.bundle .link-bundle:before {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	border: 2px solid #bcbcbc;
	border-radius: 50px;
	left: 20px;
	top: 15px;
	z-index: 1;
}

.bundle .link-bundle.active:before {
	background: #b99d6b;
	outline: 2px solid #b99d6b;
	border: 2px solid #fff;
}

.bundle .link-bundle.active {
	border: 1px solid #b99d6b;
	background-color: rgba(185, 157, 107, .1);
}

.qty-holder {
	width: 80px;
	display: flex;
	gap: 5px;
}

.qty-btn {
	height: 20px;
	min-height: 20px;
	width: 25px;
	display: block;
	height: clc(50% - 5px);
	border-radius: 5px 2px 5px 2px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	background: #e9e9ed;
	color: #000;
	transition: .3s all ease-in-out;
	cursor: pointer;
}

.qty-btn:hover {
	background: #b99d6b;
	color: #fff;
	border-color: #b99d6b;
}

.qty-btns {
	gap: 7.5px;
	display: flex;
	flex-flow: column;
}

.section-about a {
	color: #b99d6b;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.section-about label {
	display: inline-block;
	width: 60px;
	text-align: left;
	color: #000;
	font-weight: bold;
	opacity: 1;
}

.comma {
	display: inline-block;
	padding: 20px;
	padding-left: 40px;
	font-size: 48px;
	background: url('../img/comma.svg') no-repeat left -15px / contain;
}