*{
	box-sizing: border-box;
}
.baseLayout::-webkit-scrollbar {
  width: 0px;
}
.baseLayout::-webkit-scrollbar-track {
  background: transparent; 
}
 
.baseLayout::-webkit-scrollbar-thumb {
  background: transparent; 
}

.baseLayout > div ::-webkit-scrollbar {
  width: 1px;
}
.baseLayout > div ::-webkit-scrollbar-track {
  background: #e6e6e6; 
}
 
.baseLayout > div ::-webkit-scrollbar-thumb {
  background: #fd981775; 
}

li{
    list-style: none;
}
ul{
    padding: 0;
    margin: 0;
}
a{
	text-decoration: none;
	color: #333333;
	-webkit-tap-highlight-color: transparent;
}

 /* button */
 button{
	outline: none;
}
 .btn {
    border: none;
    padding: 1rem 3rem;
    border-radius: .6rem;
    font-weight: bold;
    cursor: pointer;
    color: white;
    display: inline-block;
	white-space: nowrap;
}
button.bg_orange:hover, .btn.bg_orange:hover, .bg_orange_hover:hover{
	background-color: #fb8328;
}
button.bg_gray:hover, .btn.bg_gray:hover{
	background-color: #4e4e4e;
}

input, select, textarea{
	border: 1px solid #cacaca;
    outline: none;
}
input[type="text"], input[type="password"], input[type="search"], select{
	line-height: 1.5;
    border-radius: 0.4rem;
	width: 100%;
	padding: .5rem 1rem;
}
textarea{
	line-height: 1.5;
	border-radius: 0.4rem;
	width: 100%;
	padding: .5rem 1rem;
}
img{
	max-width: 100%;
	max-height: 100%;
}
body {
    margin: 0;
	font-family: verdana,sans-serif;
    font-size: 12px;
}
section#main-part, body {
    background: #f7f7f7;
}
h1, h1.bc_hdr {
    font-size: 22px;
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.doklDetail h1.bc_hdr {
    margin-top: 0;
}
table{
	border-spacing: 0;
	width: 100%;
}
table td, table th{
	padding: .5rem;
}
.baseLayout{
	/*min-height: calc(100vh - 60px);*/
	padding-bottom: 1.5rem;
    height: calc(100vh - 60px);
    overflow-y: auto;
}
.container{
	max-width: 1500px;
	margin: 0 auto;
}
.bold{
	font-weight: bold;
}
.normal{
	font-weight: normal;
}
.shadow{
	box-shadow: 2px 2px 7px 0px rgb(0 0 0 / 39%);
}
.shadow_bottom{
	box-shadow: 2px 4px 6px 0px rgb(0 0 0 / 39%);
}
.select_none{
	user-select: none;
}
.text_xs{
	font-size: 10px;
}
.text_l{
	font-size: 14px;
}
.text_xl{
	font-size: 18px;
}
.text_xxl{
	font-size: 24px;
}
.text_11{
	font-size: 11px;
}
.text_15{
	font-size: 15px;
}
.text_nowrap{
	white-space: nowrap;
}
.text_center{
	text-align: center;
}
.text_right{
	text-align: right;
}
.text_left{
	text-align: left;
}
.text_through{
	text-decoration: line-through;
}
.text_underline{
	text-decoration: underline;
}
.w_100{
	width: 100%;
}
.min_w_10{
	min-width: 10rem;
}
.min_w_20{
	min-width: 20rem;
}
.max_w_4{
	max-width: 4rem;
}
.max_w_15{
	max-width: 15rem;
}
.max_w_20{
	max-width: 20rem;
}
.max_w_30{
	max-width: 30rem;
}
.max_w_40{
	max-width: 40rem;
}
.max_w_50{
	max-width: 50rem;
}
.max_w_60{
	max-width: 60rem;
}
.max_h_35{
	max-height: 35rem;
}
.max_w_50_p{
	max-width: 50%;
}
.h_2_25{
	height: 2.25rem;
}
.h_3_5{
	height: 3.5rem;
}
.h_5{
	height: 5rem;
}
.h_100{
	height: 100%;
}
.inline{
	display: inline-block;
}
.block{
	display: block;
}
.absolute{
	position: absolute;
}
.relative{
	position: relative;
}
.left_0{
	left: 0;
}
.right_0{
	right: 0;
}
.right_-1{
	right: -.25rem;
}
.top_0{
	top: 0;
}
.top_-2{
	top: -.5rem;
}
.bottom_0{
	bottom: 0;
}
.line_clamp_1{
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    overflow: hidden;
}
.line_clamp_2{
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
}
.line_clamp_1 > *, .line_clamp_2 > *, , .line_clamp_3 > *{
	display: inline;
}
.line_clamp_3{
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    overflow: hidden;
}
.line_h_1_5{
	line-height: 1.5;
}
.rhombus{
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.opacity_80{
	opacity: 80%;
}
.opacity_hover_100:hover{
	opacity: 100%;
}
.pointer{
	cursor: pointer;
}
/* colors */
.bg_orange{
	background: #f89448;
}
.bg_orange_light{
	background: #ffbb62;
}
.bg_orange_gradient{
	background: linear-gradient(125deg, #ffae34 25%, #ff9917 70%);
}
.bg_gray{
	background: #606060;
}
.bg_gray_light{
	background: #f2f2f2;
}
.bg_white{
	background: white;
}
.text_orange{
	color: #f89448;
}
.text_gray{
	color: gray;
}
.text_black{
	color: #333333;
}
.text_green{
	color: green;
}
.text_red{
	color: #d32222;
}
.text_white, button.text_white span{
	color: white;
}
.text_transparent{
	color: transparent !important;
}
.vertical_middle{
	vertical-align: middle;
}
.vertical_bottom{
	vertical-align: bottom;
}
/* flex grid*/
.flex{
	display: flex;
}
.flex_basis_100{
	flex-basis: 100%
}
.shrink_0{
	flex-shrink: 0;
}
.grid_2col{
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: .5rem 1rem;
}
.grid_3col{
	display: grid;
	grid-template-columns: repeat(3,minmax(0,1fr));
}

.flex_wrap{
	flex-wrap: wrap;
}
.flex_wrap_reverse{
	flex-wrap: wrap-reverse;
}
.justify_between{
	justify-content: space-between;
}
.justify_evenly{
	justify-content: space-evenly;
}
.justify_end{
	justify-content: flex-end;
}
.justify_center{
	justify-content: center;
}
.align_center{
	align-items: center;
}
.align_baseline{
	align-items: baseline;
}
.align_end{
	align-items: end;
}
.align__self_center{
	align-self: center;
}
.align_self_end{
	align-self: flex-end;
}
.grow{
	flex-grow: 1;
}
.gap_05{
	gap: 0.5rem;
}
.gap_1{
	gap: 1rem;
}
.gap_2{
	gap: 2rem;
}
.gap_3{
	gap: 3rem;
}
.row_gap_05{
	row-gap: .5rem;
}
.radius_full{
	border-radius: 9999px !important;;
}
.radius_4{
	border-radius: 1rem;
}
.radius_bottom{
	border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
}
.direction_column{
	flex-direction: column;
}
.col_2{
	width: 20%;
}
.col_3{
	width: 30%;
}
.col_4{
	width: 40%;
}
.col_6{
	width: 60%;
}
.col_7{
	width: 70%;
}
/* padding */
.p_1{
	padding: .25rem;
}
.p_2{
	padding: .5rem;
}
.p_3{
	padding: .75rem;
}
.p_4{
	padding: 1rem;
}
.p_8{
	padding: 2rem;
}
.py_2{
	padding-top: .5rem;
	padding-bottom: .5rem;
}
.py_3{
	padding-top: .75rem;
	padding-bottom: .75rem;
}
.py_4{
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.py_8{
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.py_16{
	padding-top: 4rem;
	padding-bottom: 4rem;
}
.px_2{
	padding-left: .5rem;
	padding-right: .5rem;
}
.px_3{
	padding-left: .75rem;
	padding-right: .75rem;
}
.px_4{
	padding-left: 1rem;
	padding-right: 1rem;
}
.px_8{
	padding-left: 2rem;
	padding-right: 2rem;
}
.pl_5{
	padding-left: 1.25rem;
}
.pl_12{
	padding-left: 3rem;
}
.pr_1{
	padding-right: .25rem;
}
.pr_2{
	padding-right: .5rem;
}
.pt_2{
	padding-top: .5rem;
}
.pt_4{
	padding-top: 1rem;
}
.pt_8{
	padding-top: 2rem;
}
.pt_10{
	padding-top: 2.5rem;
}
.pb_0{
	padding-bottom: 0;
}
.pb_2{
	padding-bottom: .5rem;
}
.pb_12{
	padding-bottom: 3rem;
}
/* margin */
.m_0{
	margin: 0;
}
.m_3{
	margin: .75rem;
}
.my_2{
	margin-top: .5rem;
	margin-bottom: .5rem;
}
.my_4{
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.my_8{
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.mx_3{
	margin-left: .75rem;
	margin-right: .75rem;
}
.mt_0{
	margin-top: 0;
}
.mt_1{
	margin-top: .25rem;
}
.mt_2{
	margin-top: .5rem;
}
.mt_4{
	margin-top: 1rem;
}
.mt_6{
	margin-top: 1.5rem;
}
.mt_8{
	margin-top: 2rem;
}
.mt_12{
	margin-top: 4rem;
}
.mb_0{
	margin-bottom: 0;
}
.mb_2{
	margin-bottom: .5rem;
}
.mb_3{
	margin-bottom: .75rem;
}
.mb_4{
	margin-bottom: 1rem;
}
.mb_6{
	margin-bottom: 1.5rem;
}
.mb_8{
	margin-bottom: 2rem;
}
.mb_20{
	margin-bottom: 5rem;
}
.mr_4{
	margin-right: 1rem;
}
.mr_8{
	margin-right: 2rem;
}
.ml_1{
	margin-left: .25rem;
}
.ml_2{
	margin-left: .5rem;
}
.ml_3{
	margin-left: .75rem;
}
/* border */
.border_solid{
	border: 1px solid;
}
.border_solid_2{
	border: 2px solid;
}
.border_none{
	border: none;
}
.border_solid_y{
	border-top: 1px solid;
	border-bottom: 1px solid;
}
.border_b_2{
	border-bottom: 2px solid;
}
.border_b_1{
	border-bottom: 1px solid;
}
.border_gray_light{
	border-color: #e5e5e5;
}
.border_gray{
	border-color: #cccccc;
}
.border_orange{
	border-color: #f89448;
}
.hidden{
	display: none;
}
.rotate_180{
	transform: rotate(180deg);
}
.overflow_hidden{
	overflow: hidden;
}
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* tovar tree */
#tovar_tree {
    width: 100%;
	background: white;
    border-top: none;
}
#tovar_tree a {
    color: gray;
    font-weight: bold;
}
#tovar_tree ul.lvl1 ul{
	display: none;
}
#tovar_tree.active li ul.show{
	display: block;
}
#tovar_tree.active li ul.lvl3.show {
	height: 100%;
}
#tovar_tree > ul.lvl1 > li {
    text-align: center;
}
#tovar_tree ul > li > a{
	display: block;
    padding: 1rem 1.5rem;
    padding-left: 0;
    text-align: left;
    border-bottom: 1px solid #cacaca;
}
#tovar_tree ul > li > ul a {
    padding-left: 1.25rem;
}
#tovar_tree .lineImg{
    display: none;
}

