:root {
	--primary-color: #00b2a0;
	--primary-color-hover: #058074;
	--secondary-color: #008d7f;
	--secondary-color-hover: #008d7f;
	--color-orange: #ff9600;
	--color-sky: #00b9e7;
	--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: 100px;
	--transition: all 0.3s ease 0s;
	--shadow-color: rgba(0, 0, 0, .1);
	--shadow-top: inset 0 30px 30px -20px rgba(0, 0, 0, .1);
	--shadow-bottom: 0px -10px 20px 0px rgba(0, 0, 0, 0.1)
}

body {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	color: #555555;
	font-size: 15px;
	line-height: 1.7;
	width: 100%;
	min-width: 360px;
	overflow-x: hidden;
}

/****____UTILITY___ ****/
.wysiwyg img {
	border-radius: 12px;
	margin-bottom: 35px;
}

p {
	margin-bottom: 1.6em;
	
}

:focus-visible {
	outline: 0
}

:focus {
	box-shadow: none !important;
	text-decoration: none !important;
}

a {
	color: var(--secondary-color);
	outline: none !important;
}

a:hover {
	color: var(--secondary-color);
	text-decoration-thickness: 3px;
	text-underline-offset: 6px;
}

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: 9999;
}

.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: 1400px !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);
}

.ui-admin-link {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	margin-bottom: 40px;
	text-transform: uppercase;
	padding: 20px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	color: var(--primary-color);
	font-weight: bold;
	font-size: 14px;
	flex-direction: column;
	border: 1px solid #eeeeee;
	background-color: #fff;
	text-decoration: none !important;
}

.ui-admin-link i {
	font-size: 30px;
	margin-bottom: 10px;
	color: var(--secondary-color);
}

/****____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: 2px solid transparent;
	padding: 10px 30px;
	font-size: 14px !important;
	border-radius: var(--btn-radius);
	text-transform: uppercase;
	line-height: 1.1;
	width: fit-content;
}

.rendered-form .btn {
	padding: 10px 30px !important;
	border-radius: var(--btn-radius) !important;
}

.btn-primary {
	color: #fff;
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:focus {
	color: #fff;
	background-color: var(--primary-color-hover);
	border-color: var(--primary-color-hover);
}

.btn-secondary {
	color: var(--secondary-color);
	background-color: #fff;
	border-color: var(--primary-color) !important;
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary:active:focus {
	color: #fff;
	background-color: var(--primary-color);
}

/****____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: 26px;
	text-transform: uppercase;
	margin-bottom: 30px;
	position: relative;
	margin-top: 0;
	font-weight: 400;
	line-height: 1.4;
	color: var(--secondary-color);
	display: flex;
	align-items: center;
}

.display-1:after {
	content: "";
	flex-grow: 1;
	margin-left: 22px;
	height: 3px;
	flex-basis: 0;
	min-width: 0;
	background: var(--color-sky);
}


.display-2 {
	font-size: 26px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	color: var(--secondary-color);
	position: relative;
	font-weight: 400;
	margin-bottom: 20px;
}

.display-2:after {
	content: "";
	flex-grow: 1;
	margin-left: 22px;
	height: 3px;
	flex-basis: 0;
	min-width: 0;
	background: var(--color-sky);
	
}

@media (max-width: 997px) {
	.display-2 {
		font-size: 22px;
	}
}

/****____TABLE___ ****/
/****____FORMS___ ****/
.rendered-form {
	margin-right: -15px;
	margin-left: -15px;
}

input::-webkit-input-placeholder {
	color: #555555;
	font-weight: 600;
	font-size: 14px;
}

input:-moz-placeholder {
	color: #555555;
	font-weight: 600;
	font-size: 14px;
}

input::-moz-placeholder {
	color: #555555;
	font-weight: 600;
	font-size: 14px;
}

input:-ms-input-placeholder {
	color: #555555;
	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)
}

.input-group-btn .btn {
	padding: 10px 20px;
}

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;
}

.formbuilder-checkbox {
	position: relative
}

.formbuilder-checkbox label {
	font-size: 12px;
	line-height: 1;
	padding-left: 25px;
}

.formbuilder-checkbox input[type=checkbox] {
	position: absolute;
	top: 0;
	left: 0;
}

/****____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(--primary-color);
	border-radius: 6px;
	
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/****____PAGINATION___ ****/

.r2-pagination {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	padding: 0;
	list-style: none;
	font-size: 15px;
	justify-content: center;
	margin-bottom: 30px;
}

.r2-pagination li {
	margin-bottom: 10px;
	margin: 0 3px;
	border: 1px solid var(--primary-color);
	border-radius: 6px;
	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: var(--secondary-color);
	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(--primary-color);
	border-color: var(--primary-color);
	color: #fff
}

.r2-pagination a:hover, .r2-pagination a:focus, .r2-pagination a:active {
	background: var(--primary-color);
	color: #fff
}

.r2-pagination .active span {
	color: var(--primary-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(--primary-color);
	border-color: var(--primary-color)
}

/****____BREADCRUMBS___ ****/

#breadcrumb-wrapper {
	margin-bottom: 40px;
	background-color: #f4f4f4;
	
}

