:root{
	--red: #ed2227;
	--gray_light: #e0e0e0;
	--gray: #777777;
	--radius_def: .25rem;
}
body{
	width: 100%;
	font-family: 'Roboto', sans-serif;
    font-size: 14px;
	margin: 0;
}
*{
	box-sizing: border-box;
}
a{
    text-decoration: none;
	color: inherit;
}
a:hover{
    text-decoration: none;
	color: var(--red);
}
a[href] {
    cursor: pointer;
}
h1 {
    font-size: 26px;
    text-align: center;
}
input[readonly]{
	background: #e9ecef;
}
input, button, select, textarea{
	outline: none;
	margin: 0;
}
select{
	padding: .25rem;
}
button{
	border: none;
}
input, textarea{
	border: 1px solid var(--gray_light);
}
input[type="text"], input[type="password"], input[type="search"], .DataField, .DataFieldNum, textarea {
    width: 100%;
    padding: 0.5rem;
}
input[type="number"]{
	padding: .5rem;
}
input[type="text"]:focus, input[type="password"]:focus{
	border-color: var(--red);
}
input[type="radio"]:disabled+label {
    opacity: .5;
}
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(--red);
	border-radius: var(--radius_def);
	text-align: center;
}
.button:hover{
	background: black;
	color: white;
}
.button.button_green{
	background-color: green;
}
#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%);
}
.container {
    max-width: 1280px;
    margin: 0 auto;
}
.baseLayout {
    max-width: 1920px;
    margin: 0 auto;
}
table.Copyright {
    background: var(--gray_light);
}
table.Copyright td {
    padding: .25rem;
    font-size: 11px;
}
h2.StickerHeader2 {
    display: none;
}
table.infoTblDark td, table.infoTblDark th {
    border-bottom: 1px solid var(--gray_light);
    padding: .5rem;
}
table.infoTblDark {
    border: transparent;
}
table.infoTblDark th {
    background: var(--gray_light);
}
.infotableDark_tbar{
	padding: .5rem;
}
.infotableDark_tbar .expPdf, .infotableDark_tbar .expXls {
    display: none;
}
#pageForm {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
#pageForm > form {
    flex-grow: 1;
}
/*----------------------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(--gray_light);
    background-color: #FFF;
    padding: 0;
    margin: 0;
    z-index: 5000;
    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;
}
/* ************************************************** */
.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(--gray_light);
}
.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 {
    padding: 1rem 0;
}
header > div {
    display: grid;
    grid-template-columns: 15rem 1fr 15rem;
    gap: 1rem;
    justify-content: space-between;
	align-items: center;
}
header .hdr_icons .bshopcart b[data-rel=PocetPol] {
    background: var(--red);
    color: white;
    font-weight: 500;
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 11px;
    top: -.25rem;
    right: -.25rem;
}
header .hdr_icons {
    display: flex;
    gap: 1rem;
    justify-content: end;
    text-align: center;
}
header .hdr_icons > div {
    flex-shrink: 0;
}
header .hdr_search {
    display: flex;
    justify-content: center;
}
header .search_wrap {
    max-width: 30rem;
    flex-grow: 1;
}
header .search_wrap button img {
    width: 1.35rem;
}
header .hdr_profil_menu {
    display: none;
	position: absolute;
    z-index: 100;
    background: white;
    border: 1px solid var(--gray_light);
    padding: 0.5rem 0;
    box-shadow: 0px 3px 5px 2px #d9d9d9;
    border-radius: var(--radius_def);
}
header .hdr_profil_menu > a {
    display: block;
    text-align: left;
    padding: .25rem .75rem;
}
.footer{
	padding-top: 1rem;
	margin-top: 2rem;
	background: var(--gray_light);
}
.footer > div{
	display: flex;
	gap: 1rem;
	justify-content: space-around;
}
.footer h4 {
    color: var(--red);
	margin-top: 0;
	margin-bottom: .75rem;
}
.footer li {
    margin-bottom: 0.35rem;
}
#tovar_tree {
    background: var(--red);
    color: white;
	padding: 0 3rem;
}
#tovar_tree a
{
	font-weight: 500;
}
#tovar_tree > ul {
    display: flex;
    justify-content: space-between;
}

#tovar_tree > ul > li{
    position: relative;
}