#tovar_tree .offImg, #tovar_tree .onImg {
    background: url("../../LabasShop/images/arrow_right_gray.svg") no-repeat;
	background-position: center;
    position: absolute;
    right: 0;
    transform: translatey(-50%);
    top: 50%;
	width: 1.5rem;
}
#tovar_tree li {
    position: relative;
}
#tovar_tree li.open > span.offImg, #tovar_tree li.open > span.onImg {
    display: none;
}
#tovar_tree li.open > a{
	color: #f89448;
	display: flex;
    justify-content: space-between;
    gap: 1rem;
	padding-left: 0;
	padding-right: 0;
}
#tovar_tree li.open > a:after {
    content: "zobraziť všetky";
    font-weight: normal;
    font-size: 11px;
	text-align: right;
}
#tovar_tree li.open.open_parent > a{
	display: none;
}
.hdr_tree_wrap * {
	font-size: 13px;
}
.hdr_tree_wrap .resp_menu li a {
	padding: 1rem .75rem 1rem 0;
	text-transform: uppercase;
	display: block;
	font-weight: bold;
}
.hdr_tree_wrap .special_menu a{
	color: gray;
	border-bottom: 1px solid #cacaca;
}
#tovar_tree > ul {
	flex-direction: column;
}
/* tovarList grid*/
.product_list_grid, .akciove_prod_list {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 1rem;
}

