:root {
	--main-color: #552682;
}

*,
 :focus {
	outline: none;
}

body,
html {
	overflow-x: hidden;
	height: 100%;
	max-width: 100%;
}

body {
	margin: 0;
	font-weight: normal;
	color: #2d2a38;
	font-size: 14px;
	background: #E5E5E5;
	line-height: 1.5;
	padding: 0;
}

a,
input[type=radio],
input[type=checkbox],
select {
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: .75rem;
	font-weight: 500;
}

a {
	font-family: 'Montserrat', sans-serif;
	color: #000;
	font-size: 14px;
	text-decoration: none;
	-webkit-transition: color 0.25s ease-in-out;
	-o-transition: color 0.25s ease-in-out;
	transition: color 0.25s ease-in-out;
}

a:focus,
a:hover {
	text-decoration: none;
	outline: none;
	-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;
}

.fa {
	font-size: 20px;
}

img,
figure {
	max-width: 100%;
	height: auto;
	vertical-align: middle
}

.img-thumbnail {
	border: none;
}

svg {
	max-width: 100%
}

.nav-tabs {
	margin: 20px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

div.required .control-label:before {
	content: '* ';
	color: #F00;
	font-weight: bold;
}

.close {
	font-size: 40px;
}

hr {
	margin: 10px;
	border-bottom: 2px solid var(--main-color);
	width: 100%
}

/*scrollbar*/

 ::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

 ::-webkit-scrollbar-track {
	background-color: #9699a2;
}

 ::-webkit-scrollbar-thumb {
	background-color: #5c6882;
	border-radius: 10px;
}

 ::-webkit-scrollbar-thumb:hover {
	background-color: #555
}

::-moz-selection {
	background: #4e54c81f;
}

::selection {
	background: #4e54c81f;
}

::-moz-selection {
	background: #4e54c81f;
}

::-moz-focus-outer,
::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/* inputs */

::-webkit-input-placeholder {
	text-align: center;
}

:-moz-placeholder {
	text-align: center;
}

::-moz-placeholder {
	text-align: center;
}

:-ms-input-placeholder {
	text-align: center;
}

::-webkit-input-placeholder {
	color: #2d2a38;
}

:-moz-placeholder {
	color: #2d2a38;
}

::-moz-placeholder {
	color: #2d2a38;
}

:-ms-input-placeholder {
	color: #2d2a38;
}

.form-control {
	min-height: 60px
}

/* title */

.title {
	font-size: 30px;
	font-weight: 900;
	line-height: 35px;
	color: var(--main-color);
	text-align: center;
	margin-bottom: 20px;
}

.big-title span {
	font-weight: 900;
	font-size: 48px;
	line-height: 45px;
	color: var(--main-color);
}

.big-title {
	font-weight: 300;
	font-size: 48px;
	line-height: 45px;
	color: var(--main-color);
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

/* components */

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
	color: #fff;
	background: var(--main-color);
}

.m-auto {
	margin: auto
}

.flex {
	display: flex;
}

.img-rounded {
	border-radius: 15px;
	padding: 0;
	margin: 10px;
}

.gallery {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
}

#content {
	min-height: 700px;
	margin-bottom: 20px
}

.container {
	width: calc(100% - 95px);
	padding: 0;
}

/*alert*/

.alert {
	margin: 30px 0;
	border-radius: 2px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	max-width: 250px;
	z-index: 9999;
}

.alert i {
	margin-top: 2px;
}

.alert h4 {
	margin-bottom: 10px;
	font-weight: bold;
}

.alert-dismissable .close {
	color: black;
}

.alert-info,
.alert-warning,
.alert-success {
	color: #7e8e9f;
	background-color: #d9dee4;
	border-color: #d9dee4;
}

.close {
	position: absolute;
	top: 2px;
	right: 10px;
	color: #434a54;
	text-shadow: none;
	opacity: 1;
}

.alert a:hover,
.close:hover {
	opacity: 1;
	-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*/

.pagination {
	margin: 0;
	border-radius: 0px;
}

.pagination>li>a,
.pagination>li>span,
.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
	color: #000;
	background: transparent;
	border: none;
	padding: 12px 15px;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
	border-bottom: 2px solid var(--main-color);
	color: #000;
	background: transparent;
	padding: 14px 15px 10px 15px;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
	border-bottom-left-radius: 0px;
	border-top-left-radius: 0px;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
}

