:root {
	--primary-color: #00aadd;
	--primary-color-hover: #066786;
	--secondary-color: #00a08e;
	--secondary-color-hover:#0a655d;
	--color-success: #10b981;
	--color-success-hover: #047857;
	--color-info: #0ea5e9;
	--color-info-hover: #0369a1;
	--color-warning: #c2410c;
	--color-warning-hover: #ea580c;
	--color-danger: #ef4444;
	--color-danger-hover: #b91c1c;
	/*button*/
	--btn-radius: 8px;
	--transition: all 0.3s ease 0s;
	--shadow-color: rgba(0, 0, 0, .1);
	--shadow-top: inset 0 20px 10px -10px rgba(0, 0, 0, .08);
	--shadow-bottom: inset 0 -20px 10px -10px rgba(0, 0, 0, .08);
}

body {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	color: #555555;
	font-size: 18px;
	line-height: 1.7;
	width: 100%;
	min-width: 360px;
	overflow-x: hidden;
}

/****____UTILITY___ ****/
.wysiwyg img {

	margin-bottom: 35px;
}

p {
	margin-bottom: 1.6em;
	
}

:focus-visible {
	outline: 0;
}

:focus {
	box-shadow: none !important;
	outline: 0!important;
}

a {
	color: var(--primary-color);
	
}

a:hover {
	color: var(--primary-color);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 0;
	border-top: 1px solid #acacac;
}

.alert {
	padding: 15px 15px 15px 45px;
	margin-bottom: 20px;
	border: none;
	border-radius: 6px;
	line-height: 1.4;
	font-size: 14px;
	position: relative;
}

.alert i {
	position: absolute;
	top: 16px;
	font-size: 18px;
	left: 15px;
}

.alert-danger {
	color: #fff;
	background-color: var(--color-danger);
}

.alert-success {
	color: #fff;
	background-color: var(--color-success);
}

.alert-success a {
	color: #fff;
	text-decoration: none !important;
	font-weight: bold;
}

.alert.alert-floating {
	position: fixed;
	top: 10px;
	right: 10px;
	width: 350px;
	z-index: 2147483647 !important;
}

.close {
	float: right;
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-shadow: none;
	filter: alpha(opacity=20);
	opacity: 1;
}

.alert.alert-floating .close {
	position: absolute;
	top: 5px;
	right: 10px;
	font-size: 21px;
	color: #fff;
}

.container {
	width: 100% !important;
	max-width: 1530px !important;
}

.so-page-builder .container {
	overflow: visible !important;
	padding-left: 15px !important;
	padding-right: 15px !important;
}

.text-danger {
	color: var(--color-danger);
	font-size: 13px;
}

.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
	color: var(--color-danger);
}

/****____BUTTON___ ****/
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
	outline: 0;
	outline-offset: 0;
}

.btn {
	font-weight: bold !important;
	border: none !important;
	padding: 10px 30px;
	font-size: 14px;
	border-radius: var(--btn-radius);
	text-transform: uppercase;
	
	width: fit-content;
	min-height: 40px;
}

.btn-primary {
	color: #fff;
	background-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
	color: #fff;
	background-color: var(--primary-color-hover);
}

.btn-secondary {
	color: #fff;
	background-color: var(--secondary-color);
}

.btn-secondary:hover, .btn-secondary:focus {
	color: #fff;
	background-color: var(--secondary-color-hover);
}
.btn-default{
	background: #e7e6e6;
}
.btn-default:hover, .btn-default:focus {
	background: #d5d1d1;
}

/****____TYPOGRAPHY___ ****/
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	color: var(--secondary-color);
	line-height: 1.4;
}

h1, .h1 {
	font-size: clamp(2rem, 5vw, 3rem);
}

h2, .h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3, .h3 {
	font-size: clamp(1.8rem, 3.5vw, 2.2rem);
}

h4, .h4 {
	font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h5, .h5 {
	font-size: clamp(1rem, 2.5vw, 1.25rem);
}

h6, .h6 {
	font-size: clamp(0.875rem, 2vw, 1rem);
}

.h1, .h2, .h3, h1, h2, h3 {
	margin-top: 20px;
	margin-bottom: 21px;
}

.display-1 {
	font-size: 23px;
	text-transform: uppercase;
	border-bottom: 1px solid #bbbbbb;
	padding-bottom: 10px;
	margin-bottom: 30px;
	position: relative;
	margin-top: 0;
	font-weight: 900;
	line-height: 1.4;
	color: var(--secondary-color);
}

.display-2 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	border-bottom: 1px solid #acacac;
	padding-bottom: 10px;
	margin-bottom: 40px;
	color: var(--secondary-color);
}


/****____TABLE___ ****/
/****____FORMS___ ****/
input::-webkit-input-placeholder {
	color: #888888;
	font-weight: 600;
	font-size: 14px;
}

input:-moz-placeholder {
	color: #888888;
	font-weight: 600;
	font-size: 14px;
}

input::-moz-placeholder {
	color: #888888;
	font-weight: 600;
	font-size: 14px;
}

input:-ms-input-placeholder {
	color: #888888;
	font-weight: 600;
	font-size: 14px;
}

div.required .control-label:before {
	content: "* ";
	color: var(--color-danger);
	font-weight: bold;
}

.has-error .form-control {
	border-color: var(--color-danger);
}

legend {
	display: block;
	width: 100%;
	padding: 0;
	margin-bottom: 30px;
	padding-bottom: 15px;
	font-size: 20px;
	line-height: inherit;
	color: var(--secondary-color);
	border: 0;
	font-weight: 700;
	border-bottom: 2px solid var(--secondary-color);
}

.form-group {
	margin-bottom: 25px;
}

.form-control {
	display: block;
	width: 100%;
	height: 40px;
	padding: 8px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #666666;
	background-color: #f4f4f4;
	background-image: none;
	border: 1px solid #f4f4f4;
	border-radius: 6px;
	-webkit-box-shadow: none;
	box-shadow: none;
	
}

.form-control:active, .form-control:focus {
	outline: none;
	outline-offset: 0;
	border-color: var(--primary-color)
}

select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 448 512'%3E%3Cstyle%3Esvg%7Bfill:%23002b54%7D%3C/style%3E%3Cpath d='M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z'/%3E%3C/svg%3E") !important;
	background-position: right .9rem center;
	background-repeat: no-repeat;
	background-size: 1em 1em;
	padding-right: 2.5rem;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	border-radius: 6px !important;
	height: 40px !important;
	background-color: #f4f4f4;
	border: 1px solid #f4f4f4;
}

[multiple], [type=date], [type=datetime-local], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week], select, textarea, input {
	appearance: none;
	background-color: #f4f4f4;
	border: 1px solid #f4f4f4;
	padding: 8px 15px;
	width: 100%;
	caret-color: #bbb;
	height: 40px;
	border-radius: 6px;
	box-shadow: none !important
}

[multiple]:disabled, [type=date]:disabled, [type=datetime-local]:disabled, [type=email]:disabled, [type=month]:disabled, [type=number]:disabled, [type=password]:disabled, [type=search]:disabled, [type=tel]:disabled, [type=text]:disabled, [type=time]:disabled, [type=url]:disabled, [type=week]:disabled, select:disabled, textarea:disabled, input:disabled {
	opacity: .35;
	cursor: not-allowed
}

[multiple]:active, [multiple]:focus, [type=date]:active, [type=date]:focus, [type=datetime-local]:active, [type=datetime-local]:focus, [type=email]:active, [type=email]:focus, [type=month]:active, [type=month]:focus, [type=number]:active, [type=number]:focus, [type=password]:active, [type=password]:focus, [type=search]:active, [type=search]:focus, [type=tel]:active, [type=tel]:focus, [type=text]:active, [type=text]:focus, [type=time]:active, [type=time]:focus, [type=url]:active, [type=url]:focus, [type=week]:active, [type=week]:focus, select:active, select:focus, textarea:active, textarea:focus, input:active, input:focus {
	outline: none;
	outline-offset: 0;
	border-color: var(--primary-color);
	border-radius: 6px
}

input[type=checkbox]:focus, input[type=file]:focus, input[type=radio]:focus {
	outline: none;
	outline-offset: 0
}

input[type=checkbox], input[type=radio] {
	line-height: normal;
	background-color: #f4f4f4;
	border: 1px solid var(--primary-color);
}

input[list]::-webkit-calendar-picker-indicator {
	background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20"%3e%3cpath stroke="%236b7280" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M6 8l4 4 4-4"/%3e%3c/svg%3e');
	background-position: right .5rem center;
	background-repeat: no-repeat;
	background-size: 1.5em 1.5em;
	padding-right: 2.5rem;
	-webkit-print-color-adjust: exact;
	color-adjust: exact
}

[type=checkbox], [type=radio] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	display: inline-block;
	vertical-align: middle;
	background-origin: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	flex-shrink: 0;
	height: 16px;
	width: 16px;
	color: var(--primary-color);
	border: 1px solid #f4f4f4;
	background-color: #f4f4f4;
	border-radius: 4px
}

