:root{
	--clr_1: #29542c;
	--clr_2: #d2d921;
	--clr_3: #e0e0e0;
	--gray: #7d7d7d;
	--red: #d71313;
	--radius_def: .15rem;
}
BODY
{ 
	font-family: 'Roboto', sans-serif;		
	font-size: 13px;
	margin: 0px;
	max-width: 1600px;
    margin: 0 auto;
	line-height: 1.25;
}
*{
	box-sizing: border-box;
}
a{
    text-decoration: none;
	color: inherit;
}
a:hover{
    text-decoration: none;
}
a[href] {
    cursor: pointer;
}
input, button, select, textarea{
	outline: none;
}
button{
	border: none;
}
input[type="text"], input[type="password"], input[type="search"], .DataField, .DataFieldNum, textarea {
    width: 100%;
}
input[type="text"], input[type="password"], input[type="search"], .DataField, .DataFieldNum, select, textarea{
	padding: .25rem .5rem;
	border: 1px solid var(--clr_3);
    border-radius: var(--radius_def);
}
img{
	max-width: 100%;
	max-height: 100%;
}
table {
    border-collapse: collapse;
	width: 100%;
	text-align: left;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.button{
	display: inline-block;
	padding: 0.5rem 0.75rem;
	font-weight: 500;
	color: white;
	cursor: pointer;
	background: var(--clr_1);
	border-radius: var(--radius_def);
	text-align: center;
}
section.main-content {
    margin-top: 1.5rem;
}
#snackbar {
    visibility: visible;
    min-width: 250px;
    margin: 0;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: var(--radius_def);
    padding: 16px;
    position: fixed;
    z-index: 99999;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    display: none/*block*/;
    width: auto;
    min-height: unset!important;
}
.snackbar_wrap{
	max-height: calc(100vh - 60px);
	overflow-y: auto;
	visibility: visible;
	margin: 0;
	background: none;
	position: fixed;
	z-index: 999999;
	left: 50%;
	transform: translateX(-50%);
	box-sizing: border-box;
	display: none;
	width: auto;
	min-height: unset!important;
	flex-direction: column;
}
#snackbar button.close_btn {
    margin-left: 1rem;
}
.snackbar_wrap p{
	word-break: break-word;
	white-space: pre-line;
	user-select: text;
}
.snackbar_wrap .snackbar{
	visibility: visible;
	min-width: 250px;
	margin: 0 auto 1rem auto;
	background-color: #333;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	box-sizing: border-box;
	display: none;
	width: auto;
	min-height: unset!important;
	position: relative;
}
.snackbar_wrap .snackbar:before{
	content: attr(data-snack_title);
	position: absolute;
	top: 0.125rem;
	left: 0.125rem;
	color: #fff;
	font-size: 10px;
    font-weight: normal;
	user-select: text;
}
.snackbar_wrap .snackbar.warning:before{
	color: #000;
}
.snackbar_wrap > .snackbar:last-of-type{
	margin-bottom: 0;
}
.snackbar_wrap .snackbar .close_btn{
	height: 32px;
	line-height: 32px;
	background: #fff;
	border: 1px solid #000;
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2rem;
	margin: 0;
	position: absolute;
	bottom: 8px;
	right: 16px;
	font-weight: bold;
}
.snackbar_wrap.with_close .snackbar{
	padding-bottom: calc(38px + 16px);
}
.snackbar_wrap .snackbar.error .close_btn{
	border-color: #fff;
	color: #d00;
}
.snackbar_wrap .snackbar .close_btn img{
	width: 20px;
	height: 20px;
	filter: invert(1);
}
.snackbar_wrap .snackbar.warning .close_btn img{
	filter: invert(0);
}
#snackbar.error, .snackbar_wrap .snackbar.error{
	background-color: var(--red);
}
#snackbar.warning, .snackbar_wrap .snackbar.warning{
	background-color: #e1ef00;
    color: #000;
}
#snackbar.top, .snackbar_wrap.top{
	bottom: unset;
	top: 30px;
}
#snackbar.bottom, .snackbar_wrap.bottom{
  bottom: 30px;
}
#snackbar.center, .snackbar_wrap.center{
	top: 50%;
	transform: translate(-50%,-50%);
}
.centerPopup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
    background: rgba(0,0,0,0.5) url(../../images/loader.svg) center center no-repeat;
    background-size: 40px 40px;
}
.center_screen{
	position: absolute;
    top: 50%;
    left: calc(50% - 1rem);
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 2rem 1rem 1rem 1rem;
    box-sizing: border-box;
    text-align: left;
    width: calc(100% - 2rem);
    margin: 0 1rem;
    border-width: 1px;
    border-style: solid;
    max-width: 450px;
	max-height: calc(100vh - 2rem);
    overflow: auto;
}
.centerPopup .center_screen > img, .normalPopup > div:first-of-type > img {
    width: 40px;
    height: 40px;
    padding: 10px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}
