/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Playfair';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Playfair';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --green: #99cd49;
    --orange: #ff7d23;
    --blue: #38bdeb;
    --gray: #bbbbbb;
    --silver: #e7e7e7;
	--light: #f6f6f6;
    --sz-xl: 30px;
    --sz-l: 20px;
	--sz-m: 15px;
    --sz-s: 13px;
    --sz-xs: 12px;
}
body, input, select, textarea {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
}
h1, .serif {
    font-family: 'Quicksand', serif;
    font-weight: 500;
}
.sans {
    font-family: inherit;
}
bold, b, strong {
  font-weight: 600;
}
@keyframes uncover {
  from {
  opacity: 0;
  clip-path: inset(50% 0% 0% 0%);
  }  
  to {
  opacity: 1;
  clip-path: inset(0% 0% 0% 0%);
  }
}
@keyframes opacity {
  from {
  opacity: 0;
  }  
  to {
  opacity: 1;
  }
}
@keyframes linka {
  from {
  width: 0;
  }  
  to {
  width: 100%;
  }
}
.scrolltable {
	padding-bottom: 13px;
	overflow-y: hidden;
}
.scrolltable::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
	background-color: #F5F5F5;
}
.scrolltable::-webkit-scrollbar {
	height: 5px;
	background-color: #F5F5F5;
}
.scrolltable::-webkit-scrollbar-thumb {
	background-color: #d1cfcb;
}
.bg-clr-gradient  {
    background: linear-gradient(180deg, rgb(247 247 247) 0%, rgba(255, 255, 255, 0) 21%);
}
.bg-clr-green  {
    background: var(--green);
}
.bg-clr-orange  {
    background: var(--orange);
}
.bg-clr-blue  {
    background: var(--blue);
}
.bg-clr-light {
    background: var(--light);
}
.bg-clr-silver {
    background: var(--silver);
}
.clr-green {
    color: var(--green);
}
.clr-orange {
    color: var(--orange);
}
.clr-blue {
    color: var(--blue);
}
.row-tbl td, .row-tbl th {
    border-color: var(--silver);
}
/* html */
html {
    font-size: 15px;
}
body {
	margin: 0;
	padding: 0;
	color: #111111;
	background: white;
}
a {
    color: #308dd7;
    text-decoration: none;
    transition: all 0.3s;
}
a:hover {
    color: var(--dark-green);
}
h1 {
    margin: 0 0 0.4em;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.2;
}
h1.sz-big {
    font-weight: 700;
    font-size: 37px;
}
h2 {
    font-size: 17px;
    letter-spacing: 0.01em;
    font-weight: 500;
    margin: 2em 0 1em;
    line-height: 1.2;
}
h2.category {
    text-align: center;
    color: gray;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
h3 {
    font-size: 15px;
    letter-spacing: 0.01em;
    font-weight: 500;
    color: var(--dark-green);
    margin: 2em 0 1em;
    line-height: 1.2;
}
h4 {
    font-size: var(--sz-m);
    font-weight: normal;
    line-height: 1.2;
    margin: 1em 0 0.7em;
}
big {
	font-size: var(--sz-l);
}
p {
    margin: 1.3em 0;
}
p:first-child {
    margin-top: 0;
}
p:last-child {
    margin-bottom: 0;
}
picture {
    display: inline-block;
}
.fnt-bold {
    font-weight: 600;
}
.fnt-strong {
    font-weight: 600;
}
.sz-xs {
    font-size: var(--sz-xs);
    letter-spacing: 0.02em;
}
.sz-s, small {
    font-size: var(--sz-s);
}
.size-m {
    font-size: 16px !important;
}
.sz-l {
    font-size:  var(--sz-l);
}
.sz-xl {
    font-size: var(--sz-xl) !important;
}
.proklad-s, .proklad-s th, .proklad-s td {
    line-height: 1.2;
}
h1 a, h2 a, h3 a, h4 a, h5 a {
    color: inherit;
}
td, th {
	text-align: left;
	padding: 0;
	border: 1px solid #dadada;
	padding: 5px 5px;
}
th {
    font-weight: 400;
    border-color: #414c2d;
    letter-spacing: 0.03em;
    padding: 5px 3px;
}
form {
    margin: 0;
}
img {
    vertical-align: middle;
}
.col {
    column-gap: 10px;
    -webkit-columns: 12em;
    columns: 12em;
    margin: 0;
    padding: 0;
}
hr {
	height: 1px;
	border: 0;
	border-bottom: solid 1px #d4d4d4;
	max-width: 450px;
	margin: 35px auto 30px 0;
}
/* inputs */
input[type="text"], input[type="tel"], input[type="email"], input[type="number"], input[type="password"], input[type="date"], input[type="search"], input[type="url"], select, textarea, .like-select {
	font-weight: 300;
	border: 1px solid var(--gray);
	margin: 2px;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 0.37em 0.5em;
	max-width: 100%;
	display: inline-block;
	background: white;
}
input::placeholder {
  color: #111111;
}
.sz-s select, .sz-s input, .sz-s .like-select, .sz-s, .sz-s th, .sz-s td  {
    font-size: var(--sz-s);
}
.sz-xs, .sz-xs th, .sz-xs td {
    font-size: var(--sz-xs);
}
/* buttons */
input[type="submit"], input[type="button"], button, .button, .btn {
    padding: 10px 26px;
    margin-bottom: 0;
    background: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    line-height: 22px;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s;
    border: solid 2px #111111;
}
input[type="submit"].btn-secondary, input[type="button"].btn-secondary, button.btn-secondary, .button.btn-secondary, .btn.btn-secondary, input::file-selector-button {
    border-color: var(--gray);
    background: white;
    color: black;
}
.btn.btn-s, button.btn-s, input[type="submit"].btn-s, input[type="button"].btn-s {
    padding: 7px 18px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    border-width: 1px;
    text-transform: none;
}
input[type="file"] {
    font-size: var(--sz-xs);
    margin-top: 3px;
    color: #808080;
}
input.filepond {
    padding: 0;
}
input::file-selector-button {
  padding: 0.6em 1.5em;
  letter-spacing: 0.05em;
  border: thin solid var(--gray);
  border-radius: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
/* hover */
input[type="submit"]:hover, input[type="button"]:hover, button:hover, .button:hover, .btn:hover {
    background-color: var(--blue);
    border-color: var(--blue);
    color: #ffffff;
}
input[type="submit"].btn-secondary:hover, input[type="button"].btn-secondary:hover, button.btn-secondary:hover, .button.btn-secondary:hover, .btn.btn-secondary:hover, input::file-selector-button:hover {
    background-color: rgb(255 255 255 / 50%);
    border-color: var(--blue);
    color: black;
}
/* ico */
.ico {
    display: inline-block;
    border: solid 1px rgb(0 0 0 / 16%);
    color: #000000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: all 0.3s;
    text-align: center;
    font-style: normal;
}
.ico:hover {
    background-color: var(--light);
}
.ico-akce, .ico-akce:hover {
    background: var(--blue);
    border-color: var(--blue);
    padding-top: 12px;
    color: white;
    width: 45px;
    height: 45px;
    font-size: var(--sz-xs);
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 1;
}
.fit-img  {
    overflow: hidden;
}
.fit-img img {
    overflow: hidden;
	transition: transform 300ms ease;
}
.fit-img img:hover {
    transform: scale(1.1);
}
/* sharebuttons NEUZITO */
#shareButtons {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}
#shareButtons a.poslat {
    padding: 10px 3px 0 2px;
    text-align: center;
    margin-left: 9px;
    font-size: 11px;
    letter-spacing: 0.02em;
    font-weight: 600;
    color: transparent;
    background: #9eaed5 url(/img/ico-email-white.png) no-repeat center;
    border: solid 1px rgb(0 0 0 / 0%);
    border-radius: 50%;
    width: 39px;
    height: 39px;
}
#shareButtons .clipboard {
    padding: 0;
    color: transparent;
    font-size: 11px;
    background: #b6bfab url(/img/ico-copy-white.png) no-repeat center;
    border: solid 1px rgb(0 0 0 / 0%);
    border-radius: 50%;
    width: 39px;
    height: 39px;
}
#shareButtons a.poslat:hover, #shareButtons .clipboard:hover {
    color: #000000 !important;
    background-image: none;
}
#shareButtons .fb:before {
    content: "";
    background: #2d88ff url(/img/fb-white.svg) no-repeat center;
    background-size: 22px;
    display: inline-block;
    width: 39px;
    height: 39px;
    line-height: 39px;
    color: white;
    text-align: center;
    margin-left: 9px;
    vertical-align: middle;
    border-radius: 50%;
}

