@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');

*,
 :focus {
	outline: none;
}

body,
html {
	width: 100%;
	height: 100%;
}

body {
	font-family: 'Rubik', sans-serif;
	margin: 0;
	font-weight: normal;
	color: var(--text);
	font-size: 14px;
	line-height: 1.5;
	padding: 0;
	overflow-x: hidden;
	background:  #FFFFFF;
}

a,
input[type=radio],
input[type=checkbox],
select {
	cursor: pointer;
}
p{
	color: var(--text);
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: .75rem;
	font-weight: 500;
}

a {
	color: var(--text);
	text-decoration: none;
	
}

a:focus,
a:hover {
	text-decoration: none;
	outline: none;
	color: #676767;	
}

.fa {
	font-size: 20px;
}

.fa-home:before {
    content: ' ';
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItaG9tZSI+PHBhdGggZD0iTTMgOWw5LTcgOSA3djExYTIgMiAwIDAgMS0yIDJINWEyIDIgMCAwIDEtMi0yeiI+PC9wYXRoPjxwb2x5bGluZSBwb2ludHM9IjkgMjIgOSAxMiAxNSAxMiAxNSAyMiI+PC9wb2x5bGluZT48L3N2Zz4=);
    background-position: center;
    width: 20px;
    height: 20px;
	display: block;
}

img,
figure {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	margin-top: 10px;
}

.img-thumbnail {
	border: none;
	  border-radius: 20px;
}

svg {
	max-width: 100%;
	vertical-align: middle;
}

div.required .control-label:before {
	content: '* ';
	color: #F00;
	font-weight: bold;
}

legend {
	font-size: 18px;
	padding: 7px 0px;
}

label {
	font-size: 12px;
	font-weight: normal;
}

select.form-control,
textarea.form-control,
input[type="text"].form-control,
input[type="password"].form-control,
input[type="datetime"].form-control,
input[type="datetime-local"].form-control,
input[type="date"].form-control,
input[type="month"].form-control,
input[type="time"].form-control,
input[type="week"].form-control,
input[type="number"].form-control,
input[type="email"].form-control,
input[type="url"].form-control,
input[type="search"].form-control,
input[type="tel"].form-control,
input[type="color"].form-control {
	font-size: 16px;
}

.input-group input,
.input-group select,
.input-group .dropdown-menu,
.input-group .popover {
	font-size: 12px;
}

.input-group .input-group-addon {
	font-size: 12px;
	height: 30px;
}


/* Fix some bootstrap issues */

span.hidden-xs,
span.hidden-sm,
span.hidden-md,
span.hidden-lg {
	display: inline;
}

/* navs */
.nav-tabs {
display: flex;
  align-items: none;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid black;
  background: none;
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
  margin-top: 20px;
	
}

.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
color: white;
  cursor: default;
  background-color: #00b787;
  border: none;
  border-radius: 5px;
  font-weight: 800;
  padding: 15px 30px 15px 30px;
  font-size: 16px;
  margin-right: 10px;
  margin-bottom: 5px;
  border: 1px solid #00b787;
  margin-left: 10px;
}

}

/*scrollbar*/

::-webkit-scrollbar {
	display: none
}

/* inputs */

::-webkit-input-placeholder {
	color:  var(--main3);
}

:-moz-placeholder {
	color:  var(--main3);
}

::-moz-placeholder {
	color:  var(--main3);
}

:-ms-input-placeholder {
	color:  var(--main3);
}

/* components */

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.m-auto {
	margin: auto;
}

.flex {
	display: flex;
}

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

#content {
	min-height: 700px;
	margin-bottom: 20px;
}

.title {
	color: black;
	font-weight: bolder;
	font-size: 20px;
	display: block;
	margin: 20px 20px 20px 20px;
	text-transform: uppercase;
}

/* breadcrumb */
.breadcrumb {
	float: none;
  background: #fff;
  padding: 10px;
  color: var(--text);
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: left;
  white-space: normal;
  }

.breadcrumb>li {
	padding: 0 12px;
	position: relative;
	white-space: nowrap;
}

.breadcrumb>li:first-child {
	padding-left: 0;
}

.breadcrumb>li+li:before {
	content: '';
	padding: 0;
}