.dlazdice_img img{
	max-height: 200px;
}
.dlazdice_img > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
	height: 100%;
}
/* tovarList row */
.product_list_row > div{
	display: grid;
    grid-template-columns: 120px minmax(auto,100%) auto auto;
}
.product_list_row.no_pict > div{
	grid-template-columns: minmax(auto,100%) auto auto;
}
.product_list_row.no_pict .prod_name{
	width: calc(100% - 50px);
}
.product_list_img {
    height: 120px;
	width: 120px;
}
.product_list_row .zlava_flag {
    width: 40px;
    height: 40px;
    line-height: 40px;
}

/* add button input*/
.add_btn button {
    border: none;
    width: 100%;
    max-width: 12rem;
    padding: .5rem;
    border-radius: 9999px;
    font-weight: bold;
	cursor: pointer;
}
.add_btn button span {
    color: white;
	font-size: 14px;
	vertical-align: middle;
}
.add_btn button img {
	width: 1.5rem;
    vertical-align: middle;
    margin-right: 0.75rem;
}
.add_inputs > div {
    width: 50%;
	overflow: hidden;
}
.kosik_obsah_btn .add_inputs > div{
	width: auto;
}
.kosik_obsah_btn .add_inputs > div input{
	width: 50px;
}
.add_inputs input{
	text-align:center !important;
	border-color: #cccccc;
	border-bottom: none;
	border-top: none;
	border-radius: 0;
}
.add_inputs input, .add_inputs select {
    width: 100%;
	outline: none;
	padding: .5rem;
}
.add_inputs select{
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%2851, 51, 51%29'></polygon></svg>");
    background-origin: content-box;
    background-position: right center;
    background-repeat: no-repeat;
	background-size: 10px;
}
.add_inputs span:last-child:after, .add_inputs span:before{
	content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	background: #333333;
}
.kosik_obsah_btn .add_inputs span:last-child:after, .kosik_obsah_btn .add_inputs span:before{
	background: white;
}
.add_inputs span{
	width: 1rem;
	padding: 0 1rem;
	cursor: pointer;
}
.add_inputs span:last-child:after{
    width: 2px;
    height: 10px;
}
.add_inputs span:before{
    width: 10px;
    height: 2px;
}
.zlava_flag{
	width: 50px;
    height: 50px;
    line-height: 50px;
    top: 0;
    right: 0;
    font-size: 12px;
}

.infoChildren .dlazdica-breadCrumb {
    width: calc(20% - .8rem);
    display: flex;
}
.infoChildren .dlazdica-breadCrumb.hidden{
	display: none;
}
.infoChildren .dlazdica-breadCrumb > a {
    display: flex;
	width: 100%;
	padding: 0.5rem 0.75rem;
}
.infoChildren .dlazdica-breadCrumb .picture img {
    max-width: 100%;
    max-height: 60px;
}
.infoChildren .dlazdica-breadCrumb .picture {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
	width: 45px;
	height: 45px;
}

