@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,600,700,800&subset=cyrillic');

:root {
	--color-white: #fff;
	--color-main: #222;
	--color-second: #ffa11b;
	--color-grey-dd: #ddd;
	--color-grey-a9: #a9a9a9;
    --color-grey-82: #828282;
	--color-gery-f8: #F8F8F8;
	--color-shadow: rgba(0,0,0,.1);

	--box-shadow: 0 0 5px 3px var(--color-shadow);

	--footer-column-count: 4;
}

/* footer stick to bottom */
html, body, .wrapper {
	height: 100%;
}

body, .wrapper {
	display: flex;
	flex-direction: column;
}
.wrapper > .content {
	flex: 1;
}
/**/


body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	color: var(--color-main);
}


body.open-sidebar {
	overflow: hidden;
}

.row {
	margin: 0;
}

aside {
	padding: 0 !important;
}


a {
	color: var(--color-second);
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	-o-transition: 0.3s all;
	transition: 0.3s all;
}
a:hover, a:focus {
	text-decoration: none;
}

button{
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	-o-transition: 0.3s all;
	transition: 0.3s all;
}
a:focus, a:hover {
	color: var(--color-main);
}
a:focus, button:focus {
	outline: 0!important;
}
legend {
	font-size: 18px;
	padding: 7px 0px
}
label {
	font-size: 12px;
	font-weight: normal;
}

b, strong {
	font-weight: 500;
}

h1, .h1 {
	font-size: 32px;
	line-height: 36px;

	margin-top: 0;
	margin-bottom: 15px;
}
h2, .h2 {
	margin-top: 0;
}
h3, .h3 {
	margin-top: 0;
}
h4, .h4 {
	margin-top: 0;
}

.input-group .input-group-addon {
	font-size: 12px;
	height: 30px;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	background: #ffffff;
	border: 1px solid#dddddd;
	border-right: 0;
}

.form-control {
	height: 38px;
	border: 1px solid#ddd;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 6px;
	padding: 5px 15px;
	font-size: 12px;
}

.form-control:focus,
.form-control:hover{
	border-color: #b1b1b1;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

textarea.form-control {
	border-radius: 6px;
	resize: vertical;
}

.btn {
	padding: 10px 17px;
	font-size: 13px;
	border-radius: 50px;
	border: none;
	color: #ffffff;
	font-weight: 500;
	transition: 0.3s all;
}

.btn:hover{
	filter: brightness(1.1);
	border: none;
}

.main-btn {
	background: var(--color-second);
	color: #fff;
	border-color: var(--color-second);
}
.btn-view .btn {color: #333333;}
.btn-view .btn:hover {background-color: #00639A;color: #ffffff;}

.main-btn.focus, .main-btn:focus, .main-btn:hover {
	color: #fff;
	text-decoration: none;
}

.btn-del-cart {
	font-size: 20px;
	background: #fff;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	padding: 0;
	border: 1px solid#ddd;
}

.btn-del-cart:hover {
	background: #00639A;
	color: #fff;
	border-color: #00639A;
}

.section-title{
	font-weight: 400;
	font-size: 24px;
	margin: 0 0 30px;
	position: relative;
}


/* Fix some bootstrap issues */
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
	display: inline;
}

.nav-tabs {
	margin-bottom: 15px;
}
div.required .control-label:before {
	content: '* ';
	color: #F00;
	font-weight: bold;
}


#menu {
	background: #fff;
	margin: 0;
	border: none;
	border-radius: 0;
	z-index: 1000;
	position: absolute;
	top: 48px;
	left: 0;
	width: 100%;
	height: 60px;
	-o-box-shadow: 0 3px 2px -1px rgba(0,0,0,0.08);
	box-shadow: 0 3px 2px -1px rgba(0,0,0,0.08);
}

#menu.fixed{
	top: 0;
	position: fixed;
}

#menu .menu-right {
	display: flex;
	align-items: center;
	float: right;
}


#menu .dropdown-menu {
	border: none;
	margin: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 0;
	right: 0;
	left: auto;
}

#menu .dropdown-menu .btn-link-drop {
	font-size: 13px;
	color: var(--color-main);
	padding: 8px 20px;
	display: block;
	white-space: nowrap;
}

#menu  .dropdown-menu ul{
	margin: 0;
}


#logo {
	float: left;
	display: flex;
	align-items: center;
	height: 55px;
}

#logo img{
	height: 45px;
	width: auto;
}
.store_3 #logo img{
	height: 30px;
	width: auto;
}

.wrapper{
	position: relative;
	z-index: 2;
}



.overlay {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.65);
	transition: all .5s ease;
	z-index: 0;
	opacity: 0;
}

.open-sidebar .overlay{
	z-index: 999;
	opacity: 1;
}


.top-menu-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/*.store_3 #top-menu a{*/
/*	color: #9933fc;*/
/*}*/

#sidebar {
	width: 100%;
	background: #00639A;
	z-index: 999;
	transition: all .3s ease;
	height: auto;
	position: relative;
}
.store_3 #sidebar {
	background: #9933fc;
}

.sidebar-list {
	padding: 0;
	margin: 0 0 30px;
	list-style: none;
}

.sidebar-list>li{
	display: inline-block;
	float: left;
}
.sidebar-list>li>a {
	display: block;
	position: relative;
	padding: 15px;
	font-weight: 500;
	color: rgba(255,255,255,.8);
	font-size: 13px;
}

.sidebar-list>li.dropdown>a{
	padding-right: 35px;
}

.sidebar-list>li>a:hover{
	color: #fff;
}

.sidebar-list>li>a span{
	font-size: 25px;
	position: absolute;
	right: 8px;
	top: 12px;
}

.sidebar-list>li.open>a span{
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}


.sidebar-list .dropdown-menu{
	margin: 0;
	padding: 0;
	border: none;
	position: absolute;
	width: 225px;
	-webkit-box-shadow: none;
	box-shadow: none;
	float: none;
	background: #ffffff;
	font-size: 13px;
	-webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
	box-shadow: 0 6px 12px rgba(0,0,0,.175);
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.sidebar-list>li.open>a {
	background: #3dabff;
	color: #fff;
	text-decoration: none;
}

.sidebar-title {
	font-size: 20px;
	font-weight: 500;
	padding: 10px 0px 10px;
	clear: both;
}

.dropdown .sidebar-title{
	font-size: 15px;
	margin-bottom: 10px;
}

.dropdown .sidebar-list{
	margin: 0 0 15px;
}



.sidebar-list .dropdown-menu a{
	display: block;
	padding: 10px 20px;
	color: var(--color-main);
}

.sidebar-list .dropdown-menu a:hover{
	background: #f7f8fb;
}

.sidebar-list .dropdown-menu a.see-all{
	font-weight: 500;
}

.btn-settings {
	position: relative;
	padding: 8px 20px;
	border: none;
	background: none;
	display: block;
	width: 100%;
	text-align: left;
	font-size: 13px;
}

.btn-settings:hover{
	color: #00acc1;
}

.btn-settings.active {
	color: #00639A;
	font-weight: 500;
}

#close-sidebar {
	font-size: 40px;
	position: absolute;
	top: 10px;
	left: 10px;
	cursor: pointer;
	display: none;
}

#close-sidebar:hover{
	color: #00acc1;
}




/* search */
#search {
	width: 380px;
	float: left;
	position: relative;
	margin-left: 30px;
	margin-right: 15px;
	padding: 11px 0;
}

#search .form-control {
	font-size: 13px;
	background: none;
	border: none;
	padding: 8px 60px 8px 20px;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 30px;
	background: #f7f8fb;
}

#search .form-control::placeholder {
	color: #ababab;
	opacity: 1;
}

#search .form-control:-ms-input-placeholder {
	color: #ababab;
}

#search .form-control::-ms-input-placeholder {
	color: #ababab;
}


#search button {
	position: absolute;
	top: 17px;
	right: 10px;
	border: none;
	background: none;
	color: #434a54;
	font-size: 26px;
	padding: 0;
}

/* cart */
#cart {
	float: right;
	position: relative;
}
#cart > .btn {
	font-size: 12px;
	line-height: 18px;
	color: #FFF;
}
#cart.open > .btn {
	background-image: none;
	background-color: #FFFFFF;
	border: 1px solid #E6E6E6;
	color: #666;
	box-shadow: none;
	text-shadow: none;
}
#cart.open > .btn:hover {
	color: #444;
}
#cart .dropdown-menu {
	background: #eee;
	z-index: 1001;
}
#cart .dropdown-menu {
	min-width: 100%;
	width: 500px;
	background: #fff;
	padding: 0;
	margin: 0;
	border: none;
}

#cart .dropdown-menu li p {
	padding: 20px;
	margin: 0;
	background: #fff;
	overflow: hidden;
	border-top: 1px solid#ddd;
}

#cart .dropdown-menu li .not-empty {
	text-align: center;
	border: none;
}

#cart .table>tbody>tr:nth-of-type(odd) {
	background-color: #f7f8fb;
}

#cart .table>tbody>tr td a{
	font-weight: 500;
	color: var(--color-main);
}

#cart .table .price{
	white-space: nowrap;
	font-weight: bold;
	text-align: right;
}

#cart .table .count{
	white-space: nowrap;
}

#cart .table .img-thumbnail {
	width: 60px;
	max-width: 60px;
}

#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 {
	padding: 8px;
	vertical-align: middle;
	border: none;
}

#cart .total-table>tbody>tr:nth-of-type(odd){
	background: none;
}


.icon-btn-menu {
	font-size: 26px;
	color: var(--color-main);
	position: relative;
	display: flex;
	float: right;
	height: 60px;
	padding: 5px 15px;
	background: none;
	border: none;
	align-items: center;
	border-left: 1px solid#ebeced;
}

.icon-btn-menu .text {
	font-size: 13px;
	margin-left: 14px;
}

.icon-btn-menu .count{
	background: #00639A;
	width: 18px;
	height: 18px;
	display: block;
	border-radius: 50%;
	color: #fff;
	font-size: 10px;
	text-align: center;
	line-height: 20px;
	position: absolute;
	top: 14px;
	left: 30px;
	font-style: initial;
}
.store_3 .icon-btn-menu .count{
	background: #9933fc;
}

.icon-btn-menu:hover {
	background: #f7f8fb;
}

/* menu */




/* content */
/*#content {*/
/*	min-height: 600px;*/
/*}*/
#content {
	padding: 0 0 0 10px;
}

.service-wrapper {
	background: #ffffff;
	position: relative;
	overflow: hidden;
	/*margin-top: -20px;*/
	margin-bottom: 30px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}



.service-item {
	padding: 30px 0px 30px 80px;
	position: relative;
}