[type=checkbox]:checked, [type=radio]:checked {
	border-color: rgba(0, 0, 0, 0);
	background-color: currentColor;
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat
}

[type=radio] {
	border-radius: 100%
}

[type=checkbox]:checked {
	background-image: url('data:image/svg+xml,%3csvg viewBox="0 0 16 16" fill="white" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0"/%3e%3c/svg%3e')
}

[type=radio]:checked {
	background-image: url('data:image/svg+xml,%3csvg viewBox= "0 0 16 16" fill= "white" xmlns= "http://www.w3.org/2000/svg" %3e%3ccircle cx= "8" cy= "8" r= "3" /%3e%3c/svg%3e')
}

[type=radio]:focus, [type=checkbox]:focus {
	outline: 2px solid #575756;
	outline-offset: 2px;
	border-color: #575756;
	border-radius: 4px
}

[type=radio]:focus {
	border-radius: 100%
}

label {
	font-size: 14px;
	font-weight: 400;
}

/****____PANEL___ ****/
.panel-group .panel {
	
	border-radius: 6px;
}

.panel-group .panel + .panel {
	margin-top: 20px;
}

.panel-default > .panel-heading {
	color: #666666;
	background-color: #f5f5f5;
	border-color: #f5f5f5;
}

.panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body {
	border-top: 1px solid #f5f5f5;
}

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

.panel-default {
	border-color: #f5f5f5;
}

.well {
	min-height: 20px;
	padding: 19px;
	margin-bottom: 20px;
	background-color: #fff;
	border: 2px solid var(--secondary-color);
	border-radius: 10px;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.well h2{color: var(--primary-color)}
/****____PAGINATION___ ****/

.r2-pagination {
	display: flex;
	flex-wrap: wrap;
	margin-top: 40px;
	padding: 0;
	list-style: none;
	font-size: 15px;
	justify-content: left;
	margin-bottom: 30px;
}

.r2-pagination li {
	margin-bottom: 10px;
	margin: 0 3px;
	border: 1px solid var(--secondary-color);
	border-radius: 4px;
	vertical-align: middle;
	line-height: 30px;
	transition: all .3s ease 0s
}

.r2-pagination a, .r2-pagination span {
	display: inline-block;
	min-width: 30px;
	min-height: 30px;
	text-align: center;
	color: #666666;
	font-weight: 600;
	transition: all .3s ease 0s;
	text-decoration: none;
}

.r2-pagination i {
	transition: all .3s ease 0s
}

.r2-pagination li.prev, .r2-pagination li.next, .r2-pagination li.first, .r2-pagination li.last {
	background: var(--secondary-color);
	border-color: var(--secondary-color);
	color: #fff
}

.r2-pagination a:hover, .r2-pagination a:focus, .r2-pagination a:active {
	background: var(--secondary-color);
	color: #fff
}

.r2-pagination .active span {
	color: var(--secondary-color);
}

.r2-pagination li.first a, .r2-pagination li.prev a, .r2-pagination li.next a, .r2-pagination li.last a {
	color: #fff
}

.r2-pagination li.first:hover, .r2-pagination li.first:focus, .r2-pagination li.first:active, .r2-pagination li.prev:hover, .r2-pagination li.prev:focus, .r2-pagination li.prev:active, .r2-pagination li.next:hover, .r2-pagination li.next:focus, .r2-pagination li.next:active, .r2-pagination li.last:hover, .r2-pagination li.last:focus, .r2-pagination li.last:active {
	background: var(--secondary-color);
	border-color: var(--secondary-color);
}

/****____BREADCRUMBS___ ****/

#breadcrumb-wrapper {
	margin-bottom: 10px
}

#breadcrumb-wrapper .breadcrumb {
	margin: 0;
	padding: 8px 0;
	text-transform: lowercase;
	color: #858585;
	background-color: rgba(0, 0, 0, 0);
	border-radius: 0;
	overflow: auto;
	margin-top: 12px;
	font-size: 13px;
	display: flex
}

@media (min-width: 996px) {
	#breadcrumb-wrapper .breadcrumb {
		padding: 8px 0px;
		overflow: hidden;
		justify-content: end;
	}
}

#breadcrumb-wrapper .breadcrumb > li {
	white-space: nowrap
}

#breadcrumb-wrapper .breadcrumb > li + li:before {
	content: "";
	font-family: "Font Awesome 5 Pro";
	font-size: 8px;
	vertical-align: middle;
	color: #888888
}

#breadcrumb-wrapper .breadcrumb > li:first-child > a {
	
	color: #888888
}
/*
#breadcrumb-wrapper .breadcrumb > li:first-child > a::after {
	content: "";
	font-family: "Font Awesome 5 Pro";
	font-size: 14px;
	font-weight: 700;
	color: #858585
}
*/

#breadcrumb-wrapper a {
	color: #888888;
	text-decoration: none;
}

#breadcrumb-wrapper a:hover {
	opacity: .8
}

/****____BLOG___ ****/
.blog-module-latest .blog_item {
	margin-bottom: 0
}


.ui-last-posts {
	border-top: 5px solid var(--primary-color);
	padding-top: 40px;
	box-shadow: var(--shadow-bottom);
	
}
.blog-module-latest{
	margin-top: 40px;
	margin-bottom: 40px;
}
@media (min-width: 992px) {
	.blog-module-latest{
		margin-top: 70px;
		margin-bottom: 70px;
	}
	.ui-last-posts {
		padding-top: 60px;
	}
}

/****____HEADER___ ****/
.user-log {
	position: fixed;
	right: -350px;
	top: 0;
	height: 100%;
	width: 100%;
	max-width: 350px;
	background-color: #fff;
	z-index: 900;
	transition: .2s ease-in-out all;
	opacity: 0;
	visibility: hidden;
	list-style: none;
	padding: 0;
	display: block;
}

.user-log.user-log-open {
	opacity: 1;
	visibility: visible;
	right: 0;
}

.overlay-user {
	position: fixed;
	z-index: 800;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, .4);
	left: 0;
	top: 0;
	transition: .3s linear opacity;
	opacity: 0;
	visibility: hidden;
}

.overlay-user-open .overlay-user {
	opacity: 1;
	visibility: visible;
}

.overflow-hidden {
	overflow: hidden;
}

.btn-user-close {
	padding: 10px 20px;
	height: 50px;
	width: 100%;
	left: 0;
	background-color: #fff;
	z-index: 10;
	border: none;
	border-bottom: 1px solid #d6d6d6;
	color: #000;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	justify-content: space-between;
}

.btn-user-close svg {
	width: 16px !important;
	fill: #000;
}

.user-log ul {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-top: 20px;
}

.user-log ul li a {
	padding: 10px 15px;
	text-transform: uppercase;
	font-size: 16px;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #666666;
	font-weight: 600;
}

.user-log ul li a i {
	font-size: 20px;
	color: var(--primary-color);
	width: 35px;
}

@media (min-width: 992px) {
	.ui-header {
		transition: .2s ease-in-out all;
		position: sticky;
		top: 0;
		z-index: 200;
		background-color: #fff;
	}
}


#search {
	width: 100%;
	max-width: 690px;
	margin-left: auto;
	margin-right: auto;
	height: 40px;
	text-align: center;
	background-color: #fff;
	border-radius: 100px;
	border: 2px solid var(--secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

#search input {
	height: 36px;
	background-color: #fff;
width: 100%;
	border: none;
	font-size: 15px;
	border-radius: 100px;
	top:0;
	left: 3px;
	position: relative;
	padding-left: 20px;
}

#search button {
	border-radius: 0;
	height: 36px;
	width: 70px;
	font-size: 20px;
	display: flex;
	align-items: center;
	color: var(--primary-color);
	background-color: transparent !important;
	justify-content: center;
	border: none !important;
}