.custom_select{
	padding: 0.75rem 2.25rem 0.75rem 2rem;
    display: inline-block;
    border-radius: 10rem;
	cursor: pointer;
	user-select: none;
}
.custom_select.select_open {
    border-bottom-color: transparent;
}
div.custom_select:after{
	content: "";
    background: url("../../LabasShop/Images/arrow_right_orange.svg") no-repeat center;
    width: 10px;
    display: inline-block;
    height: 10px;
    transform: rotate(90deg);
    margin-left: 0.5rem;
	border-top-color: transparent;
	transition: .4s;
}
select.custom_select{
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	background-image: url("../../LabasShop/Images/arrow_down_orange.svg");
    background-position: right .75rem center;
    background-repeat: no-repeat;
	background-size: 20px;
	padding-right: 3rem;
}
.custom_select.select_open:after{
	transform: rotate(-90deg);
}
.custom_select.select_open.shadow{
	box-shadow: 2px 2px 7px 0px #f89448;
    border-color: #f89448;
}
.select_list{
    display: none;
    padding: 1rem .25rem .5rem;
	position: absolute;
    background: white;
    width: 100%;
	z-index: 10;
	box-shadow: 2px 5px 7px 0px rgb(0 0 0 / 39%);
	margin-top: .25rem;
}
.select_list a{
	display: block;
	margin-bottom: 0.25rem;
    cursor: pointer;
    padding: 0.25rem;
}
.select_list a:hover {
    background: #f8944866;
}
#portalMenu li {
    float: none;
}
#portalMenu ul.portalMenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
	max-width: 1500px;
    margin: 0 auto;
}
div#portalMenu {
    background: #f89448;
}
#portalMenu ul.portalMenu a{
    display: inline-block;
	background: none;
    font-weight: normal;
    font-style: normal;
    font-family: inherit;
    height: auto;
    line-height: 1;
    padding: 1rem;
	color: white;
}
#portalMenu ul.portalMenu a:hover {
    background: #fb8328;
}
 #portalMenu ul.portalMenu a:hover{
	color: white;
 }
.anylinkcss{
    background: #f89448;
	border: none;
	position: absolute;
	visibility: hidden;
	top: 0;
}
.anylinkcss a{
    color: white !important;
	padding: 0.5rem 1rem;
    display: block;
}
.anylinkcss a:hover{
	background: #606060;
}
.anylinkshadow{
	display: none;
}
/* custom checkbox*/
.custom_checkbox label:before, .custom_radio label:before {
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid #cacaca;
    display: inline-block;
    border-radius: 100%;
    margin-right: .75rem;
}
.custom_checkbox input:checked ~ label:before{
	border-color: #f89448;
    background-image: url("../../LabasShop/Images/Icons/check.svg");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
}
.custom_radio input:checked ~ label:before{
	border-color: #f89448;
    background-image: url("../../LabasShop/Images/dot_orange.svg");
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
}
.custom_checkbox input[disabled]:checked ~ label:before, .custom_radio input[disabled]:checked ~ label:before {
    filter: grayscale(1);
}
.custom_checkbox label, .custom_radio label {
    display: flex;
    align-items: center;
}
.custom_checkbox input, .custom_radio input {
    display: none;
}
/* pager */
.pager_down a {
	color: white;
	font-weight: 500;
	font-size: 30px;
	display: inline-block;
	padding: 2px 12px;
	border-radius: 6px;
}
.pager_down {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2rem;
}
.pager_down .disable{
	background: #b3b3b3;
	color: white;
}
.pager_down span {
	margin: 0 2rem;
	font-size: 14px;
}
.pager_down img {
    width: 20px;
    padding: 0.5rem 0;
}
#user_menu > a {
    display: block;
    margin-bottom: 0.25rem;
    color: white;
	padding: .35rem 1rem;
}
#user_menu > a:hover {
    background: #606060;
}
#user_menu {
    width: 100%;
    z-index: 10;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    padding-bottom:1rem;
}

div.Zalozka4, div.ZalozkaDokl{
	display: flex;
	background: white;
}
div.Zalozka4 > a, div.ZalozkaDokl > a {
    text-align: center;
    width: 100%;
    padding: 1.5rem 0.5rem;
    border-bottom: 1px solid #cacaca;
    position: relative;
    font-weight: bold;
    font-size: 10px;
}
div.Zalozka4 > a.Zalozka4Sel, div.ZalozkaDokl > a.ZalozkaDoklSel {
    color: #f89448;
}
div.Zalozka4 > a.Zalozka4Sel:after, div.ZalozkaDokl > a.ZalozkaDoklSel:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    background: #f89448;
    height: 3px;
}
.fastKoder{
	background: white !important;
	padding: 1rem !important;
}
#kosik_obsah td, #kosik_obsah th, .infoTblDark td, .infoTblDark th{
	padding-top: .25rem;
	padding-bottom: .25rem;
	border: none;
}
#kosik_obsah tr.no_edit * {
    color: #989898;
}
.infoTblDark{
	border: none;
}