#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;
	font-size: 13px;
	display: flex
}

@media (min-width: 996px) {
	#breadcrumb-wrapper .breadcrumb {
		padding: 14px 0px;
		overflow: hidden;
		justify-content: start;
	}
}

#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: #858585
}

#breadcrumb-wrapper .breadcrumb > li:first-child > a {
	font-size: 0;
	color: #858585
}

#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: #858585;
	text-decoration: none;
}

#breadcrumb-wrapper a:hover {
	opacity: .8
}

/****____BLOG___ ****/
.blog-module-latest .blog_item {
	margin-bottom: 0
}

.blog-module-latest .blog_item .summary {
	padding: 51px 30px;
}

.ui-last-posts {
	border-top: 5px solid var(--primary-color);
	padding-top: 40px;
	box-shadow: var(--shadow-bottom);
	
}

.blog_item_card_min {
	margin-bottom: 30px !important;
}

.blog_item_card_min .summary {
	padding: 20px !important;
}

.blog_item_card_min .summary p {
	-webkit-line-clamp: 2 !important;
	height: 38px !important;
	font-size: 13px !important;
	line-height: 18px !important;
	margin-bottom: 10px !important;
}

.blog_item_card_min .summary .blog_stats {
	margin-bottom: 5px !important;
	font-size: 13px !important;
}

.blog_item_card_min .summary .blog_title a {
	font-size: 14px !important;;
	line-height: 18px !important;
	height: 45px !important;
}

.blog_item_card_min .summary .blog_title {
	margin-bottom: 0 !important;
}

.blog_item_card_min .read-more {
	font-size: 13px;
}

.blog_item_card_min .image a {
	max-height: 240px !important;
}

@media (min-width: 992px) {
	.ui-home-post {
		margin-top: 30px;
	}
	
	/*
	.blog-module-latest .blog_item .summary {
		margin-top: 0;
	}
	*/
	.ui-last-posts {
		padding-top: 60px;
	}
}

.ui-header {
	border-bottom: 5px solid var(--primary-color);
	padding-bottom: 20px;
}