/*btn*/

.btn {
	text-align: center;
	border: 0;
	position: relative;
	box-shadow: none;
	outline: none!important;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	display: block;
	max-width: fit-content;
	border-radius: 0;
}

.btn:hover,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.btn-primary {
	padding: .5em 2em;
	font-weight: 900;
	height: 55px;
	font-size: 20px;
	background: transparent!important;
	color: var(--main-color)!important;
	box-shadow: none!important;
	border: 2px solid var(--main-color);
}

.btn-default {
	background: var(--main-color);
	border: 2px solid var(--main-color);
	height: 55px;
	padding: .5em 2em;
	font-weight: 900;
	font-size: 20px;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	-webkit-transition: color 0.5s, background 0.5s;
	-moz-transition: color 0.5s, background 0.5s;
	-o-transition: color 0.5s, background 0.5s;
	transition: color 0.5s, background 0.5s;
}

.btn-default:hover,
.btn-default:active,
.btn-default.active,
.btn-default.disabled,
.btn-default[disabled] {
	background: #fff;
	color: var(--main-color);
	border: 2px solid var(--main-color);
	text-decoration: none;
}

.btn-link {
	padding: .5em 2em;
	font-weight: 900;
	height: 55px;
}

#toTop {
	position: fixed;
	bottom: 0;
	right: 10px;
	z-index: 909;
	border: none;
	outline: none;
	background-color: #555;
	color: white;
	cursor: pointer;
	padding: 10px 15px;
	border-radius: 0;
	font-size: 18px;
	opacity: .6;
}

#toTop:hover {
	background-color: #000;
	opacity: 1;
}

/*header*/

header {
	position: fixed;
	background: #fff;
	left: 0;
	top: 0;
	height: 100%;
	display: flex;
	z-index: 10;
	flex-direction: column;
	justify-content: space-between;
	padding: 15px 5px;
	width: 95px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.main-block {
	width: calc(100% - 95px);
	margin-left: 95px;
}

.logo {
	margin-bottom: 20px;
}

header .fa {
	font-size: 28px;
	color: var(--main-color)
}

#cart-block>span {
	position: absolute;
	color: var(--main-color);
	top: 0;
	z-index: 99;
}

.menu-footer {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.menu-footer span {
	font-size: 14px;
	font-weight: 800;
	color: var(--main-color);
	word-break: break-all;
	width: 24px;
	display: block;
}

.menu-block {
	position: absolute;
	height: 100%;
	background: white;
	width: 250px;
	padding-left: 20px;
	padding-right: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	-webkit-transition: left 1s;
	-moz-transition: left 1s;
	-o-transition: left 1s;
	transition: left 1s;
	left: -100%;
	top: 0;
	z-index: 9
}

.menu-block a,
.language-select,
.currency-select {
	font-weight: 900;
	font-size: 16px;
	line-height: 23px;
	color: var(--main-color);
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	text-align: left
}

.lang {
	display: flex;
	flex-direction: column;
}

.search-block,
#cart {
	position: absolute;
	height: 100%;
	background: white;
	width: calc(100% - 95px);
	padding-left: 20px;
	padding-right: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	-webkit-transition: left 1s;
	-moz-transition: left 1s;
	-o-transition: left 1s;
	transition: left 1s;
	left: -100%;
	z-index: 9
}

.left-show {
	left: 95px!important;
}

.icon:before {
	content: "\f00d"
}

#search {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#search input {
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 2px solid var(--main-color);
	margin-bottom: 40px;
	width: 80%;
	text-align: center;
	font-size: 20px;
}

#cart {
	position: fixed;
	height: 100%;
	background: white;
	width: calc(100% - 95px);
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	-webkit-transition: left 1s;
	-moz-transition: left 1s;
	-o-transition: left 1s;
	transition: left 1s;
	left: -100%;
	top: 0;
	z-index: 9
}

#cart ul {
	margin: 20px;
	overflow-y: auto;
	overflow-x: hidden;
}

/*slider-main */

.slide {
	width: 100%;
	margin: auto;
}

.slider-main {
	width: calc(100% + 30px);
	padding: 0;
	margin: 0 -15px 50px -15px;
}