.ui-top-nav-bx {
	position: relative;
	box-shadow: 0px 8px 13px 0px rgba(0, 0, 0, .1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ui-top-nav-bx .container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ui-top-nav-bx-txt {
	background-color: #ff9600;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1.1;
	padding: 12px 30px;
border-radius: 100px;
	text-align: center;
}

.ui-top-nav-bx-nav {
	display: none;
}

.ui-top-nav-bx-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ui-top-nav-bx-nav ul li {
	position: relative;
	display: inline-block;
	margin-left: 22px;
}

.ui-top-nav-bx-nav ul li a {
	text-transform: uppercase;
	font-size: 12px;
	text-decoration: none;
	font-weight: 700;
	color: #666666;
	position: relative;
	text-decoration: none;
}

.ui-top-nav-bx-nav ul li a:after {
	transition: 0.35s;
	content: "";
	position: absolute;
	bottom: 0;
	width: 0;
	height: 1px;
	left: 0;
	background:#666666;
}

.ui-top-nav-bx-nav li a:hover:after {
	width: 100%;
}

.ui-top-nav-bx-nav li:before {
	content: "";
	width: 1px;
	height: 14px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -11px;
	background-color: var(--secondary-color);
}

.ui-top-nav-bx-nav li:first-child:before {
	content: none
}
.ui-info-top .dropdown-toggle span {
	font-size: 12px;
	font-weight: 700;
	color: #666666;
}

.dropdown-info {
	border: 1px solid var(--secondary-color) !important;
	padding: 25px 20px !important;
	left: 0 !important;
	
	margin: 25px auto auto auto !important;
	width: 200px !important;
}

.dropdown-info a {
	font-weight: 700;
	color: #666;
	font-size: 13px;
}

.dropdown-info a i {
	color: var(--secondary-color);
	width: 22px;
	text-align: center;
}

.dropdown-info p {
	font-weight: 400;
	color: #777777;
	font-size: 14px;
	padding-left: 33px;
	line-height: 1.2;
	margin-bottom: 15px;
	margin-top: -3px;
}

.dropdown-info:before {
	display: inline-block;
	position: absolute;
	top: -8px;
	left: 50%;
	
	content: "";
	width: 15px;
	height: 15px;
	background: #fff;
	border-top: 1px solid var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
	transform: translateX(-50%) rotate(45deg);
	z-index: 2;
}
@media (min-width: 996px) and (max-width: 1299px) {
	.ui-top-nav-bx-nav {
		position: relative;
	}
	
	.ui-top-nav-bx .container {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: left;
	}
	
	.ui-top-nav-bx-nav {
		display: flex;
		align-items: center;
		justify-content: right;
		position: absolute;
		right: 15px;
	}
}

.ui-top-nav-bx-info {
	display: none
}

.ui-top-nav-bx-info ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ui-top-nav-bx-info ul li {
	position: relative;
	display: inline-block;
	margin-right: 16px;
}

.ui-top-nav-bx-info a {
	text-transform: uppercase;
	font-size: 12px;
	text-decoration: none;
	font-weight: 700;
	color:#666666;
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}

.ui-top-nav-bx-info a i {
	font-size: 20px;
	color: var(--primary-color);
}

.ui-top-nav-bx-info a:hover {
	opacity: .9;
}

@media (min-width: 1300px) {
	.ui-top-nav-bx-nav {
		display: flex;
		align-items: center;
		justify-content: right;
		position: absolute;
		right: 15px;
	}
	
	.ui-top-nav-bx-info {
		display: flex;
		align-items: center;
		justify-content: right;
		position: absolute;
		left: 15px;
	}
}


@media (min-width: 1200px) {
	.ui-container-header:before,.ui-container-header:after{content: none}
	.ui-container-header{
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 30px;
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.ui-nav-point {
		position: relative;
	
	
	
		margin-left: auto;
	
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.logo-dk {
		width: 100%;
		max-width: 320px;
		display: block;
		
	}
	
	.logo-dk img {
		display: block;
		width: 100%;
	}
}

.ui-btn-nav {
	display: flex;
	align-items: center;
	gap: 10px;
	border: none !important;
	background-color: transparent !important;
	text-decoration: none !important;
	padding: 0;
}

.ui-btn-nav i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 100px;
	background-color: var(--primary-color);
	font-size: 20px;
	color:#fff;
}
#cart .ui-btn-nav i {background-color: var(--secondary-color)}
.ui-btn-nav span {
	font-size: 13px;
	line-height: 15px;
	color: #666666;
	font-weight: 700;
	text-transform: uppercase;
	text-align: left;
}

@media (min-width: 1200px) {

	
	.ui-nav-point-left {
		display: flex;
		align-items: center;
		gap: 25px;
	
		right: 0;
	
	}
}
@media (max-width: 1200px) {
	.ui-container-header{
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.logo-dk {
		margin-left: auto;
		margin-right: auto;
		display: block;
		margin-bottom: 20px;
		position: relative;
	}
	.logo-dk img{display: block;margin: auto}
	.ui-header{
		box-shadow: 0px 20px 10px -10px rgba(0, 0, 0, .08);
	}
}
@media (max-width: 995px) {
.ui-top-nav-bx{
	padding-top: 15px;
	box-shadow: none;
}
}
@media (max-width: 1199px) {
	body {
		padding-bottom: 60px;
	}
	
	[class*=product-product-] {
		padding-bottom: 125px;
	}
	
	.ui-btn-nav span {
		display: none
	}
	
	
	.dropdown-toggle.ui-btn-nav span {
		display: block;
	}
	
	.txt-dx {
		display: none !important;
	}
	
	.ui-nav-point-left, .ui-nav-point-right {
		display: flex;
		align-items: center;
		gap: 15px;
	}
	
	#cart-total {
		position: absolute;
		top: -8px;
		background: #ffa202;
		color: #fff;
		font-size: 16px;
		border-radius: 100px;
		min-width: 27px;
		min-height: 22px;
		display: flex;
		align-items: center;
		justify-content: center;
		right: 1px;
		padding: 5px;
	}
	
	.ui-nav-point {
		background-color: #fff;
		height: 70px;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		padding: 15px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 15px;
		z-index: 8000;
		box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
	}
}

#cart .dropdown-menu {
	position: absolute;
	right: 0;
	top: calc(100% + 15px);
	padding: 20px;
	width: 85vw;
	max-width: 430px;
	min-width: 320px;
	border: none!important;
	
}

#cart .cart-menu .table > tbody > tr:not(:first-of-type) > td {
	border-top: 0px;
}

#cart .dropdown-menu:before {
	display: inline-block;
	position: absolute;
	top: -12px;
	right: 105px;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 12px 10px;
	border-color: transparent transparent #ff9600 transparent;
}

.cart-free-shipping {
	margin: -20px -20px 15px;
	background: #ff9600;
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	text-align: center;
	padding: 6px 0px;
	font-weight: 800;
	
}

#cart .has-scroll {
	overflow: auto;
	max-height: 317px;
}

#cart .has-scroll {
	scrollbar-width: thin;
	scrollbar-color: #004b88 #fff;
}

#cart td,
#cart a,
#cart {
	font-weight: 400;
}

#cart .has-scroll::-webkit-scrollbar {
	width: 10px;
}

#cart .has-scroll::-webkit-scrollbar-track {
	background: #fff;
}

#cart .has-scroll::-webkit-scrollbar-thumb {
	background-color: var(--secondary-color);
	border-radius: 5px;
	border: 3px solid #fff;
}

#cart .cart-products {
	font-weight: 700;
	color: #666;
}

#cart .cart-products tr:first-child td {
	border-top: none;
	font-weight: bold;
}

#cart .cart-products img {
	padding: 2px;
	border: 1px solid #bbbbbb;
	border-radius: 6px;
	height: auto;
	width: 60px;
}

#cart .cart-products a {
	color: #666666;
	text-transform: capitalize;
	font-size: 13px;
	font-weight: 700;
	line-height: 17px;
}

#cart .cart-products a:hover,
#cart .cart-products a:focus,
#cart .cart-products a:active,
#cart .cart-products a:active:focus,
#cart .cart-products a:active:hover {
	color: var(--primary-color);
}

#cart .cart-products .cart-quantity {
	white-space: nowrap;
	font-weight: bold;
}

.btn-remove {
	padding: 0px 5px;
	border: 0;
	border-radius: 6px;
	background-color: #f79724;
	color: #fff;
}

.table-price {
	font-weight: bold;
	color: var(--secondary-color);
}

#cart .text-danger button:focus,
#cart .text-danger button:active,
#cart .text-danger button:active:focus,
#cart .text-danger button:active:hover,
#cart .text-danger button:hover {
	background-color: var(--secondary-color);
	color: #fff !important;
}

#cart .cart-totals {
	font-size: 16px;
	border-top: 1px solid #bbbbbb;
}

#cart .cart-totals tr {
	display: none;
}

#cart .cart-totals tr:last-child {
	display: table-row;
}

#cart .cart-totals tr:last-child td {
	padding-top: 20px !important;
}

#cart .cart-totals .text-right:first-of-type strong, .cart-price {
	margin-top: 15px;
	color: var(--secondary-color);
	font-size: 16px;
	font-weight: 900;
	padding-right: 15px;
	text-transform: uppercase;
}

#cart .button-container .btn-primary, #cart .button-container .bf-buttonclear-box .bf-buttonclear, .bf-buttonclear-box #cart .button-container .bf-buttonclear {
	font-weight: 700;
	min-width: 160px;
}

#cart .button-container {
	margin-top: 20px;
	display: flex;
	gap: 13px;
	align-items: center;
	justify-content: end;
}

@media (max-width: 1199px) {
	#cart .dropdown-menu {
		top: auto;
		bottom: 60px;
		border-radius: 0;
	}
	
	#cart .dropdown-menu:before {
		content: none;
	}
}