.breadcrumb>li:after {
	content: '';
	display: block;
	position: absolute;
	top: 7px;
	right: -5px;
	width: 8px;
	height: 8px;
	opacity: 0.4;
	border-right: 1px solid var(--text);
	border-bottom: 1px solid var(--text);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.breadcrumb>li:last-child:after {
	display: none;
}

.breadcrumb>li>a {
	color: var(--text);
	opacity: 0.3;
}

.breadcrumb .active {
	cursor: no-drop;
	white-space: break-spaces;
	font-weight: bold;
}
/* pagination */
.pagination {
	margin: 20px 0px 20px 0px;
    border-radius: 10px;
}

.pagination>li>a,
.pagination>li>span {
	color: #4f5f6f;
	background: #dbe1e8;
	border: 1px solid #dbe1e8;
	padding: 12px 15px;
	margin-right: 5px;
    border-radius: 10px;
}
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
	color: var(--text2);
	background: var(--main);
	border: 1px solid var(--main);
	-webkit-transition: .3s ease-out;
	-webkit-transition-delay: 0.3s;
	-o-transition: .3s ease-out;
	-o-transition-delay: 0.3s;
	-moz-transition: .3s ease-out;
	-moz-transition-delay: 0.3s;
	transition: .3s ease-out;
	transition-delay: 0.3s;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
	color: var(--text2);
	background: var(--main);
	border: 1px solid var(--main);
	-webkit-transition: .3s ease-out;
	-webkit-transition-delay: 0.3s;
	-o-transition: .3s ease-out;
	-o-transition-delay: 0.3s;
	-moz-transition: .3s ease-out;
	-moz-transition-delay: 0.3s;
	transition: .3s ease-out;
	transition-delay: 0.3s;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
	border-bottom-left-radius: 2px;
	border-top-left-radius: 2px;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}

/* buttons */
.btn,
.btn:hover,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
	outline: none!important;
	
}

.btn-default,
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
	position: relative;
	color: var(--text2);
	text-align: center;
	border: none;
	background: var(--main);
}

.btn-default:after {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 0%;
	content: '.';
	color: transparent;
	background: var(--text);
	height: 1px;
}

.btn-default:hover:after {
	width: 100%;
	transition: all .5s;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	color: white;
	background-color: #ffd700;
	border-color: black;
	font-size: 18px;
}

.btn-primary:hover,

.btn-primary:active {
	color: black;
  border-color: #ecc700;
  text-transform: capitalize;
  transition: all 1.0s;
  box-shadow: 5px 5px 15px #ecc700;
	
		
}

#toTop {
	display: none;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 999;
	border: 2px solid var(--text2);
	outline: none;
	background-color: var(--main);
	color: var(--text);
	cursor: pointer;
	padding: 10px 12px;
}

.cart-close {
	font-size: 50px;
	color: red;
}

/* list group */

.list-group {
	
  background: #111;
  padding: 0px;
  border-radius: 10px;
  
  }


.list-group a {
 color: white;
  padding: 10px 0px 10px 20px;
  margin: 0px;
  border-left: 0px solid #ffc20f;
  font-size: 14px;
  border-bottom: 1px solid #424242;
  background: transparent;
  
  }

.list-group a.active,
.list-group a.active:hover,
.list-group a:hover {
  
  background: #ffc20f;
  color: white;
  font-weight: bold;
  
}

.list-group > a.active {
  color: black;
  border-left: 0px solid #ffc20f;
  background: #ffc20f;
   font-weight: bold;
  
}

/* list group - druha farba */

.list-group > a:nth-child(2n) {
	border-left: 0px solid #363636;
	background-color: transparent;
}
.list-group > a:nth-child(2n):hover {
  
     font-weight: bold;
   background: #ffc20f;
  color: white;
  
  
  
}
.list-group > a.active:nth-child(2n) {
  
  color: black;
  border-left: 0px solid #363636;
  background-color: #ffc20f;
	
}


/* list group - tretia farba */