/* header*/
header {
    margin: 0;
    padding: 0;
    width: 100%;
    box-shadow: 0 0 20px rgb(0 0 0 / 18%);
}
.info-contact {
    background-color: #000000;
    margin-bottom: 20px;
    padding: 8px 20px;
}
.info-contact > div > * {
    margin-right: 20px;
}
.phone {
    background: url(/img/ico-phone.svg) no-repeat;
    padding-left: 25px;
}
.carousel {
    background: url(/img/carousel.webp) center top no-repeat;
    background-size: cover;
    height: 290px;
}
.moto {
    text-align: center;
    margin: auto;
    max-width: 306px;
    padding-top: 50px;
}
.logo {
    align-self: flex-start;
    width: 120px;
    margin-left: 20px;
    margin-bottom: 20px;
}
.logo img {
    margin-right: 20px;
}
.customary-menu {
    display: flex;
    list-style: none;
    width: 170px;
    justify-content: flex-end;
    margin-right: 10px;
}
.customary-menu .ico {
    list-style: none;
    line-height: 33px;
    text-align: center;
    margin-right: 12px;
    font-size: 13px;
    padding: 0;
    font-weight: 600;
}
.search input[type="submit"] {
    background: transparent url(/img/search.webp) no-repeat center;
    border-color: transparent !important;
    padding: 8px 18px;
    width: 46px;
    height: 39px;
    border: solid 1px #111;
    position: absolute;
    right: 44px;
}
.search input[type="text"] {
    background: rgb(255 255 255 / 0%);
    padding: 6px 40px 7px 20px;
    height: 35px;
    font-size: var(--sz-s);
    margin: 0;
    width: 100%;
}
/* screen menu */
.menu {
	flex-grow: 1;
	align-content: center;
}
.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.menu li {
    display: inline-block;
    position: relative;
}
.menu a, .menu .btn-select .btn {
	display: inline-block;
	padding: 3px 20px;
	color: #000000;
	background-color: transparent;
	letter-spacing: 0.01em;
	position: relative;
	border: 0;
	font-weight: 500;
}
.menu a:after {
    position: absolute;
    left: 20px;
    bottom: 0;
    width: 0px;
    height: 1px;
    content: '';
    background: var(--blue);
    transition: width 0.3s;
}
.menu a:hover:after, .menu a.active:after {
    width: calc(100% - 40px);
}
/* submenu screen */
.menu li > ul {
    display: none;
    width: max-content;
}
.menu li > ul li {
    display: list-item;
    text-align: left;
}
.menu li:hover > ul {
    display: block;
}
.menu li ul {
    position: absolute;
    top: 30px;
    z-index: 2;
    margin: 0 10px 0 -20px;
    padding: 5px 0 10px;
    background: white;
    padding-top: 12px;
    border: solid 1px var(--clr-gold);
    border-width: 0 0 1px 1px;
}
.menu li ul a {
	font-weight: 300;
	display: block;
	margin: 0;
	color: #000000;
	font-size: var(--sz-s);
	padding: 2px 30px 2px 40px;
}
.menu li ul a:hover {
    color: rgb(0 0 0 / 50%);
    transition: color 0.35s;
}
.menu li ul li a:after {
    content: none;
}
.menu li ul:after, .menu li ul:before {
    content: '';
    position: absolute;
    display: block;
    background: var(--blue);
    z-index: 100000;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 1px;
}
.menu li ul:before {
    left: 0;
	right: inherit;
	bottom: inherit;
    top: -1px;
    width: 22%;
    height: 1px;
}
/* KONTAKT FORM */
.input-row input:not([type="submit"]), .input-row select, .input-row textarea {
  border-color: var(--gray);
  border-width: 0 0 1px;
  background: transparent;
  width: 100%;
  padding-left: 3px;
}
.input-row input:not([type="submit"]):focus, .input-row select:focus, .input-row textarea:focus {
  outline: 0;
}
.input-row select {
  padding-left: 0;
  color: #56648f;
  margin-top: 1px;
}
.input-row textarea {
  height: 99px;
}
.input-row textarea:focus, .input-row textarea:not(:placeholder-shown) {
  height: 200px;
}
.input-row  {
 position: relative;
 min-height: 56px;
}
.input-row label {
 display: block;
 position: absolute;
 top: 5px;
 margin-left: 3px;
 transition: .3s ease;
 pointer-events: none;
 background: var(--light);
 font-size: var(--sz-s);
}
.input-row input:not(.nofilled):valid~label, .input-row input:active~label, .input-row input:focus~label,
.input-row textarea:not(:placeholder-shown)~label {
 top: -15px;
 font-size: var(--sz-xs);
 transition: .3s ease;
 pointer-events: none;
 color: #a4abb9;
}
.input-row input[required] +label:after, .input-row select[required] +label:after  {
    content: "*";
    padding-left: 3px;
    font-size: 13px;
}
/* PRODUCT PAGE */
.left-menu h2 {
    font-size: var(--sz-s);
    font-weight: 600;
}
.left-menu ul {
    font-size: var(--sz-xs);
    font-weight: 600;
    list-style: none;
    padding: 0;
    margin-top: 2px;
    padding-bottom: 25px;
    border-bottom: solid 1px black;
}
.left-menu li{
    margin-bottom: 7px;
    margin-left: 10px;
}
.left-menu a {
    display: block;
    color: black;
}
.left-menu a:hover {
    color: var(--orange);
}
.item .product-header h2:after {
    content: none;
}
.product-header {
    display: flex;
    margin: 0 20px 20px;
    padding-top: 6px;
    justify-content: space-between;
    line-height: 1.2;
    border-top: solid 1px var(--gray);
}
.item .product-header h2 {
    font-size: var(--sz-s);
    font-weight: normal;
    margin: 0;
}
.product-info {
    white-space: nowrap;
    padding-top: 19px;
}
/* DETAIL PAGE */
.layout {
    margin: 0 15px 50px;
}
.middle-box {
    grid-area: middle-box;
}
.right-box {
    grid-area: right-box;
}
.descr-box {
    grid-area: descr-box;
}
.data-box {
    grid-area: data-box;
}
.head-box {
    grid-area: head-box;
    align-self: end;
}
.left-box {
    padding: 25px 20px 25px 20px;
    display: flex;
    flex-direction: column;
    grid-area: left-box;
}
.left-box-content {
    max-width: 450px;
}
.rot-switcher {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
.rot-switcher li {
    width: calc(25% - 5px);
    /* border: solid 1px var(--silver); */
    margin: 5px 5px 5px 0;
    aspect-ratio: 1/1;
    position: relative;
}
li.rot-active.active {
    border-bottom: solid 1px var(--blue);
}
dialog::backdrop {
  background-color: rgb(255 255 255);
  top: 103px;
}
dialog {
    top: 1vh;
    background: white;
    border: solid 5px #38bdeb00;
    position: relative;
}
dialog h2 {
    margin: 7px 0 20px;
    font-size: 18px;
    padding-bottom: 7px;
    border-bottom: solid 1px var(--blue);
    width: 150px;
}
dialog .input-row textarea {
    height: 99px;
    border-width: 1px;
    padding: 10px 10px;
    font-size: var(--sz-s);
}
dialog .input-row textarea + label{
 top: -11px;
 transition: .3s ease;
 pointer-events: none;
 padding: 0 15px 0 10px;
}
dialog .input-row label {
    background: white;
}
dialog button.cancel {
    position: absolute;
    right: 1px;
    top: 1px;
    padding: 5px 7px;
    line-height: 1;
    background: transparent;
    color: black;
    border: 0;
    font-size: 24px;
}
dialog button.cancel:hover {
	color: #ffffff;
    background: black;
}
.order-list > div:first-child {
    flex: 0 0 72px;
}
.order-list > div:last-child {
    flex: 1;
}
/* select button */
.btn-select {
    margin: 0;
    position: relative;
}
.btn-select .btn {
	padding-right: 13px;
	background: none;
	color: black;
	text-transform: none;
	border: solid 1px transparent;
	display: block;
	padding: 7px 3px;
}
.btn-select .btn:before {
    position: absolute;
    content: "";
    display: inline-block;
    border: 6px solid transparent;
    border-top-color: #ffffff;
    border-bottom-width: 0;
    right: -12px;
    top: 19px;
    }
.btn-option {
	display: none;
	background: hsl(0deg 0% 0% / 70%);
	border: 1px solid hsl(0deg 0% 100% / 80%);
	padding: 15px 19px;
	border-top: 0;
	position: absolute;
	text-align: center;
	top: 41px;
	left: 0;
	width: max-content;
	line-height: 24px;
	z-index: 1;
}
.btn-option:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    content: '';
    background: #ffffff;
    animation: linka 0.4s linear 1 forwards;
}
.btn-option a {
    display: block;
    padding: 3px 0;
    text-align: left;
    color: #ffffff;
    letter-spacing: 0.03em;
}
.btn-option a:hover {
    font-weight:600;
    letter-spacing: 0.01em;
}
.btn-option a:after {
    content: none;
}
.btn-select:hover .btn-option {
	display: inline-block;
}
h2.product-section {
    font-size: var(--sz-m);
    margin: 25px 0 8px;
}
.main {
    padding: 15px;
}
.pager {
    margin-top: 40px;
}
.krok-ico {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    background: #000000;
    background-size: 16px;
    color: #ffffff;
    text-align: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: all 0.3s;
    margin: 0px 5px 0 -9px;
    font-size: var(--sz-s);
}
i.krok-ico:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 10px;
    height: 10px;
    border: solid 1px transparent;
    border-width: 1px 1px 0px 0px;
    transform: rotate(135deg);
    top: 5px;
    left: 8px;
	opacity: 1;
    transition: opacity 0.3s;
}
h2.rozbal:hover .krok-ico:after {
    border-color: white;
}
h2.rozbal:hover .krok-ico{
    color: transparent;
}
ul.product-color, .product-pozice ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
ul.product-color span, ul.product-pozice span {
	display: block;padding: 0 3px 5px;
}
.product-color li {
    flex: 0 1 55px;
    border: solid 1px var(--silver);
    margin-right: 6px;
}
.product-color li:has(> .active)  {
    border-bottom-color: var(--blue);
    border-bottom-width: 2px;
}
.product-pozice li {
    flex: 0 1 95px;
    border: solid 1px var(--silver);
    margin-right: 6px;
    margin-bottom: 6px;
    font-size: var(--sz-xs);
    text-align: center;
    line-height: 1;
    padding-bottom: 4px;
}
.product-color li:hover, .product-pozice li:hover {
    border-color: var(--gray);
}
.product-pozice li.active {
    border-bottom-color: var(--blue);
    border-bottom-width: 2px;
}
.like-select {
    display: inline-block;
    padding: 7px 1em;
    min-height: 34px;
    width: 100%;
    margin: 0;
    position: relative;
    font-size: var(--sz-s);
    line-height: 1.2;
}
.like-select-input {
    padding: 0.015em;
}
.like-select input {
    display: inline-block;
    border: 0;
    margin: 0;
    padding-left:1em;
    width: 95%;
}
.like-select input:focus {
    border: 0;
    outline: 0;
}
.like-select:after {
    content: " ";
    display: inline-block;
    border: 6px solid transparent;
    border-top-color: #3c3933;
    border-bottom-width: 0;
    margin-bottom: 1px;
    margin-left: 7px;
    position: absolute;
    top: 14px;
    right: 10px;
}
.like-select-box{
    border: solid 1px var(--gray);
    background: #ffffff;
    width: 100%;
    max-width: 30vw;
    padding: 0.3em;
    margin-top: 3px;
    position: absolute;
    z-index: 300;
}
.flex.btn-group input {
    flex: 1 0 30%;
    margin-right: 5px;
    margin-bottom: 5px;
}
.opti span {
	float: right;
	padding-left: 3px;
}
.opti {
    padding: 0 0.7em 7px;
    line-height: 1.1;
    display: flex;
    justify-content: space-between;
    font-size: var(--sz-xs);
}
.opti:hover {
    background: var(--light);
}
.opti.minimum:before {
    color: "min";
}
.opti.minimum:after {
    content: "min.";
    color: red;
    position: absolute;
    left: 54px;
}
.first-td-tbl tr > td:first-child {
    color: #595858;
}
.view {
    font-size: var(--sz-xs);
}
.view:hover {
    background-image: none;
    color: #308dd7;
}
.none {
    display: none;
}
.descr-box .boxblock {
    display: none;
}
.descr-box .boxblock.zobraz {
    display: block;
}
/* tab list */
.tab-list-row {
    display: flex;
    border-bottom: solid 1px var(--silver);
}
.tab-list-row > *  {
    padding: 10px 25px 7px;
    border: solid 1px var(--silver);
    margin-right: 5px;
    color: #595858;
    margin-bottom: -1px;
    cursor: pointer;
    font-size: var(--sz-s);
    background: var(--light);
}
.tab-list-row > *:hover {
    color: #111;
}
.tab-list-row *.active {
    border-bottom-color: transparent;
    font-weight: 600;
    color: #111;
    background: white;
}
.tab-list-row .active a {
    color: #353e59;	
}
.tab-list-row span.end {
    border-width: 0 0 1px 0;
    padding: 0;
    flex: 1;
    background: transparent;
}
/* container */
.container {
    container-type: inline-size;
    display: flex;
    flex-wrap: wrap;
}
.container--321 {
    container: layout-321 / inline-size;
}
.container--421 {
    container: layout-421 / inline-size;
    justify-content: center;
}
.container .item {
    display: flex;
    flex-direction: column;
    position: relative;
    border: solid 1px transparent;
}
.container .item:hover {
    border-color: var(--silver);
}
@container layout-321 (max-width: 499px) {
  .container > * {
        width: 100%;
        margin: 0 0 55px 0;
    } 
}  
@container layout-321 (min-width: 500px) {
  .container > * {
        width: calc(50% - 35px);
        margin: 0 35px 35px 0;
    } 
}  
@container layout-321 (min-width: 750px) {
  .container > * {
        width: calc(33.3% - 35px);
    } 
}
@container layout-321 (min-width: 1100px) {
  .container > * {
        width: calc(25% - 35px);
    } 
}
/**/
@container layout-421 (max-width: 499px) {
  .container > * {
        width: 100%;
        margin: 0 0 55px 0;
    } 
}   
@container layout-421 (min-width: 500px) {
  .container > * {
        width: calc(50% - 35px);
        margin: 0 35px 35px 0;
    } 
}
@container layout-421 (min-width: 900px) {
  .container > * {
        width: calc(25% - 35px);
        max-width: 300px;
    } 
}
/* items */
.top-item {
    background-color: var(--silver);
    padding: 25px 45px;
    margin: -25px -25px 25px;
}
.container .top-item {
    width: calc(100% + 25px);
}
.item h2 {
    font-weight: 400;
    margin: 1em 0 10px 0;
}
.item-img {
    overflow: hidden;
}
.item-img img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 4/3;
    object-position: right;
}
.item-text {
    padding: 1px 20px 25px 25px;
}
.item-abstr p {
    display: inline;
}
/* row-items */
.item-row {
    flex-wrap: nowrap;
    margin-right: 0;
}
.item-row .item {
    background: white;
    box-shadow: none;
    margin: 0 20px 0 0;
    flex: 0 0 172px;
}
.item-row .product-header {
    justify-content: center;
    margin: 10px;
    text-align: center;
}
.item-row .product-header  h2 {
    font-size: var(--sz-xs);
}
.item-row .product-info {
    display: none;
}
.gall-first {
    flex: 1 0 50%;
    max-width: 800px;
    aspect-ratio: 4/3;
    border: solid 7px transparent;
    /* margin-top: -7px; */
}
/* photogallery up */
.photogallery {
    flex: 0 1 800px;
    display: flex;
    flex-wrap: wrap;
}
.photogallery figure {
    flex: 0 0 50%;
    aspect-ratio: 4/3;
    border: solid 7px transparent;
}
.photogallery .fit-img img {
    aspect-ratio: 4/3;
}
/* photogallery more */
.photo-more {
    flex: 0 1 1600px;
    display: flex;
    flex-wrap: wrap;
}
.photo-more figure {
    flex: 0 0 50%;
    aspect-ratio: 4/3;
    border: solid 7px transparent;
}
.photo-more .fit-img img {
    aspect-ratio: 4/3;
}
.photogallery.full {
    flex-wrap: wrap;
}
/* page */
.crumbs {
    letter-spacing: 0.05em;
    margin-bottom: 2em;
}
.crumbs a {
    display: inline-block;
    vertical-align: middle;
	padding: 0 2px;
}
.crumbs .last {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
    display: inline-block;
    vertical-align: middle;
	padding-left: 2px;
}
/* HOME */
.home-product {
    padding: 15px;
}
/* AKCE ROW */
.intro-box.box-4 {
}
h1.clr-white {
    font-weight: 700;
}
.akce-row .item {
    box-shadow: none;
    max-width: 250px;
}
.akce-row .fit-img {
    border-radius: 50%;
}
.akce-row .product-header {
    margin-top: 12px;
    display: block;
    text-align: center;
    border: 0;
}
.kruh {
    background: var(--blue);
    aspect-ratio: 1;
    border-radius: 50%;
    min-width: 249px;
    max-width: 249px;
    margin: -47px auto 0;
}
.client-loga {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.client-loga img {
    max-height: 55px;
    margin: 10px 10px 20px;
    filter: grayscale(1);
    opacity: 0.5;
    transition: all 0.5s;
}
.client-loga img:hover {
    filter: none;
    opacity: 1;
}
/* fulltext */
.main-text {
    max-width: 800px;
    margin: auto;
    padding: 25px 15px;
}
.main-text h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background: hsl(0deg 0% 0% / 30%);
    margin-top: 15px;
}
body > footer {
	padding: 10px 0;
	background: var(--silver);
}
footer h4 {
    font-family: "open sans", sans-serif;
    font-size: var(--sz-xs);
  }