.not-cart {
	padding: 20px 10px;
	text-align: center;
	font-weight: 600;
}

.not-cart i {
	font-size: 22px;
	display: block;
	margin-bottom: 10px;
}

/****____MENU___ ****/

.dropdown-menu {
	padding: 5px 0;
	margin: 2px 0 0;
	font-size: 14px;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid var(--secondary-color);
	border-radius: 0 0 12px 12px;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

@media (min-width: 1200px) {
	.r2-mainmenu .megamenu {
		justify-content: space-between;
		align-items: center;
	}
	
	.r2-mainmenu .megamenu > li {
		flex-grow: 1
	}
	
	.r2-mainmenu .megamenu > li > a {
		--raw-min-width: 1200;
		--raw-max-width: 1560;
		--min-width: calc(var(--raw-min-width) * 1px);
		--max-width: calc(var(--raw-max-width) * 1px);
		--raw-min-font-size: 10;
		--raw-max-font-size: 13;
		--min-font-size: calc(var(--raw-min-font-size) * 1px);
		--max-font-size: calc(var(--raw-max-font-size) * 1px);
		justify-content: center;
		height: 100%;
		padding: 13px 5px;
		font-size: 13px;
		line-height: 1.3;
		text-align: center;
		text-transform: uppercase;
		color: #fff;
		font-weight: 600
	}
	
	.r2-mainmenu .megamenu > li .dropdown-toggle .caret {
		display: none
	}
	
	.r2-mainmenu .megamenu > li:nth-child(5) > .dropdown-menu, .r2-mainmenu .megamenu > li:nth-child(6) > .dropdown-menu, .r2-mainmenu .megamenu > li:nth-child(7) > .dropdown-menu, .r2-mainmenu .megamenu > li:nth-child(8) > .dropdown-menu {
		left: 50%;
		transform: translateX(-50%)
	}
	
	.r2-mainmenu .megamenu > li:nth-child(9) > .dropdown-menu, .r2-mainmenu .megamenu > li:nth-child(10) > .dropdown-menu, .r2-mainmenu .megamenu > li:nth-child(11) > .dropdown-menu, .r2-mainmenu .megamenu > li:nth-child(12) > .dropdown-menu {
		left: auto;
		right: 0
	}
	
	.r2-mainmenu .dropdown-menu > ul > li {
		padding: 0 5px 20px
	}
	
	.r2-mainmenu .dropdown-menu > ul > li > a {
		padding: 0px;
		font-size: 16px;
		font-weight: 600;
		color: var(--primary-color);
		text-decoration: none;
		line-height: 1.1;
		text-transform: uppercase;
	}
	
	.r2-mainmenu .dropdown-menu > ul > li > a:hover, .r2-mainmenu .dropdown-menu > ul > li > a:active, .r2-mainmenu .dropdown-menu > ul > li > a:focus {
		background: rgba(0, 0, 0, 0);
		color: var(--primary-color);
	}
	
	.r2-mainmenu .dropdown > .dropdown-menu > ul > li > a::after {
		content: "";
		display: block;
		width: 0;
		border-bottom: 1px solid var(--primary-color);;
		padding-bottom: 5px;
		font-size: 0;
		transition: width .3s ease 0s
	}
	
	.r2-mainmenu .dropdown > .dropdown-menu > ul > li > a:hover::after, .r2-mainmenu .dropdown > .dropdown-menu > ul > li > a:active::after, .r2-mainmenu .dropdown > .dropdown-menu > ul > li > a:focus::after {
		width: 100%
	}
	
	.r2-mainmenu .dropdown-submenu .dropdown-menu > ul > li {
		padding: 0px
	}
	
	.r2-mainmenu .dropdown-submenu .dropdown-menu > ul > li > a {
		padding-top: 5px;
		padding-bottom: 5px;
		font-size: 14px;
		line-height: 1.5;
		font-weight: 400;
		text-transform: none;
		color: #555;
		display: inline-block
	}
	
	.r2-mainmenu .dropdown-submenu .dropdown-menu > ul > li > a:hover, .r2-mainmenu .dropdown-submenu .dropdown-menu > ul > li > a:active, .r2-mainmenu .dropdown-submenu .dropdown-menu > ul > li > a:focus {
		color: var(--primary-color)
	}
	
	.megamenu .dropdown-menu.level1 > ul {
		column-count: 4;
		column-fill: balance;
		column-gap: 0
	}
	
	.megamenu .dropdown-menu.level1 > ul.children1 {
		column-count: 2
	}
	
	.megamenu .dropdown-menu.level1 > ul.children2 {
		column-count: 2
	}
	
	.megamenu .dropdown-menu.level1 > ul.children3 {
		column-count: 3
	}
	
	.megamenu .dropdown-menu.level1 > ul > li {
		display: inline-block;
		width: 250px
	}
	
	.megamenu .dropdown-menu.level1 > ul > li.dropdown-submenu > a > .caret {
		display: none
	}
	
	.megamenu .dropdown-menu.level2 {
		display: block;
		position: static;
		float: none;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		border: 0;
		margin: 0;
		padding: 0;
		box-shadow: none;
		margin-top: 8px;
	}
	
	.r2-mainmenu .dropdown-menu {
		padding: 20px 6px;
		
	}
	
	.ui-content-menu {
		background-color: var(--secondary-color);
	}
	.btn-nav a{
		border-radius: 12px;
		background-color: #FF9600;
		padding: 8px 15px !important;
	}
	.btn-nav a:hover{
		background-color: #e98900!important;
	}
}

@media (max-width: 1199px) {
	#r2-close-side-menu, .r2-mainmenu, .r2-mainmenu .megamenu li a, .r2-mainmenu .megamenu li.open a {
		background: var(--secondary-color);
	}
	
	.r2-mainmenu .megamenu li a:focus, .r2-mainmenu .megamenu li a:active, .r2-mainmenu .megamenu li a:hover, .r2-mainmenu .megamenu li.open a:focus, .r2-mainmenu .megamenu li.open a:active, .r2-mainmenu .megamenu li.open a:hover {
		background: #ffa202;
	}
	
	.r2-mainmenu .megamenu .open > .dropdown-menu {
		border-left: 10px solid #ffa202;
	}
}

/****____CATEGORY___ ****/
.grid-box .items-filter {
	padding-top: 60px;
	padding-bottom: 60px;
	border-bottom: 1px solid #e9e9e9
}

.grid-box .items-filter:last-child {
	border-bottom: none
}

.grid-box .items-filter h2 {
	font-weight: bold;
	color: #555 !important;
	font-size: 22px !important;
	margin: 0 !important
}

.grid-box .items-filter a {
	margin-bottom: 5px;
	display: inline-block
}

.grid-box .items-filter a:hover {
	opacity: .7;
	text-decoration: underline
}

.filter-button-group {
	background-color: var(--secondary-color);
	padding: 10px;
	position: relative;
	border-radius: 6px
}

.filter-button-group .btn-filter {
	border-radius: 4px;
	border: none;
	background-color: var(--secondary-color);
	color: #fff;
	box-shadow: none !important;
	padding: 8px 14px;
	font-weight: bold
}

@media (max-width: 768px) {
	.grid-box .items-filter {
		padding-top: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid #e9e9e9
	}
	
	.grid-box .items-filter h2 {
		font-weight: bold;
		color: #555 !important;
		font-size: 22px !important;
		margin: 0 0 10px 0 !important
	}
}

@media (max-width: 1199px) {
	.filter-button-group {
		padding-bottom: 10px
	}
}

.filter-button-group .btn.active, .filter-button-group .category_list ul li a.active, .category_list ul li .filter-button-group a.active, .filter-button-group .coupon-extra .active.btncopy, .coupon-extra .filter-button-group .active.btncopy, .filter-button-group .btn:active, .filter-button-group .category_list ul li a:active, .category_list ul li .filter-button-group a:active, .filter-button-group .coupon-extra .btncopy:active, .coupon-extra .filter-button-group .btncopy:active {
	background-image: none;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none
}

.filter-button-group .btn.active, .filter-button-group .category_list ul li a.active, .category_list ul li .filter-button-group a.active, .filter-button-group .coupon-extra .active.btncopy, .coupon-extra .filter-button-group .active.btncopy {
	background-color: #fff;
	color: var(--primary-color)
}

.filter-button-group .btn.active:hover, .filter-button-group .category_list ul li a.active:hover, .category_list ul li .filter-button-group a.active:hover, .filter-button-group .coupon-extra .active.btncopy:hover, .coupon-extra .filter-button-group .active.btncopy:hover {
	background-color: #fff;
	color: var(--secondary-color)
}

.input-group-addon {
	padding: 6px 12px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	color: var(--primary-color);
	text-align: center;
	background-color: #fff;
	border: 0;
	border-radius: 0;
	text-transform: uppercase;
}

.category_list ul {
	padding: 0;
	margin: 0;
	list-style: none;
	margin-top: 10px;
	margin-bottom: 40px;
}