/*----------------------LOADER---------------------*/
div#loading{
	display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0,0,0,0.5);
}
div#loading .loading_text{
	color: white;
    font-weight: normal;
    font-size: 15px;
}
div#loading > div {
    position: absolute;
    top: 50%;
    left: calc(50% - 1rem);
    transform: translate(-50%, -50%);
    margin: 0 1rem;
	text-align: center;
}
.lds-default {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-default div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}
.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}
.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}
.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}
.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}
.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}
.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}
.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}
.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}
.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}
.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}
.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}
@keyframes lds-default {
  0%, 20%, 80%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}
/*----------------------END LOADER---------------------*/
.DropDownRiadok{
	display: flex;
}
.DropDownRiadok .DataField {
    margin-right: -22px;
}
.DropDownRiadok .DefaultDropDownImage {
    display: block;
	background: url(/UserShop/Images/icons/arrow_down_gray.svg) center no-repeat;
    background-size: 20px;
    height: 100% !important;
    width: 22px;
	margin: 0;
}
.DropDownRiadok .DefaultDropDownImage > span{
	display: none;
}
.DefaultDropDown{
	position: relative;
}
.DefaultDropDownList{
	position: absolute;
    top: 34px !important;
    left: 0 !important;
	margin-top: 32px;
	border: 1px solid var(--clr-3);
    background-color: #FFF;
    padding: 0;
    margin: 0;
    z-index: 200;
    overflow: auto;
    height: 200px;
}
.DefaultDropDownList a
{
	display:block;
	padding:0 1px 1px 5px;
	color:#000;
	text-decoration:none;
	text-align:left;

}
label[data-required]:after {
    content: "*";
    color: var(--red);
    margin-left: 0.1rem;
    font-size: 12px;
}
.form_2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
	margin-bottom: 1rem;
}
.form label {
    font-weight: 500;
    margin-bottom: .25rem;
    display: block;
}
/* ************************************************** */
.block{
	display: block;
}
.inline_block{
	display: inline-block;
}
.flex{
	display: flex;
}
.inline_flex{
	display: inline-flex;
}
.flex_wrap{
	flex-wrap: wrap;
}
.justify_end{
	justify-content: end;
}
.justify_between{
	justify-content: space-between;
}
.justify_around{
	justify-content: space-around;
}
.justify_center{
	justify-content: center;
}
.align_center{
	align-items: center;
}
.align_baseline {
    align-items: baseline;
}
.align_start {
    align-items: start;
}
.gap_1{
	gap: .25rem;
}
.gap_2{
	gap: .5rem;
}
.gap_4{
	gap: 1rem;
}
.gap_8{
	gap: 2rem;
}
.gap_10{
	gap: 2.5rem;
}
.gap_12{
	gap: 3rem;
}
.grow{
	flex-grow: 1;
}
.bg_white{
	background: white;
}
.bg_gray_light{
	background: var(--clr-3);
}
.bg_gray{
	background: var(--gray);
}
.bg_red{
	background: var(--red);
}
.color_white{
	color: white;
}
.color_red{
	color: var(--red);
}
.color_gray{
	color: var(--gray);
}
.color_green{
	color: green;
}
.p_2{
	padding: .5rem;
}
.p_4{
	padding: 1rem;
}
.pr_16{
	padding-right: 4rem;
}
.pr_17{
	padding-right: 4.25rem;
}
.px_2{
	padding-left: .5rem;
	padding-right: .5rem;
}
.px_4{
	padding-left: 1rem;
	padding-right: 1rem;
}
.px_16{
	padding-left: 4rem;
	padding-right: 4rem;
}
.px_17{
	padding-left: 4.25rem;
	padding-right: 4.25rem;
}
.py_2{
	padding-top: .5rem;
	padding-bottom: .5rem;
}
.py_3{
	padding-top: .75rem;
	padding-bottom: .75rem;
}
.py_8{
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.mt_0{
	margin-top: 0;
}
.mt_1{
	margin-top: .25rem;
}
.mt_2{
	margin-top: .5rem;
}
.mt_3{
	margin-top: .75rem;
}
.mt_4{
	margin-top: 1rem;
}
.mt_6{
	margin-top: 1.5rem;
}
.mt_8{
	margin-top: 2rem;
}
.mt_10{
	margin-top: 2.5rem;
}
.mt_12{
	margin-top: 3rem;
}
.mb_1{
	margin-bottom: .25rem;
}
.mb_2{
	margin-bottom: .5rem;
}
.mb_3{
	margin-bottom: .75rem;
}
.mb_4{
	margin-bottom: 1rem;
}
.mb_8{
	margin-bottom: 2rem;
}
.mb_10{
	margin-bottom: 2.5rem;
}
.mb_14{
	margin-bottom: 4.5rem;
}
.ml_2{
	margin-left: .5rem;
}
.mr_2{
	margin-right: .5rem;
}
.mr_1{
	margin-right: .25rem;
}
.my_0{
	margin-top: 0;
	margin-bottom: 0;
}
.text_upper{
	text-transform: uppercase;
}
.text_underline, .text_underline:hover{
	text-decoration: underline;
}
.text_line_through{
	text-decoration: line-through;
}
.uppercase{
	text-transform: uppercase;
}
.semibold{
	font-weight: 500;
}
.bold{
	font-weight: bold;
}
.bold_900{
	font-weight: 900;
}
.text_size_12{
	font-size: 12px;
}
.text_size_14{
	font-size: 14px;
}
.text_size_16{
	font-size: 16px;
}
.text_size_20{
	font-size: 20px;
}
.text_size_22{
	font-size: 22px;
}
.text_size_28{
	font-size: 28px;
}
.text_nowrap{
	white-space: nowrap;
}
.text_center{
	text-align: center;
}
.text_right{
	text-align: right;
}
.text_left{
	text-align: left;
}
.relative{
	position: relative;
}
.hidden{
	display: none !important;
}
.w_full{
	width: 100%;
}
/* ************************************************** */
header {
    display: grid;
    grid-template-columns: 4rem 1fr 15rem;
    padding: 1rem 0;
	align-items: center;
}
header .hdr_profil_menu {
    display: none;
    position: absolute;
    z-index: 100;
    background: white;
    border: 1px solid var(--clr_3);
    padding: 0.5rem 0;
    border-radius: var(--radius_def);
	transform: translatex(-25%);
}
header .hdr_profil_menu > a {
    display: block;
    text-align: left;
    padding: 0.25rem 0.75rem;
}
header .hdr_profil_menu > a:hover{
	background: var(--clr_2);
	color: var(--clr_1);
}
header .hdr_icons {
    display: flex;
    gap: 1rem;
    justify-content: end;
    text-align: center;
}
header .hdr_icons .bshopcart b[data-rel=PocetPol] {
    background: var(--clr_2);
    color: var(--clr_1);
    font-weight: 600;
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 12px;
    top: -.25rem;
    right: -.25rem;
}
header .search_wrap {
    max-width: 30rem;
    margin: 0 auto;
}
header .hdr_search .search_wrap button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
header .hdr_search .search_wrap input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#fastSearchRes{
    position: absolute;
    background: #fff;
    z-index: 600;
    border: 1px solid var(--clr_3);
    border-top: 0;
    display: none;
    width: 100%;
}
#fastSearchRes.opened{
	display: block;
}
#fastSearchRes .kat_name{
    text-align: left;
    padding: 0.5rem 1rem;
    font-weight: 500;
}
#fastSearchRes .produkt_row {
    position: relative;
}
#fastSearchRes .produkt_row a{
    text-align: left;
    text-decoration: none;
    position: relative;
    padding-left: 1rem;
    display: flex;
	align-items: center;
	padding-top: .5rem;
	padding-bottom: .5rem;
}
#fastSearchRes .produkt_row .picture {
    width: 2.5rem;
	height: 2.5rem;
	flex-shrink: 0;
	text-align: center;
}
#fastSearchRes .produkt_row.selected:before, #fastSearchRes .produkt_row:hover:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--clr_2);
}
#fastSearchRes .produkt_row p {
    margin: 0;
    padding: 0 10px;
}
#fastSearchRes .no_data {
    text-align: center;
}
.hdr_tree_wrap {
    background: var(--clr_1);
	position: relative;
}
.hdr_tree_wrap #tovar_tree > ul {
    display: flex;
}
.hdr_tree_wrap #tovar_tree > ul > li > a {
    color: white;
    padding: .5rem;
    font-weight: 600;
	text-align: center;
	height: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
}
.hdr_tree_wrap #tovar_tree > ul > li {
    flex-grow: 1;
}
.hdr_tree_wrap #tovar_tree > ul > li > a:hover {
    background: var(--clr_2);
    color: var(--clr_1);
}
.hdr_tree_wrap #tovar_tree ul.lvl1 > li > ul {
    display: none;
	position: absolute;
    background: var(--clr_2);
    width: 100%;
    left: 0;
    z-index: 30;
	grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
	gap: 1rem;
    padding: 1rem 2rem;
}