.service-item span {
	font-size: 28px;
	position: absolute;
	left: 15px;
	top: 27px;
	background: #00639A;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	color: #fff;
	text-align: center;
	line-height: 50px;
}
.store_3 .service-item span {background: #9933fc;}
.service-item span.red {background: #ff0020;}
.service-item span.blink {animation: sale_blink 3s infinite;background-color: transparent;color: #ff0020;font-size: 26px;font-weight: bold;height: 36px;left: 185px;line-height: 36px;position: absolute;top: 5px;width: 36px;}
.store_3 .service-item span.red {background: #f3c501;}
.store_3 .service-item span.blink {color: #f3c501;
}
@keyframes sale_blink {
	40% {transform: rotate(0deg);}
	42% {transform: rotate(25deg);}
	45% {transform: rotate(45deg);}
	48% {transform: rotate(25deg);}
	50% {transform: rotate(0deg);}
	52% {transform: rotate(-25deg);}
	55% {transform: rotate(-45deg);}
	58% {transform: rotate(-25deg);}
	60% {transform: rotate(0deg);}
	62% {transform: rotate(25deg);}
	65% {transform: rotate(45deg);}
	68% {transform: rotate(25deg);}
	70% {transform: rotate(0deg);}
	72% {transform: rotate(-25deg);}
	75% {transform: rotate(-45deg);}
	78% {transform: rotate(-25deg);}
	80% {transform: rotate(0deg);}
	82% {transform: rotate(25deg);}
	85% {transform: rotate(45deg);}
	88% {transform: rotate(25deg);}
	90% {transform: rotate(0deg);}
	92% {transform: rotate(-25deg);}
	95% {transform: rotate(-45deg);}
	98% {transform: rotate(-25deg);}
	100% {transform: rotate(0deg);}
}
@-moz-keyframes sale_blink {
	40% {transform: rotate(0deg);}
	42% {transform: rotate(25deg);}
	45% {transform: rotate(45deg);}
	48% {transform: rotate(25deg);}
	50% {transform: rotate(0deg);}
	52% {transform: rotate(-25deg);}
	55% {transform: rotate(-45deg);}
	58% {transform: rotate(-25deg);}
	60% {transform: rotate(0deg);}
	62% {transform: rotate(25deg);}
	65% {transform: rotate(45deg);}
	68% {transform: rotate(25deg);}
	70% {transform: rotate(0deg);}
	72% {transform: rotate(-25deg);}
	75% {transform: rotate(-45deg);}
	78% {transform: rotate(-25deg);}
	80% {transform: rotate(0deg);}
	82% {transform: rotate(25deg);}
	85% {transform: rotate(45deg);}
	88% {transform: rotate(25deg);}
	90% {transform: rotate(0deg);}
	92% {transform: rotate(-25deg);}
	95% {transform: rotate(-45deg);}
	98% {transform: rotate(-25deg);}
	100% {transform: rotate(0deg);}
}
@-webkit-keyframes sale_blink {
	40% {transform: rotate(0deg);}
	42% {transform: rotate(25deg);}
	45% {transform: rotate(45deg);}
	48% {transform: rotate(25deg);}
	50% {transform: rotate(0deg);}
	52% {transform: rotate(-25deg);}
	55% {transform: rotate(-45deg);}
	58% {transform: rotate(-25deg);}
	60% {transform: rotate(0deg);}
	62% {transform: rotate(25deg);}
	65% {transform: rotate(45deg);}
	68% {transform: rotate(25deg);}
	70% {transform: rotate(0deg);}
	72% {transform: rotate(-25deg);}
	75% {transform: rotate(-45deg);}
	78% {transform: rotate(-25deg);}
	80% {transform: rotate(0deg);}
	82% {transform: rotate(25deg);}
	85% {transform: rotate(45deg);}
	88% {transform: rotate(25deg);}
	90% {transform: rotate(0deg);}
	92% {transform: rotate(-25deg);}
	95% {transform: rotate(-45deg);}
	98% {transform: rotate(-25deg);}
	100% {transform: rotate(0deg);}
}

.service-item .title {
	font-size: 16px;
	font-weight: 500;
}

.service-item .text {
	font-size: 13px;
	color: var(--color-main);
}


.home-text {
	margin-bottom: 30px;
	border-radius: 3px;
	padding-top: 30px;
}

.home-text-container{
	position: relative;
}

.home-text-container h2{
	margin: 0 0 30px;
	font-size: 26px;
}

.home-text-container ul {
	padding-left: 17px;
}

#expand-home-text {
	background: #ffffff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	text-align: center;
	line-height: 46px;
	font-size: 30px;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	transition: 0.3s all;
	color: #239fff;
	border: 3px solid#239fff;
}

#expand-home-text:hover {
	background: #00639A;
	color: #fff;
}

#expand-home-text.open{
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.servise-widget {
	background: #fff;
	padding: 20px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	margin-bottom: 30px;
}

.servise-widget .widget-box {
	margin-bottom: 20px;
}

.widget-box .title {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}

.widget-box .title span {
	color: #00639A;
	font-size: 26px;
	float: left;
	margin-right: 10px;
}
.store_3 .widget-box .title span {
	color: #9933fc;
}

.body-widget ul {
	padding-left: 20px;
	margin: 0;
}

.body-widget ul li span {
	color: #00639A;
	font-weight: 500;
}

footer {
	background-color: #ffffff;
}

footer a {
	color: var(--color-main);
}
footer a:hover {
	color: var(--color-second);
}
footer h5 {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-main);
	cursor: pointer;
	position: relative;
	margin: 0 0 15px;
}

footer .list-unstyled {
	margin-bottom: 0;
	line-height: 30px;
}

footer .footer-line {
	background-image: -webkit-linear-gradient(45deg, #009997 0%, #009997 30%, transparent 31%, transparent 32%, #00639A 33%, #00639A 75%, transparent 76%, transparent 77%, #009997 78%, #009997 100%);
	background-image: linear-gradient(45deg, #009997 0%, #009997 30%, transparent 31%, transparent 32%, #00639A 33%, #00639A 75%, transparent 76%, transparent 77%, #009997 78%, #009997 100%);
	background-size: 64px 7px;
	overflow: hidden;
	height: 5px;
	margin: 0 0 50px;
}
.store_3 footer .footer-line {
	background-image: -webkit-linear-gradient(45deg, #9933fc 0%, #9933fc 30%, transparent 31%, transparent 32%, #ff33bb 33%, #ff33bb 75%, transparent 76%, transparent 77%, #9933fc 78%, #9933fc 100%);
	background-image: linear-gradient(45deg, #9933fc 0%, #9933fc 30%, transparent 31%, transparent 32%, #ff33bb 33%, #ff33bb 75%, transparent 76%, transparent 77%, #9933fc 78%, #9933fc 100%);
}

.footer-powered {
	background: #f7f8fb;
	padding: 20px 0;
	color: #c3c3c3;
	overflow: hidden;
}

.footer-powered a {
    color: #6d6d6d;
    font-weight: 500;
}
.footer-powered a:hover{
	color: #6d6d6d;
	text-decoration: underline;
}

.footer-contact .phone{
	font-size: 18px;
	font-weight: 500;
	display: block;
	clear: both;
	margin-bottom: 7px;
}

/*.footer-contact .phone span{*/
	/*font-size: 14px;*/
	/*float: left;*/
	/*margin-right: 5px;*/
	/*border: 1px solid var(--color-main);*/
	/*border-radius: 50%;*/
	/*width: 23px;*/
	/*height: 23px;*/
	/*text-align: center;*/
	/*line-height: 23px;*/
/*}*/
.footer-contact .phone span{
	font-size: 12px;
	float: left;
	margin-right: 5px;
	border: 1px solid var(--color-main);
	border-radius: 50%;
	width: 19px;
	height: 19px;
	text-align: center;
	line-height: 20px;
	margin-top: 3px;
}

.footer-contact .phone:hover {
	color: #ff0020;
}

.footer-contact .phone:hover span{
	color: var(--color-main);
}

.footer-contact .email {
	font-size: 15px;
	color: #ccc;
}

.footer-socials {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 32px;
	line-height: 40px;
}

footer .social-btn{
	overflow: hidden;
}

footer .social-btn a {
	display: block;
	width: 40px;
	height: 40px;
	background: #f7f8fb;
	border-radius: 50%;
	text-align: center;
	line-height: 47px;
	float: left;
	margin-right: 10px;
	color: #ccc;
}

footer .social-btn a:hover {
	background: #239fff;
	color: #fff;
}


.powered{
	float: left;
}

.copyright{
	float: right;
}
/* alert */
.alert {
	padding: 8px 60px 8px 75px;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
	border-radius: 0;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	font-size: 13px;
	font-weight: 500;
	min-height: 60px;
	display: block;
	border: none;
	z-index: 9999;
	color: rgba(255, 255, 255, 0.59);
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
}

.alert .close {
	color: #fff;
	opacity: 1;
	text-shadow: none;
	position: absolute;
	right: 15px;
	top: 15px;
	font-size: 30px;
	height: 30px;
	width: 30px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.09);
}

.alert .close:hover{
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
}

.alert .fa {
	color: #fff;
	opacity: 1;
	text-shadow: none;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 30px;
	width: 60px;
	bottom: 0;
	background: rgba(255, 255, 255, 0.09);
	display: flex;
	align-items: center;
	justify-content: center;
}

.alert a {
    margin: 0 3px;
    color: #ffffff;
}

.alert-success {
	background: #20c997;
}

.alert-success a, .alert-success a:visited, .alert-success a:focus, .alert-success a:hover {
    color: #ffffff;
}

.alert-success .fa{
	background: #1db588;
}

.alert-danger {
	background-color: #f44336;
}

.alert-danger .fa {
	background-color: #d32f2f;
}

.alert-info {
	background: #1886ff;
}

.alert-info .fa {
	background: #0071ec;
}

/* breadcrumb */
.breadcrumb {
    margin: 0 0 10px;
	padding: 0;
    border: none;
    background: none;
}

.breadcrumb > li {
	padding: 0 20px 0 0;
	position: relative;
	white-space: nowrap;
}

.breadcrumb>li+li:before{
	content: '';
}

.breadcrumb > li a {
	color: var(--color-grey-a9);
	position: relative;
	font-weight: 400;
}

.breadcrumb > li > a:hover {
	color: var(--color-main);
}

.breadcrumb > li a:before {
	content: '\f105';
	font-family: FontAwesome;
	font-size: 16px;
	position: absolute;
	right: -20px;
	top: -2px;
}

.breadcrumb > li:last-child a {
	color: var(--color-grey-82);
}

.breadcrumb > li:last-child a:before{
	display: none;
}


/* buttons */

.btn-xs {
	font-size: 9px;
}
.btn-sm {
	font-size: 10.2px;
}
.btn-lg {
	padding: 10px 16px;
	font-size: 15px;
}
.btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover {
	font-size: 12px;
}
.btn-group > .btn-xs {
	font-size: 9px;
}
.btn-group > .btn-sm {
	font-size: 10.2px;
}
.btn-group > .btn-lg {
	font-size: 15px;
}
.btn-default {
	color: #777;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	background-color: #e7e7e7;
	background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
	background-repeat: repeat-x;
	border-color: #dddddd #dddddd #b3b3b3 #b7b7b7;
}
.btn-warning {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #faa732;
	background-image: linear-gradient(to bottom, #fbb450, #f89406);
	background-repeat: repeat-x;
	border-color: #f89406 #f89406 #ad6704;
}
.btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {
	box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-danger {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #ff0020;
	/*background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
	background-repeat: repeat-x;
	border-color: #bd362f #bd362f #802420;*/
	border-color: #ff0020;
}
.btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {
	box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-success {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #5bb75b;
	background-image: linear-gradient(to bottom, #62c462, #51a351);
	background-repeat: repeat-x;
	border-color: #51a351 #51a351 #387038;
}
.btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
	box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-info {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #df5c39;
	background-image: linear-gradient(to bottom, #e06342, #dc512c);
	background-repeat: repeat-x;
	border-color: #dc512c #dc512c #a2371a;
}
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
	background-image: none;
	background-color: #df5c39;
}
.btn-link {
	border-color: rgba(0, 0, 0, 0);
	cursor: pointer;
	color: #23A1D1;
	border-radius: 0;
}
.store_3 .btn-link {
	color: #9933fc;
}
.btn-link, .btn-link:active, .btn-link[disabled] {
	background-color: rgba(0, 0, 0, 0);
	background-image: none;
	box-shadow: none;
}
.btn-inverse {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #363636;
	background-image: linear-gradient(to bottom, #444444, var(--color-main));
	background-repeat: repeat-x;
	border-color: var(--color-main) var(--color-main) #000000;
}
.btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {
	background-color: var(--color-main);
	background-image: linear-gradient(to bottom, #333333, #111111);
}
/* list group */

/*.list-group a {*/
/*	border: 1px solid #DDDDDD;*/
/*	color: var(--color-main);*/
/*	padding: 10px 15px;*/
/*}*/
/*.list-group a.active, .list-group a.active:hover, .list-group a:hover {*/
/*	color: #444444;*/
/*	background: #eeeeee;*/
/*	border: 1px solid #DDDDDD;*/
/*	text-shadow: 0 1px 0 #FFF;*/
/*}*/

.list-group a {
	font-size: 20px;
	line-height: 32px;
	font-weight: 700;

	padding: 0;

	border: none;

	background-color: unset;
}
.list-group a:hover {
	transform: scale(1.02);
}
.list-group .list-group-child {
	font-size: 14px;
	line-height: 16px;

	padding: 10px 0;

	margin-left: 20px;
}

.list-group.category-group .list-group-item:first-child{
	border-radius: 6px;
}

.list-group.category-group a.active,
.list-group.category-group a.active:hover,
.list-group.category-group a.active:focus,
.list-group.category-group a:hover,
.list-group.category-group a:focus {
	color: var(--color-second);
	background-color: unset;
}

/* carousel */
.carousel-caption {
	color: #FFFFFF;
	text-shadow: 0 1px 0 #000000;
}
.carousel-control .icon-prev:before {
	content: '\f053';
	font-family: FontAwesome;
}
.carousel-control .icon-next:before {
	content: '\f054';
	font-family: FontAwesome;
}
/* product list */
.product-list-list {
	border-radius: 10px;
	border: 1px solid var(--color-grey-dd);
	margin-bottom: 20px;
}
.product-list-item {
	position: relative;
	border-bottom: 1px solid var(--color-grey-dd);
}
.product-list-item:first-child  {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.product-list-item:last-child  {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border-bottom: none;
}
.product-list-item:first-child .product-thumb  {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.product-list-item:last-child .product-thumb  {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.product-list-item .sale {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 50px;
	height: 50px;
	border-radius: 50%;

	font-size: 16px;
	font-weight: 700;
	color: var(--color-main);

	position: absolute;
	top: 0;
	right: 0;

	background: var(--color-second);
}
.product-thumb .product-list-link {
	color: var(--color-main);

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;

	padding: 15px;
}
.product-thumb .product-list-link:hover {
	transform: scale(1.02);
}
.product-thumb .product-list-link h3 {
	font-size: 20px;
	line-height: 24px;
	font-weight: 700;

	margin: 0;
}
.product-thumb .product-list-link p {
	margin-bottom: 2px;
}
.product-thumb .product-list-link img {
	max-width: 120px;

	border-radius: 10px;
}
.product-thumb .product-list-link .price {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-second);

	display: flex;
	align-items: center;
	gap: 5px;
}
.product-thumb .product-list-link .caption {
	display: flex;
	flex-direction: column;
	gap: 10px;

	width: 100%;
}
.product-thumb .product-list-link .caption-text {
	font-size: 13px;
	line-height: 20px;
}

/*.product-thumb {*/
/*	margin-bottom: 30px;*/
/*	background: #fff;*/
/*	border-radius: 10px;*/
/*	position: relative;*/
/*	transition: 0.3s all;*/
/*	overflow: hidden;*/
/*	z-index: 3;*/
/*}*/


/*.product-thumb:hover{*/
/*	-webkit-box-shadow: 0 0 15px 0 rgba(50,50,50,.15);*/
/*	box-shadow: 0 0 15px 0 rgba(50,50,50,.15);*/
/*	z-index: 3;*/
/*	position: relative;*/
/*}*/

/*.product-thumb .image {*/
/*	    text-align: center;*/
/*    border-top-left-radius: 10px;*/
/*    border-top-right-radius: 10px;*/
/*    overflow: hidden;*/
/*    padding: 15px;*/
/*    position: relative;*/
/*}*/

/*.product-list .product-thumb .image {*/
/*    float: left;*/
/*}*/

/*.product-thumb .image div,*/
/*.product-thumb .image span{z-index:2;}*/

/*.product-thumb .image a*/
/*{display:inline-block;position:relative;z-index:0;overflow:hidden;margin:0 auto;text-align:center;}*/

/*.product-thumb .image a:hover {opacity: 1;}*/

/*.product-thumb .image .main{*/
/*	transform:rotateY(0deg);*/
/*	-o-transform:rotateY(0deg);*/
/*	-moz-transform:rotateY(0deg);*/
/*	-webkit-transform:rotateY(0deg);*/
/*	transition: all ease-in-out .4s;*/
/*}*/
/*.product-thumb .image .additional{*/
/*	position:absolute;*/
/*	top:0;*/
/*	left:0;*/
/*	opacity:0;*/
/*	cursor:pointer;*/
/*	transform:rotateY(180deg);*/
/*	-o-transform:rotateY(180deg);*/
/*	-moz-transform:rotateY(180deg);*/
/*	-webkit-transform:rotateY(180deg);*/
/*	transition: all ease-in-out .4s;*/
/*}*/
/*.product-thumb .image:hover .main{*/
/*	transform:rotateY(180deg);*/
/*	-o-transform:rotateY(180deg);*/
/*	-moz-transform:rotateY(180deg);*/
/*	-webkit-transform:rotateY(180deg);*/
/*}*/
/*.product-thumb .image:hover .additional{*/
/*	opacity:1;*/
/*	background:#fff;*/
/*	transform:rotateY(0deg);*/
/*	-o-transform:rotateY(0deg);*/
/*	-moz-transform:rotateY(0deg);*/
/*	-webkit-transform:rotateY(0deg);*/
/*}*/

/*.product-pricelist .product-thumb .image .additional{*/
/*	width: 140px;*/
/*	height: 140px;*/
/*}*/


/*.product-thumb .sale {*/
/*	position: absolute;*/
/*	left: -28px;*/
/*	top: -8px;*/
/*	background: #ffd820;*/
/*	padding: 20px 30px 7px 30px;*/
/*	color: #000;*/
/*	font-weight: 500;*/
/*	z-index: 2;*/
/*	font-size: 13px;*/
/*	-webkit-transform: rotate(-45deg);*/
/*	-moz-transform: rotate(-45deg);*/
/*	-ms-transform: rotate(-45deg);*/
/*	-o-transform: rotate(-45deg);*/
/*	transform: rotate(-45deg);*/
/*}*/

/*.product-list .product-thumb .sale {*/
/*	z-index: 3;*/
/*}*/

/*.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-grid .product-thumb .image {*/
/*	float: none;*/
/*}*/


/*.product-thumb h3 {*/
/*	font-size: 15px;*/
/*	height: 35px;*/
/*	margin-top: 0;*/
/*	!*white-space: nowrap;*!*/
/*	overflow: hidden;*/
/*	text-overflow: ellipsis;*/
/*	font-weight: 500;*/
/*}*/

/*.product-list .product-thumb h3 {*/
/*	white-space: normal;*/
/*}*/

/*.product-thumb h3 a {*/
/*	color: var(--color-main);*/
/*}*/

/*.product-thumb h3 a:hover {*/
/*	color: #00639A;*/
/*}*/

/*.product-thumb .caption {*/
/*padding: 5px 15px 15px;*/
/*    position: relative;*/
/*    z-index: 2;*/
/*    background: #fff;*/
/*    border-bottom-left-radius: 10px;*/
/*    border-bottom-right-radius: 10px;*/
/*}*/

/*.product-list .product-thumb .caption {*/
/*	margin-left: 210px;*/
/*	text-align: left;*/
/*	padding: 20px 20px 56px 5px;*/
/*	height: 210px;*/
/*	border-right: 1px solid#f2f2f2;*/
/*	border-radius: 0;*/
/*}*/

/*.product-list .product-thumb .caption .button-group {*/
/*	margin-bottom: 0;*/
/*	flex-direction: column;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	position: absolute;*/
/*	right: -215px;*/
/*	top: 0;*/
/*	bottom: 0;*/
/*	padding: 20px;*/
/*	text-align: center;*/
/*	width: 200px;*/
/*}*/

/*.product-list .product-thumb .caption .button-group a {*/
/*	display: block;*/
/*}*/

/*.product-list .product-thumb .caption .button-group .btn{*/
/*	width: 100%;*/
/*	margin-bottom: 10px;*/
/*}*/

/*.product-thumb .caption .description{*/
/*	display: none;*/
/*}*/

/*.product-list .product-thumb .caption .description {*/
/*	display: block;*/
/*	overflow: hidden;*/
/*	text-overflow: ellipsis;*/
/*	white-space: normal;*/
/*	font-size: 13px;*/
/*}*/

/*.product-list .product-thumb {*/
/*	margin-bottom: 30px;*/
/*	overflow: hidden;*/
/*	padding-right: 215px;*/
/*}*/


/*.product-list .product-thumb .quiqview-btns {*/
/*	background: none;*/
/*	-webkit-transform: translate(0, 0);*/
/*	-moz-transform: translate(0, 0);*/
/*	-ms-transform: translate(0, 0);*/
/*	-o-transform: translate(0, 0);*/
/*	transform: translate(0, 0);*/
/*	opacity: 1;*/
/*	left: 215px;*/
/*	bottom: 20px;*/
/*	top: auto;*/
/*	z-index: 3;*/
/*	text-align: left;*/
/*	right: 215px;*/
/*}*/

/*.product-list .product-thumb .quiqview-btns .icon-btn {*/
/*	width: auto;*/
/*	height: auto;*/
/*	color: #cacaca;*/
/*	border: none;*/
/*	border-radius: 0;*/
/*	margin: 0 10px 0 0;*/
/*	background: none;*/
/*	display: inline-block;*/
/*	overflow: hidden;*/
/*	line-height: 1;*/
/*}*/

/*.product-thumb .quiqview-btns .icon-btn .text{*/
/*	display: none;*/
/*}*/

/*.product-list .product-thumb .quiqview-btns .icon-btn:hover{*/
/*	color: #00639A;*/
/*	background: none;*/
/*}*/

/*.product-list .product-thumb .quiqview-btns .icon-btn span{*/
/*	float: left;*/
/*	margin-right: 5px;*/
/*	margin-top: 2px;*/
/*}*/

/*.product-list .product-thumb .quiqview-btns .icon-btn .text {*/
/*	font-size: 12px;*/
/*	font-weight: 500;*/
/*	font-style: normal;*/
/*	display: inline-block;*/
/*}*/


/*.product-list .product-thumb .image img {*/
/*	width: 180px;*/
/*	height: 180px;*/
/*}*/

@media (max-width: 767px) {
	#content {
		padding: 0;
	}
	.subcategory-list {
		justify-content: center;
	}
	.category-title {
		text-align: center;
	}
	.product-list .product-thumb .caption {
		min-height: 0;
		margin-left: 0;
		padding: 0 10px;
	}
	.product-grid .product-thumb .caption {
		min-height: 0;
	}
}


h2.price {
	margin: 0;
}
.product-thumb .price {
	color: var(--color-main);
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
}

.product-list .product-thumb .price {
	font-size: 16px;
	margin-bottom: 15px;
}


.product-thumb .price-new {
	color: var(--color-second);
	font-weight: 700;
}
.product-thumb .price-old {
    color: var(--color-grey-a9);
    text-decoration: line-through;
    font-size: 12px;
    display: block;
}
/*.product-thumb .price-tax {*/
/*    color: #999;*/
/*    font-size: 12px;*/
/*    display: block;*/
/*    font-weight: 400;*/
/*    padding: 10px 0px 0px;*/
/*}*/


/*.product-thumb .caption .button-group {*/
/*	display: -webkit-box;*/
/*	display: -moz-box;*/
/*	display: -ms-flexbox;*/
/*	display: -webkit-flex;*/
/*	display: flex;*/
/*	justify-content: space-between;*/
/*	align-items: center;*/
/*}*/

/*.product-thumb .caption .button-group a{*/
/*	display: none;*/
/*}*/



/*.product-thumb .quiqview-btns {*/
/*text-align: center;*/
/*    position: absolute;*/
/*    top: 20px;*/
/*    right: 20px;*/

/*}*/

/*.product-thumb .quiqview-btns .icon-btn {*/
/*	width: 44px;*/
/*	height: 44px;*/
/*	font-size: 20px;*/
/*	background: #ffffff;*/
/*	font-weight: bold;*/
/*	color: #808080;*/
/*	padding: 0;*/
/*	border: 1px solid#dddddd;*/
/*	line-height: 50px;*/
/*	position: relative;*/
/*	text-align: center;*/
/*	display: block;*/
/*	border-radius: 50%;*/
/*	margin-bottom: 10px;*/
/*}*/

/*.product-thumb .quiqview-btns .icon-btn:hover{*/
/*	background: #00639A;*/
/*	color: #fff;*/
/*	border-color: #00639A;*/
/*}*/
/*.row .product-pricelist:last-child{*/
/*	margin-bottom: 30px*/
/*}*/

/*.product-pricelist .product-thumb {*/
/*	margin: 0;*/
/*	border-radius: 0;*/
/*	border: none;*/
/*	border-bottom: 1px solid#ddd;*/
/*	align-items: center;*/
/*	padding-left: 170px;*/
/*	height: 170px;*/
/*}*/

/*.product-pricelist .product-thumb .quiqview-btns{*/
/*	display: none;*/
/*}*/

/*.product-pricelist .product-thumb .image {*/
/*	width: 170px;*/
/*	position: absolute;*/
/*	left: 0;*/
/*	top: 0;*/
/*}*/

/*.product-pricelist .product-thumb .caption {*/
/*	padding: 15px 150px 15px 15px;*/
/*	width: auto;*/
/*	height: 169px;*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	justify-content: center;*/
/*}*/

/*.product-pricelist .product-thumb .caption .button-group {*/
/*	justify-content: center;*/
/*	align-items: center;*/
/*	flex-direction: column;*/
/*	position: absolute;*/
/*	width: 150px;*/
/*	right: 0;*/
/*	top: 0;*/
/*	bottom: 0;*/
/*}*/

/*.product-pricelist .product-thumb .caption .description {*/
/*	display: block;*/
/*	font-size: 13px;*/
/*}*/

/*.product-pricelist .product-thumb .price {*/
/*	text-align: center;*/
/*	margin-bottom: 10px;*/
/*}*/



.thumbnails {
	overflow: auto;
	clear: both;
	list-style: none;
	padding: 0;
	margin: 0;
}
.thumbnails > li {
	margin-left: 20px;
}
.thumbnails {
	margin-left: -20px;
}
.thumbnails > img {
	width: 100%;
}
.image-additional a {
	margin-bottom: 20px;
	padding: 5px;
	display: block;
	border: 1px solid #ddd;
}
.image-additional {
	max-width: 78px;
}
.thumbnails .image-additional {
	float: left;
	margin-left: 20px;
}

@media (min-width: 992px) {
	/* header */
	#top-menu .second-menu .header-navigation-list {
		flex-wrap: wrap;
	}

	/* hiding sidebar information on desktop */
	#column-left .sidebar-information {
		display: none;
	}

	/* adding padding for content block */
	#content {
		padding: 0 20px;
	}
}



/* 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%;
    }
}

/* fixed product layouts used in left and right columns */
#column-left .product-layout, #column-right .product-layout {
	width: 100%;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^=quantity] {
	min-width: 50px;
}

/* Missing focus and border color to overwrite bootstrap */
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
    background-image: none;
    background-color: #df5c39;
}


/*.card {*/
/*	background: #fff;*/
/*	margin-bottom: 30px;*/
/*	padding: 30px;*/
/*	border-radius: 10px;*/
/*}*/

/*.card h3 {*/
/*	margin-top: 0;*/
/*	font-size: 20px;*/
/*}*/

/*.card h2 {*/
/*	font-size: 24px;*/
/*	margin: 0 0 20px;*/
/*}*/

/*h1.title-page {*/
/*	margin: 0 0 20px;*/
/*	font-size: 26px;*/
/*}*/

/*.card h2.title-page,h2.title-page {*/
/*	font-size: 20px;*/
/*	margin: 0 0 20px;*/
/*}*/

/*.panel {*/
/*	-webkit-box-shadow: none;*/
/*	box-shadow: none;*/
/*	border-radius: 0;*/
/*	border: none;*/
/*	margin-bottom: 30px;*/
/*}*/

/*.card-category img{*/
/*	width: 100%;*/
/*}*/

/*.card-category h1 {*/
/*	margin: 0 0 20px;*/
/*	font-size: 26px;*/
/*}*/

/*.card-category #category-description {*/
/*	margin-bottom: 10px;*/
/*}*/


/*.card-subcategory h2 {*/
/*	font-size: 24px;*/
/*	margin: 0 0 30px;*/
/*}*/

/*.subcategory-list {*/
/*	list-style: none;*/
/*	padding: 0;*/
/*	margin: 0 -15px;*/
/*	flex-wrap: wrap;*/
/*	display: -webkit-box;*/
/*	display: -moz-box;*/
/*	display: -ms-flexbox;*/
/*	display: -moz-flex;*/
/*	display: -webkit-flex;*/
/*	display: flex;*/
/*	justify-content: flex-start;*/
/*}*/
.subcategory-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-weight: 700;
	white-space: nowrap;
	margin-bottom: 20px;
}
.subcategory-list .subcat-box {
	padding: 5px 10px;
	border: 1px solid var(--color-grey-dd);
	border-radius: 10px;
	box-shadow: 0 0 3px 1px var(--color-shadow);
	transition: all .3s ease;
}
.subcategory-list .subcat-box:hover,
.subcategory-list .subcat-box:active {
	transform: scale(1.1);
}
.subcategory-list .subcat-box:hover a,
.subcategory-list .subcat-box:active a {
	color: var(--color-second);
}
.category-empty {
	margin-bottom: 20px;
}

/*.subcat-box{*/
/*	padding: 0 15px;*/
/*	width: 20%;*/
/*}*/

/*.subcat-box a {*/
/*	background: #fff;*/
/*	padding: 15px;*/
/*	border-radius: 10px;*/
/*	margin-bottom: 30px;*/
/*	display: flex;*/
/*	align-items: center;*/
/*	font-size: 13px;*/
/*	transition: 0.3s all;*/
/*}*/

/*.subcat-box a:hover{*/
/*	-webkit-box-shadow: 0 0 15px 0 rgba(50,50,50,.15);*/
/*	box-shadow: 0 0 15px 0 rgba(50,50,50,.15);*/
/*}*/

/*.subcat-box a img {*/
/*	width: 60px;*/
/*	margin-right: 10px;*/
/*}*/




.btn-category-description {
	background: #00639A;border: none;border-color: #00639A;border-radius: 20px; color: #fff;display: inline-block; font-weight: bold;margin: 5px 0;padding: 10px 40px 10px 20px;text-align: center; text-transform: uppercase;position: relative;
}

.btn-category-description:hover{
	color: #fff;
	background: #00639A;
}

.btn-category-description:before {
	content: '\f107';
	font-family: FontAwesome;
	font-size: 20px;
	position: absolute;
	right: 15px;
	top: 6px;
}

.btn-category-description.hiden:before{
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.btn-view .btn {
	width: 50px;
	height: 40px;
	text-align: center;
	border-radius: 30px;
	overflow: hidden;
	background-color: #ffffff;
	line-height: 29px;
	transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	text-shadow: none;
	border: 1px solid#ddd;
	font-size: 14px;
}

.btn-view .btn.active {
	background: #00639A;
	color: #fff;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.store_3 .btn-view .btn.active, .store_3 .btn-view .btn:hover {
	background: #9933fc;
}
.store_3 .noUi-connect {
	background: #9933fc;
}

.card-category #category-description.collapse {
    /*height: 65px!important;*/
    display: block;
    overflow: hidden;
}

.card-category #category-description.collapse.in{
	height: auto!important;
}

.panel-attribute .head-td {
	margin-bottom: 10px;
}

.panel-attribute .attr-td {
	padding: 8px 10px;
}

.category-wall-box {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: flex-start;
	height: 220px;
	margin-bottom: 30px;
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	transition: 0.3s all;
	overflow: hidden;
}

.category-wall-box:hover {
	-webkit-box-shadow: 0 0 15px 0 rgba(50,50,50,.15);
	box-shadow: 0 0 15px 0 rgba(50,50,50,.15);
}

.category-wall-box .category-list {
	width: 55%;
	font-size: 13px;
	line-height: 24px;
	padding-left: 15px;
}

.category-wall-box .image {
	width: 45%;
	overflow: hidden;
	margin: -20px 0 -20px -20px;
	display: block;
}
.category-wall-box .image img {
	width: 140px;
	height: 140px;
	transition: 0.3s all;
	margin-top: 30px;
}

.category-wall-box:hover .image img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.category-wall-box .title {
	font-size: 14px;
	display: block;
	margin-bottom: 10px;
	font-weight: 500;
	overflow: hidden;
	color: var(--color-main);
	height: 45px;
}

.category-wall-box .show-more {
	font-size: 12px;
	color: #00639A;
	font-weight: 600;
}
.store_3 .category-wall-box .show-more {
	color: #9933fc;
}

.category-wall-box .show-more:hover{
	color: var(--color-main);
}

.category-wall-box ul {
	margin: 0 0 10px;
	padding-left: 0;
	list-style: none;
}

.category-wall-box ul li a {
	color: var(--color-main);
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.category-wall-box ul li a:hover{
	text-decoration: underline;
}


.banner-box {
	background: #fff;
	margin-bottom: 30px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	height: 400px;
}

.banner-box.white {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.banner-box.long-banner {
	height: 200px;
}



.banner-box img {
	width: 100%;
	height: 100%;
	transition: all 1s ease 0s;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-ms-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
}

.banner-box:hover img {
	transform: scale(1.1) rotateZ(-1.5deg);
	-webkit-transform: scale(1.1) rotateZ(-1.5deg);
	-moz-transform: scale(1.1) rotateZ(-1.5deg);
	-o-transform: scale(1.1) rotateZ(-1.5deg);
	-ms-transform: scale(1.1) rotateZ(-1.5deg);
}

.banner-box.long-banner img{
	height: 103%;
	width: 103%;
}

.banner-box .banner-text {
	background-color: rgba(255,255,255,0.7);
	padding: 10px;
	margin: 20px;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	font-size: 17px;
	color: #333333;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	z-index: 4;
	width: 40%;
}

.banner-box .banner-text .name {
	font-weight: 500;
	color: #333333;
	font-size: 26px;
	margin-bottom: 15px;
}

.banner-box .main-btn {
	background: #ff0020;
	color: #ffffff;
	border-color: #ff0020;
}
.store_3 .banner-box .main-btn {
	background: #f3c501;
	border-color: #f3c501;
}
.banner-box.blue-square .main-btn {
	background: #009997;
	color: #ffffff;
	border-color: #009997;
}
.store_3 .banner-box.blue-square .main-btn {
	background: #9933fc;
	color: #ffffff;
	border-color: #9933fc;
}

.banner-box .main-btn:hover {
	background: rgba(255,0,32,0.7);
	color: #ffffff;
	border-color: rgba(255,0,32,0.7);
}
.banner-box.blue-square .main-btn:hover {
	background: rgba(0,153,151,0.7);
	color: #ffffff;
	border-color: rgba(0,153,151,0.7);
}

.yellow-square,
.blue-square{
	background: url("../image/banner-bg.jpg");
	background-size: cover;
}

.yellow-square{
	border: 3px solid #ff0020;
}
.store_3 .yellow-square{
	border: 3px solid #f3c501;
}

.blue-square{
	border: 3px solid #009997;
}
.store_3 .blue-square{
	border: 3px solid #9933fc;
}

.yellow-square:before{
	content: '';
	width: 135px;
	height: 540px;
	position: absolute;
	right: 0;
	top: 0;
	background: #ff0020;
	z-index: 1;
	-webkit-transform:  rotate(45deg);
	-moz-transform:  rotate(45deg);
	-ms-transform:  rotate(45deg);
	-o-transform:  rotate(45deg);
	transform:  rotate(45deg);
	transition: 0.3s all;
}
.store_3 .yellow-square:before{
	background: #f3c501;
}

.blue-square:before{
	content: '';
	width: 135px;
	height: 540px;
	position: absolute;
	right: 0;
	top: 0;
	background: #009997;
	z-index: 1;
	-webkit-transform:  rotate(45deg);
	-moz-transform:  rotate(45deg);
	-ms-transform:  rotate(45deg);
	-o-transform:  rotate(45deg);
	transform:  rotate(45deg);
	transition: 0.3s all;
}
.store_3 .blue-square:before{
	background: #9933fc;
}

.banner-box.yellow-square img,
.banner-box.blue-square img{
	width: 230px;
	height: auto;
	z-index: 5;
	position: relative;
	margin-right: 30px;
	max-height: 310px;
	animation-name: blinker;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
	animation-duration: 2s;
	-webkit-animation-name: blinker;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease;
	-webkit-animation-duration: 2s;
}

@keyframes blinker {
	0% {
		transform: scale(1) rotateZ(0deg);
		-webkit-transform: scale(1) rotateZ(0deg);
		-moz-transform: scale(1) rotateZ(0deg);
		-o-transform: scale(1) rotateZ(0deg);
		-ms-transform: scale(1) rotateZ(0deg);
	}
	50% {
		transform: scale(1.07) rotateZ(-1.1deg);
		-webkit-transform: scale(1.07) rotateZ(-1.1deg);
		-moz-transform: scale(1.07) rotateZ(-1.1deg);
		-o-transform: scale(1.07) rotateZ(-1.1deg);
		-ms-transform: scale(1.07) rotateZ(-1.1deg);
	}
	100%{
		transform: scale(1) rotateZ(0deg);
		-webkit-transform: scale(1) rotateZ(0deg);
		-moz-transform: scale(1) rotateZ(0deg);
		-o-transform: scale(1) rotateZ(0deg);
		-ms-transform: scale(1) rotateZ(0deg);
	}
}

@-webkit-keyframes blinker {
	0% {
		transform: scale(1) rotateZ(0deg);
		-webkit-transform: scale(1) rotateZ(0deg);
		-moz-transform: scale(1) rotateZ(0deg);
		-o-transform: scale(1) rotateZ(0deg);
		-ms-transform: scale(1) rotateZ(0deg);
	}
	50% {
		transform: scale(1.07) rotateZ(-1.1deg);
		-webkit-transform: scale(1.07) rotateZ(-1.1deg);
		-moz-transform: scale(1.07) rotateZ(-1.1deg);
		-o-transform: scale(1.07) rotateZ(-1.1deg);
		-ms-transform: scale(1.07) rotateZ(-1.1deg);
	}
	100%{
		transform: scale(1) rotateZ(0deg);
		-webkit-transform: scale(1) rotateZ(0deg);
		-moz-transform: scale(1) rotateZ(0deg);
		-o-transform: scale(1) rotateZ(0deg);
		-ms-transform: scale(1) rotateZ(0deg);
	}
}

.banner-box.yellow-square:hover:before,
.banner-box.blue-square:hover:before{
	top: 30px;
}

.banner-box.white .banner-text{
	color: var(--color-main);
	position: relative;
}

.banner-box.white .banner-text .name {
	color: var(--color-main);
}

.owl-carousel.custom-nav .owl-nav {
	position: absolute;
	top: -61px;
	right: 0;
}



.owl-carousel.custom-nav .owl-nav button.owl-prev,
.owl-carousel.custom-nav .owl-nav button.owl-next{
	width: 46px;
	height: 36px;
	text-align: center;
	border-radius: 0;
	overflow: hidden;
	background-color: #ffffff;
	font-size: 28px;
	line-height: 41px;
	transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
}

.owl-carousel.custom-nav .owl-nav button.owl-prev {
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	margin-right: -1px;
}

.owl-carousel.custom-nav .owl-nav button.owl-next {
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}

.owl-carousel.custom-nav .owl-nav button.owl-prev:hover,
.owl-carousel.custom-nav .owl-nav button.owl-next:hover{
	background-color: #00639A;
	color: #fff;
}




.owl-dots {
	display: block;
	text-align: center;
	position: relative;
	margin-bottom: 30px;
	margin-top: -20px;
}



.owl-carousel button.owl-dot{
	width: 22px;
	height: 10px;
	background: #ddd;
	display: inline-block;
	margin: 0 3px;
	border-radius: 20px;
}

.owl-carousel button.owl-dot.active {
	background: #00639A;
}

.owl-carousel.carousel .owl-item img {
	width: auto;
}

.owl-carousel.carousel .owl-dots {
	margin-bottom: 0px;
}

.banner-block-home .banner-box {
	height: 165px;
}

.banner-block-home .banner-box .banner-text .name {
	margin-bottom: 5px;
}

.banner-block-home .banner-box .title {
	color: var(--color-main);
	margin-bottom: 10px;
	font-size: 15px;
	display: block;
	width: 60%;
}

.banner-block-home .banner-box a {
	color: var(--color-main);
	text-decoration: underline;
	font-size: 14px;
}

.banner-block-home .banner-box a:hover {
	color: #1071dc;
}


.thumb-container .slider-thumb {
	width: 100%;
	position: relative;
	z-index: 2;
}

.slider-thumb-container {
	position: relative;
	z-index: 3;
	margin: 0 -5px;
}

.thumb-container .slider-thumb img{
	display: block;
	width: 100%;
	border: 1px solid#ddd;
	border-radius: 10px;
	opacity: 0.5;
	padding: 10px;
}

.slider-bigthumb {
	width: 100%;
	margin-bottom: 10px;
	border: 1px solid#ddd;
	border-radius: 10px;
}

.thumb-container .slider-thumb .slick-current img,
.thumb-container .slider-thumb img:hover{
	opacity: 1;

}

.thumb-container .slider-thumb .slick-slide {
	margin: 0 5px;
	cursor: pointer;
}

.thumb-container .slider-thumb .slick-slide:focus{
	outline: none;
}

.none-slider-bigthumb {
	width: 100%;
}

.slider-bigthumb .slick-slide {
	border-radius: 10px;
	overflow: hidden;
	padding: 15px;
}

.slider-bigthumb .slick-slide img{
	width: 100%;
}




.prev.slick-arrow,
.next.slick-arrow{
	font-size: 28px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: bold;
	color: #ffffff;
	width: 36px;
	height: 36px;
	margin: 0 auto;
	background: #00639A;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	z-index: 20;
	cursor: pointer;
	margin-top: -18px;
}
.store_3 .prev.slick-arrow,
.store_3 .next.slick-arrow{
	background: #9933fc;
}

.prev.slick-arrow {
	left: -13px;
}

.next.slick-arrow {
	right: -13px;
}

.prev.slick-arrow.slick-disabled,
.next.slick-arrow.slick-disabled {
	color: #989da5;
	background: #ededed;
}



.checkcontainer {
	position: relative;
	cursor: pointer;
	font-size: 13px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: auto;
	display: inline-block;
	padding: 5px 20px;
	border: 1px solid#ddd;
	border-radius: 6px;
	margin: 0 5px 5px 0;
}

.checkcontainer .text{
	position: relative;
	z-index: 3;
}

.checkcontainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.radiobtn {
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	background: none;
	border-radius: 6px;
	border: 1px solid#ddd;
}

.checkcontainer:hover input ~ .radiobtn {
	background-color: #ccc;
}

.checkcontainer input:checked ~ .radiobtn {
	border-color: #edf0f5;
	background: #edf0f5;
}


.checkcontainer img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid#ddd;
}


.checkboxcontainer {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
	cursor: pointer;
	font-size: 13px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	line-height: 20px;
}

.checkboxcontainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	border: 1px solid#ddd;
	border-radius: 3px;
}

.checkboxcontainer:hover input ~ .checkmark {
	background-color: #ccc;
}

.checkboxcontainer input:checked ~ .checkmark {
	background-color: #00acc1;
	border-color: #00acc1;
}

.checkboxcontainer:after {
	content: "";
	position: absolute;
	display: none;
}


.checkboxcontainer input:checked ~ .checkmark:after {
	display: block;
}


.checkboxcontainer .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.review-stars-lab {
	overflow: hidden;
}

.lab-text {
	font-size: 14px;
	float: left;
	margin-right: 30px;
	margin-top: 2px;
}

#reviewstar{overflow:hidden;position:relative;float:left;}
#reviewstar input{opacity:0;position:absolute;top:0;z-index:0;width:18px;height:20px;margin:0;}
#reviewstar input:checked ~ label{color:#ffd820;}
#reviewstar label{float:right;cursor:pointer;margin-bottom:0;margin-right:4px;position:relative;z-index:1;color:#e2e2e2;font-size:19px;transition:0.3s all;}
#reviewstar label:hover,
#reviewstar label:hover ~ label{color:#ffd820;}


.product-info h1 {
	font-size: 26px;
	margin: 0 0 10px;
}

.product-info .rating {
	margin-bottom: 15px;
}

.box-info-product{
	overflow: hidden;
}

.box-info-product .form-group {
	float: left;
	margin: 0;
	width: 160px;
}

.box-info-product #button-cart {
	width: 205px;
	margin-left: 12px;
	font-size: 14px;
}

.number-spinner{
	border-radius: 30px;
	overflow: hidden;
}



.detail-action .btn-icon {
	background: none;
	border: none;
	padding: 0;
	font-weight: 400;
	display: inline-block;
	margin-right: 15px;
	margin-bottom: 15px;
	color: #00639A;
}
.store_3 .detail-action .btn-icon {
	color: #9933fc;
}

.detail-action .btn-icon:hover{
	color: #00acc1;
}
.store_3 .detail-action .btn-icon:hover{
	color: #ff33bb;
}

.detail-action .btn-icon span{
    font-size: 20px;
    float: left;
    margin-right: 5px;
}

.number-spinner .btn{
	height: 42px;
	background: #eaebf1;
	color: #000;
	border: none;
	padding: 10px 20px;
}



.number-spinner .form-control {
	height: 42px;
	border-color: #eaebf1;
}



.product-price {
	margin-bottom: 15px;
}

.product-price .new-price {
	color: #ff0020;
	font-size: 24px;
	font-weight: 600;
	display: inline-block;
}
.product-price .new-price.arch_price {
	color: #999999;
}
.product-price .tax {
	font-size: 12px;
}

.product-price .old-price{
	display: inline-block;
	font-size: 20px;
	margin-left: 15px;
	text-decoration: line-through;
	color: #afafaf;
	font-weight: 300;
}


.product-info .list-unstyled {
	margin-bottom: 15px;
	line-height: 30px;
}

.product-info .list-unstyled span {
	display: inline-block;
	width: 150px;
}

.box-review {
	margin-bottom: 15px;
}

.box-review .rating{
	display: inline-block;
	margin: 0 20px 0 0;
	z-index: 0;
	position: relative;
}

.card-info .nav-tabs {
	border: none;
	background: none;
	margin: 0;
	padding: 0;
}

.card-info .nav-tabs>li {
	float: left;
	margin-bottom: 0px;
}

.card-info .nav-tabs>li>a {
	display: block;
	font-size: 16px;
	color: var(--color-main);
	padding: 14px 25px;
	font-weight: 400;
	position: relative;
	border-radius: 0;
	border: none!important;
	margin: 0;
}

.card-info .nav-tabs>li.active>a {
	background: #fff;

}

.card-info .nav-tabs>li.active>a:hover {
	background-color: #ffffff;
}

.card-info .nav-tabs>li>a:hover {
	background-color: #e8e8e8;
	color: var(--color-main);
	border: none;
}

.review-box .autor{
	font-weight: 500;
	font-size: 16px;
}

.review-box {
	margin-bottom: 30px;
	background: #ffffff;
	position: relative;
	border-bottom: 2px solid#f7f8fb;
	padding-bottom: 30px;
}


.review-box .date {
	font-weight: 600;
	color: #dcdde0;
}

#sidebar-btn {
	width: 50px;
	height: 50px;
	position: relative;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	display: none;
	float: right;
	background: #fff;
	border-radius: 50%;
}

#sidebar-btn span{
	display: block;
	position: absolute;
	height: 1px;
	width: 24px;
	background: var(--color-main);
	border-radius: 9px;
	opacity: 1;
	left: 0px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}


#sidebar-btn span:nth-child(1) {
	top: 18px;
}