.category_list ul li {
	display: inline-block;
	margin-top: 10px;
	margin-right: 10px;
}

.category_list ul li a {
	display: block;
	border: 2px solid var(--secondary-color);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 13px;
	color: var(--primary-color);
	border-radius: 6px;
	text-decoration: none;
	padding: 5px 15px;
	transition: var(--transition);
}

.category_list ul li a:hover {
	background-color: var(--secondary-color);
	color: #fff;
}

.ui-category {
	display: flex;
	flex-direction: column;
}

.ui-category .order-cat-1 {
	order: 1;
}

.ui-category .order-cat-2 {
	order: 2;
}

.ui-category .product-grid {
	order: 3;
	display: flex;
	flex-wrap: wrap;
}

.ui-category .order-cat-4 {
	order: 4
}

.sidebar-menu {
	border: 2px solid var(--secondary-color);
	border-radius: 10px;
	padding: 30px 20px;
	margin-bottom: 40px;
}

@media (min-width: 1200px) {
	.sidebar-menu {
		padding: 40px 30px;
	}
}

.sidebar-menu h2 {
	display: none
}


.sidebar-menu .list-unstyled li {
	margin-bottom: 20px
}

.sidebar-menu .list-unstyled li span {
	position: relative;
	display: block
}

.sidebar-menu .list-unstyled li:last-child {
	margin-bottom: 0
}

.sidebar-menu .list-unstyled li .toggle {
	position: absolute;
	right: 0;
	font-size: 20px;
	top: 0;
	height: 18px;
	display: flex;
	align-items: center
}

.sidebar-menu .list-unstyled li:last-child {
	margin-bottom: 0;
}

.sidebar-menu .list-unstyled li:last-child ul {
	padding-bottom: 0;
	margin-bottom: 0;
}

.sidebar-menu .list-unstyled li .fa-minus {
	color: var(--primary-color);
	font-weight: bold;
	font-size: 14px;
}

.sidebar-menu .list-unstyled li .fa-minus:before {
	content: "\f078"
}

.sidebar-menu .list-unstyled li .toggle.collapsed .fa-minus:before {
	content: "\f054"
}

.sidebar-menu .list-unstyled li a {
	text-transform: uppercase;
	color: #777777;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	display: block;
	padding-right: 30px;
	text-decoration: none;
}

.sidebar-menu .list-unstyled li.active a {
	color: var(--primary-color)
}

.sidebar-menu .list-unstyled ul {
	margin-top: 25px;
	margin-bottom: 35px;
	margin-left: 30px;
	border-bottom: none;
	padding-bottom: 0
}

.sidebar-menu .list-unstyled ul li {
	margin-bottom: 15px
}

.sidebar-menu .list-unstyled ul li a {
	color: #777777;
	padding-right: 0
}

.bx-list-products {
	margin-bottom: 40px;
}

.bx-list-products h2 {
	font-size: 20px;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 30px;
	border-bottom: 1px solid #bbbbbb;
	padding-bottom: 10px;
	text-transform: uppercase;
	padding-left: 10px;
}

.bx-list-products .ui-list-products {
	list-style: none;
	margin: 0;
	padding: 0
}

.bx-list-products .ui-list-products li {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #bbbbbb
}

.bx-list-products .ui-list-products li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0
}

.banner .item a img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
	border-radius: 10px
}
.bx-product-filter {
	margin-bottom: 30px;
	border-radius:10px;
	background-color: #f8f8f8;
	padding: 10px 15px
}

.bx-product-filter .input-group-addon {
	text-transform: uppercase;
	font-weight: 600;
	background-color: rgba(0, 0, 0, 0);
	border: none;
	color: var(--secondary-color);
}

.bx-product-filter .form-control {
	border-radius: 4px !important;
	height: 30px;
	background-color:#fff ;
	border: 1px solid #bbbbbb;
}

@media (min-width: 997px) {
	.bx-product-filter .form-group {
		margin-bottom: 0
	}
}

/****____PRODUCT CARD___ ****/
.product-thumb {
	margin-bottom: 50px;
	border: 1px solid #bbbbbb;
	border-radius: 6px;
	overflow: hidden;
}

.product-thumb .image {
	position: relative;
	padding: 30px 10px 0 10px;
}

.product-thumb .caption {
	padding: 20px 15px;
	min-height: 122px;
}

.product-thumb .caption h4 {
	margin: 0
}

.product-thumb .caption h4 a {
	font-size: 15px;
	text-align: center;
	font-weight: 600;
	line-height: 20px;
	color: #666;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 42px;
	text-decoration: none;
	text-transform: uppercase;
}

.price {
	text-align: center;
	color: var(--secondary-color);
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 0;
	margin-top: 10px;
	min-height: 30px;
	display: flex;
	justify-content: center;
}

.price-new {
	color: var(--secondary-color);
	font-size: 18px;
	font-weight: 700;
}

.price-old {
	text-decoration: line-through;
	margin-left: 10px;
	font-size: 18px;
	color: #999;
	font-weight: 400;
}

.product-thumb .btn-add-prd {
	display: block;
	width: 100%;
	border-radius: 0;
	height: 43px;
	padding: 0;
}

@media (max-width: 768px) {
	.product-thumb .btn-add-prd {
		font-size: 11px;
	}
	
	.product-thumb {
		margin-bottom: 30px;
	}
}

.sale {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	position: absolute;
	top: 15px;
	left: 15px;
	background: #ff9600;
	width: 45px;
	height: 45px;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;}

.label-promo {
	font-size: 14px;
	font-weight: 700;
	color: var(--secondary-color);
	position: absolute;
	top: 15px;
	right: 15px;
}
@media (max-width: 600px) {
	.label-promo {
display: none;
	}
	
}
.product-card-flush {
	display: flex;
}

.product-card-flush .image {
	position: relative;
	width: 35%;
	
}

.product-card-flush .image a {
	overflow: hidden;
	border-radius: 6px;
	padding: 25px 10px;
	border: 1px solid #bbbbbb;
	display: block;
}

.product-card-flush .caption {
	width: 65%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	padding-left: 20px;
}

.product-card-flush .caption h4 {
	margin: 0;
	width: 100%;
}

.product-card-flush .caption h4 a {
	width: 100%;
	font-size: 14px;
	text-align: left;
	font-weight: 600;
	line-height: 20px;
	color: #666;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 41px;
	text-decoration: none;
	
}

.product-card-flush .btn {
	width: 100%;
	display: block;
	white-space: normal;
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 14px;
}

@media (min-width: 768px) and (max-width: 1399px) {
	.product-card-flush {
		display: block;
	}
	
	.product-card-flush .image {
		width: 100%;
		
	}
	
	.product-card-flush .caption {
		width: 100%;
		padding-left: 0;
		margin-top: 10px;
	}
}

.ui-panel {
	margin-bottom: 25px;
}

.ui-panel row {
	align-items: center;
}

.ui-panel .col-lg-4 {
	padding-top: 20px;
	padding-bottom: 20px;
}


.ui-panel i {
	color: var(--primary-color);
	font-size: 33px;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	border: 3px solid var(--primary-color);
	border-radius: 16px;
	justify-content: center;
}

.ui-panel h5 {
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 0;
	color: var(--primary-color);
}

.ui-panel p {
	
	margin-bottom: 0;
}

.ui-action-contact {
	display: flex;
	align-items: center;
	gap: 20px;
	text-decoration: none !important;
}

.ui-stores {
	background-color: #f6f6f6;
	border-radius: 12px;
	padding: 20px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
}

@media (max-width: 992px) {
	.ui-stores .row {
		gap: 18px;
	}
}

.ui-stores .ui-stores-title {
	font-size: 20px;
	line-height: 30px;
	color: var(--primary-color);
	margin-bottom: 12px;
	font-weight: 700;
}

@media (max-width: 992px) {
	.ui-stores .ui-stores-title {
		margin-bottom: 0;
	}
}

.ui-stores p {
	font-size: 16px;
	line-height: 26px;
	color: #444444;
}

.ui-stores a {
	color: var(--primary-color);
	position: relative;
	text-decoration: none;
}

.ui-stores a:after {
	transition: 0.8s;
	content: "";
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 1px;
	right: 0;
	background: var(--primary-color);
}

.ui-stores a:hover:after {
	width: 0;
}

.ui-stores .ui-stores-content-item-title {
	font-size: 16px;
	line-height: 1;
	color: var(--primary-color);
	font-weight: 700;
	margin-bottom: 18px;
}

.ui-content-page {
	padding: 20px 30px;
	border-radius: 12px;
	border: 2px solid var(--primary-color);
	margin-bottom: 40px;
}

/****____BLOG___ ****/
.blog_item {
	margin-bottom: 45px;
}

.blog_item .image a {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 25px;
}

.blog_item .image a img {
	display: block;
	width: 100%;
	transition: all .5s ease 0s;
}

.blog_item .image a:hover img {
	transform: scale(1.1);
}