/****____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, .5);
	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: 15px;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #666666;
}

.user-log ul li a i {
	font-size: 20px;
	color: var(--primary-color);
	width: 35px;
}

.ui-nav-btn {
	padding-left: 10px;
}

.ui-nav-btn a {
	color: #fff !important;
	background-color: var(--primary-color) !important;
	height: 30px!important;
	display: flex !important;
	align-items: center;
	border-radius: 5px;
}

@media (min-width: 1200px) {
	.ui-header {
		transition: .2s ease-in-out all;
		position: sticky;
		top: 0;
		z-index: 200;
		background-color: #fff;
		border-bottom: none;
		padding-bottom: 0;
		
	}
	
	.ui-header:after {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 5px;
		background-color: var(--primary-color);
	}
	
	.ui-center-class {
		box-shadow: 0px 8px 13px 0px rgba(0, 0, 0, .1);
		position: relative;
		height: 80px;
	}
}

.ui-center-class .container {
	position: relative
}

#search {
	width: calc(100% - 660px);
	margin-left: auto;
	margin-right: auto;
	height: 40px;
	text-align: center;
	background-color: #fff;
	border: 2px solid var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	top: 20px;
	position: relative;
	
	
}

@media (max-width: 1200px) {
	#search {
		width: 100%;
		max-width: 700px;
		top: 0;
	}
}

#search input {
	height: 35px;
	background-color: #fff;
	width: 100%;
	border: none;
	font-size: 15px;
	border-radius: 100px;
	padding-left: 20px;
	
}

#search button {
	
	height: 35px;
	width: 45px;
	font-size: 20px;
	display: flex;
	align-items: center;
	color: var(--primary-color);
	background-color: #fff !important;
	justify-content: center;
	border: none !important;
	border-radius: 100px;
}

.ui-top-nav-bx {
	position: relative;
	background-color: #ff9600;
	color: #fff;
	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 {
	
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1.1;
	padding: 10px 0;
	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: 16px;
}

.ui-top-nav-bx-nav ul li a {
	text-transform: uppercase;
	font-size: 12px;
	text-decoration: none;
	font-weight: 700;
	color: #fff;
	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: #fff;
}

.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: #fff;
}

.ui-top-nav-bx-nav li:first-child:before {
	content: none
}

@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: 14px;
	text-decoration: none;
	font-weight: 700;
	color: #fff;
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	
}

.ui-top-nav-bx-info a i {
	font-size: 20px;
	color: #fff;
}

.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: 250px;
	}
}

.logo-hd a {
	width: 100%;
	max-width: 125px;
	display: block;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}

.logo-hd a img {
	display: block;
	width: 100%;
}

@media (min-width: 1200px) {
	.logo-hd {
		position: absolute;
		height: 90px;
		bottom: -40px;
		display: flex;
		align-items: center;
		justify-content: right;
		padding-right: 50px;
		max-width: none;
		width: 235px;
		left: 0;
		flex: 0 0 auto;
	}
	
	.logo-hd:before {
		content: '';
		height: 100%;
		box-shadow: 0px 8px 13px 0px rgba(0, 0, 0, .1);
		width: 1200%;
		right: 0;
		background-color: #fff;
		position: absolute;
		right: 0;
		top: 0;
		border-top-right-radius: 1000px;
		border-bottom-right-radius: 1000px;
	}
	
	.logo-hd a {
		margin: 0;
		padding: 0;
		z-index: 2
	}
	
	.ui-nav-point {
		position: relative;
		
	}
	
	
}

@media (min-width: 1200px) and (max-width: 1299px) {
	.logo-hd {
		
		height: 80px;
	}
}

.ui-btn-nav {
	display: flex;
	align-items: center;
	border: none !important;
	background-color: transparent !important;
	text-decoration: none !important;
	padding: 0;
	cursor: pointer;
}

.ui-btn-nav i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 43px;
	height: 43px;
	background-color: #fff;
	font-size: 22px;
	color: var(--color-sky);
}


.ui-btn-nav span {
	font-size: 13px;
	line-height: 18px;
	color: #666666;
	font-weight: 700;
	text-align: left;
	white-space: nowrap;
	text-transform: initial;
}

.ui-btn-nav-txt {
	color: var(--primary-color) !important;
	display: block;
	text-transform: uppercase;
	font-weight: bold !important;
}

.r2-open-side-menu.ui-btn-nav i {
	background-color: var(--primary-color) !important;
	color: #fff !important;
}

@media (min-width: 1200px) {
	.ui-nav-point-right {
		display: flex;
		align-items: center;
		gap: 25px;
		position: absolute;
		left: 0;
		bottom: 25px;
	}
	
	.ui-nav-point-left {
		display: flex;
		align-items: center;
		gap: 20px;
		position: absolute;
		right: 0;
		bottom: -23px;
	}
}


@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: #ff9900;
		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;
	
}

#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: 25px;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 12px 10px;
	border-color: transparent transparent var(--primary-color) transparent;
}

@media (min-width: 1550px) {
	#cart .dropdown-menu {
		right: -90px
	}
	
	#cart .dropdown-menu:before {
		
		right: 112px;
	}
}

.cart-free-shipping {
	margin: -20px -20px 15px;
	background: var(--primary-color);
	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: #777777;
	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(--primary-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;
}

#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(--primary-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;
		padding-bottom: 5px;
	}
	
	.r2-mainmenu .megamenu > li > a {
		--raw-min-width: 1200;
		--raw-max-width: 1400;
		--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 15px;
		font-size: 12px;
		line-height: 1.3;
		text-align: center;
		text-transform: uppercase;
		color: #555555;
		font-weight: 600;
		position: relative;
	}
	
	.r2-mainmenu .megamenu > li > a:after {
		content: '';
		width: 1px;
		position: absolute;
		height: 25px;
		right: 0;
		top: 18px;
		background-color: var(--primary-color);
	}
	
	.r2-mainmenu .megamenu > li:last-child a:after {
		content: none !important;
	}
	
	.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(--secondary-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: 25px 6px 20px 6px;
		border-top: 5px solid var(--primary-color);
		
	}
	
	.r2-mainmenu .megamenu li.dropdown > .dropdown-menu {
		margin-top: -5px;
	}
}

@media (max-width: 1199px) {
	#r2-close-side-menu, .r2-mainmenu, .r2-mainmenu .megamenu li a, .r2-mainmenu .megamenu li.open a {
		background: #fff !important;
	}
	
	.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: var(--primary-color);
	}
	
	.r2-mainmenu .megamenu .open > .dropdown-menu {
		border-left: 10px solid var(--primary-color);
	}
	
	.r2-mainmenu .megamenu li a, .r2-mainmenu .megamenu li.open a {
		color: var(--secondary-color);
	}
	
	#r2-close-side-menu {
		background-color: var(--primary-color) !important;
	}
}

/****____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(--secondary-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(--primary-color);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 13px;
	color: var(--secondary-color);
	border-radius: 6px;
	text-decoration: none;
	padding: 5px 8px;
	transition: var(--transition);
}

.category_list ul li a:hover {
	background-color: var(--primary-color);
	color: #fff;
}

.ui-filter-cat {
	background-color: #f4f4f4;
	border-radius: 5px;
	padding: 0 15px;
	margin-bottom: 30px;
}

.ui-filter-cat .form-group {
	margin-top: 12px;
	margin-bottom: 12px
}

.ui-filter-cat .form-group .input-group-addon {
	background-color: transparent;
	color: #666666;
}

.ui-filter-cat .form-group .form-control {
	background-color: #fff;
	height: 30px !important;
	color: #666666;
	border-color: #666666;
}

.sidebar-menu {
	margin-bottom: 40px;
}

.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: 16px;
}

.sidebar-menu .list-unstyled li .fa-minus:before {
	content: ""
}

.sidebar-menu .list-unstyled li .toggle.collapsed .fa-minus:before {
	content: ""
}

.sidebar-menu .list-unstyled li a {
	text-transform: uppercase;
	color: #777777;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	display: block;
	padding-right: 30px;
	text-decoration: none;
}

.sidebar-menu .list-unstyled li.active a {
	color: var(--secondary-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: 600;
	color: var(--secondary-color);
	margin-bottom: 35px;
	text-transform: uppercase;
}

.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;
}

.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: 5px
}

/****____PRODUCT CARD___ ****/
.product-thumb {
	margin-bottom: 50px;
	
}