#sidebar-btn span:nth-child(2),
#sidebar-btn span:nth-child(3) {
	top: 25px;
}

#sidebar-btn span:nth-child(4) {
	top: 32px;
}

#sidebar-btn.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#sidebar-btn.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#sidebar-btn.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#sidebar-btn.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}


#sidebar-btn-mobile{
	width: 50px;
	height: 50px;
	position: relative;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	float: right;
	background: #fff;
	border-radius: 50%;
	display: none;
}

.show-sidebar-list{
	display: none;
}

.sidebar-list.wt-list>li>a{
	color: #fff;
	padding: 15px 15px 15px 45px;
}

.sidebar-list.show-sidebar-list>li>a span {
	right: auto;
	left: 15px;
}
.sidebar-information {
	margin-bottom: 20px;
}
.sidebar-information-title {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: var(--color-grey-82);
	margin-bottom: 10px;
}
.sidebar-information-body {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.sidebar-information-item {
	display: flex;
	align-items: center;
	gap: 10px;
}
.sidebar-information-item-image {
	max-width: 50px;
	width: 100%;

	font-size: 36px;
	line-height: 50px;
	text-align: center;

	background: var(--color-gery-f8);

	border-radius: 5px;
}
.sidebar-information-item-title {
	font-size: 13px;
	color: var(--color-grey-82);

	margin-bottom: 5px;
}
.sidebar-information-item-text {
	font-size: 14px;
	font-weight: 600;
}


.main-table{
	width: 100%;
}

.main-table tr th {
	font-weight: 500;
	border-bottom: 1px solid#ddd;
	vertical-align: middle;
	padding: 10px;
}

.main-table tr td{
	vertical-align: middle;
	padding: 10px;
	border-top: 1px solid#f0f3f6;
}



.main-table tr td.price {
	font-weight: bold;
}

.main-table tr td.head-td {
	background: #f7f8fb;
	padding: 10px;
}




.group-inpt .btn {
    height: 38px;
    padding: 5px 20px;
}

.panel-default>.panel-heading {
	color: var(--color-main);
	background-color: #f7f8fb;
	padding: 15px;
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
	border-top-color: #f7f8fb;
}

.panel-default>.panel-heading>.panel-title>a{
	display: block;
	position: relative;
}

.panel-default>.panel-heading>.panel-title>a .fa {
	font-size: 19px;
	position: absolute;
	right: 15px;
}

.panel-group .panel {
	margin-bottom: 0;
	border-radius: 3px;
	overflow: hidden;
	background: #ffffff;
}

.account-box {
	display: block;
	text-align: center;
	border: 1px solid#ddd;
	border-radius: 10px;
	padding: 20px 35px;
	color: var(--color-main);
	margin-bottom: 30px;
}

.account-box span {
	font-size: 36px;
	display: block;
	margin-bottom: 10px;
}

.account-box:hover {
	background: #f0f3f6;
}


.option-label {
	font-size: 16px;
}

.input-image {
	display: inline-block;
	margin-right: 5px;
}

.input-image img {
	display: block;
	padding: 2px;
	width: 50px;
	height: 50px;
}

.input-image label, .input-image label{
	padding: 0;
}

.checkbox+.checkbox, .radio+.radio{
	margin-top: 10px;
}


.input-image [type="radio"]:not(:checked),
.input-image [type="radio"]:checked {
	position: absolute;
	left: -9999px;
}

.input-image [type="radio"]:checked + img {
	background: #2986ff;
}

.input-image [type="radio"]:disabled + label {
	color: #aaa;
}


.show-tablet{
	display: none!important;
}

.hide-tablet{
	display: block!important;
}

.slider-home-carousel {
	border-top: 1px solid#f7f8fb;
}

.slider-home-carousel .home-carousel-wrapper{
	display: flex;
	background: #00639A
}

.slider-home-carousel .left-info{
	height: 300px;
	/*background: #00639A;*/
	color: #333333;
	padding: 20px;
	width: 750px;
	display: flex;
	align-items: center;
}

.slider-home-carousel .slider-title {
	font-size: 32px;
	font-weight: bold;
	line-height: 110%;
	margin-bottom: 10%;
}

.slider-home-carousel .after-title {
	font-size: 18px;
	margin-bottom: 20px;
}

.slider-home-carousel .price-text {
	font-size: 18px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.slider-home-carousel .price-text span{
	font-size: 30px;
	font-weight: bold;
	margin: 0 5px;
}

.slider-home-carousel .list-attribute .item span{
	width: 46px;
	font-size: 24px;
	border: 1px solid#fff;
	text-align: center;
	height: 46px;
	border-radius: 50%;
	line-height: 46px;
	float: left;
	margin-right: 10px;
}

.slider-home-carousel .list-attribute .item{
	overflow: hidden;
	margin-top: 15px;
}

.slider-home-carousel .right-info {
	width: 390px;
	height: 300px;
}

.owl-carousel .owl-item .right-info  img {
	display: block;
	height: 100%;
	width: auto;
	float: right;
}

.slider-home-carousel .owl-dots {
	text-align: left;
	padding: 0 20px;
	margin-top: -30px;
}

.slider-home-carousel.owl-carousel button.owl-dot {
	width: 16px;
	height: 16px;
	background: #00639A;
	border-radius: 20px;
	margin: 0 5px 0 0;
}
.store_3 .slider-home-carousel.owl-carousel button.owl-dot {
	background: #9933fc;
}

.slider-home-carousel.owl-carousel button.owl-dot.active {
	background: #fff;
}

.slider-home-carousel .main-btn {
	background: #00639A;
	color: #ffffff;
	border-color: #00639A;
	margin-right: 30px;
}
.store_3 .slider-home-carousel .main-btn {
	background: #9933fc;border-color: #9933fc;
}

.slider-home-carousel .black_friday .main-btn {
	background: #ff181e;
	color: #ffffff;
	border-color: #ff181e;
	margin-right: 20px;
}
.slider-home-carousel .valentine .main-btn {
	background: #eb7e9a;
	color: #fff;
}

#back-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1000;
	color: var(--color-main);
	font-size: 40px;
	text-align: center;
	line-height: 56px;
	width: 50px;
	height: 50px;
	margin-bottom: 0;
	background: #e5e6ea;
	border-radius: 50%;
	box-shadow: 0 0 3px 1px var(--color-shadow);
	outline: none;
	transition: 0.3s all;
	cursor: pointer;
	opacity: 1;
}

#back-top:hover{
	opacity: 1;
	background: var(--color-second);
	color: var(--color-main);
}