.slider-main-item {
	min-height: 560px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 0;
	margin: 0;
}

/* category-wall */

.category-wall {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-around;
}

.category-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 479px;
	margin-bottom: 18px;
	color: white;
	overflow: hidden;
	width: calc(50% - 18px);
	border-radius: 25px;
}

.category-item:before {
	background-color: rgba(0, 0, 0, 0.3);
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 0;
	z-index: 1;
	-webkit-transition: opacity 0.4s;
	-moz-transition: opacity 0.4s;
	-o-transition: opacity 0.4s;
	transition: opacity 0.4s;
}

.category-item a>img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	object-fit: cover;
}

.category-item:hover a>img {
	transform: scale(1.1);
}

.category-item:hover::before {
	opacity: 1;
}

.category-item a>span {
	position: relative;
	z-index: 2;
	font-weight: 900;
	font-size: 40px;
	background: var(--main-color);
	padding: 10px 20px;
	color: #fff;
}

/* product-list */

.product-list {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.product-block {
	width: 32%;
	overflow: hidden;
	margin-bottom: 18px;
	border-radius: 25px;
}

.image {
	position: relative;
	height: 402px;
	overflow: hidden;
}

.image:before {
	position: absolute;
	z-index: 1;
	content: "";
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: opacity 0.4s;
	-moz-transition: opacity 0.4s;
	-o-transition: opacity 0.4s;
	transition: opacity 0.4s;
	background-color: rgba(0, 0, 0, 0.3);
}

.product-block:hover .image:before {
	opacity: 1;
}

.image>img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.product-block:hover .image>img {
	transform: scale(1.1);
}

.caption {
	background: white;
	padding: 25px;
}

.caption>h4 {
	font-weight: 900;
	font-size: 24px;
	color: var(--main-color);
	min-height: 55px;
	text-align: center
}

.price {
	padding: 5px 10px;
	text-align: center;
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	width: 100%;
}

.price-new {
	font-size: 20px;
	color: red;
}

.price-old {
	font-size: 16px;
	text-decoration: line-through;
}

/*footer*/

footer {
	padding: 40px 0;
	background-color: var(--main-color);
	color: #fff
}

footer a {
	color: #fff
}

/*category*/

.title-category {
	width: 100%;
	min-height: 250px;
	background-color: var(--main-color);
	color: #fff;
	font-size: 40px;
	font-weight: 900;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	padding: 20px;
	margin: 0;
}

/*product */

.thumbnails {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.thumbnails>.thumbnail,
.image-additional {
	width: calc(50% - 18px);
}

.thumbnail {
	background: transparent;
	border: none;
}

.thumbnail>img {
	border-radius: 25px;
}

.image-additional {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex-wrap: wrap
}

.image-additional>.thumbnail {
	max-width: 40%;
}

/*media*/

@media (min-width: 1200px) {
	#content .col-lg-2:nth-child(6n+1),
	#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-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-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-thumb .col-md-3 {
		width: 100%;
	}
	#column-left+#content .product-thumb .col-md-3 {
		width: 50%;
	}
	#column-left+#content+#column-right .product-thumb .col-md-3 {
		width: 100%;
	}
	#content+#column-right .product-thumb .col-md-3 {
		width: 100%;
	}
	.product-list .product-thumb .image {
		float: left;
		padding: 0 15px;
	}
}

@media (max-width: 991px) {
	.product-block {
		width: calc(50% - 9px);
	}
}

@media (max-width: 768px) {
	header {
		width: 60px;
	}
	header .btn-link {
		padding: 5px;
		margin: auto
	}
	.menu-top,
	.menu-center {
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
	.flex {
		flex-wrap: wrap;
	}
	.search-block,
	#cart,
	.container,
	.main-block {
		width: calc(100% - 60px);
	}
	.main-block {
		margin-left: 60px;
	}
	.left-show {
		left: 60px!important;
	}
	.thumbnails {
		flex-direction: column
	}
	.product-block,
	.category-item,
	.thumbnails>.thumbnail,
	.image-additional {
		width: 100%;
	}
	.img-thumbnail {
		min-height: 50px;
	}
}


}:root {
	--main-color: #552682;
}

*,
 :focus {
	outline: none;
}

body,
html {
	overflow-x: hidden;
	height: 100%;
	max-width: 100%;
}