.infoTblDark th{
	font-weight: bold;
}
.infotableDark_tbar {
    padding-top: .5rem;
}
.expXls, .expPdf {
    display: none;
}
.doklInfo .col_6, .doklInfo .col_4 {
    display: grid;
    grid-template-columns: 40% 60%;
    padding-right: .9375rem;
    padding-left: .9375rem;
	grid-row-gap: 10px;
	margin-bottom: 10px;
}
.cena_filter {
    margin-bottom: 1rem;
}
.doklInfo .col_6 div:nth-child(odd), .doklInfo .col_4 div:nth-child(odd) {
    font-weight: 600;
}
.filter_checkbox_wrap{
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}
.filter_checkbox_wrap > div {
    flex-grow: 1;
}
.filter_checkbox_wrap > div input {
    display: none;
}
.filter_checkbox_wrap > div > label {
    display: block;
    text-align: center;
    border-radius: 0.3rem;
    padding: 0.75rem 0.5rem;
    background: white;
}
.filter_checkbox_wrap input:checked ~ label {
    background: #606060;
    color: white;
}
#filter_vyr label > span {
    width: calc(100% - (22px + 0.75rem));
	overflow-wrap: anywhere;
}
.cena_filter input{
	width: 50px;
	padding: 2px;
}
#vyr_filter{
	max-height: 300px;
	overflow: auto;
}
.ui-slider-horizontal .ui-slider-range{
	background: #f89448;
}
.profil_info > div > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: .5rem;
	column-gap: 1rem;
}
.profil_info > div > div label {
    font-weight: bold;
}
.profil_info span {
    text-align: right;
}
.profil_admin label {
    display: block;
}
.profil_md {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 0.75rem 1rem;
}
.login_wrap{
	box-shadow: 1px 2px 8px 1px rgb(0 0 0 / 40%);
}
.profil_info.profil_user > div.profil_edit > div > label {
    width: 45%;
}
.profil_info.profil_user > div.profil_edit > div > span {
    width: 55%;
    text-align: right;
}
#captcha_regis img{
	margin-bottom: .5rem;
}
/* myAlert */
#myAlert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #c3c3c34a;
}
#myAlert > table {
    background: white;
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    width: auto;
    border: 1px solid #f89448;
    padding: 1rem 2rem;
}
#myAlert button {
    border: none;
    padding: 1rem 3rem;
    border-radius: 9999px;
    font-weight: bold;
    color: white;
    display: inline-block;
    cursor: pointer;
    background: #f89448;
}
#myAlert button:hover{
	background-color: #fb8328;
}
#myAlert > table > tbody > tr:last-child {
    text-align: right;
}
/* myAlert END*/
.SortHeader input{
	display: none;
}
.basket_order img {
    max-width: none;
}
.basket_order label{
	display: block;
	cursor: pointer;
	padding: .5rem .75rem;
}
.resp_basket_tbl_name{
	display: none;
}
.centerPopup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99990;
    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;
}
td.ramLT, td.ramRT, td.ramLB, td.ramRB {
    display: none;
}
.StickerHeader2, .iFilter, .iOrderS2R{
	display: none;
}
.infoTblEnvDark {
    padding: 1rem;
}
.infoTblEnvDark{
	border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
}
.ZalozkaWrap{
	padding: 0;
}

.hdr_basket_wrap span {
    min-width: 18px;
}
.SortHeader select {
    width: auto;
}
/* loader */
#local_loader{
	position:fixed;
	top:0;left:0;
	bottom:0;
	right:0;
	background:rgba(0,0,0,0.75);
	z-index:999999;
}
#local_loader .loader_wrap{
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 16px;
	max-width: 90%;
	max-height: 90%;
	text-align: center;
}
#local_loader .loader_wrap p{
	color: white;
}
#local_loader .loader{
	display:inline-block;
	border: 16px solid transparent;
	border-radius: 50%;
	border-top: 16px solid #ff6600;
	border-bottom: 16px solid #8a8789;
	width: 60px;
	height: 60px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* end loader*/