#tovar_tree > ul > li > a {
    padding: .5rem;
    height: 100%;
    display: flex;
    align-items: center;
	text-align: center;
}
#tovar_tree > ul > li > a:hover{
	color: white;
}
#tovar_tree > ul > li:hover > a{
	background: black;
}
#tovar_tree > ul li ul {
    display: none;
    position: absolute;
    z-index: 100;
    background: white;
    border: 1px solid var(--gray_light);
    padding: .5rem 0;
	color: var(--red);
	box-shadow: 0px 3px 5px 2px #d9d9d9;
	border-radius: var(--radius_def);
}
#tovar_tree > ul li ul a {
    padding: .25rem .75rem;
	display: block;
    white-space: nowrap;
	position: relative;
	z-index: 101;
}
#tovar_tree > ul li ul li:hover > a{
    color: white;
    background: var(--red);
}
div#tovar_tree ul.lvl2 > li{
	position: relative;
}
div#tovar_tree ul.lvl3.show {
    top: -.5rem;
    transform: translateX(100%);
    right: 0;
}
div#tovar_tree li.tree_right ul.lvl3.show {
	transform: translateX(-100%);
	right: unset;
	left: 0;
}
div#tovar_tree li.tree_right > ul{
	right: 0;
}
.resp_category_btn {
    display: none;
	background: var(--red);
}
.resp_category_btn > a {
    color: white;
    padding: .5rem 1rem;
    font-weight: 500;
    display: inline-flex;
    gap: 0.25rem;
    align-items: center;
}
.product_list_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(225px,1fr));
    gap: .75rem;
    margin-top: 1.5rem;
}
.pager {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1.5rem;
}
.pager a {
	background: var(--gray);
	color: white;
	font-weight: 500;
	font-size: 30px;
	display: inline-block;
	padding: 2px 12px;
	border-radius: var(--radius_def);
}
.pager .disable{
	opacity: 30%;
	color: white;
}
.pager span {
	margin: 0 2rem;
	font-size: 17px;
	font-weight: 500;
}
.pager img {
    width: 20px;
    padding: 0.5rem 0;
}
.layout2p {
    display: grid;
    grid-template-columns: 320px 1fr;
}
.left_tree_wrap h3 {
    color: var(--red);
	margin-bottom: .75rem;
}
.left_tree_wrap a.sel {
    font-weight: bold;
}
.dlazdice span.cena_suffix {
        font-size: 11px;
    margin-left: 0.25rem;
    font-weight: normal;
}
.dlazdice
{
	position: relative;
    padding: .75rem;
	border: 1px solid var(--gray_light);
	border-radius: var(--radius_def);
}
.dlazdice:hover {
    box-shadow: 0px 0px 5px 2px #d9d9d9;
}
.dlazdice .dlazdice_img
{
    height: 120px;
	margin-bottom: .5rem;
}
.dlazdice .dlazdice_img a{
	display: flex;
    align-items: center;
    justify-content: center;
	height: 100%;
}
.dlazdice a {
    font-weight: bold;
}
.dlazdice .order_wrap {
    margin-top: 0.5rem;
	display: flex;
    justify-content: space-between;
	gap: .75rem;
}
.dlazdice .add_input_wrap {
    flex: 1 1 55%;
	max-width: 7rem;
}
.dlazdice .order_wrap > button {
    flex: 1 1 45%;
}
.order_wrap > button {
    padding: .5rem;
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-weight: bold;
	max-width: 9rem;
}
.order_wrap > button img {
    width: 1.5rem;
    height: 1.5rem;
}
.dlazdice .add_input_wrap > span {
    width: 25px;
    height: auto;
    line-height: unset;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dlazdice .add_input_wrap > input {
    height: auto;
    padding: 0.25rem 0.5rem;
	max-width: unset;
    min-width: unset;
}
.dlazdice .prod_name{
	height: 32px;
    overflow: hidden;
	margin-bottom: .5rem;
}
.dlazdice .prod_price {
    font-size: 18px;
    font-weight: bold;
	color: var(--red);
}
.add_input_wrap {
    display: flex;
    border: solid 1px var(--gray_light);
	border-radius: var(--radius_def);
}
.add_input_wrap > input {
    border: 1px solid var(--gray_light);
    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;
}
.add_input_wrap > span:hover{
	color: var(--red);
}
.prod_price_small {
    color: var(--gray);
    font-size: 12px;
    margin-top: 0.25rem;
}
.infoParents {
    margin-top: 1rem;
}
aside {
    padding-left: 1rem;
}
aside .left_tree_wrap a {
    line-height: 1.5;
}
.centerPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
    background: rgb(0 0 0 / 67%);
    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;
	border-color: var(--gray);
	border-radius: var(--radius_def);
    max-width: 450px;
	max-height: calc(100% - 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;
}
.logHeader {
    max-width: 250px;
    margin: 0 auto;
}
.logHeader label{
	font-weight: 500;
    margin-bottom: 0.25rem;
    display: block;
}
.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(--gray_light);
    border-top: 1px solid var(--gray_light);
	padding: .5rem;
}
.kosik_obsah .prod_img {
    width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.kosik_obsah .prod_remove img {
    width: 18px;
}
.basket_steps_nav{
    display: flex;
    justify-content: space-around;
    gap: 2rem;
	margin-bottom: 2rem;
}
.profil_menu_tabs {
    display: flex;
    gap: 2rem;
	margin-bottom: 2rem;
}
.profil_menu_tabs > a{
	max-width: 10rem;
}
.basket_steps_nav > a, .profil_menu_tabs > a {
    border: 1px solid var(--gray_light);
    flex-grow: 1;
    padding: .75rem;
    text-align: center;
    border-radius: var(--radius_def);
}
.basket_steps_nav > a.active, .profil_menu_tabs > a.active {
    background: var(--red);
    color: white !important;
    border-color: var(--red);
}
.basket_steps_nav > a:hover, .profil_menu_tabs > a:hover{
	color: inherit;
}
.prod_detail .order_wrap {
    display: flex;
    gap: 1rem;
	margin-top: 1rem;
}
.prod_detail .prod_price{
	margin-top: 1rem;
}
.prod_detail .prod_small_info {
    margin-top: 1rem;
    line-height: 1.5;
}
.prod_detail .prod_small_info span {
    font-weight: 500;
}
.prod_detail .prod_price_small {
    font-size: 16px;
}
.prod_detail .fotoGalery{
	display: flex;
    max-width: 500px;
    overflow-x: auto;
    overflow-y: hidden;
	width: 100%;
	gap: .35rem;
	margin-top: 1rem;
	padding-bottom: .35rem;
}
.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);
}
.skladom_detail table td {
    border: 1px solid var(--gray_light);
    padding: .25rem 0.75rem;
}
.skladom_detail {
    margin-top: 1rem;
}
.skladom_detail table {
    width: auto;
}
.kosik_suma_spolu {
    display: grid;
    grid-template-columns: auto auto;
    text-align: right;
    justify-content: flex-end;
    gap: 0.5rem 0.75rem;
}
.basket_checkout #step4, .basket_checkout #step3 {
    display: none;
}
.basket_checkout .md_select_wrap select {
    max-width: 30rem;
}