#policy{
	position: fixed;
	z-index: 9999;
	bottom: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	display: none;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	background-color: #00639A;
	padding: 20px 0;
	color: #fff;
	box-shadow: 0 0 0px 3px #00639A;
	font-weight: 400;
}
#policy.active{
	display:block
}
#policy.activated{
	margin-bottom:0;
	opacity:1;
	visibility:visible
}

.policy-container {
	text-align: right;
}
.policy-text {
	width: calc(100% - 200px);
	font-size: 12px;
	float: left;
	text-align: left;
}
#policy .policy-confirm{
	transition: .3s;
	background-color: #ffffff;
	color: var(--color-main);
	float: right;
	padding: 10px 25px;
	font-size: 12px;
	border-radius: 40px;
	display: inline-block;
}
#policy .policy-confirm:hover{
	color:var(--color-main);
	background-color:#ededed
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;

	margin: 0 0 20px;
}
.pagination > li > span,
.pagination > li > a {
	font-size: 16px;
	line-height: 22px;
	color: var(--color-grey-82);
	font-weight: 600;
	background-color: #fff;
	border: 1px solid var(--color-grey-dd);
	border-radius: 10px;
	box-shadow: 0 0 3px 1px var(--color-shadow);
	transition: all .3s ease;
}
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
	color: var(--color-main);
	background-color: #fff;
	border-color: var(--color-grey-dd);
	transform: scale(1.1);
}
.pagination > .active > span,
.pagination > .active > a {
	color: var(--color-main);
	background-color: var(--color-second);
	border-color: var(--color-second);
}
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
	color: var(--color-main);
	background-color: var(--color-second);
	border-color: var(--color-second);
}
.pagination > li:first-child > span,
.pagination > li:last-child > span,
.pagination > li:first-child > a,
.pagination > li:last-child > a {
	border-radius: 10px;
}

