:root {
	--c-bg-light:#f2f4f7;
	
	--c-text:#1c1e21;
	--c-text-light:#707173;
	--c-text-white:#cdcdcd;
	--c-bg-page:#ffffff;
	--c-bg-lightgray:#fbfbfb;
	--c-bg-gray:#e9e9e9;
	--c-bg-darkgray:#191919;
	--c-bo-lightgray:#ebebeb;
	--c-bo-gray:#cdcdcd;
	--c-red:#d22e2e;
	--c-red-dark:#B92828;
}

/*@font-face {
	font-family:'Open Sans';
	src:url('../font/OpenSans.ttf') format('truetype');
	font-weight:500;
	font-style:normal;
}*/

@font-face {
	font-family: 'roboto_thin';
	src: url('../font/Roboto-Thin.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'roboto_light';
	src: url('../font/Roboto-Light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'roboto_bold';
	src: url('../font/Roboto-Bold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'roboto_medium';
	src: url('../font/Roboto-Medium.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'roboto_regular';
	src: url('../font/Roboto-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

html, body {
	min-height:100vh;
	margin:0px;
	padding:0px;
	font-family:'roboto_regular',sans-serif;
	font-size:14px;
	line-height:1.42857143;
	background:var(--c-bg-page);
	color:var(--c-text);
}

body {
	position:relative;
	z-index:1;
}

table {
	border-collapse:collapse;
	border-spacing:0;
	margin:0px;
	padding:0px;
	width:100%;
}

table tr, table tr td {
	margin:0px;
	padding:0px;
}

img {
	border-style:none;
}

ul {
	padding:0px;
	margin:0px;
	list-style:none;
}

a {
	-webkit-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
	text-decoration:none;
	color:var(--c-text);
}

a.reda {
	color:var(--c-red);
}

input:-webkit-autofill {
	-webkit-box-shadow:0 0 0px 1000px #ffffff inset;
}

label {
	display:inline-block;
	max-width:100%;
	margin-bottom:5px;
	font-weight:700;
}

input::placeholder,
textarea::placeholder {
	color:var(--c-text-light);
}

.center {
	text-align:center;
}

.right {
	text-align:right;
}

.hidden {
	display:none !important;
}

.no-select {
	-webkit-user-select:none;
	-ms-user-select:none;
	user-select:none;
}

/**************************************/
header {
	position:relative;
}

.content {
	max-width:1296px;
	margin:0px auto;
	width:95%;
}

.headLine {
	background:var(--c-bg-lightgray);
	border-top:1px solid var(--c-bo-lightgray);
	border-bottom:1px solid var(--c-bo-lightgray);
	line-height:30px;
}

.topHeadHolder {
	display:flex;
	justify-content:space-between;
	border-left:1px solid var(--c-bo-lightgray);
	border-right:1px solid var(--c-bo-lightgray);
	line-height:40px;
}

.topHeadHolder a.link {
	color:var(--c-text-light);
	line-height:30px;
	padding:0px 10px;
	border-right:1px solid var(--c-bo-lightgray);
	border-left:1px solid var(--c-bo-lightgray);
	display:inline-block;
	line-height:40px;
}

.topHeadRight {
	display:flex;
}

.topHeadRight a.link {
	padding:0 17px;
	vertical-align: middle;
  font-size: 1.4rem;
  position:relative;
  align-self:center;
}

.topHeadHolder a.link:hover,
.topHeadHolder a.link i {
	color:var(--c-text);
}

.topHeadHolder a.link:hover {
	background:#ffffff;
}

.topHeadHolder a.link span {
	padding-left:5px;
}

.topHeadHolder a.link:hover span {
	text-decoration:underline;
}

.topHeadHolder a.link.menuMobile,
.mainMenu ul > li.menuMobile {
	display:none;
}

.topHeadRight a.link span.cartSumNum {
	position:absolute;
	background:var(--c-red);
	display:inline-block;
	font-size:12px;
	color:#ffffff;
	line-height:18px;
	height:18px;
	width:18px;
	border-radius:50%;
	text-align:center;
	padding:0px;
	bottom:2px;
	right:2px;
}

.topHeadRight a:hover.link span.cartSumNum {
	text-decoration:none;
}

.langSel {
	font-size:14px;
}

.langSel img,
.langSel span {
	vertical-align:middle;
}

.middleHeadHolder {
	display:flex;
	align-items:center;
	height:80px;
	column-gap:20px;
}

.middleHeadHolder .searchBar {
	flex-grow:2;
	display:flex;
}

.middleHeadHolder .searchBar input {
	flex-grow:2;
	flex-shrink:2;
	padding-left:10px;
}

.mainMenu {
	text-align:right;
}

.mainMenu > a {
	display:none;
}

.mainMenu ul {
	text-align:center;
	display:inline-block;
}

.mainMenu ul > li {
	display:inline-block;
	text-transform:uppercase;
	position:relative;
}

.mainMenu ul > li a {
	padding:0px 10px;
	margin:0px 5px;
}

.mainMenu ul > li a:hover {
	color:var(--c-red);
}

.mainMenu ul > li a i {
	margin-left:10px;
}

.mainMenu ul > li > ul {
	display:none;
	position:absolute;
	z-index:2;
	left:50%;
	top:30px;
	min-width:100%;
	transform:translateX(-50%);
	background:var(--c-bg-lightgray);
	border:1px solid var(--c-bo-lightgray);
}

.mainMenu ul > li > ul > li {
	display:inline-block;
	width:100%;
	border:1px solid var(--c-bo-lightgray);
}

.mainMenu ul > li > ul > li:hover {
	background:#fff;
}

.mainMenu ul > li > ul > li > a {
	white-space:nowrap;
}

.mainMenu ul > li.opened > ul {
	display:block;
}

.mainMenu ul > li.opened a i {
	transform:rotate(180deg);
}

.select-css {
	display: inline-block;
	font-size: 12px;
	font-family: sans-serif;
	font-weight: 700;
	color: #444;
	line-height: 1.3;
	padding: .6em 1.4em .5em .8em;
	max-width: 100%; 
	box-sizing: border-box;
	margin: 0;
	border: 1px solid #aaa;
	box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
	//border-radius: .5em;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23444444%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
		linear-gradient(to bottom, #ffffff 0%,#f5f5f5 100%);
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
}
.select-css::-ms-expand {
	display: none;
}
.select-css:hover {
	border-color: #888;
}
.select-css:focus {
	border-color: #aaa;
	box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	color: #222; 
	outline: none;
}
.select-css option {
	font-weight:normal;
}

.btn {
	display:inline-block;
	margin:0;
	text-align:center;
	white-space:nowrap;
	vertical-align:middle;
	-ms-touch-action:manipulation;
	touch-action:manipulation;
	cursor:pointer;
	padding:6px 12px;
	font-size:14px;
	line-height:1.42857143;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	border-radius:3px;
	-webkit-box-shadow:none;
	box-shadow:none;
	border:1px solid transparent;
	color:#ffffff;
	text-decoration:none;
	-webkit-transition:all 0.3s ease 0s;
	transition:all 0.3s ease 0s;
}

.btn.fw {
	width:100%;
}

.btn[disabled] {
	opacity:0.6;
}

.btn-red {
	background-color:var(--c-red);
	border-color:var(--c-red);
}

.btn-red:hover,
.btn-red.active {
	background-color:var(--c-red-dark);
}

.btn-gray {
	background-color:var(--c-bg-gray);
	border-color:var(--c-bg-darkgray);
	color:var(--c-bg-darkgray);
}

.btn-gray:hover,
.btn-gray.active {
	color:var(--c-red);
}


.splitPage {
	display:flex;
	column-gap:20px;
}

.splitPage .leftPage {
	width:295px;
	flex-grow:0;
	flex-shrink:0;
}

.splitPage .rightPage {
	flex-grow:1;
	position:relative;
}

.filterSelected {
	display:flex;
	flex-wrap:wrap;
  //margin:.5rem 1rem 1rem 1rem;
}

.filterSelected a {
	background-color:var(--c-bg-gray);
  cursor:pointer;
  display:flex;
  //margin-bottom:.5rem;
  //margin-right:.5rem;
  padding:.25rem .5rem;
  align-items:center;
  margin:.5rem;
}

.filterSelected a i {
	margin-left:.25rem;
	font-size:16px;
}

.filterHolder.collapsed .filterSelected {
	margin:0px;
}

.filterHolder {
	margin:10px 0px;
	position:relative;
}

.filterLoader {
	position:absolute;
	z-index:2;
	background:rgba(0,0,0,0.05);
	top:0;
	left:0;
	bottom:0;
	right:0;
}

.spinner {
	width:48px;
	height:48px;
	border:5px solid #ffffff;
	border-bottom-color:var(--c-red);
	border-radius:50%;
	display:inline-block;
	box-sizing:border-box;
	animation:rotation 1s linear infinite;
	position:relative;
	left:calc(50% - 24px);
	top:calc(50% - 24px);
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
} 

.filterTitle {
	font-size:1.5rem;
	//margin-bottom:10px;
	font-family:'roboto_bold';
	text-transform:uppercase;
	font-style:italic;
	display:flex;
	align-items:center;
	justify-content:space-between;
	border-bottom:1px solid var(--c-bo-gray);
	margin-bottom:1rem;
	padding:.75rem 1rem 1rem 0;
}

.filterToggleIcon {
	height: 1.25rem;
	position: relative;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	width: 1.25rem;
}

.filterToggleIcon::before,
.filterToggleIcon::after {
	background-color: #8a8a8a;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: all .35s ease-in-out;
  width:100%;
}

.filterHolder .filterToggleIcon::before {
	opacity: 0;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.filterHolder .filterToggleIcon::after {
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}

.filterHolder.collapsed .filterToggleIcon::before {
	opacity:1;
	-webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.filterHolder.collapsed .filterToggleIcon::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.filterBlock {
	border-top:1px solid var(--c-bo-gray);
}

.filterBlockHolder {
	overflow:hidden;
}

.filterHolder.collapsed .filterBlockHolder {
	display:none;
}

.filter_reset {
	width:100%;
	text-align:center;
	text-transform:uppercase;
	margin-top:10px;
}

.categoryBack {
	display:inline-block;
  padding:.75rem 1rem;
}

.categoryBack i {
	margin-right: .75rem;
  vertical-align: middle;
  font-size:1.3rem;
}

.categoryBack span {
	vertical-align:middle;
	font-family:'roboto_medium';
	text-transform:uppercase;
	font-size:1.2rem;
	font-style:italic;
}

.categorySelected {
	font-weight: 700;
  padding: .5rem 1rem;
  text-transform: uppercase;
}

.categoryHolder {
	-webkit-animation-name: none;
	animation-name: none;
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
}

.categoryHolder ul {
	padding: 0 1rem 1rem;
	font-size:1.1rem;
}

.categoryHolder ul li a {
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding: .5rem 0;
}

.categoryHolder ul li a[data-num="0"] {
	opacity:0.4;
}

.categoryHolder ul li a span p {
	margin:0;
	display:inline-block;
}

.categoryHolder ul li a i {
	font-size:0.9rem;
	color:var(--c-red-dark);
}

.categoryHolder.slideIn {
	-webkit-animation-name: CatSlideIn;
	animation-name: CatSlideIn;
}

.subfilter .filterTitle {
	padding: 1rem;
	margin:0px;
	font-size: 1rem;
	line-height: 1.375rem;
}

.filterHolder.subfilter {
	margin:0px;
}

.subfilter .filterBlockHolder {
	margin: 1rem;
	overflow-y:auto;
	max-height:550px;
}

.filterBlockHolder select {
	width:100%;
	margin-bottom:15px;
}

.filterBlockHolder select:disabled {
	opacity:0.5;
}

.filterBlockHolder .filter_date_select select,
.filterBlockHolder .filter_date_select label {
	display:inline-block;
	width:auto;
}

@-webkit-keyframes CatSlideIn {
  from {
    transform: translateX(75%);
    opacity:0;
  }
  to {
    transform: translateX(0%);
    opacity:1;
  }
}

@keyframes CatSlideIn {
  from {
    transform: translateX(75%);
    opacity:0;
  }
  to {
    transform: translateX(0%);
    opacity:1;
  }
}

.checkbox_container {
	display:block;
	position:relative;
	padding-left:25px;
	margin-bottom:5px;
	cursor:pointer;
	font-size:1rem;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	line-height:19px;
	font-weight:normal;
}

.checkbox_container a {
	text-decoration:underline;
}

.checkbox_container input {
	position:absolute;
	opacity:0;
	cursor:pointer;
	height:0;
	width:0;
}

.checkbox_container img {
	height:30px;
}

.checkbox_container .checkmark {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-ms-border-radius: 3px;
	position: absolute;
	transform: translateY(-50%);
	top: 48%;
	left: 0;
	height: 17px;
	width: 17px;
	background-color: transparent;
	border: 1px solid #707070;
}

.checkbox_container .checkmark::after {
	content: "";
  position:absolute;
  display:none;
	left: 4px;
	top: 0px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-top-width: medium;
	border-right-width: medium;
	border-bottom-width: medium;
	border-left-width: medium;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.checkbox_container input:checked ~ .checkmark {
	border: 1px solid var(--c-red-dark);
	background-color: var(--c-red);
}

.checkbox_container input:checked ~ .checkmark::after {
  display: block;
}

.mobileFilterBtnHolder {
	display:none;
	margin:1rem 0;
}

.mobileFilterBtnHolder a {
	background-color:var(--c-bg-gray);
	font-size:1.0625rem;
  line-height:1.3;
  text-transform:uppercase;
  box-shadow:inset 0 0 0 2px #191919;
  display:block;
  text-align:center;
  border:none;
  padding:.75rem 1rem;
}

.mobileFilterBtnHolder a i,
.mobileFilterBtnHolder a span {
	vertical-align:middle;
	margin:0px 5px;
}

.mobileFilterBtnHolder a span {
	font-weight:bold;
	font-style:italic;
}

.mobileFilterBoxTitle {
	display:none;
	background-color:var(--c-bg-gray);
	font-size:17px;
  text-transform:uppercase;
  text-align:center;
  height:60px;
  line-height:60px;
  font-weight:bold;
  font-style:italic;
  position:relative;
}

.mobileFilterBoxTitle a {
	position:absolute;
	right:0px;
	top:7px;
	width:45px;
	height:45px;
	line-height:45px;
	text-align:center;
	font-size:20px;
}

.prodListEmpty {
	font-size:2rem;
	font-family:'roboto_bold';
	line-height: 32px;
  margin: 30px 0px;
  text-align: center;
  font-style:italic;
}

.prodListEmpty button {
	max-width:300px;
}

footer {
	background:var(--c-bg-gray);
	border-top:2px solid var(--c-red-dark);
	text-align:center;
	margin-top:3rem;
}

.footerLegal {
	padding:1.5rem 0 0.75rem 0;
}

.footerSupplier {
	display:flex;
	flex-wrap:wrap;
	gap:10px 15px;
	justify-content:center;
	padding:0.75rem 0 1.5rem 0;
}

.footerSupplier div {
	background:#ffffff;
}

.footerSupplier img {
	height:23px;
	display:inline-block;
	vertical-align:middle;
}

.footerCopy {
	border-top: 1px solid var(--c-bo-gray);
  padding:1.4rem 0;
  margin:1.4rem 0 0 0;
}

.footerCopy a {
	color:var(--c-red-dark);
}

.carousel {
	position:relative;
	margin:10px 0px;
}

.carousel-indicators {
	margin-top:0;
	margin-bottom:10px;
	position:absolute;
	bottom:10px;
	left:50%;
	z-index:3;
	width:60%;
	padding-left:0;
	margin-left:-30%;
	text-align:center;
	list-style:none;
}

.carousel-indicators li {
	display:inline-block;
	width:10px;
	height:10px;
	margin:1px;
	text-indent:-999px;
	cursor:pointer;
	background-color:rgba(0,0,0,0);
	border:1px solid #ffffff;
	border-radius:10px;
}

.carousel-indicators li.active {
	width:12px;
	height:12px;
	margin:0;
	background-color:#ffffff;
}

.carousel-inner {
	position:relative;
	width:100%;
	overflow:hidden;
}

.carousel-control {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	width:10%;
	font-size:2rem;
	color:#ffffff;
	text-align:center;
	background-color:rgba(0,0,0,0);
	opacity:0.5;
	background-repeat:repeat-x;
}

.carousel-control.left {
	background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
	background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
	background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));
	background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}

.carousel-control.right {
	right:0;
	left:auto;
	background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
	background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
	background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
	background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}

.carousel-control:focus,
.carousel-control:hover {
	color:#ffffff;
	text-decoration:none;
	outline:0;
	opacity:0.9;
}

.carousel-control i {
	position:absolute;
	top:50%;
	left:50%;
	z-index:5;
	display:inline-block;
	transform:translate(-50%,-50%);
}

.carousel-inner > .slide {
	position:relative;
	display:none;
}

.carousel-inner > .slide > img {
	display:block;
	max-width:100%;
	height:auto;
}

.carousel-inner > .active,
.carousel-inner > .next {
	display:block;
}

.carousel-inner > .next {
	position:absolute;
	top:0;
	width: 100%;
}

.carousel-inner > .slide {
	animation-duration: 0.6s;
	animation-timing-function: ease-in-out;
}

.carousel-inner .to-left {
  animation-name: posleft;
}

.carousel-inner .from-right {
  animation-name: posright;
}

.carousel-inner .to-right {
  animation-name: posright;
  animation-direction: reverse;
}

.carousel-inner .from-left {
  animation-name: posleft;
  animation-direction: reverse;
}

@keyframes posleft {
  from {
    left: 0;
  }
  to {
    left: -100%;
  }
}

@keyframes posright {
  from {
    left: 100%;
  }
  to {
    left: 0;
  }
}

.mainProductBlock {
	margin:1.4rem 0;
}

.mainProductBlock h3 {
	margin:1.4rem 0;
	font-size: 1.5rem;
  font-family: 'roboto_bold';
  text-transform: uppercase;
  font-style: italic;
  border-bottom: 1px solid var(--c-bo-gray);
  padding: .75rem 1rem 1rem 0;
}

.prodListHolder {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-evenly;
	row-gap:1.4rem;
	col-gap:1.4rem;
}

.prodListBlock {
	width:26%;
	text-align:center;
	//background:var(--c-bg-light);
	padding: .75rem 1rem 1rem 1rem;
	font-size:.875rem;
	line-height:1.25rem;
	border:1px solid var(--c-red);
	min-width:250px;
}

.prodListBlock img {
	max-height:150px;
	max-width:200px;
}

.prodListBlock .brandName {
	color:var(--c-text-light);
	line-height:2.25rem;
}

.prodListBlock .prodName {
	font-family: 'roboto_bold';
}



.productHolder {	
	margin:20px 0px 40px 0px;
	border-bottom: 1px solid var(--c-bo-gray);
  padding-bottom: 25px;
}

.productHolder .productCols {
	display:flex;
	gap:20px;
}

.prodImgHolder {
	width:220px;
	flex-shrink:0;
	position:relative;
}

.prodImgHolder .prodImgInner {
	display:flex;
	justify-content:center;
	align-items:center;
	min-height:170px;
	border:1px solid var(--c-bo-gray);
}

.prodImgHolder a {
	display:inline-block;
}

.prodImgHolder .prodImgNumber {
	border:1px solid var(--c-bo-gray);
	background:#ffffff;
	color:var(--c-text);
	display:inline-block;
	position:absolute;
	right:3px;
	margin-top:-10px;
	padding:0px 5px;
	font-size:0.8rem;
}

.prodDataHolder {
	flex-grow:1;
	position:relative;
}

.prodDataHolder .prodName {
	font-family: 'roboto_bold';
	color:var(--c-red);
	font-size:1.1rem;
}

.prodDataHolder .prodAttrib.barcode {
	font-size:0.8rem;
}

.prodDataHolder .prodAttrib.rrmpcode {
	margin-bottom:10px;
}

.prodDataHolder .prodAttrib.sizebtn {
	margin:10px 0px;
}

.prodDataHolder .prodAttrib.highlighted {
	text-transform:uppercase;
	color:var(--c-red);
	font-family: 'roboto_medium';
	line-height: 1.6rem;
  font-size: 1.1rem;
}

.sizeBtn {
	border: 1px solid var(--c-bo-gray);
	background: #ffffff;
  height: 23px;
  line-height: 23px;
  vertical-align: middle;
  cursor: pointer;
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
  padding: 0px 8px;
  margin-right:5px;
}

.sizeBtn.actSize {
  font-weight: bold;
  padding: 0px 10px;
  height: 31px;
  line-height: 29px;
  border: 2px solid var(--c-bo-gray);
}

.sizeBtn.sizeRed {
	background:var(--c-red);
}

.sizeBtn.sizeGreen {
	background:#279522;
}

.sizeBtn.sizeBlue {
	background:#212196;
}

.toCartHolder {
	margin:10px 0px;
	display:flex;
	align-items:center;
}

.toCartHolder input {
	width:80px;
	display:inline-block;
}

.prodDiscountStarHolder {
	background:url("/images/disc_star.png") no-repeat 50% 50%;
	background-size:contain;
	width:70px;
	display:inline-block;
	height:70px;
	line-height:70px;
	text-align:center;
	color:#ffffff;
	position:absolute;
	font-size:18px;
	font-weight:bold;
	top:-25px;
  left:-260px;
}

.productLogos {
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	align-items:center;
	margin-top:15px;
}

.productLogos img {
  border-radius:5px;
  max-height:40px;
  height:100%;
  width:auto;
  max-width:40px;
}

.prodActions {
	margin-top:15px;
}

.prodActions a {
	margin-right:10px;
	//text-decoration:underline;
	color:var(--c-text);
	
	background-color: var(--c-bg-gray);
  font-size: 1.0625rem;
  line-height: 1.3;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 2px #191919;
  display: inline-block;
  text-align: center;
  border: none;
  padding: .75rem 1rem;
  font-weight: bold;
  font-style: italic;
  text-decoration:none;
  margin-bottom:10px;
}

.prodDescribe {
	display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.6s;
}

.prodDescribeInner {
	min-height: 0;
  transition: opacity 0.3s;
  opacity:0;
}

.prodDescribe.active {
	grid-template-rows: 1fr;
}

.prodDescribe.active .prodDescribeInner {
  opacity:1;
}

.prodDescMessage {
	font-family: 'roboto_medium';
  margin: 10px 0px;
  overflow-y:auto;
  max-height:400px;
}

.prodItemModell {
	font-family: 'roboto_regular';
	border-bottom:1px solid var(--c-bo-gray);
	padding:2px 5px;
}

.toplink {
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 5px;
	bottom: -52px;
	color: #fff;
	display: block;
	font-size: 30px;
	height: 50px;
	line-height: 48px;
	position: fixed;
	right: 15px;
	text-align: center;
	transition: background-color 0.3s ease 0s, bottom 0.3s ease 0s;
	width: 50px;
	z-index: 10;
}

.toplink.active {
	bottom: 15px;
}

.toplink.active:hover {
	background-color: #d22e2e;
	color: #fff;
}

.toplink.active:active {
	color: #fff;
}

.cookie_div {
	position:fixed;
	z-index:200;
	bottom:0px;
	left:0px;
	right:0px;
	background:rgba(0,0,0,0.85);
	color:#ffffff;
	font-size:1.4em;
	display:flex;
	padding:20px 10vw;
	font-size:1rem;
	justify-content:center;
  column-gap: 30px;
}

.cookie_div a {
	color:#ffffff;
	text-decoration:underline;
}

.cookie_text {
	align-self:center;
}

.cookie_btn {
	align-self:center;
}

.cookie_btn input {
	border:1px solid #ffffff;
	background:#000000;
	color:#ffffff;
	padding:10px 15px;
	font-size:1.2em;
	text-transform:uppercase;
	cursor:pointer;
}

.langList {
	display:flex;
	flex-direction:column;
	row-gap:15px;
}

.langList a {
	display:inline-block;
	line-height:27px;
	text-decoration:underline;
}

.langList a img,
.langList a span {
	vertical-align:middle;
}

.langList a span {
	margin-left:10px;
}

.e404 {
	//margin:10vh auto 0 auto;
	margin:0 auto;
	text-align:center;
	min-height:calc(100vh - 375px);
	padding-top:10vh;
}

.e404 > i {
	font-size:3em;
	color:var(--c-red);
}

.e404 h2 {
	font-size:2rem;
	line-height:2rem;
	font-family:'roboto_regular';
	font-weight:normal;
	margin:30px 0px;
}

.e404 a {
	text-transform:uppercase;
	font-weight:bold;
}

.e404 a span,
.e404 a i {
	vertical-align:middle;
}

.e404 a i {
	font-size: 16px;
  margin-left: 10px;
}

.loginAction {
	display:flex;
	justify-content:space-between;
	margin:10px 5px;
}

.loginAction a {
	text-decoration:underline;
}

@media (max-width: 740px) {
	.middleHeadHolder {
		flex-direction:column;
		height:auto;
		row-gap:10px;
		padding:10px 0px;
		padding-left:.625rem;
		padding-right:.625rem;
		align-items:center;
	}
	
	.searchBar {
		width:100%;
	}
	
}

@media (max-width: 640px) {
	.content {
		width:100%;
	}
	
	.topHeadHolder a.link span {
		display:none;
	}
	
	.searchBar > select {
		padding: .6em 0em .5em .8em;
	}
	
	.select-box__input-text span,
	.select-box__input span,
	.select-box__option span {
		display:none;
	}
	
	.select-box {
		width:65px;
	}
	
	.select-box__option {
		text-align:center;
		padding:3px 15px;
	}
	
	.topHeadHolder a.link.menuMobile,
	.mainMenu ul > li.menuMobile {
		display:inline-block;
	}
	
	.topHeadHolder a.link.menuDesktop {
		display:none;
	}
	
	.mainMenuHolder {
		position:fixed;
		right:0px;
		top:0px;
		bottom:0px;
		left:0px;
		background:rgba(0,0,0,0.5);
		display:none;
		z-index:10;
	}
	
	.mainMenuHolder.opened {
		display:block;
	}
	
	.mainMenu {
		position:absolute;
		background:#ffffff;
		bottom:0px;
		top:0px;
		right:-100%;
		min-width:50%;
	}
	
	.mainMenuHolder.opened .mainMenu {
		right:0%;
	}
	
	.mainMenu > a {
		display:inline-block;
		line-height:40px;
		width:40px;
		text-align:center;
	}
	
	.mainMenu ul {
		border-top:1px solid var(--c-bo-lightgray);
	}
	
	.mainMenu ul,
	.mainMenu ul > li {
		display:block;
	}
	
	.mainMenu ul > li a {
		margin:0px;
		padding:5px 35px;
		display:block;
		border-bottom:1px solid var(--c-bo-lightgray);
	}
	
	.mainMenu ul > li.highlighted a {
		background:var(--c-red);
		color:#ffffff;
	}
	
	.mainMenu ul > li > ul {
		position:unset;
		transform:none;
	}
	
	.mainMenu ul > li > ul > li {
		display:block;
	}
	
	.mainMenu ul > li.opened > ul {
		
	}
	
	.splitPage {
		flex-wrap:wrap;;
	}
	
	.splitPage .leftPage,
	.splitPage .rightPage {
		width:100%;
		padding-left:.625rem;
		padding-right:.625rem;
	}
	
	.splitPage .leftPage {
		position:relative;
	}
	
	.mobileFilterBoxTitle {
		display:block;
	}
	
	.filterBox {
		position:fixed;
		left:0px;
		right:0px;
		top:100%;
		bottom:0px;
		-webkit-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		background:var(--c-bg-page);
		overflow-y:auto;
		z-index:99;
	}
	
	.filterBox.active {
		top:0%;
	}
	
	.mobileFilterBtnHolder {
		display:block;
	}
	
	.filterHolder {
		margin:0px;
		border-bottom:1px solid var(--c-bo-gray);
	}
	
	.filterTitle {
		font-size:1.1rem;
		border-bottom: none;
    margin-bottom: 0;
    padding: 1rem;
	}
	
	.filterSelected {
		margin:0 1rem;
	}
	
	#subFilterHolder {
		border:none;
	}
	
	#subFilterHolder > a {
		display:none;
	}
	
	.subfilter .filterBlockHolder.filterInnerBlock {
		padding:0px 1rem;
		margin:0px 1rem;
		max-height:300px;
	}
	
	.categoryBack {
		display:block;
		text-align:center;
	}
	
	.categoryBack span {
		font-size:1.1rem;
	}
	
	.prodListEmpty button {
		max-width:100%;
	}
}

@media (max-width: 600px) {
	.productCols {
		flex-direction: column;
	}
	
	.prodImgHolder {
		align-self:center;
	}
	
	.cookie_div {
		flex-direction: column;
    row-gap: 20px;
	}
	
	.prodDiscountStarHolder {
		top:-216px;
  	left:-9px;
	}
}

@media (max-width: 500px) {
	.carousel-indicators {
		bottom:0px;
		margin-bottom:0px;
	}
}

@media (max-width: 400px) {
	.searchBar {
		flex-wrap:wrap;
	}
	
	.searchBar > select {
		width:100%;
		padding: .6em 1.4em .5em .8em;
	}
}

/**************************************/

.box {
	box-shadow:0 1px 1px rgba(0,0,0,0.1);
	border-radius:2px;
	border:1px solid var(--c-red);
	border-top:3px solid var(--c-red-dark);
	padding:10px;
	background:#ffffff;
	overflow-x:auto;
}

.box_header {
	line-height:34px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}

.box_header .title {
	font-size:1.4em;
	font-family:'roboto_medium';
	font-style:italic;
}

.box_header > div {
	flex-grow:1;
}

.box_header .btnHolder {
	text-align:right;
}

.box_header .btnHolder a,
.box_header .btnHolder input {
	margin-left:5px;
}

.box-body {
	padding-top:10px;
}

.form-group {
	margin-bottom:10px;
}

.form-group > label > span{
	color:var(--c-red);
	margin-left:5px;
}

.form-control {
	display:block;
	width:100%;
	height:34px;
	padding:6px 12px;
	font-size:14px;
	line-height:1.42857143;
	color:var(--c-text);
	background-color:#ffffff;
	background-image:none;
	border:1px solid var(--c-bg-gray);
	-webkit-transition:border-color ease-in-out .3s,box-shadow ease-in-out .3s;
	-o-transition:border-color ease-in-out .3s,box-shadow ease-in-out .3s;
	-webkit-transition:border-color ease-in-out .3s,-webkit-box-shadow ease-in-out .3s;
	transition:border-color ease-in-out .3s,-webkit-box-shadow ease-in-out .3s;
	transition:border-color ease-in-out .3s,box-shadow ease-in-out .3s;
	transition:border-color ease-in-out .3s,box-shadow ease-in-out .3s,-webkit-box-shadow ease-in-out .3s;
}

.form-control[disabled] {
	background-color:#eeeeee;
	cursor:not-allowed;
}

.form-control:focus {
	border-color:var(--c-bg-darkgray);
	box-shadow:none;
	outline:0;
}

.form-control.error,
.form-control.error:focus {
	border:1px solid var(--c-red-dark);
}

.form-control:not(select) {
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
}

.form-control:not(.full)[type="date"] {
	width:200px;
}

textarea.form-control {
	resize:vertical;
	height:120px;
}

.input-group {
	position:relative;
	display:table;
	border-collapse:separate;
}

.input-group .form-control {
	position:relative;
	z-index:2;
	//float:left;
	width:100%;
	margin-bottom:0;
}

.input-group .form-control,
.input-group-btn {
	display: table-cell;
	vertical-align:middle;
}

.input-group-btn {
	width: 1%;
	white-space: nowrap;
	vertical-align: middle;
}

.form-year,
.form-time {
	display:inline-block;
	width:100px;
}

.form-time {
	width:65px;
}

/* TABS */

.tabHolder {
	display:flex;
	align-items:flex-end;
	margin-bottom:-1px;
	overflow-x:auto;
}

.tabHolder a {
	display:inline-block;
	padding:5px 12px 8px 12px;
	border:1px solid var(--c-red);
	border-top:3px solid var(--c-red);
	font-size:1rem;
	border-top-left-radius:5px;
	border-top-right-radius:5px;
	color:#ffffff;
	background:var(--c-red);
	text-decoration:none;
	white-space:nowrap;
	user-drag: none;
	-webkit-user-drag: none;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.tabHolder a:hover {
	background:var(--c-red-dark);
	border:1px solid var(--c-red-dark);
	border-top:3px solid var(--c-red-dark);
}

.tabHolder a.active {
	border:1px solid var(--c-red-dark);
	border-top:3px solid var(--c-red-dark);
	color:var(--c-text);
	background:#ffffff;
	border-bottom:1px solid #ffffff;
}

.tabHolder a.active:hover {
	color:var(--c-red-dark);
}

.tabPageHolder {
	border:1px solid var(--c-red-dark);
	padding:15px 10px 10px 10px;
}

/********** POPUP **********/

.popupLayer {
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	z-index:-1;
	background-color: rgba(105, 105, 105, 0.7);
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.popupWindow {
	display:inline-block;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	max-width:95%;
	max-height:95%;
	min-width:300px;
	box-shadow: 0 2px 3px rgba(0,0,0,0.125);
	padding:0px;
	overflow-x:hidden;
	overflow-y:auto;
	border-radius:5px;
}

.popupWindow .pwHead {
	
	padding:7px 9px;
	position:relative;
	//border-bottom:1px solid var(--c-bg-gray);
	cursor:move;
	
	font-size:1.3rem;
  font-family:'roboto_bold';
  //text-transform:uppercase;
  font-style:italic;
  display:flex;
  column-gap:20px;
  justify-content:space-between;
}

.popupWindow .pwHead a,
.popupWindow .pwHead span {
	align-self:center;
}

.popupWindow .pwHead a {
	display:inline-block;
	width:34px;
	height:34px;
	line-height:34px;
	text-align:center;
	color:var(--c-text);
}

.popupWindow .pwMessage {
	padding:7px 9px;
	background-color:#ffffff;
}

.popupWindow .pwFooter {
	padding:7px 9px;
	position:relative;
	//border-top:1px solid var(--c-bg-gray);
	background-color:#ffffff;
	text-align:right;
}

.popupWindow .pwFooter a {
	margin-left:6px;
	text-transform:uppercase;
	font-family:'roboto_medium';
}

/*************/
/* DATATABLE */
/*************/

.dtHolder {
	background:#ffffff;
	//padding:10px;
	padding:10px 0px;
	position:relative;
}

.dtHolder .filter label {
	font-weight:normal;
	white-space:nowrap;
}

.dtHolder .filter label .form-control {
	display:inline-block;
	width:auto;
	margin-left:0.5em;
}

.dataTableHolder {
	overflow-x:auto;
}

table.dataTable {
	border:1px solid #f4f4f4;
}

table.dataTable th {
	border-bottom:2px solid #f4f4f4;
}

table.dataTable th.sorting {
	cursor:pointer;
}

table.dataTable th.sorting:hover {
	background:#f4f4f4;
}

table.dataTable th a {
	font-size:14px;
	color:var(--c-text);
	display:block;
	position:relative;
	padding-right:20px;
}

table.dataTable th i {
	position:absolute;
	right:0px;
	top: 50%;
	transform: translateY(-50%);
}

table.dataTable th i.inactive {
	color:#d4d4d4;
}

table.dataTable th,
table.dataTable td {
	padding:8px;
	line-height:1.42857143;
	text-align:left;
	border-left:1px solid #f4f4f4;
	border-right:1px solid #f4f4f4;
}

table.dataTable th.btnCol,
table.dataTable td.btnCol{
	width:50px;
	text-align:center;
}

table.dataTable td label {
	font-weight:normal;
	margin:0px;
}

table.dataTable th.center,
table.dataTable td.center {
	text-align:center;
}

table.dataTable th.right,
table.dataTable td.right {
	text-align:right;
}

table.dataTable td.btnCol a i.fa-times {
	color:#aa0000;
}

table.dataTable td.btnCol a i.fa-edit {
	color:var(--c-bg-darkgray);
}

table.dataTable > tbody > tr:nth-child(2n+1 of .dtRow) {
	background-color:#f9f9f9;
}

table.dataTable > tbody > tr:hover {
	background-color:#e5e5e5 !important;
}

table.dataTable tr.dragrow td {
	background:#80AB78;
}

table.dataTable td.btnCol a, 
table.dataTable tr td .sorticon {
	width:20px;
	height:20px;
	display:inline-block;
}

table.dataTable.small th,
table.dataTable.small td {
	font-size:12px;
	padding:3px 2px;
	font-weight:normal;
}

table.dataTable.small tr.highlighted td {
	font-weight:bold;
}

.dtHolder .pagination {
	text-align:right;
	padding:5px 0px;
}

.dtHolder .pagination a {
	padding:6px 12px;
	margin-left:-1px;
	line-height:1.42857143;
	color:var(--c-text);
	text-decoration:none;
	background-color:#fafafa;
	border:1px solid #ddd;
	display:inline-block;
}

.dtHolder .pagination a.disabled {
	color:#777;
	cursor: not-allowed;
	background-color:#ffffff;
}

.dtHolder .pagination a.active {
	color:#fff;
	cursor: default;
	background-color:var(--c-red-dark);
	border-color:var(--c-red-dark);
}

.dtHolder .pagination a:not(.disabled):not(.active):hover {
	background-color:#eeeeee;
}

.dtHolder .dataTableModal {
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;
	z-index:2;
	background:rgba(1,55,98,0.2);
}

.loader {
	width:48px;
	height:48px;
	border:5px solid #FFF;
	border-bottom-color:transparent;
	border-radius:50%;
	display:inline-block;
	box-sizing:border-box;
	animation:rotation 1s linear infinite;
	position:relative;
	left:50%;
	top:50%;
	margin-top:-24px;
	margin-left:-24px;
}

@media (max-width:800px) {
	.nomobile {
		display:none;
	}
}

/************/
/* TREEGRID */
/************/

.treegrid {
	width:100%;
	height:100%;
	overflow:auto;
}

.treegrid table {
	width:100%;
	position:relative;
	border-collapse:separate;
}

.treegrid table tbody td {
	border:1px solid var(--c-bo-lightgray);
	padding:7px 10px 6px 10px;
}

.treegrid table thead tr th {
	background:var(--c-red-dark);
	border-bottom:1px solid var(--c-red-dark);
	border-left:1px solid var(--c-red-dark);
	border-right:1px solid var(--c-red-dark);
	color:#ffffff;
  position:sticky;
  top:0px;
  z-index:1;
  font-weight:normal;
  text-align:left;
  padding:4px 5px 2px 5px
}

.treegrid table thead tr th:not(.nh) {
	cursor:pointer;
}

.treegrid table thead tr th:not(.nh):hover {
	background:var(--c-red);
}

.treegrid tr.hidden {
	display:none;
}

.treegrid .tblSubHolder {
	padding:7px 0px 20px 0px
}

.treegrid table thead tr th:first-child,
.treegrid table tbody tr td:first-child {
	border-right:none;
	width:30px;
	text-align:center;
}

.treegrid table thead tr th:nth-child(2),
.treegrid table tbody tr td:nth-child(2) {
	border-left:none;
}

.treegrid table tbody tr:not(.sub):hover td {
	background:#e5e5e5;
}

.treegrid table tbody tr td a {
	cursor:pointer;
}

.treegrid table thead tr th div {
	position:relative;
}

.treegrid table thead tr th i {
	display:none;
	position:absolute;
	right:0px;
	top:2px;
}

.treegrid table thead tr th[data-ord="a"] i.fa-sort-up {
	display:inline-block;
}

.treegrid table thead tr th[data-ord="d"] i.fa-sort-down {
	display:inline-block;
}

.treegrid table th.btnCol,
.treegrid table td.btnCol {
	width:50px;
	text-align:center;
}

.treegrid table td.btnCol a i.fa-times,
.treegrid table td.btnColMulti a i.fa-times {
	color:#aa0000;
}

.treegrid table td.btnCol a i.fa-edit,
.treegrid table td.btnColMulti a i.fa-edit {
	color:var(--c-red-dark);
}

.treegrid table th.btnColMulti,
.treegrid table td.btnColMulti {
	text-align:center;
	white-space:nowrap;
}

.treegrid table td.btnColMulti {
	text-align:right;
}

.treegrid table td.btnColMulti a {
	padding:6px 12px;
}

/*************************/
.contentPadding {
	padding:0px 10px;
}

ul.breadcrumb {
	display:flex;
	margin:16px 0px;
	text-transform:uppercase;
	flex-wrap:wrap;
	row-gap:5px;
}

ul.breadcrumb li {
	line-height:22px;
	font-size:16px;
	line-height: 1.375rem;
	//white-space: nowrap;
}

ul.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 .25rem;
}

ul.breadcrumb a {
	color:var(--c-bg-darkgray);
}

ul.breadcrumb a:hover {
	color:var(--c-red);
	text-decoration:underline;
}

.contentInner {
	padding:10px 0px;
}

.content_k1 {
	float:left;
	width:35%;
}

.content_k1 img {
	width:100%;
	padding-right:10px;
	padding-bottom:10px;
}

.content_k2 img {
	width:100%;
	padding-top:10px;
	padding-bottom:10px;
}

@media (max-width: 640px) {
	.content_k1 {
		float:none;
		width:100%;
	}
	.content_k1 img {
		padding:0px;
	}
}

.galleryHolder {
	display:flex;
	flex-wrap:wrap;
	column-gap:1%;
	justify-content:center;
	row-gap:15px;
}

.galleryHolder a {
	width:24%;
	border:1px solid var(--c-red);
	padding:5px;
	font-size:0px;
}

.galleryHolder div {
	aspect-ratio:16/9;
	display:inline-block;
	text-align:center;
	font-size:0px;
}

.galleryHolder img {
	object-fit:cover;
	width:100%;
	height:100%;
}

.galleryHolder p {
	text-align:center;
	font-size:14px;
}

@media (max-width: 900px) {
	.galleryHolder a {
		width:49%;
	}
}

@media (max-width: 500px) {
	.galleryHolder a {
		width:100%;
	}
}

.newsHolder {
	margin-top:30px;
	margin-bottom:30px;
}

.newsHolder a {
	color:var(--c-red);
}

.newsHolder a.newsTitle {
	font-size: 1.75rem;
	line-height: 1.75rem;
}

.newsRow {
	display:flex;
	margin-top:5px;
}

.newsImage {
	max-width:200px;
}

.newsImage img {
	width:100%;
	padding-right:15px;
}


.cartPage {
	min-height:calc(100vh - 375px);
}

.cartHighlightedMsg {
	text-align:center;
	margin:1rem;;
	color:var(--c-red);
	font-size: 1.5rem;
  font-family: 'roboto_bold';
  text-transform: uppercase;
  font-style: italic;
}

.cartMsg {
	font-size: 1.5rem;
  font-family: 'roboto_bold';
  text-transform: uppercase;
  font-style: italic;
}

.cartSubMsg {
	font-family: 'roboto_bold';
}

.cartBtnHolder {
	margin:2rem 0px;
	display:flex;
	justify-content:space-between;
}

.cartSumRow {
	display:flex;
	padding:0.625rem 1.25rem;
	justify-content:flex-end;
	background-color:var(--c-bg-gray);
}

.cartSumRow.partSum {
	margin-bottom:30px;
}

.cartSumRow div {
	line-height: 1.5rem;
  margin-right: 0.75rem;
}

.cartSumRowPrice {
	font-size: 1.625rem;
	font-weight:bold;
}

.cartNormal {
	background:#316031;
	color:#ffffff;
	font-size:14px;
	text-align:center;
	height:30px;
	line-height:30px;
	font-weight:bold;
}

.cartOnlyOrder {
	background:#032447;
	color:#ffffff;
	font-size:14px;
	text-align:center;
	height:30px;
	line-height:30px;
	font-weight:bold;
}

.cartTbl {
	margin-bottom:20px;
}

.cartTblRow {
	display:flex;
	margin:1rem;
	border-bottom: 1px solid var(--c-bg-gray);
}

.cartImgHolder {
	flex-basis:9%;
	max-width:9%;
	display:block;
	order:1;
}

.cartImgHolder a {
	width:70px;
	height:70px;
	display:flex;
	align-items: center;
  justify-content: center;
}

.cartImgHolder a img {
	width:100%;
}

.cartNameHolder {
	flex-basis: 46%;
	max-width: 46%;
	display:flex;
	padding: 0px 1rem;
	align-items: center;
	font-size: 0.875rem;
  line-height: 1.25rem;
  order:2;
}

.cartNameHolder a:hover {
	text-decoration:underline;
}

.cartPriceHolder {
	flex-basis:15%;
	max-width:15%;
	display:flex;
	padding-right:0.9375rem;
	align-items:center;
  text-align:center;
  order:10;
}

.cartQtyHolder {
	flex-basis:10%;
	max-width:10%;
	display:flex;
	padding-right:0.9375rem;
	align-items:center;
  justify-content:start;
  order:10;
}

.cartQtyHolder div {
	white-space:nowrap;
	font-weight:bold;
}

.cartQty {
	border-radius:50%;
	margin-left:10px;
}

.cartDelHolder {
	display:flex;
	align-items:center;
	flex-basis:5%;
	max-width:5%;
	justify-content: end;
	order:10;
}

@media (max-width: 900px) {
	.cartNameHolder {
		flex-basis: 42%;
		max-width: 42%;
	}
	
	.cartPriceHolder {
		flex-basis:16%;
		max-width:16%;
	}
}

@media (max-width: 640px) {
	.cartTblRow {
		flex-wrap:wrap;
		margin:1rem 0;
		padding-bottom: 1rem;
		justify-content:end;
	}
	
	.cartImgHolder {
		flex-basis:16%;
		max-width:16%;
	}
	
	.cartNameHolder {
		flex-basis:74%;
		max-width:74%;
	}
	
	.cartDelHolder {
		order:3;
		flex-basis:10%;
		max-width:10%;
	}
	
	.cartPriceHolderPerPcs {
		display:none;
	}
	
	.cartPriceHolder {
		flex-basis:50%;
		max-width:50%;
		justify-content:end;
	}
	
	.cartQtyHolder {
		padding-left:1rem;
		flex-basis:34%;
		max-width:34%;
	}
	
	.cartSumRow {
		flex-wrap:wrap;
		justify-content:space-between;
	}
}

.orderTable {
	display:flex;
	justify-content:space-between;
	margin:1rem 0;
}

.orderBlock {
	width:47%;
	border:1px solid var(--c-red);
	padding:10px;
}

.shipCost {
	padding-left:5px;
}

@media (max-width: 800px) {
	.orderTable {
		flex-wrap:wrap;
		row-gap:30px;
	}
	
	.orderBlock {
		width:100%;
	}
}

.itemViewType {
	border-radius: 5px;
	bottom: 80px;
	color: #fff;
	display: block;
	font-size: 30px;
	height: 50px;
	line-height: 48px;
	position: fixed;
	right: 15px;
	text-align: center;
	transition: background-color 0.3s ease 0s, bottom 0.3s ease 0s;
	width: 50px;
	z-index: 10;
}

.itemViewType.nk {
	background:url(/images/vt_nk.png) no-repeat 50% 50% #404040;
}

.itemViewType.ve {
	background:url(/images/vt_ve.png) no-repeat 50% 50% #404040;
}