*{
	font-family: verdana,sans-serif;
    font-size: 12px;
	color: #333333;
	box-sizing: border-box;
}
li{
    list-style: none;
}
ul{
    padding: 0;
    margin: 0;
}
a{
	text-decoration: none;
	user-select: none;
}

 /* button */
 button{
	outline: none;
}
 .btn {
    border: none;
    padding: 1rem 3rem;
    border-radius: 9999px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    display: inline-block;
	white-space: nowrap;
}
.btn > span{
	color: white;
}
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, textarea{
	line-height: 1.5;
    border-radius: 0.4rem;
	width: 100%;
	padding: .5rem 1rem;
}
img{
	max-width: 100%;
	max-height: 100%;
}
section#main-part {
    padding-top: 2rem;
	background: #ececec;
	padding-bottom: 3rem;
}
body {
    margin: 0;
}
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;
}
.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 7px 7px 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_nowrap{
	white-space: nowrap;
}
.text_center{
	text-align: center;
}
.text_right{
	text-align: right;
}
.text_through{
	text-decoration: line-through;
}
.text_underline{
	text-decoration: underline;
}
.w_100{
	width: 100%;
}
.min_w_2{
	min-width: 2rem;
}
.min_w_10{
	min-width: 10rem;
}
.min_w_20{
	min-width: 20rem;
}
.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_3_5{
	height: 3.5rem;
}
.h_5{
	height: 5rem;
}
.inline{
	display: inline-block;
}
.block{
	display: block;
}
.absolute{
	position: absolute;
}
.relative{
	position: relative;
}
.right_0{
	right: 0;
}
.top_0{
	top: 0;
}
.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 > *{
	display: inline;
}
.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_gray{
	background: #606060;
}
.bg_white{
	background: white;
}
.text_orange{
	color: #f89448;
}
.text_gray{
	color: gray;
}
.text_black{
	color: #333333;
}
.text_green{
	color: green;
}
.text_white, button.text_white span{
	color: white;
}
.text_transparent{
	color: transparent !important;
}
.vertical_align{
	vertical-align: middle;
}
/* flex grid*/
.flex{
	display: flex;
}
.flex_basis_100{
	flex-basis: 100%
}
.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_start{
	align-items: start;
}
.align__self_center{
	align-self: center;
}
.grow{
	flex-grow: 1;
}
.gap_05{
	gap: .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_3{
	padding: .75rem;
}
.p_4{
	padding: 1rem;
}
.p_8{
	padding: 2rem;
}
.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_0{
	padding-left: 0;
	padding-right: 0;
}
.px_4{
	padding-left: 1rem;
	padding-right: 1rem;
}
.px_8{
	padding-left: 2rem;
	padding-right: 2rem;
}
.pr_1{
	padding-right: .25rem;
}
.pr_2{
	padding-right: .5rem;
}
.pt_8{
	padding-top: 2rem;
}
.pb_4{
	padding-bottom: 1rem;
}
/* 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_8{
	margin-top: 2rem;
}
.mt_12{
	margin-top: 4rem;
}
.mb_2{
	margin-bottom: .5rem;
}
.mb_4{
	margin-bottom: 1rem;
}
.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: 1px solid;
}
.border_none{
	border: none;
}
.border_solid_y{
	border-top: 1px solid;
	border-bottom: 1px solid;
}
.border_b_1{
	border-bottom: 1px solid;
}
.border_b_2{
	border-bottom: 2px solid;
}
.border_gray_light{
	border-color: #e5e5e5;
}
.border_gray{
	border-color: #cccccc;
}
.border_orange{
	border-color: #f89448;
}
.hidden{
	display: none;
}
.overflow_hidden{
	overflow: hidden;
}
/* tovar tree */
#tovar_tree {
    width: 100%;
}
#tovar_tree a:hover{
	color: #f89448;
}
#tovar_tree li ul.lvl2, #tovar_tree li ul.lvl3{
	display: none;
}
#tovar_tree.active li ul.show{
	display: block;
}
#tovar_tree.active li ul.lvl3.show {
	height: 100%;
}
#tovar_tree ul.lvl2 {
    position: absolute;
    background-color: white;
    width: 100%;
    z-index: 999;
    left: 0;
	border: 1px solid #cccccc;
	text-align: left;
	padding: 1rem 0;
}
#tovar_tree > ul.lvl1 > li {
    text-align: center;
}
#tovar_tree > ul.lvl1 > li > a{
	display: flex;
	align-items: center;
	padding: 1rem .75rem;
	height: 100%;
}
#tovar_tree .offImg, #tovar_tree .onImg, #tovar_tree .lineImg{
    display: none;
}
#tovar_tree ul.lvl2 > li > a{
	position: relative;
    padding: .5rem 1.5rem .5rem .5rem;
    display: block;
}
#tovar_tree ul.lvl2 > li > a:after{
	position: absolute;
    top: calc(50%);
    transform: translateY(-50%);
    right: .5rem;
    content: url("../../LabasShop/images/arrow_right_orange.svg");
	width: 1rem;
}
#tovar_tree ul.lvl2 > li.active > a {
    background: #f89448;
    color: white;
}
#tovar_tree ul.lvl2 > li.active > a:after{
	content: url("../../LabasShop/images/arrow_right_white.svg");
}
#tovar_tree ul.lvl2 > li {
    width: 20%;
	padding: 0 1rem;
}
#tovar_tree .lvl3 {
    display: none;
    position: absolute;
    left: 20%;
    top: 0;
    background-color: #fefefe;
    width: 80%;
    padding: 2rem;
    z-index: 9999;
    margin: 0;
	max-height: 100%;
    overflow-y: auto;
}
#tovar_tree .lvl3 > li {
    display: inline-block;
	width: 24%;
    padding-right: 1rem;
    margin-bottom: 1.5rem;
    white-space: inherit;
	position: relative;
	padding-left: 4.5rem;
	vertical-align: top;
	min-height: 4rem;
}
#tovar_tree .lvl3 > li > a {
    display: flex;
}
#tovar_tree .lvl3 > li > a img {
    position: absolute;
	left: 0;
	max-width: 4rem;
    max-height: 4rem;
}
#tovar_tree .lvl4 a:not(:hover){
	color: gray;
}
/* tovarList grid*/
.product_list_grid {
    display: flex;
    flex-wrap: wrap;
}
.dlazdice{
	width: calc(20% - 1rem);
    margin: .5rem;
}
.dlazdice_img {
    height: 200px;
}
.dlazdice_img img{
	max-height: 200px;
}
.dlazdice_img > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
	height: inherit;
}
/* 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;
	font-size: 11px;
}

/* 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 tr[data-no_stock] td, #kosik_obsah tr[data-no_stock] a, #kosik_obsah tr[data-no_stock] span {
    color: red;
}
.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: 60px;
    height: 60px;
    line-height: 60px;
	top:0;
	right: 0;
}
.darcek_flag{
	width: 60px;
    height: 60px;
    line-height: 60px;
	top:0;
	left: 0;
}
.product_detail_info .prod_detail_darcek{
    display: flex;
    margin-top: .5rem;
    border: 1px solid #9a9a9a;
    padding: 1rem;
	line-height: 1.5;
}
.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;
	flex-shrink: 0;
}
.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: .75rem;
}
.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;
}
.product_detail_info > div > div {
    line-height: 2;
}
.Zalozka4 > a {
    padding: 0.5rem 1rem;
    display: inline-block;
    border-radius: 10rem;
    cursor: pointer;
    border: 1px solid #e5e5e5;
    box-shadow: 2px 2px 7px 0px rgb(0 0 0 / 39%);
    margin-right: 1rem;
    font-size: 11px;
	margin-bottom: .75rem;
	background: white;
}
.Zalozka4 > a.Zalozka4Sel {
    background: #606060;
    border-color: #606060;
	color: white;
}

.fastKoder{
	background: white !important;
	padding: 1rem !important;
}
#kosik_obsah td, #kosik_obsah th, .infoTblDark td, .infoTblDark th{
	padding-top: .75rem;
	padding-bottom: .75rem;
	border-bottom: 1px solid #e5e5e5;
}
#kosik_obsah tr.no_edit * {
    color: #989898;
}
.infoTblDark{
	border: none;
}
.infoTblDark td, .infoTblDark th{
	border-top: none;
	border-left: none;
	border-right: none;
}
.infoTblDark th{
	font-weight: bold;
}
.infotableDark_tbar {
    padding-top: .5rem;
}
.expPdf {
    display: none;
}
.expXls {
    float: right;
    font-weight: bold;
    padding-right: 0.5rem;
	cursor: pointer;
}
.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;
}
.doklInfo .col_6 div:nth-child(odd), .doklInfo .col_4 div:nth-child(odd) {
    font-weight: 600;
}
.filter_checkbox_wrap {
    grid-template-columns: repeat(4,minmax(0,1fr));
    display: grid;
    gap: 1rem;
}
#filter_vyr label > span {
    width: calc(100% - (22px + 0.75rem));
	overflow-wrap: anywhere;
}
.cena_filter input{
	width: 50px;
	padding: 2px;
}
.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;
}
.ZalozkaWrap, .infoTblEnvDark {
    background: white;
    padding: 2rem;
}
.infoTblEnvDark{
	border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
}
.ZalozkaWrap {
    padding-bottom: 0;
	border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
}
DIV.Zalozka4, DIV.Zalozka4fb {
    background: none !important;
}
.hdr_basket_wrap a 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 {
    width: calc(25% - 2rem);
    text-align: center;
	display: flex;
    flex-direction: column;
	margin: 1rem;
}
.akciove_prod_list .picture {
    height: 250px;
    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;
}
.pager_layouts a {
    display: inline-block;
    padding: 0.2rem 0.4rem;
}
a.pageSel {
    background: #f89448;
    color: white;
    border-radius: 0.5rem;
}
.pager_layouts > div {
    display: none;
}
.pager_layouts .pageUp{
	order: 10;
}
.pager_down{
	display: none;
}
#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;
}
#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;
	color: white;
	font-weight: bold;
}
.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%;
}
.md_popup h4 {
    margin-top: 0;
    margin-bottom: .25rem;
}
.md_popup > div {
    margin-bottom: .25rem;
}
.md_popup a:hover {
    background: #f894488a;
}
.md_popup a {
    display: block;
    padding: .5rem;
}
#filter > div {
    background: white;
    height: 100%;
    width: 90%;
    max-width: 70rem;
    padding: 1rem;
    transition: .75s;
    left: -100vw;
    position: relative;
    overflow-y: auto;
}
#filter {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #8080808c;
    visibility: hidden;
    transition: .3s;
    z-index: 9999;
}
#filter.show {
    visibility: visible;
}
#filter.show > div {
    left: 0;
}
.ui-datepicker-title select {
    padding: 0.5rem 0.25rem 0.5rem 0.75rem;
}
/* ------------------------- media ------------------------- */
@media(max-width:1500px){
	.container, #filter_wrap.filter_sticky > div {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}
@media(max-width:1400px){
	#prod_list.open_filter .dlazdice {
	    width: calc(25% - 1rem);
	}
}
@media(max-width:1150px){
	#prod_list.open_filter .dlazdice {
	    width: calc(33.3333333% - 1rem);
	}
}
@media(max-width:1100px){
	.dlazdice {
	    width: calc(25% - 1rem);
	}
	.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: 1rem;
		border-radius: 1rem;
		display: grid;
		grid-template-columns: auto auto auto;
	}
	#kosik_obsah tr td:last-child {
		grid-column: 3;
		grid-row: 3/5;
	}
	#kosik_obsah tr td:nth-child(1) {
		order: 2;
	}
	#kosik_obsah tr td:nth-child(4) {
		order: 3;
	}
	#kosik_obsah tr td:nth-child(6) {
		order: 4;
	}
	#kosik_obsah tr td:nth-child(3) {
		order: 5;
	}
	#kosik_obsah tr td:nth-child(5) {
		order: 6;
	}
	#kosik_obsah tr td:nth-child(8) {
		order: 7;
	}
	#kosik_obsah tr td:nth-child(7) {
		order: 8;
	}
	#kosik_obsah thead {
		display: none;
	}
	#kosik_obsah a {
		font-weight: bold;
		font-size: 13px;
	}
	#kosik_obsah td {
		border: none;
		text-align: left;
		order: 5;
		padding-top: 0.35rem;
		padding-bottom: 0.35rem;
	}
	#kosik_obsah tr td:nth-child(2) {
		order: 1;
		grid-column: 1/4;
	}
	#kosik_obsah td, #kosik_obsah td > span {
		font-size: 10px;
	}
	.resp_basket_tbl_name{
		display: inline-block;
		font-weight: bold;
		margin-right: .35rem;
	}
}
@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;
	}
	.dlazdice, .akciove_prod_list > div {
	    width: calc(33.333333% - 1rem);
	}
	.akciove_prod_list > div{
		margin: .5rem;
	}
	.infoChildren .dlazdica-breadCrumb{
		width: calc(33.3333333% - .666666rem);
	}
	#tovar_tree > ul {
		flex-direction: column;
	}
	#tovar_tree ul.lvl2 > li{
		width: 100%;
	}
	#tovarovy_strom{
		border: none;
	}
	.product_detail_info {
		flex-direction: column;
	}
	.product_detail_info > div {
		width: 100%;
	}
	div#portalMenu{
		display: none;
	}
	.ZalozkaWrap, .infoTblEnvDark {
		background: none;
		padding-left: 0;
		padding-right: 0;
	}
	.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;
	}
	.infoTblDark td{
		border: none;
		text-align: left !important;
	}
	.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));
	}
	.hdr_tree_wrap * {
		font-size: 13px;
	}
	.hdr_tree_wrap{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #8080808c;
		visibility: hidden;
		transition: .3s;
		z-index: 9999;
	}
	.hdr_tree_wrap.show {
		visibility: visible;
	}
	.hdr_tree_wrap > div {
		background: white;
		height: 100%;
		width: 90%;
		max-width: 30rem;
		padding: 1rem;
		transition: .75s;
		left: -100vw;
		position: relative;
		overflow-y: auto;
	}
	.hdr_tree_wrap.show > div {
		left: 0;
	}
	.hdr_tree_wrap .resp_menu li a, .hdr_tree_wrap .btn_open_tree {
		padding: .5rem 1rem;
		text-transform: uppercase;
		display: block;
		font-weight: bold;
	}
	.resp_menu_hdr {
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-bottom: 1px solid #c1c1c1;
		padding-bottom: 1rem;
		margin-bottom: .5rem;
	}
	#tovar_tree > ul.lvl1 > li > a{
		padding: .5rem 0 .5rem 1rem;
		text-align: left;
	}
}
@media(max-width:700px){
	.dlazdice, .akciove_prod_list > div {
	    width: calc(50% - 1rem);
	}
	.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:500px){
	.filter_checkbox_wrap {
		grid-template-columns: repeat(2,minmax(0,1fr));
	}
	#kosik_obsah tr {
		display: flex;
		flex-direction: column;
	}
	#kosik_obsah tr td:not(:nth-child(2)) {
		order: 2 !important;
	}
}
@media(max-width:450px){
	.dlazdice, .akciove_prod_list > div {
	    width: 100%;
	}
	.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));
	}
	/*.pager_down{
		display: flex;
	}
	.pager_layouts{
		display: none;
	}*/
}