.blog_item .summary {
	
	overflow: hidden;
	
	margin-top: 25px;
	
	position: relative;
	
}
 .blog_stats {
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 5px 25px;
	z-index: 2;
	border-radius: 6px;
	border: 1px solid var(--primary-color);
	width: fit-content;
}

.blog_item .summary .blog_title {
	margin-top: 0;
	margin-bottom: 20px;
	line-height: 22px;
}

.blog_item .summary .blog_title a {
	color: var(--secondary-color);
	font-weight: 700;
	font-size: 18px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 45px;
	text-decoration: none;
}

.blog_item .summary p {
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 67px;
	text-decoration: none;
	color: #555555;
	font-size: 15px;
	line-height: 22px;
	margin-bottom: 0;
	display: -webkit-box;
}

.blog_item .read-more {

	color: var(--primary-color) !important;
	font-size: 14px;
	font-weight: bold;
margin-top: 20px;
	
}


.read-more a i {
	font-size: 10px;
}

.read-more a {
	display: flex;
	color: var(--primary-color);
	text-decoration: none !important;
	align-items: center;
	gap: 5px;
	text-transform: uppercase;
}

.blog_post .main_thumb img {
	display: block;
	border-radius: 12px;
	margin-bottom: 40px;
	height: auto;
	width: 100%;
}

.blog_post_content {
	margin-bottom: 40px
}

/*.blog_post_content h1{
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 35px;
	
}*/

.blog_post_content p:last-child {
	margin-bottom: 0
}

/****____PRODUCT___ ****/
.title-product {
	padding: 0 !important;
	font-weight: 400;
	color: #777777;
	font-size: 27px;
	line-height: 32px;
	margin-bottom: 15px;
	background-image: none;
	border-bottom: none;
}

.ft-product-link {
	margin-bottom: 40px;
	display: block;
	text-decoration: none !important;
	border: 2px solid var(--primary-color);
	border-radius: 10px;

	margin-left: 25px;
	position: relative;
}

.ft-product-ico {
	width: 85px;
	height: 85px;
	overflow: hidden;
	border: 4px solid var(--secondary-color);
	border-radius: 100px;
	background: #fff;
	position: absolute;
	left: -25px;
	top: 50%;
	transform: translateY(-50%);
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 1px 6px 10px 2px rgba(0, 0, 0, .2);
}
.ft-product-ico img{width: 100%;height: auto}
.ft-product-content {
	padding: 20px 6px 20px 74px;
	display: block;
}

.ft-product-title {
	display: block;
	font-size: 22px;
	
	line-height: 1.2;
	margin-bottom: 10px;
	color: var(--primary-color);
	font-weight: 500;
}

.ft-product-desc {
	color: #555555;
	font-size: 14px;
	line-height: 18px;
	display: block;
	font-weight: 600;
}

.ft-product-desc i {
	color: #555555;
	
	font-size: 20px;
	position: relative;
	
}
.ft-product-desc a{
	display: flex;
	gap: 5px;
	color: #555555;
	text-decoration: none!important;
	margin-bottom: 6px;
	align-items: center;
}
.section-ui-ftr {
	padding-top: 40px;
	padding-bottom: 40px;
}
.section-ui-ftr .ft-product {
	display: flex;
	align-items: center;
	overflow-x: scroll;
	overflow-y: hidden;
	gap: 20px;
	width: 100% !important;
	max-width: 1530px !important;
	padding: 0 15px;
	margin-left: auto;
	margin-right: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
	justify-content: space-between;
}
.section-ui-ftr .ui-order-1{order: 1}
.section-ui-ftr .ui-order-2{order: 2}
.section-ui-ftr .ui-order-3{order: 3}
.section-ui-ftr .ui-order-4{order: 4}
.section-ui-ftr .ft-product-desc{line-height: 22px}
.section-ui-ftr .ft-product-desc a{margin-bottom: 0}
.section-ui-ftr  .ft-product-link{margin-bottom: 0;min-width: 330px;height: 120px}
@media (max-width: 767px) {
	.section-ui-ftr  .ft-product-link{min-width: 295px;height: 140px}
}
.thumbnails {
	list-style: none;
	position: relative;
	overflow: auto;
	clear: both;
	padding: 0;
	margin: 0;
}

.thumbnails .thumbnail {
	border: 1px solid #bbbbbb !important;
	border-radius: 6px;
	position: relative;
}
.thumbnails .sale{
	left: auto!important;
	right: 15px!important;
}
.thumbnails .thumbnail img{
	padding: 30px;
}

.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-right: 20px;
}
.thumbnails .image-additional img{padding: 5px}
.list-product-logo {
	position: absolute;
	right: 10px;
	bottom: 15px;
	z-index: 2;
}

.hermes__openpharm__eulogo {
	display: block;
	
}

.MsgAssTel {
	margin-bottom: 30px
}

.MsgAssTel .posLeft {
	font-size: 15px;
	line-height: 22px;
	font-weight: 600;
	margin-bottom: 20px;
}

@media (min-width: 767px) {
	.MsgAssTel {
		display: flex;
		position: relative;
		justify-content: space-between;
		align-items: center;
	}
	
	.MsgAssTel .posLeft {
		margin-bottom: 0;
	}
}
.list-info-prd{
	margin-bottom: 30px;
	font-size: 16px;
	font-weight: 600!important;
	color: #777777;
	
}
.list-info-prd li{margin-bottom: 6px}
.list-info-prd strong{font-weight: 600!important;}
.list-info-prd a{ color: #777777;}
.btn-wishlist {
	background-color: transparent!important;
	color: var(--secondary-color);
	width: 50px;
	height: 50px;
	position: absolute;
	bottom: 5px;
	left: 5px;
	z-index: 10;
	padding: 0;
	font-size: 25px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ui-btn-ico-orange{
	font-size: 23px;
	margin-left: 4px;
	color: #ff9601!important;
	position: relative;
	top: 2px;
	line-height: 0;
}
.nav-tabs {
	border-bottom: 1px solid #bbbbbb;
}

.nav-tabs > li {
	margin-bottom: 0;
}

.nav-tabs > li > a {
	margin-right: 2px;
	line-height: 1.42857143;
	border: none;
	color: #c3c3c3;
	border-radius: 0;
	font-size: 24px;
	font-weight: 900;
	padding-bottom: 20px;
}

.nav-tabs > li:first-child a {
	padding-left: 0;
}

.nav > li > a:focus, .nav > li > a:hover {
	text-decoration: none;
	background-color: transparent;
}

.tab-content > .tab-pane {
	padding-top: 20px
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
	color: var(--secondary-color);
	cursor: default;
	background-color: #fff;
	border: none;
	border-bottom-color: transparent;
}

.rating {
	margin-bottom: 25px
}

.fa-stack {
	width: 18px
}

.rating a {
	color: #777 !important;
	font-size: 14px
}

.fa-stack {
	font-size: 15px
}

.fa-star-o {
	color: #ffc600;
	font-size: 15px
}

.fa-star {
	color: #ffc600;
	font-size: 15px
}

.fa-star + .fa-star-o {
	color: #ffc600
}

.list-price-content {

	border-top: 2px solid #e7e7e7;
	border-bottom: 2px solid #e7e7e7;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 30px 0;
	margin-top: 30px;
}
.list-price{
	
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.list-price-box{
	display: flex;
	align-items: end;
	gap: 15px;
}
.list-price h2 {
	margin: 0;
	font-size: 30px;
	color: var(--secondary-color);
}

.list-price .price-old {
	font-size: 22px;
	color: #99999b;
	font-weight: 600
}
.omnibus-price{
	display: inline-flex;

	color: #777777!important;
	gap: 5px;
	align-items: center;
	text-decoration: none!important;
	font-size: 16px;
	font-weight: 600 !important;
	
}
.omnibus-price i{
	color: #ff9601;
	font-size: 20px;
}
@media (max-width: 1200px) {
	.list-price-box {
		display: none
	}
	
	.ui-action-mobile-product {
		position: fixed;
		background-color: #ffffff;
		left: 0;
		bottom: 70px;
		padding: 10px 20px;
		display: flex;
		align-items: center;
		width: 100%;
		z-index: 500;
		gap: 15px;
		border-top: 6px solid #ffa202;
		border-bottom: 2px solid var(--primary-color);
	}
	
	.ui-action-mobile-product #minus, .ui-action-mobile-product #plus {
		display: none;
	}
	
	.ui-action-mobile-product .btn, .ui-action-mobile-product .bf-buttonclear-box .bf-buttonclear, .bf-buttonclear-box .ui-action-mobile-product .bf-buttonclear {
		width: 45px;
		height: 45px;
	}
	
	.ui-action-mobile-product .btn span, .ui-action-mobile-product .bf-buttonclear-box .bf-buttonclear span, .bf-buttonclear-box .ui-action-mobile-product .bf-buttonclear span {
		display: none;
	}
	
	.ui-action-mobile-product [type=text] {
		width: 55px;
		text-align: center;
		height: 45px;
	}
	
	.ui-action-mobile-product .bx-price-mobile {
		display: flex;
		align-items: baseline;
		gap: 15px;
		width: 100%;
	}
	
	.ui-action-mobile-product .bx-price-mobile span {
		font-size: 15px;
		color: #99999b;
		font-weight: 600;
	}
	
	.ui-action-mobile-product .bx-price-mobile h2 {
		color: var(--secondary-color);
		margin: 0;
		font-size: 20px;
		font-weight: 900;
	}
	
	.ui-action-mobile-product .btn-default {
		transition: 0.15s;
		background-color: #f7941d;
		color: #ffffff;
		border-color: #f7941d;
	}
	
	.ui-action-mobile-product .btn-default:hover, .ui-action-mobile-product .btn-default:focus, .ui-action-mobile-product .btn-default:active {
		background-color: #f7941d;
		border-color: #f7941d;
		color: #ffffff !important;
	}
}

.ui-action-mobile-product label {
	display: none;
}

@media (min-width: 1541px) {
	.ui-action-mobile-product label {
		margin: 0;
		color: #666666;
		display: block;
		font-weight: 600;
		font-size: 16px;
	}
}

@media (min-width: 1541px) {
	.ui-action-mobile-product .btn-primary, .ui-action-mobile-product .bf-buttonclear-box .bf-buttonclear, .bf-buttonclear-box .ui-action-mobile-product .bf-buttonclear {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}
}

@media (min-width: 1201px) {
	.ui-action-mobile-product {
		margin-top: 30px;
		display: flex;
		align-items: center;
		gap: 20px;
		border: 2px solid var(--secondary-color);
		border-radius: 8px;
		padding: 20px 30px;
	}
	
	.ui-action-mobile-product.ui-action-mobile-product--no-stock {
		display: none;
	}
	
	.ui-action-mobile-product .bx-price-mobile, .ui-action-mobile-product .btn-default, .ui-action-mobile-product #button-cart i {
		display: none !important;
	}
	
	.ui-action-mobile-product .btn, .ui-action-mobile-product .bf-buttonclear-box .bf-buttonclear, .bf-buttonclear-box .ui-action-mobile-product .bf-buttonclear {
		width: fit-content;
		height: 45px;
	}
	
	.ui-action-mobile-product .btn-number {
		width: 125px;
		background-color: #fff;
		border:1px solid #bbbbbb;
		border-radius: 8px;
		height: 45px;
		position: relative;
	}
	
	.ui-action-mobile-product .btn-number [type=text] {
		height: 41px;
		border: none;
		text-align: center;
		background: #ffffff;
	}
	
	.ui-action-mobile-product .btn-number #minus, .ui-action-mobile-product .btn-number #plus {
		background-color: transparent;
		color: #666666;
		border: none;
		border-radius: 6px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
		width: 25px;
		position: absolute;
		height: 25px;
		top: 8px;
	}
	
	.ui-action-mobile-product .btn-number #minus {
		left: 7px;
	}
	
	.ui-action-mobile-product .btn-number #plus {
		right: 7px;
	}
}