.product-thumb .image {
	position: relative;
	padding: 20px;
	border: 1px solid var(--primary-color);
	border-radius: 5px;
	overflow: hidden;
}

.product-thumb .caption {
	padding-top: 15px;
}

.product-thumb .caption h4 {
	margin: 0
}

.product-thumb .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;
	text-transform: uppercase;
}

.price {
	color: var(--secondary-color);
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 0;
	
	min-height: 30px;
	display: flex;
	align-items: baseline;
	
}

.price-new {
	color: var(--secondary-color);
	font-size: 26px;
	font-weight: bold;
}

.price-old {
	text-decoration: line-through;
	margin-left: 10px;
	font-size: 18px;
	color: #999;
	font-weight: 400;
}

.product-thumb .button-group {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 9px;
}


@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;
	right: 15px;
	width: 45px;
	height: 45px;
	border-radius: 100px;
	background-color: var(--color-sky);
	display: flex;
	align-items: center;
	justify-content: center;
}

.label-promo {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	position: absolute;
	top: 15px;
	right: 0;
	background-color: var(--secondary-color);
	width: 66px;
	height: 30px;
	text-align: center;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-card-flush {
	display: flex;
}

.product-card-flush .image {
	position: relative;
	width: 35%;
	
}

.product-card-flush .image a {
	overflow: hidden;
	border-radius: 6px;
	padding: 20px 10px;
	border: 1px solid var(--primary-color);
	display: block;
}

.product-card-flush .caption {
	width: 65%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	padding-left: 20px;
}

.product-card-flush .caption h4 {
	margin: 0;
}

.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;
	text-transform: uppercase;
}

.product-card-flush .price {
	width: 100%;
	justify-content: left;
	margin-top: 0
}

.product-card-flush .btn {
	width: 100%;
	display: block;
	white-space: normal;
	padding-left: 5px !important;
	padding-right: 5px !important;
	margin-top: 4px;
}

@media (min-width: 992px) 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(--secondary-color);
	border-radius: 16px;
	justify-content: center;
}

.ui-panel h5 {
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 0;
	color: var(--secondary-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: 30px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #bfbfbf;
	position: relative;
}

.blog_item .image a {
	position: relative;
	display: block;
	overflow: hidden;
	
}

.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 {
	border-top-left-radius: 12px;
	overflow: hidden;
	background-color: #fff;
	padding: 30px 22px;
	position: relative;
	margin-top: -40px;
	width: calc(100% - 40px);
	margin-left: auto;
}

.blog_item .summary .blog_stats {
	color: var(--primary-color);
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.blog_item .summary .blog_title {
	margin-top: 0;
	margin-bottom: 22px;
	line-height: 25px;
}

.blog_item .summary .blog_title a {
	color: var(--secondary-color);
	font-weight: bold;
	font-size: 19px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 50px;
	text-decoration: none;
	
}

.blog_item .summary p {
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 70px;
	text-decoration: none;
	color: #666;
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 22px;
	font-weight: 500;
	
}

.blog_item .read-more {
	color: var(--secondary-color) !important;
	font-size: 15px;
	font-weight: bold;
	text-transform: uppercase;
	
}


.read-more a i {
	display: none
}


.blog_post .main_thumb img {
	display: block;
	border-radius: 12px;
	margin-bottom: 40px;
	height: auto;
	width: 100%;
}

.blog_post_content p:last-child {
	margin-bottom: 0
}

.blog_post_content {
	margin-bottom: 40px
}

/****____PRODUCT___ ****/
.title-product {
	padding: 0 !important;
	font-weight: 400;
	color: #666666;
	font-size: 28px;
	line-height: 34px;
	margin-bottom: 15px;
	background-image: none;
	border-bottom: none;
	display: block !important;
}

.title-product:after {
	content: none
}

.list-info-prd a {
	text-transform: uppercase;
	font-weight: bold;
	color: var(--primary-color);
}

.ft-product {
	padding: 40px 30px;
	display: block;
	border-radius: 12px;
	border: 1px solid var(--primary-color);
	margin-bottom: 40px;
}

[class*=product-product-] .ft-product {
	padding: 40px 20px;
}

.ft-product-link {
	margin-bottom: 30px;
	display: block;
	text-decoration: none !important;
	position: relative;
}

.ft-product .ft-product-link:last-child {
	margin-bottom: 0
}

.ft-product-ico {
	width: 65px;
	height: 65px;
	overflow: hidden;
	border: 1px solid var(--secondary-color);
	border-radius: 100px;
	background: #fff;
	position: absolute;
	left: 0;
	top: 0;
	
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	color: var(--color-sky);
}

.ft-product-content {
	padding-left: 85px;
	display: block;
}

[class*=product-product-] .ft-product-content {
	padding-left: 78px;
	display: block;
}

.ft-product-title {
	display: block;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 7px;
}

.ft-product-desc {
	color: #777777;
	font-size: 14px;
	line-height: 18px;
	display: block;
}

[class*=product-product-] .ft-product-desc {
	font-size: 13px;
}

.ft-product-desc i {
	color: #12bf22;
	margin-right: 8px;
	font-size: 20px;
	position: relative;
	top: 3px;
}

.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;
}

.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;
}