/*.pagination {*/
/*    margin: 0 0 20px;*/
/*}*/

/*.pagination>li>a,*/
/*.pagination>li>span {*/
/*    border-radius: 50%;*/
/*    width: 34px;*/
/*    height: 34px;*/
/*    text-align: center;*/
/*    font-size: 12px;*/
/*    font-weight: 500;*/
/*    line-height: 34px;*/
/*    padding: 0;*/
/*    border: none;*/
/*    background: #fff;*/
/*    color: #777;*/
/*}*/

/*.pagination>li {*/
/*    display: inline-block;*/
/*    margin-right: 5px;*/
/*}*/

/*.pagination>li:first-child>a,*/
/*.pagination>li:first-child>span{*/
/*	border-radius: 50%*/
/*}*/

/*.pagination>li:last-child>a, .pagination>li:last-child>span{*/
/*	border-radius: 50%*/
/*}*/

/*.pagination>.active>a,*/
/*.pagination>.active>a:focus,*/
/*.pagination>.active>a:hover,*/
/*.pagination>.active>span,*/
/*.pagination>.active>span:focus, .pagination>.active>span:hover {*/
/*    z-index: 2;*/
/*    color: #fff;*/
/*    cursor: default;*/
/*    background-color: #777777;*/
/*    border-color: #777777;*/
/*}*/


.manufactured-box {
	background: #fff;
	display: block;
	padding: 15px;
	text-align: center;
	border-radius: 10px;
	font-size: 14px;
	color: var(--color-main);
	font-weight: 500;
	margin-bottom: 15px;
}

.manufactured-box:hover{
	color: var(--color-main);
	-webkit-box-shadow: 0 0 15px 0 rgba(50,50,50,.15);
	box-shadow: 0 0 15px 0 rgba(50,50,50,.15);
}

.manufactured-box img {
	width: 100%;
	margin: 0 auto;
	display: block;
}

.service-aside {
	background: #ffffff;
	padding: 30px 0 0;
	border-radius: 3px;
	display: flex;
	border-top: 1px solid#ededed;
	margin-top: 30px;
}

.service-aside .service-item {
	padding: 0 10px 0 40px;
	position: relative;
	width: 33.3333%;
}

.service-aside .service-item:last-child{
	margin-bottom: 0;
}

.service-aside .service-item .title {
	font-size: 14px;
}

.service-aside .service-item .text {
	font-size: 13px;
	color: #777;
}

.service-aside .service-item span {
	font-size: 27px;
	position: absolute;
	left: 0;
	top: 3px;
}

.widget-banner {
	position: relative;
	margin-bottom: 30px;
	border-radius: 10px;
	overflow: hidden;
}



.widget-banner img {
	width: 100%;
	transition: all 1s ease 0s;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-ms-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
}

.widget-banner:hover img {
	transform: scale(1.1) rotateZ(-1.5deg);
	-webkit-transform: scale(1.1) rotateZ(-1.5deg);
	-moz-transform: scale(1.1) rotateZ(-1.5deg);
	-o-transform: scale(1.1) rotateZ(-1.5deg);
	-ms-transform: scale(1.1) rotateZ(-1.5deg);
}

.banner-body{
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	color: #fff;
}

.banner-body .main-btn {
	background: #ff0020;
	color: #000;
	border-color: #ff0020;
}

.banner-body .title {
	position: relative;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	padding: 20px 20px 10px;
}

.banner-body .subtitle{
	font-size: 13px;
	position: relative;
	text-align: center;
	padding: 0 20px 0;
}

.banner-body .main-btn{
	width: 150px;
	margin: 15px auto 0;
	display: block;
}


#lightboxOverlay { position: fixed !important; top: 0; left: 0; height: 100% !important; width: 100% !important; }
#lightbox { position: fixed !important; top: 50% !important; transform: translateY(-50%); }
.sidebar-btn-text {display: none;}


@media(max-width: 1300px){
	.wrapper {
		padding-left: 0;
	}

	#sidebar-btn{
		display: none;
	}

	#sidebar-btn-mobile{
		display: block;
	}

	#sidebar {
		left: 0;
	}

}