footer h4 strong {
    display: inline-block;
    font-size: 17px;
  }
footer p {
    margin: 0.3em 0;;
}
footer .little {
    display: inline-block;
    width: 103px;
    font-size: 0.82rem;
}
.food-menu {
    margin: 0 0 25px;
    padding: 0;
}
.food-menu li {
    display: block;
    letter-spacing: 0.02em;
    list-style: none;
    font-weight: 600;
}
.food-menu a {
    display: inline-block;
    margin: 0;
    color: black;
}
.food-menu li:first-child a {
    margin-left: 0;
}
.food-menu a.ico{line-height: 32px;}
.created img {
    width: 52px;
    margin: 0 1px 3px 5px;
    transform: scaleX(0.9);
}
.created, .created a {
    color: #6a6a6a;
    letter-spacing: 1px;
}
/* screen */
@media (min-width: 768px) {
  :root {
    --sz-xl: 30px;
    --sz-l: 22px;
    --sz-m: 16px;
    --sz-s: 15px;
    --sz-xs: 13px;
  }
  html {
  	font-size: 16px;
  }
  .scrolltable {
  	overflow: auto;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  .page {
    min-height: calc(100vh - 304px);
  }
  .fix {
    max-width: 1900px;
  }
  .home .fix {
    max-width: 1375px;
  }	
  .main {
    padding: 35px;
    flex: 1 1 67%;
    grid-area: main;
  }
  .f-3 {
	margin-right: -35px;
	}
  .f-3 > * {
	width: calc(33.33% - 35px);
	margin: 0 35px 35px 0;
	}
  .logo {
    width: 170px;
    max-width: 13%;
  }
  .search input[type="submit"] {
    background-color: transparent !important;
    width: 39px;
    right: 0;
    top: -2px;
    margin-right: -2px;
  }
  .search input[type="text"] {
    border-color: rgb(0 0 0 / 16%);
    width: 250px;
    border-radius: 20px;
  }
  .ico.search-click {
    position: absolute;
    top: 0;
    right: 0px;
    background: url(/img/search.webp) no-repeat center;
    color: transparent;
  }
  .search form {
    display: none;
    position: absolute;
  }
  .search.active form {
    display: inline-block;
    right: 12px;
  }
  .search.active .search-click {
    display: none;
  }
  .like-select-box {
    max-width: 33vw;
  }
  .right-box .like-select-box {
    max-width: 350px;
  }
  .carousel {
    background-size: cover;
    height: 32vw;
    max-height: 715px;
    min-height: 315px;
  }
  .moto {
    text-align: left;
    margin: 0;
    padding-left: 60px;
    max-width: 461px;
    padding-top: 9vw;);
    height: 32vw;
    min-height: 315px;
  }
  h1.sz-big {
    font-size: 45px;
    text-align: left;
    width: 376px;
    color: white;
  }
  .layout {
    padding: 0 35px;
    margin: 20px auto 60px;
    display: grid;
    grid-template-rows: 105px auto auto;
    grid-template-columns: auto 40% 350px;
    grid-template-areas:
      "left-box head-box head-box"
      "left-box middle-box right-box"
      "descr-box descr-box descr-box";
  }
  .container {
    margin-right: -35px;
  }	
  .home-product .container {
    margin-right: -15px;
  }	
  .crumbs {
    margin-bottom: 1em;
    text-align: right;
  }
  .left-box {
    padding: 0 40px 0 0;
  }
  h2.product-section {
    font-size: var(--sz-s);
    margin: 25px 0 8px;
  }
  .product-techno {
    max-width: 33vw;
  }
  .item h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background: hsl(0deg 0% 0% / 30%);
    margin-top: 15px;
  }
  h2.center.title:before {
    width: 80px;
  }
  .descr-box .boxblock.zobraz {
    display: flex;
  }
  .img-full-box {
    margin: 0;
    background: var(--light);
    flex-wrap: nowrap;
    overflow: hidden;
    display: flex;
    height: calc(100% - 14px);
    border: solid 7px transparent;
  }
  .photo-more figure {
   flex-basis: 25%;
  }
  .photogallery.full figure {
    flex: 0 0 33.3%;
  }
	/* AKCE ROW */
  .intro-box.box-4 {
    margin-right: 25px;
    width: calc(25% - 25px);
  }
  .akce-row .item {
    max-width: 302px;
  }
  .kruh {
    max-width: 302px;
    margin: 0;
  }
  /* fulltext -screen */
  .main-text h1 {
    margin-top: 1.5em;
    margin-bottom: 25px;
  }
  .col2 {
    columns: 2 20em;
    gap: 3em;
  }
  body > footer {
    padding: 30px 0 0;
  }
  footer h3 strong {
    display: inline-block;
    font-size: 1.55rem;
  }
  .created {
    text-align: right;
    font-size: 11px;
  }
  .food-menu {
    margin: 29px 0 18px;
  }
  .food-menu li {
    display: inline-block;
  }
  .food-menu a {
    margin-left: 20px;
  }
  footer .customary-menu {
    justify-content: right;
    transform: scale(0.9) translateX(29px);
  }
  footer h4 strong {
    font-size: 19px;
  }
}