.list-product-logo {
	position: absolute;
	right: 15px;
	bottom: 35px;
	z-index: 2;
}

.hermes__openpharm__eulogo {
	display: block;
	max-width: 100px;
	
}

.MsgAssTel {
	margin-bottom: 30px
}

.MsgAssTel .posLeft {
	font-size: 15px;
	line-height: 22px;
	font-weight: 600;
	margin-bottom: 20px;
}

[class*=product-product-] .sale {
	z-index: 2;
	right: 30px;
}

@media (min-width: 767px) {
	.MsgAssTel {
		display: flex;
		position: relative;
		justify-content: space-between;
		align-items: center;
	}
	
	.MsgAssTel .posLeft {
		margin-bottom: 0;
	}
}

.btn-wishlist {
	background: #fff !important;
	color: #f7941d;
	width: 40px;
	height: 40px;
	border: 1px solid var(--primary-color);
	z-index: 10;
	padding: 0;
	font-size: 20px;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.nav-tabs {
	border-bottom: 3px solid var(--color-sky);
}

.nav-tabs > li {
	margin-bottom: 0;
}

.nav-tabs > li > a {
	margin-right: 2px;
	line-height: 1.42857143;
	border: none;
	color: #999999;
	border-radius: 0;
	font-size: 18px;
	font-weight: 700;
	padding-bottom: 20px;
	text-transform: uppercase;
}

.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;
}

[class*=product-product-] .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
	color: var(--primary-color);
}

.rating {
	margin-bottom: 20px
}

.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 {
	display: flex;
	align-items: baseline;
	gap: 15px;
}

.list-price h2 {
	margin: 0;
	font-size: 32px;
}

.list-price .price-old {
	font-size: 20px;
	font-weight: 600
}

.omnibus-price {
	font-size: 14px;
	color: #777777;
	font-weight: 600;
	position: relative;
}

.omnibus-price:before {
	content: "\f05a";
	font-family: "Font Awesome 5 Pro";
	color: #ff9728;
	font-size: 18px;
	display: inline-block;
	margin-right: 5px;
}

@media (max-width: 1200px) {
	.ui-action-mobile-product label {
		display: none;
	}
	
	.list-price-remove {
		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 var(--color-sky);
		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: 18px;
		color: #888888;
	}
	
	.ui-action-mobile-product .bx-price-mobile h2 {
		color: var(--secondary-color);
		margin: 0;
		font-size: 26px;
		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;
	}
}


@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;
	}
}

.ui-action-mobile-product-content, .ui-action-mobile-product-content-a, .ui-action-mobile-product-content-b {
	display: flex;
	gap: 15px;
	align-items: center;
}

@media (min-width: 1201px) {
	.ui-action-mobile-product-content {
		flex-direction: column;
		gap: 30px;
		align-items: baseline;
	}
	
	.ui-action-mobile-product {
		margin-top: 25px;
		display: flex;
		align-items: center;
		gap: 20px;
		border-top: 1px solid #dddddd;
		border-bottom: 1px solid #dddddd;
		padding: 30px 0;
		margin-bottom: 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-number {
		width: 125px;
		
		border-radius: 0;
		height: 45px;
		position: relative;
		background-color: #ffffff;
	}
	
	.ui-action-mobile-product .btn-number [type=text] {
		border: none;
		height: 45px;
		text-align: center;
		background-color: #ffffff;
		border-bottom: 3px solid var(--color-sky);
		border-radius: 0;
	}
	
	.ui-action-mobile-product .btn-number #minus, .ui-action-mobile-product .btn-number #plus {
		background-color: transparent;
		color: var(--secondary-color);
		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 !important;
		height: 45px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 20px !important;
		padding: 0 !important;
	}
}

.info-label-prd {
	display: flex;
	background: var(--primary-color);
	color: #fff;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	padding: 8px 15px;
	font-size: 20px;
	font-weight: bold;
	
	gap: 15px;
	line-height: 1.2;
	margin-top: 30px;
	margin-bottom: 30px;
}

.info-label-prd i {
	font-size: 30px;
}

/****____FOOTER___ ****/
.ui-sub-footer {
	background-color: var(--primary-color);
	box-shadow: var(--shadow-top);
	padding: 45px 0;
	color: #fff;
	font-weight: 600;
}

.ui-sub-footer a {
	color: #fff;
}


.ui-sub-footer .info-ft-credits {
	width: 100%;
	text-align: center;
}

.ui-sub-footer .payment-method {
	text-align: center;
	margin-bottom: 20px;
}

.ui-sub-footer .payment-method .payment-method-bg {
	width: 60px;
	height: 35px;
	background-color: #fff;
	border-radius: 4px;
	padding: 4px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 4px;
}