@media(max-width: 1200px){

	/*body {*/
	/*	padding-bottom: 50px;*/
	/*	padding-top: 70px;*/
	/*}*/
	.btn-view .btn {
	    width: 42px;
	}

	.show-sidebar-list{
		display: block;
	}

	.btn-settings {
		color: #fff;
	}

	.btn-settings.active {
		color: #fd0;
	}

	.btn-settings:hover {
		color: #ffffff;
	}

	/*.product-thumb .caption {*/
	/*    padding: 5px 15px 20px;*/
	/*}*/

	.service-item {
	    padding: 30px 0 30px 50px;
	}

	.service-item .title {
		margin-bottom: 5px;
		font-size: 16px;
		font-weight: 500;
	}

	.service-item .text {
	    font-size: 12px;
	}

	.banner-block-home .banner-box .title {
	    font-size: 13px;
	}

	#search {
		width: 515px;
		margin-right: 20px;
	}

	.banner-box.yellow-square img, .banner-box.blue-square img {
		width: 180px;
		max-height: 240px;
	}

	.banner-box {
		height: 290px;
	}

	/*.product-list .product-thumb .caption .description {*/
	/*	font-size: 12px;*/
	/*}*/

	/*.product-list .product-thumb .quiqview-btns .icon-btn .text {*/
	/*	display: none;*/
	/*}*/

	.slider-home-carousel .right-info {
		width: 580px;
		height: 280px;
	}

	.slider-home-carousel .left-info {
		height: 280px !important;
	}

	.slider-home-carousel .slider-title {
		font-size: 24px;
		line-height: 1;
	}

	.slider-home-carousel .after-title {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.slider-home-carousel .price-text span {
		font-size: 24px;
		font-weight: bold;
	}

	.slider-home-carousel .list-attribute .item span {
		width: 40px;
		font-size: 20px;
		height: 40px;
		line-height: 40px;
	}

	.slider-home-carousel .list-attribute .item {
		font-size: 12px;
	}

	.box-info-product .form-group {
		width: 180px;
	}

	.box-info-product #button-cart {
		width: 205px;
	}

    .service-item span {
        top: 16px;
    }

    .service-item .text {
        font-size: 15px;
    }

	.service-item {
		padding: 15px 0 15px 70px;
	}

    .footer-service {
        padding: 15px 0;
    }

    .thumb-container {
        margin-bottom: 30px;
    }


    .banner-box img {
        width: auto;
        float: right;
    }

    .banner-block-home .banner-box .title {
        font-size: 15px;
    }

	.two-banners .banner-box .banner-text {
		background: rgba(255, 255, 255, 0.6);
		width: 100%;
		color: #000;
	}

	.category-wall-box .image img {
		width: 110px;
		height: 110px;
		margin-top: 45px;
	}

    /*.product-list .product-thumb .image img {*/
    /*    width: 160px;*/
    /*    height: 160px;*/
    /*}*/

    /*.product-list .product-thumb .caption {*/
    /*    margin-left: 175px;*/
    /*}*/


    /*.product-list .product-thumb .caption .description {*/
    /*    font-size: 13px;*/
    /*    margin-bottom: 10px;*/
    /*}*/

	.btn-cart {
		margin: 0 5px;
	}


	.show-tablet{
		display: block!important;
	}

	.hide-tablet{
		display: none!important;
	}

	.banner-box .banner-text .name {
		font-size: 20px;
	}

	.slider-home-carousel .price-text {
		margin-bottom: 0;
	}

	.slider-home-carousel .main-info {
		margin-right: 30px;
	}

	.slider-home-carousel .list-attribute .item {
		font-size: 12px;
		margin: 10px 0;
	}

	.list-attribute {
		width: 450px;
	}

	/*.subcat-box {*/
	/*	width: 25%;*/
	/*}*/

	#menu .container{
		width: auto;
	}

	#menu .dropdown-menu {
		left: 0;
		top: auto;
		bottom: 100%;
	}

	#menu #cart .dropdown-menu {
		left: auto;
		top: 100%;
		bottom: auto;
		right: 0;
	}

	.slider-home-carousel .right-info {
		width: 390px;
	}


	#sidebar-btn {
		display: block;
	}
	.sidebar-btn-text {display: inline-block;}

	#sidebar{
		width: 280px;
		-webkit-transform: translateX(-280px);
		-moz-transform: translateX(-280px);
		-ms-transform: translateX(-280px);
		-o-transform: translateX(-280px);
		transform: translateX(-280px);
		height: auto;
		bottom: 50px;
		position: fixed;
		top: 70px;
		z-index: 1003;
		overflow: auto;
	}

	#sidebar .container {
		width: auto;
		padding: 0;
	}

	.sidebar-list>li {
		display: block;
		float: none;
	}

	.sidebar-list .dropdown-menu {
		position: relative;
		-webkit-box-shadow: none;
		box-shadow: none;
		background: #3dabff;
	}

	.sidebar-list .dropdown-menu a {
		color: #fff;
	}

	.sidebar-list .dropdown-menu a:hover {
		background: #6cbfff;
	}

	.open-sidebar #sidebar{
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}

	#menu {
		position: fixed;
		top: 0;
	}

	#menu .menu-right {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background: #fff;
		justify-content: space-between;
		height: 50px;
		border-top: 1px solid#ededed;
	}

	#menu .menu-right>div, #menu .menu-right>a {
		width: 33.3333%;
		padding: 0px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#menu .menu-right #search{
		display: none;
	}

	#menu .menu-right .icon-btn-menu {
		display: block;
		float: none;
		height: 50px;
		padding: 3px 15px;
		line-height: 50px;
		text-align: center;
	}

	#menu .menu-right .icon-btn-menu .count {
		top: 8px;
		right: 50%;
		margin-right: -24px;
		left: auto;
	}

	#menu .menu-right .dropdown .icon-btn-menu{
		width: 100%;
	}

	/*#top-menu{*/
	/*	display: none;*/
	/*}*/
	.footer-powered {text-align: center;}
	.footer-powered .powered, .footer-powered .copyright {float: none;}
}


/* Header */
#top-menu {
	position: relative;
	z-index: 1002;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	padding-top: 10px;
	margin-bottom: 20px;

	background: var(--color-white);
	border-bottom: 1px solid var(--color-grey-dd);
	box-shadow: var(--box-shadow);
}

#top-menu .menu-left,
#top-menu .menu-right{
	list-style: none;
	padding: 0;
	margin: 0;
}
#top-menu .menu-left img {
	max-width: 70px;
	width: 100%;
}
#top-menu .btn-group .fa {
	font-weight: 700;

	margin-left: 5px;

	transition: transform .3s ease;
}
#top-menu .dropdown .fa {
	font-weight: 700;

	margin-left: 5px;

	transition: transform .3s ease;
}

#top-menu .btn-group.open .fa {
	transform: rotate(-180deg);
}
#top-menu .dropdown.open .fa {
	transform: rotate(180deg);
}
#top-menu .header-lang {
	font-size: 16px;
	color: var(--color-main);
	font-weight: 700;
	text-decoration: none;

	padding: 15px;

	border: 1px solid;
	border-color: var(--color-grey-dd);
	border-radius: 10px;

	box-shadow: var(--box-shadow);
}
#top-menu .header-lang:hover {
	color: var(--color-second);
	border-color: var(--color-second);
	background: none;
}
#top-menu .dropdown-menu {
	z-index: 1003;

	margin-top: 10px;
	padding: 0 10px;

	border: none;
	border-right: 10px;

	box-shadow: var(--box-shadow);
}
#top-menu .dropdown-menu a {
	display: block;

	font-size: 14px;
	font-weight: 600;
	text-align: center;

	padding: 10px 0;
}
#top-menu .dropdown-menu a.active {
	color: var(--color-second);
}
#top-menu .dropdown-menu a:hover, #top-menu .dropdown-menu a:focus {
	background-color: unset;
	color: var(--color-second);
}
#top-menu .first-menu {
	margin-bottom: 10px;
}
#top-menu .first-menu .dropdown-menu {
	left: unset;
	right: 0;
}
#top-menu .second-menu {
	font-size: 16px;
	font-weight: 600;
}
#top-menu .second-menu ul {
	list-style: none;

	padding: 0;
	margin: 0;
}
#top-menu .second-menu .header-navigation-list {
	display: flex;
	gap: 15px;

	white-space: nowrap;

	padding-bottom: 10px;
}
#top-menu .second-menu a {
	color: var(--color-main);

	padding-bottom: 10px;

	border-bottom: 3px solid transparent;
	transition: color .3s ease, border .3s ease;
}
#top-menu .second-menu a.active,
#top-menu .second-menu a:hover {
	color: var(--color-second);
	border-bottom: 3px solid var(--color-second);
}
#top-menu .second-menu ::-webkit-scrollbar {
	display: none;
}
	/* Mainpage */
.main-banner {
	text-align: center;

    margin-bottom: 20px;
}
.main-banner img {
	border-radius: 20px;
	min-height: 30rem;
	object-fit: cover;
}


/*#top-menu .menu-lang a {padding: 7px 12px;}*/
/*.menu-lang .btn {padding: 7px 25px;}*/
/*.menu-lang .btn:hover {background-color: transparent;}*/
/*.lang-circle {background-color: #00639A;border-radius: 50%;color: #ffffff;display: inline-block;height: 30px;line-height: 30px;text-align: center;width: 30px;}*/
.store_3 .lang-circle {background-color: #9933fc;}
.ocf-offcanvas .ocfilter-mobile-handle {top: 116px;}
.ocfilter-mobile-handle .btn {color: #ffffff;}
.ocfilter-mobile-handle .btn:hover, .ocfilter-mobile-handle .btn:active {background-color: #337ab7;border: none;}

.clearfix:after {clear: both;content: ''; display: block;visibility: hidden;}
.simplecheckout-cart .quantity .btn {background-color: #eaebf1;border: none;color: #000000;padding: 10px 20px;}
.simplecheckout-cart .quantity .btn.btn-danger {background-color: #ff0020;color: #ffffff;}
.simplecheckout-cart .quantity .btn.btn-danger:hover {background-color: #ffffff;color: #ff0020;}
.store_3 .simplecheckout-cart .quantity .btn.btn-danger {background-color: #9933fc;color: #ffffff;}
.store_3 .simplecheckout-cart .quantity .btn.btn-danger:hover {background-color: #ffffff;color: #9933fc;}
#simplecheckout_button_cart {color: #fff;}

/* Footer */
footer .social-btn svg {fill: rgba(0,0,0,0.25); width: 16px;}
footer .social-btn a:hover svg {fill: rgba(255,255,255,1);}
.footer-contact .footer-contact-phone {margin: 0;padding: 0;}
.footer-contact-phone li {list-style: none;}

.footer {
	border-top: 1px solid #ddd;
	padding-top: 20px;
}
.footer-columns {
	display: flex;
	justify-content: space-between;
	gap: 10px;

	margin-bottom: 20px;
}
.footer-column-item {
	width: 100%;
	max-width: calc(100% / var(--footer-column-count));
}
.footer-column-title {
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;

	margin-bottom: 10px;
}
.footer-column-text .phone {
	font-weight: 700;
}

/* Media */
@media(max-width: 991px){

	/* header */
	#top-menu .second-menu .container {
		position: relative;
	}
	#top-menu .second-menu .container::before,
	#top-menu .second-menu .container::after {
		position: absolute;
		content: '';
		width: 30px;
		height: 150%;
		bottom: 0;
	}
	#top-menu .second-menu .container::before {
		left: 0;
		background: linear-gradient(-90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%);
	}
	#top-menu .second-menu .container::after {
		right: 0;
		background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%);
	}
	#top-menu .second-menu .header-navigation-list {
		overflow-x: auto;
		padding-bottom: 0;
		gap: 0;
	}
	#top-menu .second-menu .header-navigation-item {
		padding: 0 10px 10px;
	}
	#top-menu .second-menu .header-navigation-item.dropdown {
		position: unset;
	}
	#top-menu .second-menu .header-navigation-item .dropdown-menu {
		width: 100%;
		top: unset;
	}



	/* sidebar */
	.sidebar-information-item-image {
		max-width: 40px;
		font-size: 28px;
		line-height: 40px;
	}
	.sidebar-information-item-text {
		font-size: 13px;
	}

	/*.subcat-box {*/
	/*	width: 33.33333%;*/
	/*}*/

	.slider-home-carousel .main-info {
		margin-right: 0;
	}

	.slider-home-carousel .price-text span {
		font-size: 22px;
	}

	.prev.slick-arrow, .next.slick-arrow {
		top: 35px;
	}

	.service-aside .service-item {
		padding: 0;
		text-align: center;
	}

	.service-aside .service-item span {
		position: relative;
		top: 0;
	}

	.review-box {
		padding: 20px;
	}

	.rating .fa-stack {
		font-size: 6px;
	}

	.category-wall-box .image {
		width: 100%;
		margin: 0;
	}

	.category-wall-box .category-list {
		width: 100%;
		padding-left: 0;
	}

	.category-wall-box .image img {
		margin: 0 auto;
		display: block;
	}

	.category-wall-box {
		display: block;
		height: 330px;
	}

	h1.title-page {
		font-size: 20px;
	}

	.servise-widget .widget-box {
		font-size: 11px;
	}

	#back-top {
		z-index: 998;
		background: #d8d8d8;
		bottom: 70px;
		left: auto;
		right: 20px;
	}

	.widget-box .title span {
		float: none;
		margin-right: 0;
		display: block;
		text-align: center;
	}

	.widget-box .title {
		text-align: center;
	}

	.body-widget ul {
		padding-left: 0;
		list-style: none;
	}

	.body-widget ul li {
		margin-bottom: 7px;
		text-align: center;
	}


	.sidebar-list>li>a span {
		right: 15px;
	}
	.slider-home-carousel .main-btn {
		margin-right: 15px;
		padding: 10px 20px;
	}
}