body {
	margin: 0;
	font-weight: normal;
	color: #2d2a38;
	font-size: 14px;
	background: #E5E5E5;
	line-height: 1.5;
	padding: 0;
}

a,
input[type=radio],
input[type=checkbox],
select {
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: .75rem;
	font-weight: 500;
}

a {
	font-family: 'Montserrat', sans-serif;
	color: #000;
	font-size: 14px;
	text-decoration: none;
	-webkit-transition: color 0.25s ease-in-out;
	-o-transition: color 0.25s ease-in-out;
	transition: color 0.25s ease-in-out;
}

a:focus,
a:hover {
	text-decoration: none;
	outline: none;
	-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;
}

.fa {
	font-size: 20px;
}

img,
figure {
	max-width: 100%;
	height: auto;
	vertical-align: middle
}

.img-thumbnail {
	border: none;
}

svg {
	max-width: 100%
}

.nav-tabs {
	margin: 20px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

div.required .control-label:before {
	content: '* ';
	color: #F00;
	font-weight: bold;
}

.close {
	font-size: 40px;
}

hr {
	margin: 10px;
	border-bottom: 2px solid var(--main-color);
	width: 100%
}

/*scrollbar*/

 ::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

 ::-webkit-scrollbar-track {
	background-color: #9699a2;
}

 ::-webkit-scrollbar-thumb {
	background-color: #5c6882;
	border-radius: 10px;
}

 ::-webkit-scrollbar-thumb:hover {
	background-color: #555
}

::-moz-selection {
	background: #4e54c81f;
}

::selection {
	background: #4e54c81f;
}

::-moz-selection {
	background: #4e54c81f;
}

::-moz-focus-outer,
::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/* inputs */

::-webkit-input-placeholder {
	text-align: center;
}

:-moz-placeholder {
	text-align: center;
}

::-moz-placeholder {
	text-align: center;
}

:-ms-input-placeholder {
	text-align: center;
}

::-webkit-input-placeholder {
	color: #2d2a38;
}

:-moz-placeholder {
	color: #2d2a38;
}

::-moz-placeholder {
	color: #2d2a38;
}

:-ms-input-placeholder {
	color: #2d2a38;
}

.form-control {
	min-height: 60px
}

/* title */

.title {
	font-size: 30px;
	font-weight: 900;
	line-height: 35px;
	color: var(--main-color);
	text-align: center;
	margin-bottom: 20px;
}

.big-title span {
	font-weight: 900;
	font-size: 48px;
	line-height: 45px;
	color: var(--main-color);
}

.big-title {
	font-weight: 300;
	font-size: 48px;
	line-height: 45px;
	color: var(--main-color);
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

/* components */

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
	color: #fff;
	background: var(--main-color);
}

.m-auto {
	margin: auto
}

.flex {
	display: flex;
}

.img-rounded {
	border-radius: 15px;
	padding: 0;
	margin: 10px;
}

.gallery {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
}

#content {
	min-height: 700px;
	margin-bottom: 20px
}

.container {
	width: calc(100% - 95px);
	padding: 0;
}

/*alert*/

.alert {
	margin: 30px 0;
	border-radius: 2px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	max-width: 250px;
	z-index: 9999;
}

.alert i {
	margin-top: 2px;
}

.alert h4 {
	margin-bottom: 10px;
	font-weight: bold;
}

.alert-dismissable .close {
	color: black;
}

.alert-info,
.alert-warning,
.alert-success {
	color: #7e8e9f;
	background-color: #d9dee4;
	border-color: #d9dee4;
}

.close {
	position: absolute;
	top: 2px;
	right: 10px;
	color: #434a54;
	text-shadow: none;
	opacity: 1;
}

.alert a:hover,
.close:hover {
	opacity: 1;
	-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*/

.pagination {
	margin: 0;
	border-radius: 0px;
}

.pagination>li>a,
.pagination>li>span,
.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
	color: #000;
	background: transparent;
	border: none;
	padding: 12px 15px;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
	border-bottom: 2px solid var(--main-color);
	color: #000;
	background: transparent;
	padding: 14px 15px 10px 15px;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
	border-bottom-left-radius: 0px;
	border-top-left-radius: 0px;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
}

/*btn*/