@media (max-width: 1200px) {
	.ui-action-mobile-product .btn, .ui-action-mobile-product .bf-buttonclear-box .bf-buttonclear, .bf-buttonclear-box .ui-action-mobile-product .bf-buttonclear {
		width: 45px;
		height: 45px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 20px;
	}
}
/****____ADMIN___ ****/
.account-account #content, .account-order #content, .account-wishlist #content, .account-edit #content, .account-password #content, .account-address #content, .account-newsletter #content, .account-logout #content, .account-register #content, .account-login #content {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	float: none;
}

.ui-admin-link {
	display: flex;
	align-items: center;
	justify-content: start;
	border-radius: 12px;
	padding: 15px 20px;
	border: 2px solid var(--primary-color);
	gap: 15px;
	background-color: #fff;
	text-decoration: none !important;
	color: #666666;
	height: 100%;
	width: 100%;
	line-height: 1.3;
}

.ui-admin-link span strong {
	display: block;
	color: var(--primary-color);
	font-size: 17px;
	margin-bottom: 10px;
}

.ui-admin-link i {
	font-size: 26px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background-color: var(--secondary-color);
	flex: 0 0 60px;
}

/****____FOOTER___ ****/
.ui-sub-footer {
	background-color: var(--secondary-color);
	box-shadow: inset 0 20px 10px -10px rgba(0, 0, 0, .1);
	padding: 40px 0;
	color: #fff;
	font-size: 14px;
}

.ui-sub-footer a {
	color: #fff;
}

.ui-sub-footer.payment-method {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	
}



.ui-sub-footer .payment-method img {
	flex: 0 0 auto;
	-webkit-user-select: none;
	user-select: none;
	pointer-events: none;
	object-fit: contain;
	width: 65px;
	height: 35px;
	margin-right: 10px;
	margin-bottom: 10px;
}

@media (min-width: 1000px) {
	.ui-sub-footer .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.ui-sub-footer .info-ft-credits {
		width: 100%;
		text-align: right;
	}
	.ui-sub-footer .payment-method {
		display: flex;
		justify-content: left;
		margin-top: 0;
		width: 100%;
	}
	.ui-sub-footer .payment-method img {margin-bottom: 0}
}


.ui-footer {
	margin-top: 40px;
	box-shadow: var(--shadow-top);
}

.ui-footer .col-xs-12 {
	margin-top: 30px;
	margin-bottom: 30px;
}

@media (min-width: 1000px) {
	.ui-footer {
		margin-top: 80px;
	}
	
	.ui-footer .col-xs-12 {
		margin-top: 50px;
		margin-bottom: 50px;
	}
}

.ui-footer h6 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 40px;
	text-transform: uppercase;
}

.ui-footer .list-unstyled li {
	display: block;
	margin-bottom: 14px;
}

.ui-footer .list-unstyled li a {
	position: relative;
	font-size: 18px;
	color: #666666;
	font-weight: 500;
}

.ui-footer .list-unstyled li:last-child {
	margin-bottom: 0
}

.ui-social {
	margin-top: 18px;
}

.ui-social strong {
	margin-right: 6px;
	color: #666666;
	font-weight: 600;
}

.ui-social a {
	color: var(--primary-color);
	display: inline-flex;
	font-size: 22px;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	margin-left: 10px;
	text-decoration: none;
}

.info-ft {
	padding: 0;
	margin: 0;
	list-style: none;
}

.info-ft li {
	display: block;
	margin-bottom: 10px;
}

.info-ft li a {
	display: flex;
	align-items: center;
	font-size: 18px;
	color: #666666;
	font-weight: 500;
}

.info-ft li a:hover {
	text-decoration: none;
	opacity: .7;
}

.info-ft li a i {
	font-size: 20px;
	width: 35px;
	color: var(--primary-color);
}

/****____MULTIPLE-FEATURED___ ****/
.multiple-featured {
	position: relative;
}

.multiple-featured h2 {
	font-size: 23px;
	text-transform: uppercase;
	border-bottom: 1px solid #bbbbbb;
	padding-bottom: 10px;
	margin-bottom: 30px;
	position: relative;
	margin-top: 0;
	font-weight: 900;
	line-height: 1.4;
	color: var(--secondary-color);
}

@media (max-width: 997px) {
	.multiple-featured h2 {
		font-size: 22px;
	}
	
	.multiple-featured .slick-arrow {
		display: none !important;
	}
	
	.multiple-featured .product-thumb {
		margin-bottom: 0;
	}
	
	.multiple-featured {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}
	
	.multiple-featured .slick-dots {
		
		bottom: -40px;
	}
}

@media (min-width: 998px) {
	.multiple-featured .slick-arrow {
		transform: translate(0);
		top: -80px;
	}
	
	.multiple-featured .slick-arrow-prev {
		left: auto;
		right: 50px;
	}
	
	.multiple-featured .slick-dots {
		display: none !important;
	}
}

/* carousel */
.slick-slide img {
	margin: 0 auto;
}

.slick-dots {
	display: block;
	opacity: 1;
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	transition: all 0.3s ease 0s;
}

@media (max-width: 768px) {
	.slick-dots {
		display: none;
	}
}

.slick-slider:hover .slick-dots {
	opacity: 1;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0 2px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	display: block;
	cursor: pointer;
	outline: none;
	padding: 5px;
	border: 0;
	background: transparent;
	font-size: 0;
	line-height: 0;
	color: transparent;
}

.slick-dots li button::before {
	content: "";
	display: block;
	opacity: 0.5;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #dbdbdb;
	font-size: 0;
	line-height: 0;
}

.slick-dots li.slick-active button::before {
	opacity: 1;
	background-color: var(--primary-color);
}

.slick-arrow {
	cursor: pointer;
	position: absolute;
	top: 50%;
	z-index: 2;
	transition: all 0.15s ease 0s;
	width: 26px;
	height: 26px;
	border-radius: 100px;
	background-color: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px !important;
}