.ui-sub-footer .payment-method img {
	display: block;
	width: 100% !important;
	height: 100% !important;
}


.ui-footer {
	margin-top: 40px;
	border-top: 10px solid var(--secondary-color);
	box-shadow: var(--shadow-top);
}

.ui-footer .col-xs-12 {
	margin-top: 30px;
	margin-bottom: 30px;
}

@media (min-width: 1000px) {
	.common-home .ui-footer {
		margin-top: 40px
	}
	
	.ui-footer {
		margin-top: 70px;
	}
	
	.ui-footer .col-xs-12 {
		margin-top: 50px;
		margin-bottom: 50px;
	}
}

.ui-footer h6 {
	font-size: 20px;
	
	margin-bottom: 40px;
	text-transform: uppercase;
	margin-top: 0;
}

.ui-footer .list-unstyled li {
	display: block;
	margin-bottom: 12px;
	
}

.ui-footer .list-unstyled li a {
	position: relative;
	font-size: 16px;
	color: #858585;
	font-weight: 600;
}

.ui-footer .list-unstyled li:last-child {
	margin-bottom: 0
}

.ui-social {
	margin-top: 25px;
}

.ui-social strong {
	margin-right: 10px;
	font-weight: 400;
	color: #858585;
}

.ui-social a {
	color: var(--primary-color);
	display: inline-flex;
	font-size: 22px;
	width: 30px;
	align-items: center;
	text-decoration: none;
}

.info-ft {
	padding: 0;
	margin: 0;
	list-style: none;
}

.info-ft li {
	display: block;
	margin-bottom: 25px;
	
}

.info-ft li a {
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #858585;
	font-weight: 600;
	line-height: 23px;
}

.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, .modules-tab-left-section h2 {
	font-size: 26px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	color: var(--secondary-color);
	position: relative;
	font-weight: 400;
	margin-bottom: 20px;
	margin-top: 0;
}

.multiple-featured h2:after, .modules-tab-left-section h2:after {
	content: "";
	flex-grow: 1;
	margin-left: 22px;
	height: 3px;
	flex-basis: 0;
	min-width: 0;
	background: var(--color-sky);
	
}

@media (max-width: 997px) {
	.multiple-featured h2, .modules-tab-left-section 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: -58px;
		background: #fff;
		width: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		height: 40px;
		text-decoration: none !important;
	}
	
	.multiple-featured .slick-arrow-prev {
		left: auto;
		right: 40px;
	}
	
	.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: 40px;
	height: 40px;
	border-radius: 0;
	border: none;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px !important;
}

.slick-arrow:hover {
	color: var(--primary-color-hover);
	text-decoration: none !important;
}

.slick-arrow-prev {
	left: 0;
	transform: translate(50%, -50%);
}

.slick-arrow-next.fa-chevron-right:before {
	content: "\f35a";
}

.slick-arrow-prev.fa-chevron-left:before {
	content: "\f359";
}

.slick-arrow-next {
	right: 0;
	transform: translate(-50%, -50%);
}

.slideshow-home #slideshow0 {
	aspect-ratio: 2000/535;
	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 {
	aspect-ratio: 800/800;
	
	padding-bottom: 45px;
}


@media (min-width: 997px) {
	.slideshow-home #slideshow1 {
		display: none;
	}
}

.ui-brands-home {
	margin-bottom: 40px;
	box-shadow: rgba(0, 0, 0, 0.1) 0 0 20px 10px;
	padding: 25px 0;
}

@media (min-width: 992px) {
	.ui-brands-home {
		margin-bottom: 80px;
	}
}

.banner-column a {
	display: block;
	margin-bottom: 30px;
	
}

.banner-column a img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 992px) {
	.banner-column a {
		display: block;
		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);
}

.section-slick-home {
	margin-top: 40px;
}

@media (min-width: 992px) {
	.section-slick-row {
		padding-top: 70px;
		margin-bottom: 40px;
	}
	
	.section-slick-home {
		margin-top: 70px;
		margin-bottom: 30px;
	}
	
	.bx-newsletter-home {
		margin-bottom: 40px;
	}
}

.section-ui-ftr {
	padding-top: 50px;
	padding-bottom: 10px;
	box-shadow: inset 0 0 20px 10px #e9e9e9;
}

.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: #c3c3c3;
	border-radius: 0;
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 0;
}

.ui-tab-module h2 {
	margin-bottom: 20px;
}

.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(--secondary-color)
}


@media (min-width: 1199px) {
	
	[class*=product-manufacturer-] .col-md-4 {
		width: 20%;
	}
}

.modules-tab-header h2 {
	font-size: 26px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	color: var(--secondary-color);
	position: relative;
	font-weight: 400;
	margin-bottom: 20px;
	margin-top: 0;
	width: 100%;
}

.modules-tab-header h2:after {
	content: "";
	flex-grow: 1;
	margin-left: 22px;
	height: 3px;
	flex-basis: 0;
	min-width: 0;
	background: var(--color-sky);
	
}