.hdr_tree_wrap #tovar_tree ul.lvl2 a:hover{
	text-decoration: underline;
}
.hdr_tree_wrap #tovar_tree ul.lvl2 > li > a {
    display: inline-block;
	font-weight: bold;
	margin-bottom: .25rem;
	font-size: 14px;
}
.hdr_tree_wrap #tovar_tree ul.lvl3 > li > a{
	font-size: 12px;
}
.dlazdice {
    position: relative;
    padding: 0.75rem;
    border: 1px solid var(--clr_3);
    border-radius: var(--radius_def);
}
.product_list_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(225px,1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.dlazdice .add_input_wrap {
    flex: 1 1 55%;
    max-width: 7rem;
}
.dlazdice .order_wrap > select {
    flex: 1 1 45%;
	max-width: 7rem;
}
.dlazdice .order_wrap {
		justify-content: space-between;
}
 .order_wrap {
    display: flex;
    gap: 0.75rem;
}
.add_input_wrap {
    display: flex;
    border: solid 1px var(--clr_3);
	border-radius: var(--radius_def);
}
.add_input_wrap > input {
    border: 1px solid var(--clr_3);
    border-top: 0;
    border-bottom: 0;
    border-radius: 0;
    height: 35px;
	max-width: 50px;
	min-width: 40px;
	text-align: right;
}
.add_input_wrap > span {
    width: 30px;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    height: 35px;
    line-height: 35px;
	cursor: pointer;
	user-select: none;
	background: white;
}
.add_input_wrap > span:hover{
	color: var(--red);
}
.dlazdice_img {
    text-align: center;
	height: 7rem;
}
.dlazdice_img > a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.dlazdice .prod_name {
    text-align: center;
    margin: .5rem 0;
    font-weight: bold;
	height: 2.3rem;
}
.dlazdice .prod_name a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.dlazdice .prod_price {
    font-weight: bold;
    font-size: 18px;
    color: var(--clr_1);
}
.dlazdice span.cena_suffix {
    font-size: 11px;
    margin-left: .25rem;
    font-weight: normal;
}
.dlazdice .order_btn{
	text-align: center;
	margin-top: .5rem;
}
.order_btn button {
    padding: .5rem 1.5rem;
	display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: bold;
}
.order_btn button img {
    width: 1.25rem;
    height: 1.25rem;
}
.prod_price_small {
    color: var(--gray);
    font-size: 12px;
}
.pager {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: center;
}
.pager a {
    background: var(--clr_1);
    padding: .5rem;
    display: inline-block;
}
.pager a.disable {
    opacity: .25;
}
.pager a svg {
    width: 1rem;
}
.filter_wrap > div {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.filter_wrap label * {
    vertical-align: middle;
}
.login_wrap {
    max-width: 20rem;
    margin: 0 auto;
}
footer {
    border-top: 1px solid var(--clr_3);
    margin-top: 3rem;
}
footer > div {
    display: flex;
    gap: 2rem;
    justify-content: space-around;
    border-bottom: 1px solid var(--clr_3);
    padding: 1.5rem 0;
}
footer h4 {
    margin-top: 0;
}
footer .Copyright td {
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.kosik_obsah {
    border-spacing: 0 0.5rem;
    width: 100%;
}
.kosik_obsah th{
	font-weight: bold;
	padding: .5rem;
}
.kosik_obsah td {
    border-bottom: 1px solid var(--clr_3);
    border-top: 1px solid var(--clr_3);
	padding: .5rem;
}
.kosik_obsah .prod_img {
    width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.kosik_obsah .prod_name{
	flex-grow: 1;
}
.kosik_obsah .item_pozn {
    margin-top: .5rem;
    max-width: 20rem;
}
.kosik_obsah .prod_remove img {
    width: 18px;
}
.kosik_obsah tr[data-no_stock] td {
    background: #fff1f1;
}
.kosik_obsah tr[data-no_stock] td:first-of-type{
	position: relative;
}
.kosik_obsah tr[data-no_stock] td:first-of-type:before {
    content: "";
    width: .5rem;
    background: var(--red);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}
.kosik_obsah tr[data-no_stock] .prod_name:after {
    content: "Nie je skladom";
    color: var(--red);
    display: block;
	font-weight: bold;
	margin-top: .5rem;
}
.kosik_suma_spolu {
    display: grid;
    grid-template-columns: auto auto;
    text-align: right;
    justify-content: flex-end;
    gap: 0.5rem 0.75rem;
	margin-top: 1rem;
}

.deliveryInfo {
    text-align: center;
    margin-top: 1.5rem;
	font-weight: 500;
}
.deliveryProgressbar {
    background: var(--clr_3);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    height: 10px;
    margin: 5px auto;
    max-width: 600px;
}
.deliveryProgressbar > span {
    display: block;
    background: var(--clr_1);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    height: 10px;
    font-size: 0.1em;
    line-height: 0.1em;
	transition: width 1s ease;
}

.basket_delivery_wrap ul li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
}
.basket_delivery_wrap ul li:not(:last-of-type) {
    margin-bottom: 0.75rem;
}
.basket_radio_wrap {
    border: 1px solid var(--clr_3);
    padding: 1rem;
    height: 100%;
}
.basket_radio_wrap h3 {
    margin-top: 0;
    margin-bottom: .75rem;
}
.basket_delivery_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.basket_checkout .md_select_wrap select {
    max-width: 30rem;
}
h2.StickerHeader2 {
    display: none;
}
table.infoTblDark td, table.infoTblDark th {
    border-bottom: 1px solid var(--clr_3);
    padding: .5rem;
}
table.infoTblDark {
    border: transparent;
}
table.infoTblDark th {
    border-bottom: 3px solid var(--clr_1);
}
.infotableDark_tbar{
	padding: .5rem;
}
.infotableDark_tbar .expPdf, .infotableDark_tbar .expXls {
    display: none;
}
.prod_flags {
    position: absolute;
    left: .75rem;
    top: .75rem;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}
.prod_flags > div {
    background: var(--clr_1);
    color: white;
    border-radius: var(--radius_def);
    font-size: 12px;
    padding: .25rem .75rem;
    font-weight: 500;
}
.basket_steps_nav, .profil_menu_tabs{
    display: flex;
    gap: 2rem;
	margin-bottom: 2rem;
}
.basket_steps_nav > a, .profil_menu_tabs > a {
    border: 1px solid var(--gray);
    flex-grow: 1;
    padding: .75rem;
    text-align: center;
    border-radius: var(--radius_def);
	max-width: 11rem;
}
.basket_steps_nav > a.active, .profil_menu_tabs > a.active {
    background: var(--clr_1);
    color: white !important;
    border-color: var(--clr_1);
}
.basket_steps_nav > a:hover, .profil_menu_tabs > a:hover{
	color: inherit;
}
.prod_detail .prod_detail_wrap {
    display: grid;
    grid-template-columns: 4fr 6fr;
}
.prod_detail .prod_pict {
	text-align: center;
}
.prod_detail .prod_pict #main_pic {
	max-height: 20rem;
}
.prod_detail .prod_price {
    margin-top: 1rem;
}
.prod_detail .prod_price > div {
    font-size: 26px;
	color: var(--clr_1);
}
.prod_detail .prod_price_small {
	margin-top: .25rem;
}
.prod_detail .prod_small_info {
    margin-top: 1rem;
    line-height: 1.5;
}
.prod_detail .order_wrap {
    margin-top: 1rem;
}
.prod_detail .order_btn{
	margin-top: .75rem;
}
.prod_detail span.cena_suffix {
    font-size: 15px;
    margin-left: 0.35rem;
}
.prod_detail .fotoGalery{
	display: flex;
    max-width: 500px;
    overflow-x: auto;
    overflow-y: hidden;
	width: 100%;
	gap: .35rem;
	margin-top: 1rem;
	padding-bottom: .35rem;
	justify-content: center;
}
.prod_detail .fotoGalery a {
    max-width: 4rem;
    max-height: 4rem;
    cursor: pointer;
    border-radius: var(--radius_def);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
	border: 1px solid var(--gray_light);
	flex-shrink: 0;
}
.prod_detail .prod_pict .fotoGalery a:hover {
    opacity: .7;
}
.prod_detail .fotoGalery::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #ffffff;
}
.prod_detail .fotoGalery::-webkit-scrollbar
{
	height: 4px;
}
.prod_detail .fotoGalery::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-color: var(--gray);
}
.intro_kat_hdr {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ui-timepicker-table td a, .ui-timepicker-table td span {
    width: 1.75rem;
}
.ui-timepicker table {
    width: 100%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 0.4em;
}
#search_bg {
    display: none;
}
.order_btn span[data-v_kosiku] {
    background: var(--clr_2);
    color: var(--clr_1);
    font-weight: 600;
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 12px;
    top: -.25rem;
    right: -.5rem;
}
.vyrobcovia_wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 0.75rem;
}
.vyrobcovia_wrap > div > a {
    padding: 0.75rem;
    border: 1px solid var(--clr_3);
    border-radius: var(--radius_def);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}