.slick-arrow:hover {
	color: var(--secondary-color-hover);
	background-color: transparent;
}

.slick-arrow-prev {
	left: 0;
	transform: translate(50%, -50%);
}

.slick-arrow-next {
	right: 15px;
	transform: translate(-50%, -50%);
}

.slideshow-home #slideshow0 {
	
	overflow: hidden;
}

.slideshow-home #slideshow0 img, .slideshow-home #slideshow1 img {
	display: block;
	width: 100%;
}

.slideshow-home #slideshow0 .slick-dots, .slideshow-home #slideshow1 .slick-dots {
	bottom: 7px;
	
}

@media (max-width: 997px) {
	.slideshow-home #slideshow0 {
		display: none;
	}
}

.slideshow-home #slideshow1 {
	overflow: hidden;
	padding-bottom: 45px;
}

.mt-new-items{
	margin-top: 30px;
}
@media (min-width: 997px) {
	.slideshow-home #slideshow1 {
		display: none;
	}

	.mt-new-items{
		margin-top: 70px;
		margin-bottom: 30px;
	}
}

.ui-brand-carusel {
	border-bottom: 5px solid var(--secondary-color);
	border-top: 5px solid var(--secondary-color);
	padding: 40px 0;
}
@media (min-width: 992px) {
	.ui-brand-carusel {
	margin-top: 30px;
	}
}


.banner-column a {
	display: block;
	margin-bottom: 30px;
	
}

.banner-column a img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.ui-newsletter {
	margin-bottom: 40px;
	background-color: #fff;
	border: 1px solid #bbbbbb;
	border-radius: 6px;
	overflow: hidden;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.ui-newsletter form {
	padding: 15px 30px;
	position: relative;
	z-index: 1;
}


.ui-newsletter-image img {
	display: block;
	width: 100%;
	object-fit: cover;
	height: 100%;
}

.ui-newsletter-title{
	font-weight: 700;
	color: var(--secondary-color);
	font-size: 24px;
}
.ui-newsletter-desc {
	font-weight: 500;
	font-size: 16px;
	line-height: 23px;
}

.ui-newsletter-desc strong {
	color: var(--primary-color);
}

.ui-newsletter .input-privacy {
	position: relative;
	padding-left: 25px;
	
	font-size: 12px;
	line-height: 1.1;
}

.ui-newsletter .input-privacy a {
	color: inherit;
	
}

.ui-newsletter #nl-privacy {
	position: absolute;
	left: 0;
}

.ui-newsletter label {
	font-size: 12px;
}

.ui-newsletter .form-group {
	display: flex;
	margin-top: 15px;
	margin-bottom: 10px;
}

.ui-newsletter .form-group .btn {
	border-radius: 6px;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}

.ui-newsletter .form-group .form-control {
	border-radius: 6px;
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}
@media (min-width: 992px) {
	.banner-column a {
		display: block;
		margin-bottom: 40px;
	}
}


.border-bottom-section {
	margin-top: 40px;
	
	border-bottom: 5px solid var(--primary-color);
	padding-bottom: 30px;
}

@media (min-width: 992px) {
	.border-bottom-section {
		margin-top: 70px;
		padding-bottom: 40px;
	}
}

.ui-section-slick {
	padding-top: 40px;
	box-shadow: var(--shadow-top);
	
}

@media (min-width: 992px) {
	.ui-section-slick {
		padding-top: 70px;
		margin-bottom: 40px;
	}
}

.product-thumb-flush {
	margin-bottom: 30px;
	border: 1px solid var(--primary-color);
	border-radius: 12px;
	overflow: hidden;
	display: flex !important;
	align-items: center;
	position: relative;
}

.product-thumb-flush .image {
	width: 150px;
	padding: 20px;
}

.product-thumb-flush .caption {
	width: calc(100% - 150px);
	padding: 15px;
}


.product-thumb-flush .btn {
	position: absolute;
	right: 0;
	bottom: 0;
	width: calc(100% - 150px);
	border-top-right-radius: 0;
	border-bottom-left-radius: 0;
	border-top-left-radius: 12px;
}

.product-thumb-flush .label-promo {
	right: auto;
	left: 0;
	border-radius: 0 6px 6px 0;
}

.product-thumb-flush .sale {
	left: auto;
	right: 15px;
	top: 10px
}

.product-thumb-flush .caption h4 {
	margin: 0;
}

.product-thumb-flush .caption h4 a {
	font-size: 14px;
	text-align: left;
	font-weight: 600;
	line-height: 20px;
	color: #666;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 41px;
	text-decoration: none;
}

.product-thumb-flush .price {
	justify-content: left;
	padding-bottom: 10px;
}

@media (min-width: 1400px) {
	.product-thumb-flush .image {
		width: 200px;
		padding: 20px;
	}
	
	.product-thumb-flush .image img {
		max-height: 137px;
		width: auto;
		margin-left: auto;
		display: block;
	}
	
	.product-thumb-flush .caption {
		width: calc(100% - 200px);
	}
	
	.product-thumb-flush .caption {
		
		padding-left: 30px;
		
	}
	
	.product-thumb-flush .btn {
		
		width: calc(100% - 200px);
		
	}
}

.section-slick-row {
	padding-top: 40px;
	box-shadow: var(--shadow-top);
	border-top: 5px solid var(--primary-color);
}

@media (min-width: 992px) {
	.section-slick-row {
		padding-top: 70px;
		margin-bottom: 40px;
	}
}


.ui-tab-content {
	padding-top: 30px;
}

@media (min-width: 992px) {
	.ui-tab-content {
		padding-top: 70px;
		padding-bottom: 30px;
	}
}

.ui-tab-module .nav-tabs {
	border-bottom: none;
}

.ui-tab-module .nav-tabs > li > a {
	margin-right: 2px;
	line-height: 1.42857143;
	border: none;
	color: #adadad;
	text-transform: uppercase;
	border-radius: 0;
	font-size: 18px;
	font-weight: 900;
	padding-bottom: 0;
}
.ui-tab-module h2{
	margin-bottom: 5px;
}
.ui-tab-module .nav-tabs > li.active > a,.ui-tab-module .nav-tabs > li.active > a:focus,.ui-tab-module .nav-tabs > li.active > a:hover{color: var(--primary-color)}
@media (min-width: 996px) {
	.ui-tab-module {
		display: flex;
		width: 100%;
		justify-content: space-between;
		padding-right: 70px;
		align-items: center;
		border-bottom: 1px solid #acacac;
		margin-bottom: 20px;
		padding-bottom: 15px;
	}
	.ui-tab-module .nav-tabs > li > a {
		padding-top: 0;
	}
	.ui-tab-module h2{
		margin-bottom: 0;
		border-bottom: 0;
		padding-bottom: 0;
	}
}
@media (min-width: 998px) {
	.modules-tab .multiple-featured .slick-arrow {
	
		top: -85px;
	}
}
@media (min-width: 992px) {.banner-mb-r {
	display: none;
}}

@media (max-width: 991px) {
	.banner-dk-r {
		display: none;
	}
}
.ui-shadow-top {
	padding-top: 40px;
	box-shadow: var(--shadow-top);
}
@media (min-width: 992px) {
	.ui-shadow-top {
		padding-top: 70px;
	}
}
.section-banner-home {
	box-shadow: var(--shadow-bottom)
}
@media (min-width: 992px) {
	.section-banner-home {
		padding-top: 20px;
		padding-bottom: 30px;
	}
}
.home-space{
	margin-top: 40px;
}
@media (min-width: 992px) {
	.home-space{
		margin-top: 70px;
		margin-bottom: 30px;
	}
}
.bx-bento{
	padding-top: 40px;
	padding-bottom: 40px;
	box-shadow: inset 0 0 20px 10px rgba(0, 0, 0, .08);
}
.bento-grid{
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
	justify-content: center;
}
.bento-grid-col{
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.bento-grid-col a img{
	display: block;
	max-width: 100%;
	border-radius: 10px;
	border:1px solid #e1e1e1;
}
.bento-grid-col a{
	display: block;
	transition: all .3s ease 0s;
}
.bento-grid-col a:hover{transform: translateY(-10px)}
@media (min-width: 992px) {
	.bx-bento{
		padding-top: 70px;
		padding-bottom: 70px;
		background-image: url('../image/bg-home.png');
		background-position: center;
		background-size: cover;
	}
	.bento-grid{
		flex-direction: row;
	}

}
.homeFeedaty-box{
	padding-top: 40px;
	box-shadow: var(--shadow-top);
}
@media (min-width: 992px) {
	.homeFeedaty-box{
		padding-top: 60px;
	}
	.homeFeedaty{
		width: 100%;
		max-width: 1650px;
		margin-left: auto;
		margin-right: auto;
	}
	.common-home .ui-footer{margin-top: 60px}
}