/* tablet-laptop */
@media (min-width: 768px) and (max-width: 1200px) {
  .layout {
    grid-template-columns: 343px auto 326px;
  }
}
/* tablet */
@media (min-width: 500px) and (max-width: 1023px) {
  .layout {
    display: grid;
    grid-template-columns: 45% auto;
    grid-template-rows: auto;
    grid-template-areas:
      "left-box head-box"
      "left-box middle-box"
      "left-box right-box"
      "descr-box descr-box";
  }
  .product-techno, .like-select-box {
    max-width: 100%;
  }
  .like-select-box {
    max-width: 50vw;
  }
  .middle-box.pr-2-scr {
    padding-right: 0 !important;
  }
}
/* vice nez 1200 */
@media  (min-width: 1200px) {
  .photogallery.full figure {
    flex: 0 0 25%;
  }
}
/* vice nez 1620 */
@media  (min-width: 1620px) {
  .img-full-box {
    text-align: center;
    justify-content: center;
  }
  .photogallery.full figure {
    flex: 0 0 20%;
  }
  .like-select-box {
    width: 33vw;
    max-width: 708px;
  }
}
/* mobile */
@media (max-width: 767px) {
  .page {
    font-size: 15px;
  }
  .mobilmenu nav {
    margin: 0 3em 0 3em;
  }
  .mobilmenu nav ul {
  	margin: 6% 0 0 0;
  }
  .mobilmenu li {
  	margin: 0;
  }
  .customary-menu li {
    border: 0;
    padding: 0;
    margin: 0;
  }
  .mobilmenu.white-menu a.ico {
    background-color: #333333;
    color: white;
  }
  .mobilmenu.white-menu .ico-menu {
    background: #ffffff;
    margin-right: 12px;
    margin-top: 16px;
    line-height: 33px;
  }
  .ico-menu:after {
    content: "\2630";	
  }
  .item:after {
    content: "";
    display: inline-block;
    width: 84px;
    height: 1px;
    background: var(--blue);
    position: relative;
    top: 19px;
  }
  .item-row .item:after {
    content: none;
  }
  body > footer {
    font-size: var(--sz-s);
    text-align: center;
  }
  .main ul {
  	text-align: left;
  } 
  h4 {
    font-size: 16px;
  }
  .middle-box, .right-box {
    margin-left: 20px;
  }
  .tab-list-row > * {
    padding: 10px 20px 7px;
    margin-right: -1px;
    line-height: 1.1;
    font-size: var(--sz-xs);
    width: min-content;
  }
  .left-menu {
  	display: flex;
  	margin: -15px -15px 31px;
  }
  .left-menu div {
  	flex: 1 1 55%;
  	background: var(--light);
  	padding: 15px 25px;
  }
  .left-menu div:last-child {
  	flex: 1 1 40%;
  }
  .left-menu ul, .left-menu h2 {
  	font-size: var(--sz-m);
  	margin-top: 5px;
  }
  footer .main ul, .top-item ul {
  	text-align: center;
  	padding: 0;
  	list-style-type: none;
  }
  .f-2 > *, .f-3 > *, .f-4 > *, .f-4-2-1 > *, .f-3-2-1 > * {
    margin: 25px auto;
  }
  .created {
    transform: scale(0.7);
    margin: -18px 0 -35px;
  }
  dialog::backdrop {
    top: 79px;
}
}

@media print {
  .menu, .customary-menu, .no-print {
    display: none !important;
  }
  .print {
    display: block !important;
}
  header {
    box-shadow: none;
  }
  .like-select {
    padding: 5px 0;
    border: 0;
  }
  .like-select input{
    padding: 0;
    font-weight: 600;
  }
  .product-number .like-select:before {
    content: "/ks";
    position: absolute;
    left: 45px;
    top: 7px;
    color: gray;
  }
  .like-select:after {
    content: none;
  }
  #vhodne-technologie-box {
    display: block;
  }
}