@media(max-width: 767px){
	#top-menu {
		max-height: 130px;
		height: 100%;

		position: fixed;
		left: 0;
		right: 0;
	}
	.slider-title {height: 44px;overflow: hidden;}
	#menu .dropdown-menu {
		bottom: 100%;
		top: auto;
		width: auto;
		left: 0;
		right: 0;
		border-radius: 0;
		border-bottom: 1px solid#ddd;
		-webkit-box-shadow: none;
		box-shadow: none;
		border-top: 1px solid#ddd;
		margin: 0!important;
	}

	#menu .menu-right>div, #menu .menu-right>a {
		position: initial;
	}

	#logo {
		height: 60px;
	}

	.wrapper > .content {
		margin-top: 150px;
	}

	.banner-box .banner-text {
		width: 90%;
	}

	.banner-box.long-banner img {
		height: auto;
		width: auto;
	}

	.banner-box.yellow-square img, .banner-box.blue-square img {
		width: 150px;
		max-height: 200px;
	}

	.yellow-square:before,
	.blue-square:before{
		width: 80px;
	}

	.card {
		padding: 15px;
		margin-bottom: 15px;
	}

	.section-title {
		font-size: 20px;
		padding-right: 80px;
	}

	.category-wall-box {
		height: auto;
		margin-bottom: 15px;
		text-align: center;
	}

	.row .col-sm-6:last-child .category-wall-box{
		margin: 0;
	}

	footer .list-unstyled {
		margin-bottom: 15px;
	}

	.footer-powered {
		margin-top: 10px;
		text-align: center;
	}

	.footer-powered .powered,
	.footer-powered .copyright{
		float: none;
	}

	.banner-box {
		margin-bottom: 15px;
		height: auto;
	}

	.category-wall-box .title {
		height: auto;
	}

	.category-wall-box .image img {
		width: 140px;
		height: 140px;
	}


	.owl-carousel.custom-nav .owl-nav button.owl-prev, .owl-carousel.custom-nav .owl-nav button.owl-next {
		width: 36px;
		height: 30px;
		line-height: 35px;
	}

	.owl-carousel.custom-nav .owl-nav {
		top: -56px;
	}

	#close-sidebar {
		top: 0px;
		left: auto;
		right: 0;
	}

	.thumb-container {
		display: block;
		margin-bottom: 15px;
	}

	.slider-thumb-container {
		margin-top: 0;
		margin-bottom: 10px;
	}

	.thumb-container .slider-thumb {
		width: auto;
		margin: 0 -5px;
	}

	.thumb-container .slider-thumb .slick-slide {
		margin: 0 5px;
	}

	.slider-bigthumb {
		margin-left: 0;
		padding-left: 0;
	}

	.prev.slick-arrow, .next.slick-arrow {
		border-radius: 50%;
		width: 30px;
		height: 30px;
		position: absolute;
		top: 50%;
		margin-bottom: 0;
		margin-top: -15px;
		z-index: 10;
	}

	#sidebar {
		-webkit-transform: translateX(-100%);
		-moz-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		-o-transform: translateX(-100%);
		transform: translateX(-100%);
		transition: all .3s ease;
		width: 100%;
		top: 60px;
	}

	#sidebar-btn-mobile{
		margin-top: -5px;
	}

	.navbar-brand {
		display: block;
		padding: 0 15px;
	}

	.navbar-brand img {
		height: 34px;
		margin-top: 9px;
	}

	/*body {*/
	/*	padding-top: 132px;*/
	/*	padding-bottom: 50px;*/
	/*}*/

	/*#top-menu{*/
	/*	display: none;*/
	/*}*/


	li.li-category {
		border-bottom: 1px solid#ddd;
	}

	.category-dropdown>li.dropdown-submenu.open>a:before{
		transform: rotate(90deg);
	}

	.card-category img {
		display: none;
	}

	.card-category h1 {
		font-size: 24px;
	}
	.category-empty {
		text-align: center;
	}

		/*.card-subcategory h2 {*/
	/*	font-size: 20px;*/
	/*	margin: 0 0 20px;*/
	/*}*/

	.btn-cart{
		display: none;
	}

	#cart .dropdown-backdrop{
		display: none;
	}


	#cart {
		position: fixed;
		right: 10px;
		z-index: 10;
	}

	#cart .dropdown-menu {
		width: 100%;
		display: block;
		position: fixed;
		left: 0!important;
		top: 60px!important;
		bottom: 0!important;
		padding: 0;
		margin: 0;
		border: none;
		border-radius: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
		background: #f0f3f6;
		overflow: auto;
		padding-bottom: 50px;
		margin-left: -100%!important;
		transition: 0.3s all;
	}

	#cart.open .dropdown-menu{
		margin-left: 0!important;
	}

	#cart>button.icon-btn-menu{
		border-left: none;
		height: 58px;
		line-height: 58px;
	}

	#cart>button.icon-btn-menu .count {
		right: 7px;
	}

	.navbar-toggle{
		margin-right: 10px;
	}

	.buttons-overflow .pull-left,
	.buttons-overflow .pull-right{
		float: none!important;
	}

	.buttons-overflow .btn{
		display: block;
		width: 100%;
	}

	.buttons-overflow .pull-left .btn{
		margin-bottom: 10px;
	}

	#cart .dropdown-menu li p {
		padding: 0 15px 15px;
		background: none;
		overflow: hidden;
		border-top: none;
	}

	#cart .dropdown-menu li p .btn {
		float: none!important;
		width: 100%;
		margin: 5px 0;
	}

	.mini-cart-table tr {
		display: block;
		position: relative;
		padding-left: 80px;
	}

	.mini-cart-table tr td{
		display: block;
	}

	.mini-cart-table tr td:first-child{
		position: absolute;
		left: 0;
		top: 0;
	}

	.mini-cart-table tr td.count {
		width: 40%;
		display: inline-block;
	}

	.mini-cart-table tr td.price {
		display: inline-block;
	}

	.mini-cart-table tr td:last-child {
		position: absolute;
		padding: 0!important;
		top: 8px;
		right: 10px;
	}

	.mini-cart-table tr td:nth-child(2) {
		padding-right: 45px!important;
		padding-bottom: 0!important;
	}


	.total-table {
		font-size: 12px;
	}

	#cart .table .img-thumbnail {
		width: 70px;
		max-width: 70px;
	}

	.alert {
		padding: 8px 60px 8px 55px;
		width: 90%;
		align-items: center;
		border-radius: 3px;
	}

	.alert .fa {
		height: 30px;
		line-height: 30px;
		width: 30px;
		background: none;
		top: 50%;
		margin-top: -15px;
		left: 15px;
	}

	.alert .close {
		right: 15px;
		bottom: -24px;
		font-size: 29px;
		height: 30px;
		width: 30px;
		border-radius: 50%;
	}

	.account-box {
		padding: 15px;
	}

	#back-top{
		display: none!important;
	}

	#content{
		min-height: 1px;
	}

	.breadcrumb {
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		font-size: 12px;
	}

	.breadcrumb > li a:before {
		top: -4px;
	}

	.card-info .nav-tabs {
		margin: 0;
		padding: 0;
	}

	.card-info .nav-tabs>li.active>a:before{
		display: none;
	}

	.product-info h1 {
		font-size: 20px;
		margin: 0 0 15px;
	}

	/*.product-list .product-thumb .image {*/
	/*	float: none;*/
	/*}*/

	/*.product-list .product-thumb .caption {*/
	/*	margin-left: 0;*/
	/*	text-align: left;*/
	/*	padding: 20px;*/
	/*	height: auto;*/
	/*}*/

	/*.product-list .product-thumb .caption .button-group {*/
	/*	right: auto;*/
	/*	flex-direction: row;*/
	/*	position: relative;*/
	/*	width: auto;*/
	/*	justify-content: space-between;*/
	/*	padding: 0;*/
	/*}*/

	/*.product-list .product-thumb .caption .button-group .btn {*/
	/*	display: none;*/
	/*}*/

	/*.product-list .product-thumb .caption .button-group .btn.main-btn {*/
	/*	display: block;*/
	/*	width: auto;*/
	/*	margin: 0;*/
	/*}*/

	/*.product-list .product-thumb .price {*/
	/*	margin-bottom: 0;*/
	/*	text-align: left;*/
	/*}*/

	/*.product-list .product-thumb {*/
	/*	padding: 0;*/
	/*}*/

	/*.news_list .product-list .product-thumb, .news_list_inner {*/
	/*	flex-direction: column;*/
	/*}*/
	/*#content .news_list .product-list .product-thumb .image {*/
	/*	width: 100%;*/
	/*}*/
	/*.news_list_flex {*/
	/*	flex-direction: column;*/
	/*}*/
	/*.news_list_flex  > div {*/
	/*	text-align: left;*/
	/*	width: 100%;*/
	/*}*/
	/*.product-list .product-thumb .caption .description {*/
	/*	display: none;*/
	/*}*/

	/*.product-list .product-thumb .sale {*/
	/*	left: -28px;*/
	/*	right: auto;*/
	/*}*/

	/*.product-list .product-thumb .quiqview-btns .icon-btn,*/
	/*.product-thumb .quiqview-btns .icon-btn{*/
	/*	width: 40px;*/
	/*	height: 40px;*/
	/*	margin: 0 0 10px;*/
	/*	font-size: 20px;*/
	/*	line-height: 40px;*/
	/*	display: block;*/
	/*	color: #777;*/
	/*	border: 1px solid#ddd;*/
	/*	border-radius: 50%;*/
	/*	background: #fff;*/
	/*}*/

	/*.product-list .product-thumb .quiqview-btns, .product-thumb .quiqview-btns {*/
	/*	display: block;*/
	/*	height: auto;*/
	/*	opacity: 1;*/
	/*	background: none;*/
	/*	-webkit-transform: translate(0, 0);*/
	/*	-moz-transform: translate(0, 0);*/
	/*	-ms-transform: translate(0, 0);*/
	/*	-o-transform: translate(0, 0);*/
	/*	transform: translate(0, 0);*/
	/*	top: 20px;*/
	/*	right: 20px;*/
	/*	left: auto;*/
	/*}*/

	/*.product-list .product-thumb .quiqview-btns .icon-btn span {*/
	/*	float: none;*/
	/*	margin-right: 0;*/
	/*	margin-top: 0;*/
	/*}*/

	/*.product-pricelist .product-thumb {*/
	/*	margin: 0 0 30px;*/
	/*	border-radius: 10px;*/
	/*	border: 1px solid#ddd;*/
	/*	padding-left: 0;*/
	/*	height: auto;*/
	/*}*/

	/*.product-pricelist .product-thumb .image {*/
	/*	width: auto;*/
	/*	position: relative;*/
	/*}*/

	/*.product-pricelist .product-thumb .quiqview-btns {*/
	/*	display: block;*/
	/*}*/

	/*.product-pricelist .product-thumb .caption {*/
	/*	padding: 15px;*/
	/*	width: auto;*/
	/*	height: auto;*/
	/*	display: block;*/
	/*}*/

	/*.product-pricelist .product-thumb .caption .button-group {*/
	/*	justify-content: space-between;*/
	/*	flex-direction: row;*/
	/*	position: relative;*/
	/*	width: auto;*/
	/*}*/

	/*.product-pricelist .product-thumb .price {*/
	/*	text-align: left;*/
	/*	margin-bottom: 0;*/
	/*}*/

	/*.product-pricelist .product-thumb .caption .description {*/
	/*	display: none;*/
	/*}*/


	li .icon-btn span {
		float: left;
		margin-right: 10px;
	}

	.icon-btn .btn-text {
		font-size: 13px;
		font-style: normal;
		display: block;
	}

	.navbar-nav .open .dropdown-menu>li>a {
		padding: 5px 15px;
		font-size: 13px;
	}


	#cart .dropdown-menu li .not-empty {
		text-align: left;
	}

	.service-item .title {
		font-size: 15px;
		margin-bottom: 5px;
	}

	.service-item .text {
		font-size: 13px;
	}

	.card-info .nav-tabs>li>a {
		background: #fff;
		text-align: center;
	}

	.card-info .nav-tabs>li.active>a {
		background: #e2dfdf;
	}

	.card-info .nav-tabs>li.active>a:hover {
		background-color: #e2dfdf;
	}

	.review-box {
		margin-bottom: 15px;
		padding: 15px;
	}

	.slider-home-carousel .home-carousel-wrapper{
		display: block;
	}

	.owl-carousel .owl-item .right-info img {
		height: auto;
		width: 100%;
		float: none;
	}

	.slider-home-carousel .right-info {
		width: auto;
		height: auto;
	}

	.slider-home-carousel .left-info {
		display: block;
		text-align: center;
		height: auto;
		width: auto !important;
	}

	.slider-home-carousel .main-info {
		margin-right: 0;
	}

	.slider-home-carousel .list-attribute {
		width: auto;
	}

	.slider-home-carousel .list-attribute .item span {
		float: none;
		display: block;
		margin: 0 auto 5px;
	}

	.slider-home-carousel .after-title {
		margin-bottom: 10px;
		font-size: 14px;
	}

	.slider-home-carousel .slider-title {
		font-size: 22px;
		margin-bottom: 15px;
	}

	#policy{
		width:100%
	}
	.policy-text {
		width: 100%;
		float: none;
		margin-bottom: 10px;
	}
	#policy .policy-confirm {
		float: none;
	}

	.card-info .nav-tabs>li {
		width: 50%;
	}

	.panel-attribute .attr-td {
		padding: 8px 0;
		font-size: 12px;
	}

	.panel-attribute .head-td {
		border-bottom: 1px solid#ddd;
		padding-bottom: 10px;
	}

	/*.pagination {*/
	/*	margin: 0 0 8px;*/
	/*	width: 100%;*/
	/*	text-align: center;*/
	/*}*/

	h1.title-page {
		font-size: 20px;
	}

	.next.slick-arrow {
		right: -17px;
	}

	.prev.slick-arrow {
		left: -17px;
	}

	#menu {
		padding: 0;
		height: auto;
		border: 1px solid#ededed;
		top: 0;
		position: fixed;
	}

	.open-sidebar .overlay {
		z-index: 998;
	}

	#logo img {
		height: 40px;
		width: auto;
	}

	footer {
		text-align: center;
	}

	.menu-nav {
		display: block;
	}

	.footer-contact .phone span {
		float: none;
	}

	footer .social-btn a {
		display: inline-block;
		float: none;
		margin: 0 5px;
	}
}

@media (max-width: 380px) {
	.card-info .nav-tabs>li {
		width: 100%;
	}

	.card-info .nav-tabs>li>a {
		font-size: 14px;
		padding: 10px 15px;
	}

	.box-info-product .form-group {
		float: none;
	}

	.box-info-product .detail-action {
		margin-top: 15px;
		float: none;
	}

	.box-review .rating {
		display: block;
		margin: 0 0 10px;
	}

	.box-info-product .form-group {
		width: 100%;
	}

	.box-info-product #button-cart, .box-info-product input[type=button].btn-block.occm-button {
		width: 100%;
		margin: 10px 0 0;
	}

	.detail-action .btn-icon {
		margin-right: 10px;
	}

	.icon-btn-menu .text{
		display: none;
	}

	.slider-home-carousel .price-text {
		display: block;
		margin-bottom: 15px;
	}
	.slider-home-carousel .price-text img {
		margin: 0 auto;
	}

	.slider-home-carousel .main-btn {
		margin-right: 0;
		width: 100%;
	}

	.slider-home-carousel .owl-dots {
		margin-top: -52px;
	}

	.banner-box.white {
		align-items: center;
		justify-content: center;
		flex-direction: column;
		text-align: center;
	}

	.two-banners .banner-box .banner-text {
		background: none;
		display: block;
	}

	.banner-box.yellow-square img, .banner-box.blue-square img {
		width: auto;
		max-height: auto;
		float: none;
		margin: 0;
	}

	.two-banners .title{
		text-align: center;
	}

	.yellow-square:before, .blue-square:before,
	.blue-square:before, .blue-square:before{
		display: none;
	}

	/*.subcat-box {*/
	/*	width: 100%;*/
	/*}*/

	/*.subcat-box a {*/
	/*	padding: 5px 15px;*/
	/*	margin-bottom: 15px;*/
	/*}*/

	/*.subcat-box a img {*/
	/*	width: 50px;*/
	/*	margin-right: 10px;*/
	/*}*/
}
@media screen and (min-width: 715px) and (max-width: 991px) {
	#search {
		width: 280px;
		margin-right: 0;
	}
	#search button {
		top: 18px;
		z-index: 3
	}
}
@media screen and (max-width: 714px) {
	#search {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		padding-top: 0px;
		z-index: 9;
	}
	#search button {
		top: 3px;
		z-index: 3
	}
	.choose_city_select {
	    width: 250px;
	}
}