.prod_flags {
    position: absolute;
    left: .75rem;
    top: .75rem;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}
.prod_flags > div {
    background: var(--red);
    color: white;
    border-radius: var(--radius_def);
    font-size: 12px;
    padding: .25rem .75rem;
    font-weight: 500;
}
.intro_kat_hdr {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.intro_kat_hdr h2 {
    margin: 0;
    font-size: 22px;
}
.filter_wrap {
    margin-top: 1.5rem;
}
.filter_wrap h3 {
    margin-top: 0;
    margin-bottom: .75rem;
}
.deliveryInfo {
    text-align: center;
    margin-top: 1.5rem;
	font-weight: 500;
}
.deliveryProgressbar {
    background: var(--gray_light);
    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(--red);
    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_promo_code_input {
    display: flex;
}
.basket_promo_code_input input {
    padding: .25rem .5rem;
}
#basket_platba_wrap.visible {
    visibility: visible;
    opacity: 1;
    height: unset;
    display: table;
}
#basket_platba_wrap {
    visibility: hidden;
    transition: 1s all 0s;
    opacity: 0;
    display: block;
    height: 0;
}
.basket_delivery_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
	align-items: start;
}
.basket_delivery_wrap > div {
    border: 1px solid var(--gray_light);
    border-radius: var(--radius_def);
    padding: 1rem;
}
.basket_delivery_wrap h3 {
    font-size: 20px;
    margin: 0;
}
.basket_delivery_wrap ul {
    margin-top: 1rem;
}