.akciove_prod_list > div {
    text-align: center;
	display: flex;
    flex-direction: column;
}
.akciove_prod_list .picture {
    display: flex;
    align-items: center;
    justify-content: center;
}
.akciove_prod_list .btn {
    padding: 0.75rem 2rem;
}
.login_info {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    text-align: center;
	padding-top: 3rem;
	padding-bottom: 3rem;
	max-width: 1300px;
	gap: 3rem;
}
.login_info div.img_box {
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login_info div.img_box > img {
    max-width: 6rem;
}
.login_info h3 {
    font-size: 15px;
	margin: 1rem 0;
}
.login_info p {
    margin: 0;
    line-height: 1.5;
}
#alert_basket_count {
    position: fixed;
    top: 0;
    left: 0;
    background: #80808052;
    width: 100%;
    height: 100%;
    text-align: center;
	display: none;
}
#alert_basket_count > div {
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
	border-radius: 1rem;
}
#alert_basket_count h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: .5rem;
}
#alert_basket_count p {
    margin: 0;
    font-size: 14px;
}
#alert_basket_count .btn_wrap {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
#alert_basket_count .btn_wrap > a {
    padding: .75rem 1.5rem;
}
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    z-index: 40;
    box-shadow: 0px 2px 11px 0px rgb(0 0 0 / 39%);
    display: flex;
    justify-content: space-around;
	text-align: center;
	gap: .5rem;
	align-items: center;
	height: 60px;
}
footer > div {
    height: 44px;
}
footer a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	gap: .5rem;
    height: 100%;
}
footer img {
    max-height: 1.25rem;
	max-width: 1.25rem;
}
footer span {
    display: block;
}
#main_menu > div img {
    width: 24px;
}
.main_menu {
	text-align: center;
}
.main_menu > div {
    margin-bottom: 2rem;
}
.main_menu a {
    display: grid;
    grid-template-columns: 50px auto;
    text-align: left;
    align-items: center;
	margin-bottom: 1rem;
	padding: .25rem 0;
}
.main_menu a > div{
	text-align: center;
}
.main_menu a > span {
    color: gray;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid #cacaca;
    padding: 0.75rem 0;
}
.slide_menu{
	position: fixed;
    top: 0;
    left: -100vw;
    width: 100%;
    height: calc(100% - 60px);
    visibility: hidden;
    transition: .5s;
    background: white;
    z-index: 35;
	padding-top: 1rem;
	overflow-y: auto;
	padding-bottom: 1rem;
}
.slide_menu.show{
	visibility: visible;
    left: 0;
}
#tbSearch, #tbSearch_prod_list{
	padding-left: 3rem;
}
.search .search_input_wrap > img {
    width: 1.5rem;
	left: .75rem;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
}
.search .search_input_wrap > a > img {
    width: 1.5rem;
	right: .75rem;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
}
.search .search_input_wrap {
    position: relative;
}
.header_info, .header_info a{
	color: white;
}
.header_info img {
    width: 24px;
}
#md_select {
    display: none;
	padding: .5rem 1rem;
    border-radius: 1rem;
    background: #ffbb62;
    margin-top: 1rem;
}
#md_select > a {
    border-bottom: 1px solid #f89448;
    padding-top: .5rem;
    padding-bottom: .5rem;
}
#md_select > a b {
    font-size: 14px;
}
#md_select > a:last-child {
    border-bottom: none;
}
.header_info {
    margin-left: -1rem;
    margin-right: -1rem;
}
.akcie_intro{
	display: flex;
	gap: 1rem;
	overflow-y: auto;
	padding-bottom: 1rem;
}
.akcie_intro *{
	font-size: 11px;
}
.akcie_intro > div {
    width: 160px;
    flex-shrink: 0;
}
.akcie > div{
	position: relative;
	overflow: hidden;
}
.akcie_intro .picture {
    height: 220px;
	display: flex;
    align-items: center;
    justify-content: center;
	background: #fff;
}
.akcie_intro_info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8085609243697479) 80%, rgba(255,255,255,0.1110819327731093) 100%);
    text-align: center;
	padding: 1rem .5rem .5rem;
}
.akcie.product_list_grid .picture {
    height: 250px;
	display: flex;
    align-items: center;
    justify-content: center;
	background: white;
}
.header_wrap{
	position: sticky;
    top: 0;
	width: 100%;
    background: white;
    padding: 1rem;
	box-shadow: 0px -2px 7px 0px rgb(0 0 0 / 39%);
	z-index: 30;
	margin-bottom: 1rem;
}
.header{
    text-transform: uppercase;
    font-weight: bold;
	color: gray;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#snackbar.bottom {
    bottom: 30px;
}
#snackbar {
    visibility: visible;
    min-width: 250px;
    margin: 0;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    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_wrap p{
	word-break: break-word;
	white-space: pre-line;
	user-select: text;
}
.snackbar_wrap .snackbar.error p{
	color: white;
}
.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 h1
{
	position: relative;
	top: 0;
	left: 0.125rem;
	color: #fff;
	font-size: 10px;
    font-weight: normal;
	user-select: text;
	border: none;
    background-color: transparent;
	margin: -16px -8px 0 -8px;
	padding-bottom: 2px;
	text-align:left;
}
.snackbar_wrap .snackbar.error h1 *, #snackbar.error h1 *{
	font-size:inherit;
}
.snackbar_wrap .snackbar h1 a
{
	color: #fff;
}