.btn {
	text-align: center;
	border: 0;
	position: relative;
	box-shadow: none;
	outline: none!important;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	display: block;
	max-width: fit-content;
	border-radius: 0;
}

.btn:hover,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.btn-primary {
	padding: .5em 2em;
	font-weight: 900;
	height: 55px;
	font-size: 20px;
	background: transparent!important;
	color: var(--main-color)!important;
	box-shadow: none!important;
	border: 2px solid var(--main-color);
}

.btn-default {
	background: var(--main-color);
	border: 2px solid var(--main-color);
	height: 55px;
	padding: .5em 2em;
	font-weight: 900;
	font-size: 20px;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	-webkit-transition: color 0.5s, background 0.5s;
	-moz-transition: color 0.5s, background 0.5s;
	-o-transition: color 0.5s, background 0.5s;
	transition: color 0.5s, background 0.5s;
}

.btn-default:hover,
.btn-default:active,
.btn-default.active,
.btn-default.disabled,
.btn-default[disabled] {
	background: #fff;
	color: var(--main-color);
	border: 2px solid var(--main-color);
	text-decoration: none;
}

.btn-link {
	padding: .5em 2em;
	font-weight: 900;
	height: 55px;
}

#toTop {
	position: fixed;
	bottom: 0;
	right: 10px;
	z-index: 909;
	border: none;
	outline: none;
	background-color: #555;
	color: white;
	cursor: pointer;
	padding: 10px 15px;
	border-radius: 0;
	font-size: 18px;
	opacity: .6;
}

#toTop:hover {
	background-color: #000;
	opacity: 1;
}

/*heder*/

header {
	position: fixed;
	background: #fff;
	left: 0;
	top: 0;
	height: 100%;
	display: flex;
	z-index: 10;
	flex-direction: column;
	justify-content: space-between;
	padding: 15px 5px;
	width: 95px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.main-block {
	width: calc(100% - 95px);
	margin-left: 95px;
}

.logo {
	margin-bottom: 20px;
}

header .fa {
	font-size: 28px;
	color: var(--main-color)
}

#cart-block>span {
	position: absolute;
	color: var(--main-color);
	top: 0;
	z-index: 99;
}

.menu-footer {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.menu-footer span {
	font-size: 14px;
	font-weight: 800;
	color: var(--main-color);
	word-break: break-all;
	width: 24px;
	display: block;
}

.menu-block {
	position: absolute;
	height: 100%;
	background: white;
	width: 250px;
	padding-left: 20px;
	padding-right: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	-webkit-transition: left 1s;
	-moz-transition: left 1s;
	-o-transition: left 1s;
	transition: left 1s;
	left: -100%;
	top: 0;
	z-index: 9
}

.menu-block a,
.language-select,
.currency-select {
	font-weight: 900;
	font-size: 16px;
	line-height: 23px;
	color: var(--main-color);
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	text-align: left
}

.lang {
	display: flex;
	flex-direction: column;
}

.search-block,
#cart {
	position: absolute;
	height: 100%;
	background: white;
	width: calc(100% - 95px);
	padding-left: 20px;
	padding-right: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	-webkit-transition: left 1s;
	-moz-transition: left 1s;
	-o-transition: left 1s;
	transition: left 1s;
	left: -100%;
	z-index: 9
}

.left-show {
	left: 95px!important;
}

.icon:before {
	content: "\f00d"
}

#search {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#search input {
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 2px solid var(--main-color);
	margin-bottom: 40px;
	width: 80%;
	text-align: center;
	font-size: 20px;
}

#cart {
	position: fixed;
	height: 100%;
	background: white;
	width: calc(100% - 95px);
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	-webkit-transition: left 1s;
	-moz-transition: left 1s;
	-o-transition: left 1s;
	transition: left 1s;
	left: -100%;
	top: 0;
	z-index: 9
}

#cart ul {
	margin: 20px;
	overflow-y: auto;
	overflow-x: hidden;
}

/*slider-main */

.slide {
	width: 100%;
	margin: auto;
}

.slider-main {
	width: calc(100% + 30px);
	padding: 0;
	margin: 0 -15px 50px -15px;
}

.slider-main-item {
	min-height: 560px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 0;
	margin: 0;
}

/* category-wall */

.category-wall {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-around;
}