.basket_delivery_wrap ul li {
    display: flex;
    align-items: center;
    gap: .5rem;
	padding: 1rem;
}
.basket_delivery_wrap ul li:not(:last-of-type) {
    border-bottom: 1px solid var(--gray_light);
}
.basket_delivery_wrap input[type="radio"] {
    margin: 0;
}
.basket_delivery_wrap ul li label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-grow: 1;
}
.kosik_obsah span.cena_suffix {
    font-size: 85%;
}
.order_prod a {
    display: inline-block;
    margin-left: 0.25rem;
    padding: 0.25rem;
}
.order_prod a.selected {
    border: 1px solid var(--gray_light);
}
.form_2col_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
	margin-bottom: 1rem;
}
.form_2col_wrap label {
    font-weight: 500;
    margin-bottom: .25rem;
    display: block;
}
.login_regis_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
    border-top: 1px solid var(--gray_light);
    padding-top: 0.75rem;
}
.regis_radio_wrap {
    display: flex;
    gap: .5rem 1rem;
    margin-bottom: 1rem;
	flex-wrap: wrap;
}
.regis_radio_wrap > div {
    display: flex;
    gap: .25rem;
    align-items: center;
}
.registration_wrap {
    max-width: 800px;
    margin: 0 auto;
}
.basket_rekap_info {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}
.profil_zmena_hesla{
	text-align: center;
}
.profil_zmena_hesla h2{
	margin-top: 0;
}
div#CHANGE_PWD_SECTOR > div {
    padding-left: 20px;
	padding-right: 20px;
    margin-bottom: .75rem;
}
#CHANGE_PWD_SECTOR label {
    display: block;
	padding: 0;
	margin-bottom: 0.25rem;
}
#CHANGE_PWD_SECTOR input#LOGNAME{
	border: none;
	font-weight: bold;
}
#CHANGE_PWD_SECTOR input{
	width: 100%;
	max-width: 260px;
	margin: 0 auto;
}
#fastSearchRes{
    position: absolute;
    background: #fff;
    z-index: 600;
    border: 1px solid #e0e0e0;
    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: #fcced3;
}
#fastSearchRes .produkt_row p {
    margin: 0;
    padding: 0 10px;
}
#fastSearchRes .no_data {
    text-align: center;
}
#search_bg{
	display:none;
}
html.search_active {
    overflow: hidden;
    scroll-padding: 0;
}
.doklDetail {
    margin-bottom: 2rem;
}
/* media */
@media(max-width:1280px){
	.container, #tovar_tree{
		padding-left: 1rem;
		padding-right: 1rem;
	}
	header > div{
		grid-template-columns: 13rem 1fr auto;
	}
}
@media(min-width:769px){
	.lg_hidden{
		display: none;
	}
	#tovar_tree > ul li ul.show {
		display: block;
	}
	.kosik_obsah td:first-child {
		border-left: 1px solid var(--gray_light);
		border-radius: var(--radius_def) 0 0 var(--radius_def);
	}
	.kosik_obsah td:last-child {
		border-right: 1px solid var(--gray_light);
		border-radius: 0 var(--radius_def) var(--radius_def) 0;
	}
}
@media(max-width:768px){
	.md_hidden{
		display: none;
	}
	.md_justify_end{
		justify-content: end;
	}
	.md_mt_8{
		margin-top: 2rem;
	}
	.md_flex_column{
		flex-direction: column;
	}
	.md_gap_0{
		gap: 0;
	}
	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;
	}
	header .search_wrap {
		max-width: unset;
	}
	header > div{
		display: flex;
	}
	header a.logo img{
		width: 100%;
		max-width: 13rem;
	}
	header .hdr_icons {
		gap: 0.5rem;
	}
	#fastSearchRes{
		width: calc(100% - 2rem);
	}
	#search_bg.active{
		display: block;
	}
	.layout2p{
		display: block;
	}
	.prod_detail_wrap{
		flex-direction: column;
		text-align: center;
	}
	.prod_detail .order_wrap {
		justify-content: center;
	}
	.form_2col_wrap {
		grid-template-columns: 1fr;
	}
	.resp_category_btn {
		display: block;
	}
	.hdr_tree_wrap{
		display: none;
	}
	.hdr_tree_wrap.show {
		display: block;
	}
	.hdr_tree_wrap #tovar_tree > ul {
		flex-direction: column;
	}
	aside{
		padding-right: 1rem;
	}
	.left_tree_wrap > div {
		display: grid;
		grid-template-columns: repeat(auto-fill,minmax(150px,1fr));
		gap: .75rem;
	}
	aside .left_tree_wrap a {
		display: flex;
		border: 1px solid var(--gray_light);
		padding: .5rem;
		border-radius: var(--radius_def);
		height: 100%;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
	.filter_wrap{
		display: none;
	}
	.footer > div{
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.basket_steps_nav, .profil_menu_tabs{
		display: none;
	}
	.basket_wrap h1, .basket_checkout h1{
		margin-bottom: 2rem;
	}
	.basket_delivery_wrap {
		grid-template-columns: 1fr;
	}
	.kosik_obsah tbody tr {
		display: flex;
		flex-direction: column;
		width: 100%;
		padding-bottom: .5rem;
		border-bottom: 2px solid var(--red);
	}
	.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;
	}
	.infoTblEnvDark {
		overflow: auto;
	}
}
@media(max-width:478px){
	.sm_hidden{
		display: none;
	}
	.sm_w100{
		width: 100%;
	}
	.sm_align_end{
		align-items: end;
	}
	.sm_flex_column{
		flex-direction: column;
	}
	.sm_gap_0{
		gap: 0;
	}
	header > div {
		grid-template-columns: auto 1fr auto;
	}
	header a.logo img {
		width: 100%;
		max-width: 10rem;
	}
	header .hdr_icons svg {
		width: 1.5rem;
		height: 1.5rem;
	}
	header .hdr_icons a span {
		font-size: 13px;
	}
	header .hdr_icons {
		gap: 0.5rem;
	}
	.form_2col_wrap .flex {
		flex-direction: column;
	}
}