.snackbar_wrap .snackbar.warning h1{
	color: #000;
}
.snackbar_wrap > .snackbar:last-of-type{
	margin-bottom: 0;
}
.snackbar_wrap .snackbar .close_btn, #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;
	user-select: none;
}
.snackbar_wrap.with_close .snackbar, #snackbar.close_design{
	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: #d00;
}
#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%);
}
.snackbar_wrap .snackbar a, #snackbar a{
	color: #bdf271;
	text-decoration: underline;
	font-weight: bold;
}
.snackbar_wrap .snackbar.warning a, #snackbar.warning a{
	color: #6f20ff;
}
.snackbar_wrap .snackbar.error h1 a, #snackbar.error h1 a{
	color: #fff;
	text-decoration:none;
}
.snackbar_wrap .snackbar.error a, #snackbar.error a{
	color: #d5d500;
}
.snackbar_wrap .snackbar .close_btn, #snackbar .close_btn{
	color: #000;
}
.snackbar_wrap.MAXI , #snackbar.MAXI{
	font-size: 24px;
}
.snackbar_wrap.MAXI .snackbar > p{
	margin-bottom: 1em;
}
.snackbar_wrap.MAXI .close_btn{
	font-size: 80%;
}
a.prod_info_open:after {
    content: "";
    background: url(/LabasShop/images/arrow_left_gray.svg) no-repeat;
    width: 12px;
    height: 12px;
    display: inline-block;
    transform: rotate(-90deg);
    margin-left: 0.5rem;
}
a.prod_info_open.open:after {
	transform: rotate(90deg);
}
#prod_info div.prod_info_table > div {
    display: flex;
    justify-content: space-between;
    padding: .75rem 0;
    border-bottom: 1px solid #cacaca;
}
#prod_info {
    margin-top: 1rem;
}
span.dokl_flag_gray, span.dokl_flag_green, span.dokl_flag_red {
    font-size: 10px;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.3rem;
	color: white;
}
span.dokl_flag_gray{
	background: gray;
}
span.dokl_flag_green{
	background: #0db00d;
}
span.dokl_flag_red{
	background: #d32222;
}
#sort_prod ul li, .sort_popup ul li {
    padding: 1rem 0;
    border-bottom: 1px solid #cacaca;
}
#edit_prod ul li a{
	display: block;
	padding: 1rem 0;
    border-bottom: 1px solid #cacaca;
}
#sort_prod ul > li.sel, .sort_popup ul > li.sel {
    font-weight: bold;
    color: #f89448;
}
.kontakt_btns a{
	transform: rotate(45deg);
    border-radius: 0.5rem;
	padding: .75rem;
}
.kontakt_btns img{
	transform: rotate(-45deg);
}
.form_button > a {
    padding: 1rem 3rem;
    border-top-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    display: inline-block;
}
.form_button {
    text-align: right;
    margin-top: 1rem;
}
.add_prod_calc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #99999975;
    z-index: 30;
    padding: 1rem;
}
.add_prod_calc > div {
    position: absolute;
    background: #ececec;
    width: calc(100% - 2rem);
    bottom: 72px;
    border-radius: 1rem;
    text-align: left;
}
.add_prod_calc > div h3 {
    font-weight: bold;
	margin-top: 0;
    margin-bottom: 0.5rem;
}
.add_prod_calc .add_prod_calc_num {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: .5rem;
    text-align: center;
}
.add_prod_calc .add_prod_calc_num a {
    font-weight: bold;
    padding: 1rem .5rem;
    font-size: 18px;
	text-decoration: none;
}
.add_prod_calc > div > div:first-child {
    padding: .75rem;
}
.add_prod_calc .add_prod_calc_bal {
    display: flex;
    gap: .75rem;
    text-align: center;
}
.add_prod_calc .add_prod_calc_bal a {
    flex-grow: 1;
    border-radius: .3rem;
    padding: .75rem .5rem;
	background: white;
	text-decoration: none;
}
.add_prod_calc .add_prod_calc_bal a.sel{
	background: #606060;
	color: white;
}
.add_prod_calc .add_prod_calc_bal a.sel span {
    color: white;
}
.add_prod_calc_input {
    display: flex;
    margin-top: .75rem;
    align-items: center;
    column-gap: .5rem;
}
.add_prod_calc .add_prod_vkosiku {
    margin-top: 0.75rem;
	font-weight: bold;
}
.add_prod_calc_input input {
    border: none;
    flex-grow: 1;
}
.add_prod_calc_btns {
    display: grid;
    grid-template-columns: 50% 50%;
}
.add_prod_calc_btns > a:last-child, .add_prod_calc_btns > a.btn_orange_right {
    background: #f89448;
    border-top-left-radius: 1rem;
	border-bottom-right-radius: 1rem;
	color: white;
}
.add_prod_calc_btns > a:last-child span, .add_prod_calc_btns > a.btn_orange_right span {
    color: white;
}
.add_prod_calc_btns > a:last-child img{
	display: none;
}
.add_prod_calc_btns > a {
    font-weight: bold;
    text-align: center;
    padding: 1.25rem 0;
}
.detail_add_panel{
	position: fixed;
    bottom: 60px;
    background: white;
    z-index: 20;
    left: 0;
    width: 100%;
}
.basket_next{
	position: -webkit-sticky;
	position: -moz-sticky;
	position: -ms-sticky;
	position: -o-sticky;
	position: sticky;
    bottom: 0;
    z-index: 25;
	width: calc(100% + 2rem);
	margin-left: -1rem;
	box-shadow: 0px 2px 11px 0px rgb(0 0 0 / 39%);
}
.basket_next_sumary{
	display: grid;
	grid-template-columns: auto auto;
	gap: .25rem .5rem;
}
.aktuality_intro > div > a {
    height: 70px;
}
.aktuality_intro .aktuality_hdr{
	width: calc(100% - 120px);
}
.aktuality_img {
    overflow: hidden;
	flex-shrink: 0;
	width: 120px;
	text-align: right;
}