@media (min-width: 998px) {
	.modules-tab-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.modules-tab-header .nav-tabs {
		position: relative;
		right: 70px;
		margin-top: -22px;
		margin-bottom: 0 !important;
		display: flex;
		justify-content: end;
		width: fit-content !important;
	}
	
	.modules-tab-header .nav-tabs > li:first-child > a {
		padding-left: 30px;
	}
}

@media (max-width: 997px) {
	.modules-tab-header h2 {
		font-size: 22px;
	}
}

.modules-tab-header .nav-tabs {
	border-bottom: none;
	width: 100%;
	margin-bottom: 20px;
}

.modules-tab-header .nav-tabs > li > a {
	margin-right: 0;
	line-height: 1.42857143;
	border: none;
	color: #999999;
	border-radius: 5px;
	font-size: 18px;
	font-weight: 700;
	padding: 5px 15px;
	text-transform: uppercase;
	white-space: nowrap;
	background-color: #fff;
}

.modules-tab .tab-content > .tab-pane {
	padding-top: 0
}

@media (max-width: 997px) {
	.modules-tab-header .nav-tabs > li > a {
		margin-right: 5px;
		background-color: var(--primary-color) !important;
		color: #fff !important;
		border-radius: 5px;
		font-size: 15px;
		text-transform: inherit;
		margin-bottom: 5px;
	}
	
	.modules-tab-header .nav-tabs > li.active > a {
		background-color: var(--secondary-color) !important
	}
}

.ui-newsletter {
	margin-bottom: 30px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
	display: flex;
	align-items: center;
	
}

.ui-newsletter .form-group {
	display: flex;
	position: relative;
}

@media (max-width: 997px) {
	.ui-newsletter {
		margin-top: 30px
	}
	
	.ui-newsletter-image {
		display: none;
	}
	
	.ui-newsletter form {
		padding: 40px 25px;
		width: 100%;
	}
}

.ui-newsletter .form-group {
	margin-top: 25px;
	margin-bottom: 5px;
}

.ui-newsletter .form-control {
	background-color: var(--primary-color) !important;
	border-radius: 100px;
	padding-left: 26px;
	padding-right: 70px;
	height: 50px;
	color: #fff !important;
}

.ui-newsletter .form-control::placeholder {
	color: #fff !important;
}