.breadcrumbs_children {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(150px,1fr));
    gap: 1rem;
	overflow: hidden;
    /*max-height: 9rem;
    transition: max-height 0.3s;*/
}
.breadcrumbs_children.show{
	max-height: unset !important;
}
.breadcrumbs_children > div {
    border: 1px solid var(--clr_3);
}
.breadcrumbs_children > div > a {
    padding: 0.75rem;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
    text-align: center;
    border-radius: var(--radius_def);
}
#bc_show_more{
    text-align: center;
}
.kosik_doprava_platba {
    display: grid;
    grid-template-columns: repeat(2,minmax(1px,1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.kosik_doprava_platba > div {
    border: 1px solid var(--clr_3);
    padding: 1rem;
    border-radius: var(--radius_def);
}
.kosik_doprava_platba h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}
/* ******************* media ******************* */
@media(max-width:1600px){
	header, .container{
		padding-left: 1rem;
		padding-right: 1rem;
	}
}
@media(min-width:769px){
	.resp_category_btn{
		display: none;
	}
	.lg_hidden {
		display: none;
	}
	.hdr_tree_wrap #tovar_tree ul.lvl1 > li > ul.show {
		display: grid;
	}
}
@media(max-width:768px){
	.md_justify_end {
		justify-content: end;
	}
	header {
		display: flex;
		justify-content: space-between;
	}
	header a.logo {
		width: 8rem;
	}
	.hdr_tree_wrap {
		display: none;
	}
	header .hdr_search {
		display: none;
	}
	header .hdr_search.show{
		display: block;
	}
	header .hdr_search.show .search_wrap {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 400;
        padding: 1rem;
		max-width: unset;
	}
	#fastSearchRes {
		width: calc(100% - 2rem);
	}
	#search_bg.active {
		display: block;
	}
	.resp_category_btn{
		background: var(--clr_1);
	}
	.resp_category_btn > a {
		color: white;
		padding: 0.5rem 1rem;
		font-weight: 500;
		display: inline-flex;
		gap: 0.25rem;
		align-items: center;
	}
	.hdr_tree_wrap.show {
		display: block;
	}
	.hdr_tree_wrap #tovar_tree > ul {
		flex-direction: column;
	}
	.hdr_tree_wrap #tovar_tree > ul > li > a {
		justify-content: start;
		padding-left: 1rem;
	}
	.kosik_obsah tbody tr {
		display: flex;
		flex-direction: column;
		width: 100%;
		padding-bottom: .5rem;
		border-bottom: 2px solid var(--clr_1);
	}
	.kosik_obsah thead {
		display: none;
	}
	.kosik_obsah td {
		border-bottom: 0;
	}
	.kosik_obsah td[data-title]:before {
		content: attr(data-title);
		text-align: left;
		font-size: 12px;
		display: block;
	}
	.kosik_obsah td[data-title] {
		display: flex;
		align-items: center;
		gap: 1rem;
		justify-content: space-between;
	}
	.kosik_obsah td:first-child {
		padding-top: 1rem;
	}
	.kosik_obsah tr:not(:first-child) td:first-child {
		border-top: 0;
	}
	.basket_steps_nav, .profil_menu_tabs {
		gap: 1rem;
		flex-wrap: wrap;
	}
	.basket_steps_nav > a, .profil_menu_tabs > a {
		padding: .5rem;
	}
	.infoTblEnvDark {
		overflow: auto;
	}
	table.infoTblDark th {
		white-space: nowrap;
	}
}
@media(max-width:478px){
	footer > div {
		flex-direction: column;
	}
	.prod_detail .prod_detail_wrap {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.prod_detail .prod_detail_wrap > div {
		text-align: center;
	}
	.prod_detail .prod_detail_wrap .order_wrap {
		justify-content: center;
	}
	.form_2col {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}
}