#jebeto
{
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url(../../images/system/jebeto.gif);
	background-color: rgba(255, 255, 255, 0.7) ;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 999999;
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4cffffff', endColorstr='#4cffffff'); /* IE */
	display: table;
}
#jebeto span
{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding-top: 80px;
}
#kosik_obsah tr[data-no_stock] * {
    color: red;
}
div#add_prod_calc {
    width: 0;
    overflow: hidden;
    height: 0;
}
.darcek_flag{
	width: 50px;
    height: 50px;
    line-height: 50px;
	top:0;
	left: 0;
	font-size: 12px;
}
.product_detail_info .prod_detail_darcek{
    display: flex;
    margin-top: .5rem;
    border: 1px solid #9a9a9a;
    padding: 1rem;
	line-height: 1.5;
	margin-bottom: .25rem;
}
.ui-datepicker-title select {
    padding: 0.5rem 0.25rem 0.5rem 0.75rem;
}
span.doklady_zoznam_suma {
    font-weight: bold;
    font-size: 17px;
    line-height: 1.5;
}
.info_box_green {
    background: #dcffdc;
    border-left: 4px solid green;
    padding: 0.75rem;
    font-weight: bold;
	margin-bottom: 1.5rem;
	display: inline-block;
}
.splnene_flag {
    background: #03c503;
    font-weight: bold;
    color: white;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: .25rem .5rem;
    border-radius: .25rem;
    font-size: 11px;
}
.product_list_row.no_pict .splnene_flag {
    position: unset;
    display: inline-block;
    margin-top: .5rem;
}
.splnene_sum_info {
    background: #03c503;
    color: white;
    display: inline-block;
    padding: .25rem .5rem;
    border-radius: .25rem;
    font-weight: bold;
}
/* ------------------------- media ------------------------- */
@media(max-width:1500px){
	.container {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}
@media(max-width:1100px){
	.infoChildren .dlazdica-breadCrumb{
		width: calc(25% - .75rem);
	}
	#kosik_obsah {
		background: none;
		padding: 0;
	}
	#kosik_obsah tr {
		display: flex;
		flex-direction: column;
		background: white;
		margin-bottom: 1rem;
		padding: .5rem;
		border-radius: 1rem;
		box-shadow: 2px 2px 7px 0px rgb(0 0 0 / 39%);
	}
	#kosik_obsah thead {
		display: none;
	}
	#kosik_obsah a {
		font-weight: bold;
		font-size: 13px;
	}
	#kosik_obsah td {
		border: none;
		text-align: left;
	}
	.resp_basket_tbl_name{
		display: inline-block;
		font-weight: bold;
	}
}
@media(min-width: 901px){
	.lg_hidden{
		display: none;
	}
	.lg_max_w_50{
		max-width: 50rem;
	}
	.lg_max_w_30{
		max-width: 30rem;
	}
	.lg_col_2{
		width: 20%;
	}
	.lg_col_6{
		width: 60%;
	}
	.profil_info.profil_user > div{
		min-width: 300px;
		flex-grow: 1;
	}
	#tovar_tree ul.lvl2 {
		height: 60vh;
		overflow-y: auto;
	}
	.fastKoder{
		background: white !important;
		min-width: 300px;
		padding: 1rem !important;
	}
	.login_wrap input[type="text"], .login_wrap input[type="password"] {
		min-width: 250px;
	}
}
@media(max-width:900px){
	.md_hidden{
		display: none;
	}
	.md_w_100{
		width: 100%;
	}
	.md_flex_wrap{
		flex-wrap: wrap;
	}
	.md_order_3{
		order: 3;
	}
	.md_flex_wrap{
		flex-wrap: wrap;
	}
	.md_justify_between{
		justify-content: space-between;
	}
	.md_max_w_15{
		max-width: 15rem;
	}
	.md_direction_column{
		flex-direction: column;
	}
	.md_align_baseline{
		align-items: baseline;
	}
	.md_justify_end{
		justify-content: flex-end;
	}
	.md_grow{
		flex-grow: 1;
	}
	.md_text_l{
		font-size: 14px;
	}
	.md_bold{
		font-weight: bold;
	}
	.md_text_xl{
		font-size: 18px;
	}
	.md_h_3{
		height: 3rem;
	}
	.md_py_4{
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
	.infoChildren .dlazdica-breadCrumb{
		width: calc(33.3333333% - .666666rem);
	}
	.product_detail_info {
		flex-direction: column;
	}
	div#portalMenu{
		display: none;
	}
	.infoTblDark th {
		display: none;
	}
	.infoTblDark tr:first-child{
		display: none;
	}
	.infoTblDark tr {
		display: flex;
		flex-direction: column;
	    background: white;
		margin-bottom: 1rem;
		padding: 1rem;
		border-radius: 1rem;
		box-shadow: 2px 2px 7px 0px rgb(0 0 0 / 39%);
	}
	.infoTblDark a{
		font-weight: bold;
	}
	.profil_info.profil_user {
		flex-direction: column;
	}
	.profil_info.profil_user > div {
		width: 100%;
	}
	.login_info {
		grid-template-columns: repeat(2,minmax(0,1fr));
	}
}
@media(max-width:700px){
	.product_list_grid, .akciove_prod_list {
		grid-template-columns: repeat(2,minmax(0,1fr));
	}
	.infoChildren .dlazdica-breadCrumb{
		width: calc(50% - .5rem);
	}
	.product_detail {
		flex-direction: column;
	}
	.product_detail > div {
		width: 100%;
	}
	.product_list_row > div {
		grid-template-columns: 120px auto;
	}
	.product_list_img {
		grid-row-start: 1;
		grid-row-end: 4;
	}
	.product_list_row.no_pict > div {
		grid-template-columns: auto auto;
	}
	.product_list_row.no_pict > div > div:first-child{
		grid-column-start: 1;
		grid-column-end: 3;
	}
	.profil_md > label {
		display: none;
	}
	.profil_md .nazov_md {
		font-weight: bold;
		margin-top: 1rem;
	}
	.profil_md {
		display: flex;
		flex-direction: column;
		gap: .5rem;
	}
	.tbl_resp > tbody > tr {
		display: flex;
		flex-direction: column;
		/*margin-bottom: 1rem;*/
	}
}
@media(max-width:450px){
	.infoChildren .dlazdica-breadCrumb{
		width: 100%;
	}
	.product_list_row > div > div:last-child {
		grid-column-start: 1;
		grid-column-end: 3;
	}
	.sm_block{
		display: block;
	}
	.sm_text_center{
		text-align: center;
	}
	.sm_w_50_p{
		width: 50%;
	}
	.sm_w_60_p{
		width: 60%;
	}
	.sm_grid_1col{
		grid-template-columns: auto;
	}
	.sm_hidden{
		display: none;
	}
	.sm_flex_wrap{
		flex-wrap: wrap;
	}
	.login_info {
		grid-template-columns: repeat(1,minmax(0,1fr));
	}
	.akciove_prod_list .btn{
		padding-left: 0;
		padding-right: 0;
		width: 100%;
	}
}