.list-group > a:nth-child(3rd) {
	border-right: 0px solid #363636;
	background-color:  #CCC;
}
.list-group > a:nth-child(3rd):hover {
  
  border-left: 40px solid #ffc20f;
 
  text-transform: uppercase;
  
  transition: all 1.0s;
  background: black;
  color: white;
  
  
  
}
.list-group > a.active:nth-child(3rd) {
	color: white;
  border-left: 0px solid #ffea00;
  background-color: black;
  text-transform: uppercase;
  font-weight: bolder;
  transition: all 2.0s;
  border-right: 0px solid #ffea00;
  text-align: center;
	
}

/* main header*/
.stickyheader {
position: fixed;
z-index: 9998;
width: 100%;
background: linear-gradient(110deg, #ffa500 60%, #ffba00 60%);
box-shadow: 0px 1px 14px lightgray;
}

.header {
	min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
	margin: auto;
}
.header-menu>ul {
    display: flex;
    align-items: center;
    margin: -15px;
	flex-wrap: wrap;
	justify-content: center;
}
.header-menu>ul>li {
	position: relative;
	margin-bottom: 5px;
}
.header-menu>ul>li:hover .dropdown-menu {
	display: block;
}
.menu-link {
	padding: 5px;
    display: inline-block;
    font-weight: 500;
    height: 100%;
    font-size: 16px;
}
.header-menu>ul>li:hover>.menu-link:before,

.header-menu>ul>li:hover>.menu-link:after
{      
	text-transform: capitalize;
	font-size: 18px;
	font-weight: 900;
}
.menu-list {
	padding: 10px;
	background: #c3c3c3;
	text-transform: capitalize; 
	display: table-cell;
	
}
.menu-list>li {
	padding: 5px;
    min-width: 200px;
    font-size: 16px;
}
header button {
	background: none;
	box-shadow: none!important;
	padding: 0;
	border: none;
	margin: auto 5px;
	display: flex;
}

.logo {
	max-width: 150px;
	min-height: 40px;
	display: flex;
	align-items: center;
	flex: 150px;
	margin: 0 auto;
	justify-content: center;
}
/* menu */

.menu>li>a {
	position: relative;
	color: var(--text);
	text-transform: uppercase;
	font-size: 14px;
	padding: 0 0 5px 0;
	font-weight: 700;
	text-align: center;
	margin-right: 10px;
}

/*modal*/

.modal-block {
	position: absolute;
	right: 0;
	top: 0;
	width: 35%;
	min-height: 100vh;
	margin: 0;
	background: var(--text2);
	overflow: hidden;
	z-index: 9999;
}

.modal-close {
	color: var(--text);
	font-size: 40px;
	position: fixed;
	top: 10px;
	right: 10px;
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 3px 15px;
	z-index: 9999;
}

.menu-modal {
	width: 100%;
	padding: 80px 10% 0 10%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-modal input {
	width: 100%;
	font-size: 18px;
	border: none;
	border-bottom: 1px solid var(--text);
	outline: none;
	height: auto;
}

.menu-modal .btn {
	font-size: 18px;
	border: none;
	outline: none;
	height: auto;
	width: 100%;
}




/*modal*/

.modal-block {
	position: absolute;
	right: 0;
	top: 0;
	width: 35%;
	min-height: 100vh;
	margin: 0;
	background: var(--text2);
	overflow: hidden;
	z-index: 9999;
}

.modal-vyhladavanie {
  position: none;
  right: 0;
  width: none;
  background: transparent;
  /*overflow: hidden;*/
  z-index: 9999;
  display: block;
}


.modal-close {
	color: var(--text);
	font-size: 40px;
	position: fixed;
	top: 10px;
	right: 10px;
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 3px 15px;
	z-index: 9999;
}


.modal-zatvor {
	color: red;
  font-size: 100px;
  position: fixed;
  top: 25px;
  right: 10px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 3px 15px;
  z-index: 9999;
  display: none;
}

.menu-modal {
	width: 100%;
	padding: 80px 10% 0 10%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-modal input {
	width: 100%;
	font-size: 18px;
	border: none;
	border-bottom: 1px solid var(--text);
	outline: none;
	height: auto;
}

.menu-modal-vyhladavanie {
	width: 100%;
	padding: 5% 0% 0 0%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-modal-vyhladavanie input {
	width: 100%;
	font-size: 18px;
	border: 2px solid black;
	
	outline: none;
	height: auto;
	padding: 20px;
    border-radius: 10px;

}

.menu-modal-vyhladavanie .btn {
	font-size: 18px;
	border: none;
	outline: none;
	height: auto;
	width: 100%;
}

.menu-modal .btn {
	font-size: 18px;
	border: none;
	outline: none;
	height: auto;
	width: 100%;
}




/*.menu-right */
.menu-right {
	display: flex;
	align-items: center;
	justify-content: end;
}
.menu-right>li {
	margin-left: 5px;
}


/* language/curency */ 
.lang {
display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: var(--text);
    white-space: nowrap;
	}

/*search*/
#search button {
	position: absolute;
	right: 2%;
	background: transparent;
	margin: 0px auto;
	border: none;
	box-shadow: none;
}

.search-block {
	width: 100%;
  overflow-y: none;
  max-height: 70vh;
  margin-top: 0%;
  background-color: transparent;
  box-shadow: none;

}

.search-block li {
	border: 1px solid black;
  display: flex;
  width: 100%;
  background-color: white;
  margin: 2px;
  border-radius: 10px;
  padding: 5px;
}

.search-block a.search-link {
	padding-right: 6px;
}

.search-block li a {
	color: var(--text);
	display: contents;
	vertical-align: middle;
	padding: 6px 2px 1px 5px;
	font-size: 14px;
	white-space: break-spaces;
}

.search-link {
	width: 100%;
	padding-right: 5px;
}

.search-link img {
	max-width: 30px;
}

/* cart */
#cart-total {
	background: black;
	border-radius: 150px;
	color: var(--text2);
	padding: 2px 8px;
	font-size: 12px;
	margin-left: 3px;
	line-height: 20px;
	width: 24px;
    height: 24px;
}

.cart-block {
	top: 80px;
	right: 0;
	width: 100%;
	left: auto;
	padding: 0;
}

.cart-text {
	margin-top: 80px;
}

.cart-table img {
	height: 100px;
	width: 100px;
	display: none;
}

.cart-table>tbody>tr>td,
.cart-table>tbody>tr>th,
.cart-table>tfoot>tr>td,
.cart-table>tfoot>tr>th,
.cart-table>thead>tr>td,
.cart-table>thead>tr>th {
	vertical-align: middle;
	border-top: none;
}

.cart-total tbody tr {
	display: none;
}

.cart-total tbody tr:last-child {
	display: flex;
	justify-content: center;
	font-size: 30px;
    background: wheat;
    border-radius: 10px;
}

.cart-total tbody tr td {
	border: none;
}

/*category */
.subcategory {
   width: 100%;
  text-align: center;
  margin-bottom: 50px;
  border-radius: 10px;
	
}
.subcategory .btn {
 margin-bottom: 10px;
  padding: 10px 5px 10px 5px;
  border-radius: 5px;
  width: 142px;
  background: #009ca6;
  border: 0px solid whitesmoke;
  color: white;
  font-size: 13px;
  
}





.subcategory .btn:hover,

.subcategory .btn:active {
	color: #000;
    background: #ffc20f;
    transition: all 0.9s;
    box-shadow: none;
	
		
}




.product-list .image{
	display: block;
}



/* product list */

.product-thumb {
	margin-bottom: 15px;
  overflow: auto;
  background: white;
  border-radius: 10px;
  border: 0px solid #f5f5f5;
  box-shadow: 0px 0px 30px 5px #F1F1F1;
}
.product-thumb:hover{
	box-shadow: 0 0 20px 0 black;
  transition: all 0.5s ease-in-out;
  border: 0px solid #c3c3c3;
  transform: scale(1.04);
}

.product-thumb .image {
	text-align: center;
}

.product-thumb .image a {
	display: block;
	position:relative;
}

.product-thumb .image a:hover {
	opacity: 0.8;
	
}

.product-thumb .image img {
	margin-left: auto;
	margin-right: auto;
}

.product-thumb .caption {
	min-height: 150px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 22px;
}
.product-thumb .caption>h4 {
  width: 100%;
  background: #fff;
  height: 100px;
  margin: 0px;
  padding: 10px;
  display: flex;
  align-items: center;
  text-align: center;
  border-radius: 10px;
	
}
.product-thumb .caption>h4>a{
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: stable;
  font-size: 15px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: #000;
}
.product-thumb .caption>p {
	display: none;
	order: 3;
	max-width: 100%;
}

/* cena v kategorií */

.product-thumb .caption>.price {
  order: 2;
  background: #e9e9e9;
  color: #000;
  width: 5%;
  flex: 0px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 7.5px;
  position: relative;
  font-size: 25px;
  font-weight: bold;

}




.price-new {
	
  position: absolute;
  top: -30px;
  color: black;
  
  background: greenyellow;
  width: 35%;
  display: flex;
  justify-content: center;
  border-radius: 10px;
  padding: 5px;
  font-size: 32px;
  border: 2px solid black;
  
}


.price-old {
	position: absolute;
  top: -17px;
  color: #000;
  text-decoration: line-through;
  background: #fff;
  width: 100px;
  display: flex;
  justify-content: center;
  border-radius: 10px 10px 0px 10px;
  padding: 5px;
  display: none;
}

.price-tax {
	display: none;
}

.product-thumb .button-group {
	margin-top: -19px;
	overflow: auto;
	border-radius: 0px;
}

.product-thumb .button-group button {
	width: 100%;
	border: none;
	display: inline-block;
	float: right;
	line-height: 40px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	background: #ffc20f;
	font-weight: 300;
	color: #000;
	font-weight: 900;
	line-height: 60px;
}
.product-thumb .button-group button>span{
	margin-left: 5px
}
.product-thumb .button-group button>svg{
	margin-top: -3px
}

.product-thumb .button-group button+button {
	width: 10%;
	background: black;
	display: none;
}

.product-thumb .button-group button:hover {
	text-decoration: none;
  cursor: pointer;
  background: black;
  transition: all 1.0s;
  color: white;
}

@media (max-width: 1200px) {
	.product-thumb .button-group button,
  .product-thumb .button-group button+button {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.product-thumb .button-group button,
  .product-thumb .button-group button+button {
		width: 100%;
	}
}

.nostock {
	filter: grayscale(1);
	opacity:0.8;
}

.nobuy {
	background: #777!important;
}
/* a-block */
.a-block {
	background: var(--main3);
	margin: 30px auto;
	padding: 20px;
}
.a-block .title{
	text-align: center
}
.a-block1 {
	display: flex;
    align-items: center;
	flex-direction: column;
	background: var(--main3);
	margin: 20px auto;
}
.a-block1>div {
	display: flex;
    flex-direction: column;
	margin-top: 10px;
}
.a-block1 h4 {
	color: var(--text);
	font-weight: 600;
	display: block;
	font-size: 20px;
	margin: 0 auto 20px auto;
	text-transform: uppercase;
}
.a-block2 {
	display: flex;
    align-items: center;
	background: var(--main3);
	margin: 20px auto;
}
.a-block2>div {
	margin-left: 10px;
}
.a-block2 h4 {
	color: var(--text);
	font-weight: 600;
	display: block;
	font-size: 20px;
	margin: 0 auto 20px auto;
	text-transform: uppercase;
}
/*product*/ 

.thumbnails {
	overflow: auto;
	clear: both;
	list-style: none;
	padding: 0;
	margin: 0;
	margin-left: -20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	border-radius: 10px;
}

.thumbnails>li {
	margin-left: 20px;
}

.thumbnails>img {
	width: 100%;
}

.image-main {
	flex: 100%;
}

.thumbnails .image-additional {
	float: left;
	margin-left: 20px;
	max-width: 78px;
}

.image-additional a {
	margin-bottom: 20px;
	padding: 5px;
	display: block;
	border: 1px solid #ddd;
}

.plus-minus {
	max-width: 160px;
	
}

.plus-minus .btn {
	padding: 20px 10px 20px 10px;
  background: #ffd700;
  border-color: black;
  width: 40px;
  margin: 0px;
}

.plus-minus input {
	min-height: 55px;
}

/* footer */ 
footer {
	padding: 20px 0;
	background: linear-gradient(110deg, #ffba00 10%, #000 0%);
	box-shadow: 0px 0px 0px 0px #ffba00;
	text-align: center;
	margin-top: 25px;
}

footer a {
	color: #fff;
}
footer a:hover {
	color: #ffba00;
}

.footer-title {
	font-weight: 700;
	  color: orange;
}


.footer-archanjel {
     color: white;

}

/* fixed product layouts used in left and right columns */

#column-left .product-layout,
#column-right .product-layout {
	width: 100%;
}

/*media*/

@media (min-width: 1200px) {
	#content .col-lg-2:nth-child(6n+1),
  #content .col-lg-3:nth-child(4n+1),
  #content .col-lg-4:nth-child(3n+1),
  #content .col-lg-6:nth-child(2n+1) {
		clear: left;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	#content .col-md-2:nth-child(6n+1),
  #content .col-md-3:nth-child(4n+1),
  #content .col-md-4:nth-child(3n+1),
  #content .col-md-6:nth-child(2n+1) {
		clear: left;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	#content .col-sm-2:nth-child(6n+1),
  #content .col-sm-3:nth-child(4n+1),
  #content .col-sm-4:nth-child(3n+1),
  #content .col-sm-6:nth-child(2n+1) {
		clear: left;
	}
}


/* fixed colum left + content + right*/

@media (min-width: 768px) {
	#column-left .product-layout .col-md-3 {
		width: 100%;
	}

	#column-left+#content .product-layout .col-md-3 {
		width: 50%;
	}

	#column-left+#content+#column-right .product-layout .col-md-3 {
		width: 100%;
	}

	#content+#column-right .product-layout .col-md-3 {
		width: 100%;
	}
}