.ui-newsletter .form-group .btn {
	color: #fff !important;
	background-color: var(--primary-color) !important;
	position: absolute;
	right: 3px;
	height: 45px;
	border: none !important;
	width: 55px;
	border-radius: 100px;
	top: 3px;
	font-size: 22px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (min-width: 998px) {
	
	.ui-newsletter form {
		padding: 38px;
		padding-left: 0;
		display: flex;
		align-items: center;
		gap: 50px;
		width: 100%;
	}
	
	.ui-newsletter .form-group {
		margin-top: 0;
		margin-bottom: 20px;
	}
}

.input-privacy {
	position: relative
}

.input-privacy label {
	font-size: 12px;
	line-height: 1;
	padding-left: 25px;
}

.input-privacy input[type=checkbox] {
	position: absolute;
	top: 0;
	left: 0;
}

.ui-newsletter-title {
	font-size: 32px;
	font-weight: 700 !important;
	color: var(--primary-color);
	line-height: 1;
	
}

.ui-newsletter-title strong {
	display: block;
	font-size: 44px;
	font-weight: 800 !important;
}

.ui-newsletter-desc {
	font-size: 19px;
    color: #555555;
    white-space: nowrap;
    line-height: 1.2em;
    margin-top: 10px;
}

.col-newsletter {
	width: 100%;
}

.ui-newsletter-desc strong {
	color: var(--color-sky);
}

.futures-home {
	margin-bottom: 30px;
	background: #00B2A0;
	background: linear-gradient(58deg, rgba(0, 178, 160, 1) 0%, rgba(0, 178, 160, 1) 100%);
	padding-top: 40px;
}

@media (min-width: 992px) {
	.futures-home {
		margin-top: 30px;
		margin-bottom: 70px;
	}
}

.futures-home-card {
	margin-bottom: 40px;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 25px;
}

@media (max-width: 1250px) {
	.futures-home-card {
		flex-direction: column;
		text-align: center;
		justify-content: center;
	}
}

.futures-home-card-content-title {
	font-weight: bolder;
	font-size: 30px;
	line-height: 1.1;
	margin-bottom: 20px;
}

.futures-home-card-content-desc {
	font-size: 16px;
	margin-bottom: 15px;
	line-height: 22px;
}

.futures-home-card-image {
	width: 210px;
	height: 210px;
	border-radius: 1000px;
	border: 5px solid #fff;
	flex: 0 0 auto;
	overflow: hidden;
}

.futures-home-card-image img {
	object-fit: cover;
	height: 100%;
	width: 100%;
	display: block;
}

.futures-home-card-content-link {
	color: #fff !important;
	font-weight: bold;
	text-decoration: none !important;
	text-transform: uppercase;
	font-size: 14px;
}

.futures-home-card-content-link i {
	transition: var(--transition);
	margin-left: 3px;
}

.futures-home-card-content-link:hover i {
	margin-left: 10px;
}


@media (min-width: 993px) {
	.modules-tab-left-section .modules-tab-left-box {
		display: flex;
		gap: 30px;
		flex-wrap: wrap;
	}
}

.modules-tab-left-section .modules-tab-left-box .ui-tabs {
	padding: 0;
	list-style: none;
	margin: 0;
	margin-bottom: 10px;
	background-color: #f8f8f8;
	border-radius: 5px;
	overflow: hidden;
}

@media (min-width: 993px) {
	.modules-tab-left-section .modules-tab-left-box .ui-tabs {
		width: 260px;
		height: 340px;
	}
}

.modules-tab-left-section .modules-tab-left-box .ui-tabs li a {
	display: flex;
	align-items: center;
	height: 50px;
	padding: 0 20px;
	background-color: transparent;
	text-decoration: none !important;
	color: #777777 !important;
	font-size: 18px;
	font-weight: 700;
	transition: 0.15s;
	border-bottom: 1px solid #dddddd;
}

.modules-tab-left-section .modules-tab-left-box .ui-tabs li a:hover {
	background-color: var(--primary-color);
	color: #fff !important;
}

.modules-tab-left-section .modules-tab-left-box .ui-tabs li.active a {
	background-color: var(--primary-color);
	color: #fff !important;
}

.modules-tab-left-section .modules-tab-left-box .ui-tabs li.active a:hover, .modules-tab-left-section .modules-tab-left-box .ui-tabs li.active a:focus, .modules-tab-left-section .modules-tab-left-box .ui-tabs li.active a:active, .modules-tab-left-section .modules-tab-left-box .ui-tabs li.active a:active:focus, .modules-tab-left-section .modules-tab-left-box .ui-tabs li.active a:active:hover {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff !important;
}


@media (min-width: 993px) {
	.modules-tab-left-section .modules-tab-left-box .tab-content {
		width: calc(100% - 290px);
	}
	
	.modules-tab-left-section .modules-tab-left-box .tab-content .slick-dots {
		display: none !important;
	}
	
	.modules-tab-left-section .tab-content > .tab-pane {
		padding-top: 0
	}
	
	.ui-category-home {
		margin-bottom: 50px;
	}
}

@media (max-width: 992px) {
	.modules-tab-left-section .modules-tab-left-box .tab-content .product-layout {
		padding-bottom: 15px;
	}
}

@media (min-width: 993px) {
	.modules-tab-left-section .title-page:after, .modules-tab-left-section .well h2:after, .well .modules-tab-left-section h2:after, .modules-tab-left-section .account-account h1:after, .account-account .modules-tab-left-section h1:after, .modules-tab-left-section .account-edit h1:after, .account-edit .modules-tab-left-section h1:after, .modules-tab-left-section .account-password h1:after, .account-password .modules-tab-left-section h1:after, .modules-tab-left-section .account-address h1:after, .account-address .modules-tab-left-section h1:after, .modules-tab-left-section .account-wishlist h1:after, .account-wishlist .modules-tab-left-section h1:after, .modules-tab-left-section .account-order h1:after, .account-order .modules-tab-left-section h1:after, .modules-tab-left-section .account-reward h1:after, .account-reward .modules-tab-left-section h1:after, .modules-tab-left-section .account-register h1:after, .account-register .modules-tab-left-section h1:after, .modules-tab-left-section .checkout-checkout h1:after, .checkout-checkout .modules-tab-left-section h1:after {
		margin-right: 65px;
	}
	
	.modules-tab-left-section .slick-arrow-prev {
		left: auto;
		right: 40px;
		top: -73px;
	}
	
	.modules-tab-left-section .slick-arrow-next {
		left: auto;
		transform: translate(0);
		top: -73px;
		right: 0;
	}
	
	.modules-tab-left-box {
		margin-top: 35px;
	}
}

@media (max-width: 992px) {
	.modules-tab-left-section .slick-arrow-prev, .modules-tab-left-section .slick-arrow-next {
		display: none !important;
	}
}

.product-card-flush-carusel {
	margin-bottom: 30px;
	background-color: #fff;
	border-radius: 5px;
	border: 1px solid var(--primary-color);
	display: flex;
	height: 155px;
	align-items: center;
}

.product-card-flush-carusel .caption h4 {
	margin: 0;
}

.product-card-flush-carusel .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;
	text-transform: uppercase;
}

.product-card-flush-carusel .price, .product-card-flush-carusel .price-new {
	font-size: 16px;
}

.product-card-flush-carusel .price-old {
	margin-left: 20px;
}

.product-card-flush-carusel .price {
	margin-bottom: 10px
}

.product-card-flush-carusel .image {
	position: relative;
	width: 150px;
	padding: 15px;
}

.product-card-flush-carusel .image img {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: center;
}

.product-card-flush-carusel .caption {
	width: calc(100% - 150px);
	position: relative;
	padding-right: 15px;
}

.product-card-flush-carusel .caption .btn {
	width: 100%;
	max-width: 150px;
}

.checkout-checkout .panel, .checkout-cart .panel {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media (max-width: 768px) {
	[class*=information-information-] .product-thumb {
		margin-bottom: 30px;
	}
}