.category-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 479px;
	margin-bottom: 18px;
	color: white;
	overflow: hidden;
	width: calc(50% - 18px);
	border-radius: 25px;
}

.category-item:before {
	background-color: rgba(0, 0, 0, 0.3);
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 0;
	z-index: 1;
	-webkit-transition: opacity 0.4s;
	-moz-transition: opacity 0.4s;
	-o-transition: opacity 0.4s;
	transition: opacity 0.4s;
}

.category-item a>img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	object-fit: cover;
}

.category-item:hover a>img {
	transform: scale(1.1);
}

.category-item:hover::before {
	opacity: 1;
}

.category-item a>span {
	position: relative;
	z-index: 2;
	font-weight: 900;
	font-size: 40px;
	background: var(--main-color);
	padding: 10px 20px;
	color: #fff;
}

/* product-list */

.product-list {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.product-block {
	width: 32%;
	overflow: hidden;
	margin-bottom: 18px;
	border-radius: 25px;
}

.image {
	position: relative;
	height: 402px;
	overflow: hidden;
}

.image:before {
	position: absolute;
	z-index: 1;
	content: "";
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: opacity 0.4s;
	-moz-transition: opacity 0.4s;
	-o-transition: opacity 0.4s;
	transition: opacity 0.4s;
	background-color: rgba(0, 0, 0, 0.3);
}

.product-block:hover .image:before {
	opacity: 1;
}

.image>img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.product-block:hover .image>img {
	transform: scale(1.1);
}

.caption {
	background: white;
	padding: 25px;
}

.caption>h4 {
	font-weight: 900;
	font-size: 24px;
	color: var(--main-color);
	min-height: 55px;
	text-align: center
}

.price {
	padding: 5px 10px;
	text-align: center;
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	width: 100%;
}

.price-new {
	font-size: 20px;
	color: red;
}

.price-old {
	font-size: 16px;
	text-decoration: line-through;
}

/*footer*/

footer {
	padding: 40px 0;
	background-color: var(--main-color);
	color: #fff
}

footer a {
	color: #fff
}

/*category*/

.title-category {
	width: 100%;
	min-height: 250px;
	background-color: var(--main-color);
	color: #fff;
	font-size: 40px;
	font-weight: 900;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	padding: 20px;
	margin: 0;
}

/*product */

.thumbnails {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.thumbnails>.thumbnail,
.image-additional {
	width: calc(50% - 18px);
}

.thumbnail {
	background: transparent;
	border: none;
}

.thumbnail>img {
	border-radius: 25px;
}

.image-additional {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex-wrap: wrap
}

.image-additional>.thumbnail {
	max-width: 40%;
}

.plus-minus {
	max-width: 200px;
	padding: 10px 0;
}

.plus-minus .btn {
	padding: 20px!important;
}

.plus-minus input {
	min-height: 55px;
}

/*media*/

@media (min-width: 1200px) {
	#content .col-lg-2:nth-child(6n+1),
	#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-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-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-thumb .col-md-3 {
		width: 100%;
	}
	#column-left+#content .product-thumb .col-md-3 {
		width: 50%;
	}
	#column-left+#content+#column-right .product-thumb .col-md-3 {
		width: 100%;
	}
	#content+#column-right .product-thumb .col-md-3 {
		width: 100%;
	}
	.product-list .product-thumb .image {
		float: left;
		padding: 0 15px;
	}
}

@media (max-width: 991px) {
	.product-block {
		width: calc(50% - 9px);
	}
	.slider-main-item {
	min-height: 360px;
	}
}

@media (max-width: 768px) {
	header {
		width: 60px;
	}
	header .btn-link {
		padding: 5px;
		margin: auto
	}
	.menu-top,
	.menu-center {
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
	.flex {
		flex-wrap: wrap;
	}
	.search-block,
	#cart,
	.container,
	.main-block {
		width: calc(100% - 60px);
	}
	.main-block {
		margin-left: 60px;
	}
	.left-show {
		left: 60px!important;
	}
	.thumbnails {
		flex-direction: column
	}
	.product-block,
	.category-item,
	.thumbnails>.thumbnail,
	.image-additional {
		width: 100%;
	}
	.img-thumbnail {
		min-height: 50px;
	}
	.slider-main-item {
	min-height: 260px;
	}
}