@media (max-width: 991px) {
	#mob-menu-close {
	position: absolute;
    top: 10px;
    right: 10px;
    font-size: 50px;
    color: red;
	}
	.header-menu {
	position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    min-height: 70vh;
    background: wheat;
    padding: 10px;
	opacity: 0.9;
	}
	.showing {
	display: flex;
	align-items: center;
    justify-content: center;
    flex-direction: column;
	}
	.header-menu>ul {
	align-items: center;
    justify-content: center;
    flex-direction: column;
	}
	.header-menu>ul>li:hover .dropdown-menu {
	display: none;
	}
}
@media (max-width: 500px) {
	.header {
		flex-direction: column;
		justify-content: center;
	}
	.logo {
		max-width: 100%;
		margin-bottom: 10px;
	}
	.modal-block {
		width: 100%;
	}
	.menu-right {
	display: flex;
	align-items: center;
	justify-content: space-between; 
	margin-bottom: 15px;
	}
	}
	
	/* cena-v produkte*/
	
.price-product {
	color: red;
	font-weight: bolder;
	font-size: 40px;
	display: block;
	margin: auto;
		
}






/* mvf tabs */
.nav-tabs-mvf {
	margin: 20px auto;
	display: flex;
	align-items: center;
	justify-content: start;
	flex-wrap: wrap;
	border: none;
	background: #ffd45e;
	justify-content: center;
        border-radius: 10px;
	
}

.nav-tabs-mvf-pouzite {
	margin: 20px auto;
	display: flex;
	align-items: center;
	justify-content: start;
	flex-wrap: wrap;
	border: none;
	background: #ffd45e;
	padding: 18px;
	justify-content: center;
    border-radius: 10px;
	
}


.tabulka-vypis

{
  background: #ffc20f;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
	
}

.tabulka-pouzite
{
  margin: 0px;
  background: white;
  border-radius: 10px;
  }
  
.popis-produktu

{
padding: 25px;
  background: #f5f5f5;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  margin-top: 10px;
  font-size: 16px;
  
  }
  
.product-info,
.product-price
{
  padding: 20px;
   
  }
  
  
.suvisiaci-produkt
{
  margin-bottom: 50px;
  background: none;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 30px;
   
  }

.dostupnost
{ 
background: #FF7070;
margin-left: 20px;
padding: 10px;
border-radius: 10px;
width: 80%;
font-size: 16px;"  }


.tovar-nie-je-mozne-vratit
{ 
width: 57%;
  margin-left: 20px;  }

.rychly-filter
{ 
background: #000;
margin-left: 20px;
padding: 10px;
font-size: 16px;"  }