/* CUSTOM */
/* Header */
.store_3 .under_nav {display: none;}
.under_nav {position: relative;z-index: 1;}
.under_nav img {height: 24px;width: auto;}
.under_nav_wrapper {background-color: #ffffff;padding: 7px 0;}
.under_nav_wrapper a {align-items: center;color: var(--color-main);display: flex;display: -webkit-flex;font-size: 18px;font-weight: bold;justify-content: center;text-transform: uppercase;}
.under_nav_wrapper div {line-height: 100%;margin-right: 10px;}

#search .form-control::-webkit-input-placeholder {color: #000;}
#search .form-control::-moz-placeholder {color: #000;}
#search .form-control:-ms-input-placeholder {color: #000;}
#search .form-control:-moz-placeholder {color: #000;}
#sidebar-btn-wrapper {align-items: center;display: flex;display: -webkit-flex;}
.slider-home-carousel .home-carousel-wrapper.first {background-image: url(https://bs-market.com.ua/catalog/view/theme/electro/image/slider_002.jpg);background-size: cover}
.slider-home-carousel .home-carousel-wrapper.one {background-image: url(https://bs-market.com.ua/catalog/view/theme/electro/image/slider_00424022020.webp);background-size: cover}
.slider-home-carousel .home-carousel-wrapper.sale {background-image: url(https://bs-market.com.ua/catalog/view/theme/electro/image/MCIM01787955_WD_01.webp);background-size: cover;}
.slider-home-carousel .home-carousel-wrapper.riviera {background-image: url(https://bs-market.com.ua/image/catalog/banners/banner_4_bg.jpg);background-size: cover;}
.slider-home-carousel .home-carousel-wrapper.black-friday {background-image: url(https://bs-market.com.ua/image/catalog/banners/black-friday-background-2.jpg);background-size: cover;}
.slider-home-carousel .home-carousel-wrapper.valentine {background-image: url(https://bs-market.com.ua/image/catalog/banners/valentine_background.jpg);background-size: cover;}

.slider-home-carousel .home-carousel-wrapper.black_friday {background-color: #151514;/*background-image: linear-gradient(to bottom, #151514, #1d1d1c, #252424, #2e2d2c, #363535, #363535, #363535, #363535, #2e2d2c, #252424, #1d1d1c, #151514);*/background-image: url(https://bs-market.com.ua/image/catalog/banners/black-friday-background-2.jpg);background-size: cover;}
.slider-home-carousel .home-carousel-wrapper.black_friday .left-info .main-info {border-radius: 20px;box-shadow: 10px 10px 30px 0px rgb(0 0 0);}
.slider-home-carousel .home-carousel-wrapper.black_friday .right-info {position: relative;}
.slider-home-carousel .home-carousel-wrapper.black_friday .price-text img {max-width: 250px;}
@media screen and (min-width: 768px) {
	.slider-home-carousel .home-carousel-wrapper.black_friday .slider-title {font-size: 50px;margin-bottom: 5%;}
	.owl-carousel .owl-item .right-info img {
		position: relative;
		/*left: -15%;*/
	}
}


.product-info #button-cart {background-color: #ff0020;border: #ff0020;}
.store_3 .product-info #button-cart {background-color: #c6ff2e;border: #c6ff2e;}
.product-info #button-cart:hover {background-color: #fd4d63;border: #fd4d63;}
.store_3 .product-info #button-cart:hover {background-color: #d3ff5e;border: #d3ff5e;}
.slider-home-carousel .left-info .main-info {background-color: rgba(255,255,255,0.7); padding: 10px 20px;}
.news-layout .button-group {padding: 10px;}
.news-layout-title {display: inline-block;height: 38px;margin: 0px;overflow: hidden;}
.news-layout .product-thumb .caption {padding-bottom: 0px;}
.two-banners-lssnews {display: flex;display: -webkit-flex;justify-content: space-between;}
.two-banners-item {width: 49%;}
.two-banners-lssnews .banner-box {height: 220px;}
.two-banners-lssnews .banner-box .banner-text {bottom: auto;width: auto;top:50%;text-align: right;}
.two-banners-lssnews .banner-box .banner-text .name {margin-bottom: 0px;width: 100%;}

/* ABOUT PAGE */
.about_block {margin-bottom: 20px;}
.about_block_wrapper, .partners_grid.more .block .wrapper {display: grid;grid-template-columns: repeat(3, 1fr);grid-gap: 20px;}
.about_title {background-color: #00639A;border-radius: 5px;color: #ffffff;margin-bottom: 20px;padding: 14px 15px;text-transform: uppercase;}
.about_item, .partners_grid.more .block .inner {border-radius: 5px;box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);}
.about_item_top {display: flex;display: -webkit-flex;flex-direction: column;justify-content: space-between; height: 160px;padding: 15px;overflow: hidden;margin-bottom: 5px}
.about_item_image img {width: 100%;}
.about_item_more, .partners_grid.more .more {text-align: center;}
.about_item_more a, .partners_grid.more .more a {background: #00639A;border-color: #00639A;border-radius: 20px; color: #fff;display: inline-block; font-weight: bold;margin: 10px 0;padding: 10px 20px;text-align: center; text-transform: uppercase;}
.partners_grid.more .inner img {height: auto;width: 100%;}
.shop_page_image {margin:20px 0;}
@media screen and (max-width: 560px) {
	#logo img {height: 30px;width: auto;}
	.about_block_wrapper, .partners_grid.more .block .wrapper {grid-template-columns: repeat(1, 1fr);}
	/*#cboxWrapper {width: 320px !important;}*/
	.product-thumb .product-list-link {flex-direction: column-reverse;text-align: center;gap: 10px;padding: 10px;}
	.product-thumb .product-list-link .price {justify-content: center;}
	.product-thumb .product-list-link .caption {gap: 5px;}
}
@media screen and (min-width: 561px) and (max-width: 991px) {
	.about_block_wrapper, .partners_grid.more .block .wrapper {grid-template-columns: repeat(2, 1fr);}
}
/* COOPERATION PAGE */
.cooperation_section {border-bottom: 1px solid rgba(0,0,0,.1);padding: 20px 0;}
.cooperation_section:first-child {padding-top: 0;}
.cooperation_section:last-child {border-bottom: 0;padding-bottom: 0;}
.cooperation_advantages {display: flex;flex-direction: column;gap: 0;}
.cooperation_advantages_image {text-align: center;}
.cooperation_cities {list-style: none;display: grid;grid-template-columns: repeat(2, 1fr);grid-gap: 10px;font-size: 14px;margin-bottom: 0;font-weight: 700;padding: 10px 0;text-align: center;}
.cooperation_consultations {font-size: 20px;font-weight: 700;}
.cooperation_consultations a {white-space: nowrap}
.cooperation_twoblocks {display: flex;flex-direction: column;}
.cooperation_twoblocks_block {position: relative;max-width: 100%;width: 100%;padding-top: 45%;overflow: hidden;}
.cooperation_twoblocks_block:hover .cooperation_twoblocks_block_background {transform: scale(1.05);}
.cooperation_twoblocks_block_background {position: absolute;inset: 0;background-size: cover !important;background-repeat: no-repeat !important;transition: transform .5s ease;}
.cooperation_twoblocks_block_text {position: absolute;bottom: 15px;left: 15px;font-size: 16px;;font-weight: 700;color: #fff;text-transform: uppercase;}

@media (min-width: 425px) {
	.cooperation_cities {grid-template-columns: repeat(3, 1fr);font-size: 16px;grid-gap: 15px;padding: 20px 0;}
}
@media (min-width: 768px) {
	.cooperation_cities {grid-template-columns: repeat(4, 1fr);}
	.cooperation_twoblocks {flex-direction: row;}
	.cooperation_twoblocks_block {max-width: 50%;padding-top: 25%;}
	.cooperation_twoblocks_block_text {font-size: 18px}
	/*#top-menu .second-menu {display: none;}*/
}
@media (min-width: 1200px) {
	.cooperation_advantages {flex-direction: row;gap: 20px;}
	.cooperation_twoblocks_block_text {font-size: 22px}
}

/* NEWS LIST */
/*.news_list .product-list .product-thumb {display: flex;display: -webkit-flex;justify-content: flex-start; margin-bottom: 1px;padding-right: 0px;}*/
/*.news_list .product-list .product-thumb .caption {border-right: none;margin-left: 0px;padding-bottom: 0px;}*/
/*.news_list .product-list .product-thumb .image {float: none;width: 40%;}*/
/*.news_list .news_list_inner {display: flex;display: -webkit-flex;justify-content: space-between;}*/
/*.news_list .product-list .button-group {display: flex;display: -webkit-flex;justify-content: center;flex-direction: column;padding: 20px;}*/
/*.news_list .product-list .button-group button + button {margin-top: 10px;}*/
/*.news_list .product-grid .news_list_inner {flex-direction: column;}*/
/*.news_list .product-grid .button-group {padding: 0px 20px 20px;}*/
/*.news_list .product-grid .caption h4 {height: 57px;overflow: hidden;}*/
/*.news_list .product-grid .caption p {height: 80px;overflow: hidden;}*/
/*.news_list_flex{display: flex;display: -webkit-flex;align-items: center;}*/

.box-info-product input[type=button].btn-block.occm-button {float: right;font-size: 14px;line-height: 1.42857143;margin-bottom: 15px; padding: 11px 16px;width: 205px;}
.box-info-product_wrapper {display: flex;display: -webkit-flex;flex-direction: row;justify-content: space-between;margin-bottom: 10px;}
.banner_brand_wrapper {background-color: #00639a;border-radius: 10px; color: #ffffff;margin-bottom: 20px;padding: 20px 10px;text-align: center;}
.store_3 .banner_brand_wrapper {background-color: #9933fc;}
.banner_brand_wrapper .banner_brand {font-size: 1.2em;font-weight: 700;}
.banner_shops_wrapper {color: #00639a;text-align: center;background-color: #fff;border-radius: 10px;margin-bottom: 20px;padding: 20px 10px;}
.banner_shops_wrapper .banner_shops_title {font-size: 1.2em;font-weight: 700;margin-bottom: 10px}
.banner_shops_wrapper .banner_shops_info ul {margin: 0;padding: 0 5px;}
.banner_shops_wrapper .banner_shops_info li {list-style: none;margin-bottom: 5px;}
.banner_shops_wrapper .banner_shops_info a {color: inherit;font-size: 17px;}
.banner_shops_wrapper .banner_shops_info .fa {margin-right: 5px;}
.banner_shops_wrapper .banner_middle span {background-color: #00639a;}
.banner_middle {align-items: center;display: flex;display: -webkit-flex;padding: 10px 0;}
.banner_middle span {background-color: #ffffff;display: inline-block;height: 1px;margin: 0 auto;width: 20%;}

@media screen and (max-width: 460px) {
	.box-info-product_wrapper {flex-direction: column;}
	.box-info-product input[type=button].btn-block.occm-button{margin-top: 0px;width: 100%;}
	.box-info-product #button-cart {margin-left: 0px;margin-top:10px; width: 100%;}
	.box-info-product .form-group {width: 100%;}
	#cboxContent h3 {font-size: 20px;margin-top: 0px;}
	#cboxLoadedContent {margin-bottom: 0px;}
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
	.box-info-product {display: block !important;}
	.box-info-product_wrapper {justify-content: space-between !important;}
}
@media screen and (min-width: 660px) and (max-width: 1199px) {
	.box-info-product {display: flex;display: -webkit-flex;justify-content: flex-start;}
	.box-info-product_wrapper {justify-content: flex-start;}
	.box-info-product input[type=button].btn-block.occm-button {margin-left: 12px;}
	.box-info-product #button-cart {width: 180px;}
	.box-info-product #button-cart {
		flex: 0 0 205px; }
}

#cboxClose {bottom: auto;top: 0px !important;}

.choose_city_select {
    font-size: 14px;
    margin: 0px 2px 10px;
    position: relative;
    width: 340px;
    z-index: 10;
}
.choose_city_select > span strong {
	font-weight: 600;
}
.choose_city_select .block {
    box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.2);
    display: inline-block;
    margin-left: 10px;
    width: 200px;
    padding: 5px 10px;
}
.choose_city_select .block div {
    float: right;
}
.choose_city_dropdown {
    height: 0px;
    overflow-y: auto;
    position: absolute;
    top: 30px;
    left: 0px;
    transition: all 300ms;
    z-index: 10;
}
.choose_city_dropdown.open {
    height: 310px;
}
.choose_city_dropdown ul {
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 10px;
    width: 180px;
}
.choose_city_dropdown li {
    display: block;
    list-style: none;
}
.choose_city_dropdown li a {
    text-decoration: none;
    transition: all 200ms;
}
.partners_grid.more {
    position: relative;
}
.partners_grid .block {
    border-bottom: 1px dashed rgba(0,0,0,0.2);
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.partners_grid.more .block {
    display: none;
}
.partners_grid.more .block.active {
    display: block;
}
.owl-carousel {background: transparent;}
.owl-wrapper-outer {border: none;box-shadow: none;-webkit-box-shadow: none;}

.store_3 a {color: #9933fc;}
.store_3 a:focus, .store_3 a:hover, .store_3 .btn-primary:hover {color: #ff33bb;}
.store_3 .main-btn, .store_3 .btn-primary {background-color: #9933fc;}
.store_3 a.main-btn, .store_3 a.btn-primary {color: #ffffff;}
.store_3 .main-btn:hover {background-color: #ff33bb;}
.category_filter_block {
	align-items: center;
	display: flex;
	display: -webkit-flex;
	margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
	.compare_button {margin-bottom: 5px;width: 125px;}
}
@media screen and (max-width: 767px) {
	.two-banners-lssnews {display: flex;display: -webkit-flex;justify-content: space-between;flex-direction: column;}
	.two-banners-item {width: 100%;}
	.featured-carousel-wrapper, .latest-carousel-wrapper {display: none;}
	.slider-home-carousel .home-carousel-wrapper.black_friday .left-info {padding-bottom: 70px;}
	.slider-home-carousel .valentine .price-text {justify-content: space-evenly;}
	.category_filter_block{flex-wrap: wrap;}
	.category_filter_block .input-group {margin-top: 5px;}
	.category_filter_block .input-group label{width: 100px;}
	.category_filter_block .input-group .form-control{width: 210px;}
	.footer-columns {
		flex-direction: column;
	}
	.footer-column-item {
		max-width: 100%;
	}
	.footer-socials {
		justify-content: center;
	}
}

/* menu */
.menu-title {
	font-size: 14px;
	line-height: 24px;
	font-weight: 600;
	color: var(--color-grey-82);
}

/* category */
.category-title {
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;

	margin-bottom: 15px;
}


/* lightbox style */
.lightbox {
	padding: 0 10px;
}
.lb-outerContainer {
	background: none;
	max-width: 600px;
	width: 100% !important;
	height: auto !important;
}
.lightbox .lb-image {
	border: none;
	border-radius: 20px;
	max-width: 600px;
	width: 100% !important;
	height: auto !important;
	object-fit: cover;
	margin: 0 auto;
}
.lb-dataContainer {
	position: relative;
	max-width: 600px;
	width: 100% !important;
}
.lb-closeContainer .lb-close {
	z-index: 11;
	position: absolute;
	top: -45px;
	right: 10px;
	background-color: var(--color-second) !important;
	background-position: center !important;
	border-radius: 50%;
	width: 35px !important;
	height: 35px !important;
	background-size: 50% !important;
	opacity: 1 !important;
	transition: all .3s ease;
}
.lb-closeContainer .lb-close:hover,
.lb-closeContainer .lb-close:focus {
	filter: brightness(.8);
}

@media (max-height: 700px) {
	.lightbox .lb-image {
		max-height: 550px;
		max-width: 550px;
	}
	.lb-dataContainer {
		max-width: 550px;
	}
}
@media (max-height: 550px) {
	.lightbox .lb-image {
		max-height: 450px;
		max-width: 450px;
	}
	.lb-dataContainer {
		max-width: 450px;
	}
}
@media (max-height: 450px) {
	.lightbox .lb-image {
		max-height: 300px;
		max-width: 300px;
	}
	.lb-dataContainer {
		max-width: 300px;
	}
}