@charset "utf-8";
/* CSS Document */

:root {
	--siteColor: #FF6A00;
	--siteColorHover: #FF6A00;
	--webColor: #4F2200;
	--webColorHover: #e65f00;
	--whiteColor: #ffffff;
	--blackColor: #000;
	--bodyColor: #f5f5f5;
	--grey: #777;
	--fontSize: 15px;
	--transition: .5s;
	--bs-link-color: #FF6A00;
	--bs-link-color-rgb: 255, 106, 0;
	--bs-link-hover-color: #e65f00;
	--bs-link-hover-color-rgb: 230, 95, 0;
}

@font-face {
	font-family: 'Rubik';
	src: url('../fonts/Rubik-Regular.ttf');
	font-weight: 400;
}

@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Regular.ttf');
	font-weight: 400;
}

@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Medium.ttf');
	font-weight: 500;
}

@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-SemiBold.ttf');
	font-weight: 600;
}

@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Bold.ttf');
	font-weight: 700;
}

@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-ExtraBold.ttf');
	font-weight: 800;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Regular.ttf');
	font-weight: 400;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Medium.ttf');
	font-weight: 500;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-SemiBold.ttf');
	font-weight: 600;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Bold.ttf');
	font-weight: 700;
}

.ff-1 {
	font-family: 'Poppins';
}

html {
	font-size: var(--fontSize);
}

body {
	background-color: #f5f5f5;
	font-family: 'Roboto', Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
}

a {
	color: var(--siteColor);
	text-decoration: none;
}

a:hover {
	color: var(--webColorHover);
}

p:last-child {
	margin-bottom: 0;
}
.text-link{
	color: #333;
	text-decoration: underline;
}
.text-link:hover{
	color: #616160;
}
.card-header h4,
.card-header h5 {
	margin-bottom: 0;
}

.btn-site {
	--bs-btn-color: var(--bs-white);
	--bs-btn-bg: #FF6A00;
	--bs-btn-border-color: #FF6A00;
	--bs-btn-hover-color: var(--bs-white);
	--bs-btn-hover-bg: #e65f00;
	--bs-btn-hover-border-color: #d95700;
	--bs-btn-focus-shadow-rgb: 255, 106, 0;
	--bs-btn-active-color: var(--bs-white);
	--bs-btn-active-bg: #cc5500;
	--bs-btn-active-border-color: #b84d00;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--bs-white);
	--bs-btn-disabled-bg: #FF6A00;
	--bs-btn-disabled-border-color: #FF6A00;
}

.btn-white {
	--bs-btn-color: #FF6A00;
	--bs-btn-bg: #fff;
	--bs-btn-border-color: var(--bs-white);
	--bs-btn-hover-color: #FF6A00;
	--bs-btn-hover-bg: #eee;
	--bs-btn-hover-border-color: #eee;
	--bs-btn-focus-shadow-rgb: 255, 106, 0;
	--bs-btn-active-color: var(--bs-white);
	--bs-btn-active-bg: #eee;
	--bs-btn-active-border-color: #eee;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #000;
	--bs-btn-disabled-bg: #ddd;
	--bs-btn-disabled-border-color: #ccc;
}

.btn-outline-site {
	--bs-btn-color: #FF6A00;
	--bs-btn-border-color: #FF6A00;
	--bs-btn-hover-color: var(--bs-white);
	--bs-btn-hover-bg: #FF6A00;
	--bs-btn-hover-border-color: #FF6A00;
	--bs-btn-focus-shadow-rgb: 13, 110, 253;
	--bs-btn-active-color: var(--bs-white);
	--bs-btn-active-bg: #FF6A00;
	--bs-btn-active-border-color: #FF6A00;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #FF6A00;
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: #FF6A00;
	--bs-gradient: none;
}

.btn-web {
	background-color: var(--webColor);
	color: var(--bs-white);
}

.btn-web:hover {
	background-color: var(--webColor);
	color: var(--bs-white);
}

.btn-outline-web {
	border-color: var(--siteColor);
	color: var(--siteColor);
}

.btn-outline-web:hover {
	background-color: var(--siteColor);
	color: var(--bs-white);
}

.btn-outline-gray {
	border-color: #ddd;
}

.btn-outline-gray:hover {
	background-color: var(--bs-white);
	border-color: #ddd;
}

.btn-black {
	background-color: #000;
	color: var(--bs-white);
}

.btn-black:hover {
	background-color: #111;
	color: var(--bs-white);
}

.btn-indigo {
	background-color: var(--bs-indigo);
	color: var(--bs-white);
}

.btn-indigo:hover {
	background-color: var(--bs-indigo);
	color: var(--bs-white);
}

.btn-green{
	background-color: #34C759;
	border-color: #34C759;
	color: var(--bs-white);
}
:not(.btn-check) + .btn-green:active, .btn-green:first-child:active, .btn-green:hover, .btn-green:focus{
	background-color: #34C759;
	border-color: #34C759;
	color: var(--bs-white);
	opacity: 0.9;
}

.btn-yellow{
	background-color: #FFC806;
	border-color: #FFC806;
	color: var(--webColor);
}
:not(.btn-check) + .btn-yellow:active, .btn-yellow:first-child:active, .btn-yellow:hover, .btn-yellow:focus{
	background-color: #FFC806;
	border-color: #FFC806;
	color: var(--webColor);
	opacity: 0.9;
}

.bg-purple {
	background-color: var(--bs-purple);
}
.bg-purple-subtle{
	background-color: #e2d9f3;
}
.text-purple{
	color: var(--bs-purple);
}
.bg-pink {
	background-color: var(--bs-pink);
}

.bg-site,
.bg-theme {
	background-color: var(--siteColor);
}

.bg-theme-subtle {
	background-color: #FFEFE5;
}

.bg-web {
	background-color: var(--webColor);
}

.bg-grey {
	background-color: var(--grey);
}

.text-site,
.text-theme {
	color: var(--siteColor);
}

.text-web {
	color: var(--webColor);
}

.font-24 {
	font-size: 24px;
}

.fs-18 {
	font-size: 1.125rem;
}

.v-bottom {
	vertical-align: bottom;
}

.-mb-3 {
	margin-bottom: -1rem;
}

.-mb-4 {
	margin-bottom: -1.5rem;
}

.form-field {
	margin-bottom: 1.25rem
}

.label-sm {
	font-size: 0.85rem;
	line-height: 1;
}
.form-check-input[type=checkbox]:checked{
	background-color: var(--siteColor);
	border-color: var(--siteColor);
}
.form-check-input[type=radio]:checked{
	background-color: var(--bs-white);
	border-color: var(--siteColor);
}

.form-check-input:focus {
	border-color: #ffb682;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(255, 106, 0, 0.25);
}

.modal-content{
	border: none;
}

.row-10 {
	margin-right: calc(var(--bs-gutter-x) * -.333);
	margin-left: calc(var(--bs-gutter-x) * -.333);
}

.row-10>* {
	padding-right: calc(var(--bs-gutter-x) * .333);
	padding-left: calc(var(--bs-gutter-x) * .333);
}

/* .accordion-button {
	padding: 0.75rem 1.25rem;
}
.accordion-button:not(.collapsed) i {
	color: var(--bs-white);
}
.accordion-button:not(.collapsed)::after {
	filter: brightness(0) invert(1);
}
.accordion-button:focus {
	border-color: #f1f5e9;
	box-shadow: 0 0 0 0.25rem rgb(113 156 40 / 25%);
} */
.dropdown-item.active,
.dropdown-item:active {
	background-color: var(--siteColor);
}

ul#menu-v,
#menu-v ul {
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	list-style: none;
	margin-bottom: 0;
	padding: 0;
	position: relative;
	z-index: 9;
}

#menu-v li {
	margin: 0;
	padding: 0;
	transition: background 0.5s;
}

#menu-v li a>span {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

#menu-v li a,
#menu-v ul.with-header li:first-child {
	border-bottom: 1px solid #ddd;
	display: flex;
	color: #333;
	padding: 0.425rem 1rem;
	padding-right: 22px;
	position: relative;
}

#menu-v li:hover>a {
	background-color: var(--siteColor);
	color: var(--bs-white);
}

#menu-v ul.with-header li:first-child h5 {
	line-height: 1.5;
}

#menu-v li>a>i {
	color: var(--siteColor);
	font-size: 1.25rem;
	line-height: 1;
	margin-right: 0.25rem;
	display: inline-block;
	width: 20px;
}

#menu-v li:hover>a i {
	color: var(--bs-white);
}

#menu-v li:last-child>a {
	border-bottom: 0;
}

#menu-v a .icon-line-awesome-angle-right {
	position: absolute;
	display: inline;
	top: 50%;
	transform: translateY(-50%);
	right: 0.5rem;
	color: #333;
	transition: border-color 0.5s;
}

#menu-v li>a:hover .icon-line-awesome-angle-right {
	color: var(--bs-white);
}

/*Sub level menu items
---------------------------------------*/
#menu-v li>ul {
	background-color: #f5f5f5;
	box-shadow: 1px 1px 3px rgb(0 0 0 / 10%);
	width: 100%;
	min-width: 180px;
	/* Sub level menu min width */
	position: absolute;
	display: none;
	left: 100%;
	top: 0;
	min-height: 100%;
	/*height: 315px;
    overflow-y: auto;*/
}

#menu-v li:hover>ul {
	display: block;
}

#menu-v li>ul.p-search {
	border: none;
	height: 100%;
	width: 200%;
}

#menu-v li>ul.p-search ul.with-header {
	display: block;
	position: inherit;
	left: 0;
	height: 100%;
}

#menu-v li>ul.p-search>li,
#menu-v li>ul.p-search .row {
	height: 100%
}

.cat-menu {
	position: relative;
}

.cat-menu .dropdown {
	position: inherit;
}

.cat-menu .dropdown:hover .dropdown-menu {
	display: block;
}

.cat-menu .dropdown-menu {
	/*columns: 4;*/
	background: none;
	border: none;
	border-radius: 0 0 0.25rem 0.25rem;
	padding: 0;
	width: 100%;
}

.cat-menu .dropdown-menu>ul {
	padding-left: 0;
	min-height: 1px;
	width: 25%;
}

.cat-menu .dropdown-menu>ul#menu-v:first-child {
	background-color: var(--bs-white);
	border: none;
	box-shadow: -1px 1px 3px rgb(0 0 0 / 10%);
}

/*.cat-menu .dropdown-menu > ul#menu-v:last-child{
	border-right: none;	
}
#menu-v li ul > li > a{
}*/
.list-none {
	list-style: none;
	padding-left: 0;
}

ul.foot-nav {
	list-style: none;
	padding-left: 0;
}

ul.foot-nav>li {
	margin: 0.65rem 0;
}

ul.foot-nav>li>a {
	color: #373737;
}

.copyright {
	color: #868686;
}

.row-10 {
	margin-right: calc(var(--bs-gutter-x) * -.333);
	margin-left: calc(var(--bs-gutter-x) * -.333);
}

.row-10>* {
	padding-right: calc(var(--bs-gutter-x) * .333);
	padding-left: calc(var(--bs-gutter-x) * .333);
}

.row-0 {
	margin-left: 0;
	margin-right: 0;
}

.row-0 [class*="col"] {
	padding-left: 0;
	padding-right: 0;
}

.header-top {
	background-color: #eee;
	position: relative;
	z-index: 1021;
	/*padding: 0.5rem 0;*/
}

.header-top .row {
	min-height: 36px;
}

.header-top .dropdown-toggle {
	padding: 0.15rem 0;
	display: inline-block;
}

.header-top .dropdown .dropdown-item:hover i,
.header-top .dropdown .dropdown-item i {
	color: var(--siteColor);
}

.header-top .dropdown .dropdown-item:hover,
.header-top .dropdown .dropdown-item:focus,
.header-top .dropdown .dropdown-item:active i,
.header-top .dropdown .dropdown-item:hover i,
.header-top .dropdown .dropdown-item:focus i {
	background-color: var(--siteColor);
	color: var(--bs-white);
}

.header-top ul.list-inline {
	margin-bottom: 0;
}

.header-top ul.list-inline>li {
	display: inline-block;
	margin-right: 1rem;
}

.header-top ul.list-inline>li:last-child {
	margin: 0;
}

.header-top ul.list-inline>li>a {
	color: #333;
}

.header-top ul.list-inline>li>a:hover {
	color: var(--siteColor);
}

.header-top ul.list-inline>li>a>i {
	color: var(--webColor);
}

.navbar-brand {
	padding: 0;
}

.navbar-brand>img {
	max-height: 48px;
}

.header-bottom {
	padding: 0;
}

.header-bottom .container {
	display: block;
}

.header-action .dropdown-toggle {
	max-width: 150px;
	overflow: hidden;
}

.header-action div>a.circle {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 50%;
	color: var(--siteColor);
	background-color: rgba(16, 84, 3, 0.1);
	position: relative;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	line-height: 34px;
}

.header-action div>a.circle span {
	display: inline-block;
	top: -5px;
	right: -5px;
	font-weight: 700;
	height: 20px;
	width: 20px;
	line-height: 20px;
	text-align: center;
	color: var(--bs-white);
	font-size: 12px;
	background-color: var(--siteColor);
	border-radius: 50%;
	position: absolute;
}

.all-cat {
	color: var(--bs-white);
	display: inline-block;
	padding: 0.5rem;
	text-transform: uppercase;
}

.all-cat:hover {
	color: var(--bs-white);
	opacity: 0.75;
}

.all-cat>i {
	font-size: 1.333rem
}

.section-headline {
	margin-bottom: 1rem;
}

.section-headline.d-flex {
	align-items: center;
}

.section-headline h3 {
	font-weight: 600;
	margin-bottom: 0;
}

footer {
	background-color: #222;
	color: #aaa;
	padding: 3rem 0 0;
	position: relative;
}

.footer-toggle {
	padding: 1rem 0;
}

.footer-toggle>h4>a {
	transition: 0.3s;
}

.footer-toggle>h4>a.show {
	transform: rotate(180deg);
}

.footer-top {
	padding-bottom: 2rem;
}

.footer-links h4 {
	color: #eee;
	margin-bottom: 1rem;
}

.footer-links p.text-about {
	font-size: 0.938rem;
}

.footer-links ul {
	font-size: 0.938rem;
	list-style: none;
	margin-bottom: 1.5rem;
	padding: 0;
}

.footer-links ul li {
	margin-bottom: 0.5rem;
	display: block;
}

.footer-links ul>li>a {
	color: #aaa;
	display: inline-block;
}

.footer-links ul>li>a:hover {
	color: var(--siteColor);
}

.footer-middle {
	border-top: 1px solid #555;
	border-bottom: 1px solid #555;
	padding: 1rem 0;
}

ul.social-links {
	font-size: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	cursor: default;
}

ul.social-links li {
	display: inline-block;
	margin-right: 0.5rem;
}

ul.social-links li>a {
	border: 1px solid #aaa;
	color: #aaa;
	font-size: 1.125rem;
	width: 36px;
	height: 36px;
	text-align: center;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

ul.social-links li>a:hover {
	color: var(--bs-white);
	background-color: var(--siteColor);
	border-color: var(--siteColor);
}

.copyright {
	padding: 1rem 0;
	text-align: center;
}

.copyright p {
	margin-bottom: 0;
}

.small-footer {
	background-color: var(--bs-white);
	padding-top: 0px;
	width: 100%;
	left: 0;
	bottom: 0;
	position: fixed;
	z-index: 999;
}

.small-footer>ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: -1px;
	padding: 0;
	text-align: center;
}

.small-footer>ul>li {
	border-top: 1px solid #ddd;
	margin-left: -1px;
	flex: 1;
}

.small-footer>ul>li>a {
	color: #333;
	display: block;
	padding: 6px;
}

.small-footer>ul>li>a.active {
	color: var(--siteColor);
}

.small-footer>ul>li>a>i {
	display: block;
	font-size: 1.5rem;
}

/**************New loader start*******************/
.MYspinner {
	-webkit-animation: rotator 1.4s linear infinite;
	animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg);
	}
}

@keyframes rotator {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg);
	}
}

.path {
	stroke-dasharray: 187;
	stroke-dashoffset: 0;
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
	animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
	0% {
		stroke: #4285F4;
	}

	25% {
		stroke: #DE3E35;
	}

	50% {
		stroke: #F7C223;
	}

	75% {
		stroke: #1B9A59;
	}

	100% {
		stroke: #4285F4;
	}
}

@keyframes colors {
	0% {
		stroke: #4285F4;
	}

	25% {
		stroke: #DE3E35;
	}

	50% {
		stroke: #F7C223;
	}

	75% {
		stroke: #1B9A59;
	}

	100% {
		stroke: #4285F4;
	}
}

@-webkit-keyframes dash {
	0% {
		stroke-dashoffset: 187;
	}

	50% {
		stroke-dashoffset: 46.75;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}

	100% {
		stroke-dashoffset: 187;
		-webkit-transform: rotate(450deg);
		transform: rotate(450deg);
	}
}

@keyframes dash {
	0% {
		stroke-dashoffset: 187;
	}

	50% {
		stroke-dashoffset: 46.75;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}

	100% {
		stroke-dashoffset: 187;
		-webkit-transform: rotate(450deg);
		transform: rotate(450deg);
	}
}

/**************New loader end*******************/
/* FILTER */
.filterHeader {
	position: relative;
	margin-bottom: 1rem;
}

#filter {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 9;
}

.close_filter {
	color: #333;
	/*font-size: 1.25rem;*/
	position: absolute;
	right: 15px;
	box-sizing: content-box;
	width: 1em;
	height: 1em;
	padding: 0.25em 0.25em;
	color: #000;
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
	border: 0;
	border-radius: 0.25rem;
	opacity: 0.5;
}

.filter .filterHeader {
	background: none;
	margin-bottom: 0;
	padding: 1rem 1.25rem;
}

.filter .filterHeader h4 {
	margin-bottom: 0;
}

.overflow-none {
	overflow: hidden;
}

.overflow-none:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: #000;
	opacity: 0.5;
	pointer-events: none;
	z-index: 1021;
}

span.like-icon.active {
	background-color: #f5f5f5;
	color: #ff5050;
}

.mycustom-modal {
	border: none;
}

.mycustom-modal .modal-header {
	justify-content: space-between;
	text-align: center;
	position: relative;
}

.bootbox .modal-header {
	display: block;
}

.bootbox .modal-header .pull-left,
.bootbox .modal-header .btn-black,
.bootbox .modal-header .btn-danger {
	position: absolute;
	left: 21px;
	top: 13px;
}

.bootbox .modal-header .pull-right,
.bootbox .modal-header .btn-success,
.bootbox .modal-header .btn-primary {
	position: absolute;
	right: 21px;
	top: 13px;
}

.social-login-separator {
	width: 100%;
	display: block;
	text-align: center;
	position: relative;
	width: 100%;
	margin: 30px 0 25px 0;
	height: 1px;
}

.social-login-separator:before {
	width: 100%;
	content: "";
	height: 1px;
	display: block;
	background-color: #e0e0e0;
	position: absolute;
	top: 0;
}

.social-login-separator span {
	background-color: var(--bs-white);
	position: relative;
	top: -12px;
	padding: 0 10px;
	color: #777;
	font-size: 0.875rem;
}

ul.save-address {
	list-style: none;
}

ul.save-address>li {
	margin-bottom: -1px;
}

ul.save-address>li p {
	font-size: 0.875rem;
	margin-bottom: 0;
}

ul.save-address>li h5 {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.disabled,
.btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.card .nonverified {
	position: absolute;
	right: 0;
	bottom: 1rem;
	border: 1px solid #dc3545;
	border-radius: 0.1rem;
	height: 13px;
	width: 13px;
}

.card .nonverified::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 1px;
	background-color: initial;
	top: 0px;
	left: 1px;
	border-radius: inherit;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 10px solid #dc3545;
}

.someElem .resultdiv {
	border-radius: 0 0 0.25rem 0.25rem;
	position: absolute;
	z-index: 999;
	background-color: var(--bs-white);
	width: 100%;
}

.resultdiv h5 {
	background: #f1f1f1;
	padding: 10px;
	margin: 0;
}

.resultdiv p {
	padding: 2px 10px;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.shadow-box-search .search-form {
	position: relative;
	z-index: 1051;
}

.shadow-box-search .search-form .form-control:focus {
	outline: none;
	box-shadow: none;
	border-radius: 0.25rem 0 0 0 !important;
}

.resultdiv a {
	color: #555;
	font-size: 0.875rem;
	display: block;
	padding: 0.25rem 0;
}

.resultdiv a:hover {
	color: #222;
}

.resultdiv a>p>i,
.resultdiv a>p>img {
	margin-right: 0.35rem;
	height: 24px;
	line-height: 20px;
	min-width: 24px;
	padding: 1px;
	width: 24px;
	border-radius: 0.15rem;
	display: inline-block;
	text-align: center;
}

.resultdiv a>p>i {
	color: var(--siteColor);
	border: 1px solid;
}

.search-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #000;
	opacity: 0;
	z-index: -1;
}

.shadow-box-search .search-backdrop {
	opacity: 0.5;
	z-index: 1050;
}

[class*='badge-outline-'] {
	border: 1px solid;
}

.badge-outline-red {
	color: var(--bs-red);
}

.badge-outline-yellow {
	color: var(--bs-yellow);
}

.badge-outline-blue {
	color: var(--bs-blue);
}

.badge-outline-green {
	color: var(--bs-green);
}

.badge-outline-purple {
	color: var(--bs-purple);
}

.simplebar-scroll-content::-webkit-scrollbar {
	display: none;
}

.simplebar-scroll-content {
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* Firefox */
}

select.form-control {
	background-image: url('../images/chevron-down.png');
	background-repeat: no-repeat;
	background-position: 95%;
	background-size: 16px;
	padding-right: 2rem;
}

select.form-control-sm {
	background-size: 12px;
}

ul.list-1 {
	list-style: none;
	padding: 0;
}

ul.list-1>li:before {
	position: absolute;
	content: '\e92b';
	color: var(--siteColor);
	font-family: 'Feather-Icons';
	left: 0;
}

ul.list-1>li {
	position: relative;
	padding-left: 1.5rem;
}

.not-found {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 0.5rem 1rem;
}

.acc-panel .list-group-item {
	font-weight: 500;
	padding: 0.75rem 1rem;
}

.acc-panel .list-group-item i {
	color: var(--siteColor);
	font-size: 1.125rem;
	line-height: 1;
	margin-right: 0.5rem;
}

.acc-panel .list-group-item.active i {
	color: var(--bs-white);
}

ul.list-user {
	list-style: none;
	margin-bottom: 0;
	padding: 0;
}

ul.list-user>li>a {
	color: #333;
	display: block;
	padding: 0.5rem 0;
}

ul.list-user>li>a:hover {
	color: var(--siteColor);
}

ul.list-user>li>a>i {
	color: var(--siteColor);
	margin-right: 0.25rem;
}

.uploadButton {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-bottom: 10px;
	width: 100%;
	font-style: normal;
	font-size: 15px;
}

.uploadButton .uploadButton-input {
	opacity: 0;
	position: absolute;
	overflow: hidden;
	z-index: -1;
	pointer-events: none;
}

.uploadButton .uploadButton-button {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	height: 36px;
	padding: 0.25rem 1rem;
	cursor: pointer;
	border-radius: 0.25rem;
	color: var(--siteColor);
	border: 1px solid var(--siteColor);
	flex-direction: row;
	transition: 0.3s;
	margin: 0;
	outline: none;
}

.uploadButton .uploadButton-button:hover {
	background-color: var(--siteColor);
	color: var(--bs-white);
}

.uploadButton .uploadButton-file-name {
	flex-grow: 1;
	display: flex;
	align-items: center;
	flex: 1;
	box-sizing: border-box;
	font-size: 0.938rem;
	padding: 0 10px;
	padding-left: 12px;
	min-height: 36px;
	top: 1px;
	position: relative;
	color: #777;
	background-color: transparent;
	overflow: hidden;
}

.text-help {
	color: #777;
	font-size: 0.875rem;
	font-style: italic;
}
.cart-list .cart-body>h5>a,
.cart-list .cart-body>p>a {
	color: #333;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.cart-list .cart-body>h5>a:hover,
.cart-list .cart-body>p>a:hover {
	color: var(--siteColor);
}

.header-notifications {
	position: relative;
}

/* Header User Menu Dropdown */
.header-notifications-dropdown {
	width: 360px;
	border-radius: 4px;
	/*	box-shadow: 0px 0 8px 0px rgba(0,0,0,0.10);*/
	box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.12);
	background-color: var(--bs-white);
	padding: 0;
	position: absolute;
	top: calc(100% + 15px);
	right: -15px;
	text-align: left;
	z-index: 100;
	transform: scale(0.95);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	pointer-events: none;
}

.header-notifications.active .header-notifications-dropdown {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

.header-notifications-dropdown:before {
	content: "";
	position: absolute;
	right: 27px;
	top: -6px;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #d7d7d7;
	/* Arrow with shadow */
	/*	top: 0;
	right: 33px;
    border: 5px solid black;
    border-color: transparent transparent #fff #fff;
    transform-origin: 0 0;
    transform: rotate(135deg);
    box-shadow: -3px 3px 3px 0 rgba(0, 0, 0, 0.05);*/
}

/* Headline */
.header-notifications-headline {
	padding: 0.75rem 1.25rem;
	border-bottom: 1px solid #dfdfdf;
}

.header-notifications-headline h4 {
	margin-bottom: 0;
}

/* Content */
.header-notifications-content {
	display: block;
	width: 100%;
}

.header-notifications-scroll {
	display: block;
	overflow: hidden;
	height: auto;
}

.header-notifications-content ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.header-notifications-content ul li {
	border-bottom: 1px solid #e6e6e6;
	transition: 0.25s;
}

.header-notifications-content ul li:hover {
	background-color: #fafafa;
}

.header-notifications-content ul li:hover .notification-icon {
	background-color: #eee;
}

.header-notifications-content ul li:last-child {
	border-bottom: none;
}

.header-notifications-content ul li a {
	color: #666;
	position: relative;
	padding: 0.75rem 1.25rem;
	display: block;
}

.header-notifications-content p {
	margin: 0;
	padding: 0;
}

.header-notifications-content ul li a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.header-notifications-content .notification-icon,
.header-notifications-content .notification-text {
	flex: 1;
}

a.header-notifications-button {
	border-radius: 0 0 4px 4px;
	font-weight: 600;
	color: var(--bs-white);
	padding: 0.65rem 1rem;
	background-color: var(--siteColor);
	width: 100%;
	display: block;
	text-align: center;
	transition: 0.3s;
}

a.header-notifications-button i {
	opacity: 0;
	max-width: 0;
	transition: 0.25s;
	display: inline-block;
	transform: translateX(-20px);
	font-size: 18px;
	line-height: 0;
	top: 2px;
	position: relative;
	max-width: 0;
	display: inline-block;
	margin-left: 7px;
}

a.header-notifications-button:hover i {
	max-width: 20px;
	opacity: 1;
	transform: translateX(0);
}

.header-notifications-content ul li.unread>a {
	background-color: rgba(16 84 3 / 5%);
}

/* Simlpebar.js (custom scrollbar)
------------------------------------- */
[data-simplebar] {
	position: relative;
	z-index: 0;
	overflow: hidden !important;
	max-height: inherit;
	-webkit-overflow-scrolling: touch;
	/* Trigger native scrolling for mobile, if not supported, plugin is used. */
}

[data-simplebar="init"] {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.simplebar-scroll-content {
	overflow-x: hidden !important;
	overflow-y: scroll;
	min-width: 100% !important;
	max-height: inherit !important;
	-webkit-box-sizing: content-box !important;
	box-sizing: content-box !important;
}

.simplebar-content {
	overflow-y: hidden !important;
	overflow-x: scroll;
	-webkit-box-sizing: border-box !important;
	box-sizing: border-box !important;
	min-height: 100% !important;
}

.simplebar-track {
	z-index: 1;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 11px;
	height: calc(100% - 6px);
	margin-top: 6px;
}

.simplebar-scrollbar {
	position: absolute;
	right: 6px;
	width: 5px;
	min-height: 10px;
}

.simplebar-scrollbar:before {
	position: absolute;
	content: "";
	background: black;
	border-radius: 7px;
	left: 0;
	right: 0;
	opacity: 0;
	transition: opacity 0.2s, background-color 0.3s;
	background-color: #d8d8d8;
}

.simplebar-scrollbar:hover:before {
	background-color: #c8c8c8;
}

.simplebar-track:hover .simplebar-scrollbar:before,
.simplebar-track .simplebar-scrollbar.visible:before {
	/* When hovered, remove all transitions from drag handle */
	opacity: 1;
	-webkit-transition: opacity 0 linear;
	transition: opacity 0 linear;
}

.simplebar-track.vertical {
	top: 0;
}

.simplebar-track.vertical .simplebar-scrollbar:before {
	top: 2px;
	bottom: 2px;
}

.simplebar-track.horizontal {
	left: 0;
	width: auto;
	height: 11px;
	display: none;
}

.simplebar-track.horizontal .simplebar-scrollbar:before {
	height: 100%;
	left: 2px;
	right: 2px;
}

.horizontal.simplebar-track .simplebar-scrollbar {
	right: auto;
	top: 2px;
	height: 7px;
	min-height: 0;
	min-width: 10px;
	width: auto;
}

/* End Simplebar */
.single_ctinfo {
	background-color: var(--bs-white);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	border-radius: 0.25rem;
	display: flex;
	margin-bottom: 1.5rem;
	padding: 0.75rem 1rem;
}

.ctinfo_icon {
	margin-right: 1rem;
	margin-top: -0.5rem;
	color: var(--siteColor);
	font-size: 2.5rem;
}

.download-app {
	display: flex;
}

.download-app>a {
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.download-app>a>img {
	max-width: 100%;
}

.coming-soon {
	background-color: rgb(60 0 180 / 85%);
	color: var(--bs-white);
	position: absolute;
	top: 0;
	right: 0;
	font-size: 8px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 2px 12px;
	transform: rotate(45deg) translate(22px, -2px);
}

label>.req {
	color: #f00;
	font-size: 17px;
	font-family: open sans;
	line-height: 12px;
	display: inline-block;
}

.social-icon-top {
	width: 32px;
	height: 32px;
	background: white;
	border: 1px solid #eae7e7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #979797;
	text-decoration: none;
	font-size: 14px;
}

.header-top ul.list-inline>li>a.social-icon-top>i {
	color: #979797;
}


/* =============================================
   MASTHEAD (Section 1)
   ============================================= */
.masthead {
	background-color: #F2F2F2;
	position: relative;
	z-index: 1021;
}

.masthead-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 0;
}

.masthead-social {
	display: flex;
	align-items: center;
	gap: 10px;
}

.masthead-social .social-icon-top {
	width: 32px;
	height: 32px;
	background-color: var(--bs-white);
	border: 1px solid #EAE7E7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #979797;
	text-decoration: none;
	font-size: 14px;
	transition: 0.3s;
}

.masthead-social .social-icon-top:hover {
	color: #FF6A00;
	border-color: #FF6A00;
}

.masthead-right {
	display: flex;
	align-items: center;
	gap: 24px;
}

.masthead-lang,
.masthead-delivery {
	display: flex;
	align-items: center;
	gap: 8px;
}

.masthead-loc-icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	border-radius: 50%;
}

.masthead-label-group {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.masthead-label {
	font-size: 11px;
	color: #636261;
}

.masthead-value {
	font-size: 13px;
	font-weight: 600;
	color: #1A1A1A;
}

.masthead-value i {
	font-size: 10px;
	margin-left: 2px;
}

/* =============================================
   MOBILE NAVBAR
   ============================================= */
.navbar-mobile {
	background-color: var(--bs-white);
	padding: 10px 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	position: sticky;
	top: 0;
	z-index: 1020;
}

.navbar-mobile-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar-mobile .navbar-brand img {
	max-height: 40px;
}

.navbar-mobile-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.navbar-mobile-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	text-decoration: none;
}

.navbar-mobile-icon img {
	width: 32px;
	height: 32px;
}

.navbar-mobile-icon:not(.cart-icon-mobile) {
	background: #F2F2F2;
	border-radius: 50%;
}

.cart-icon-mobile {
	background: #934204;
	border-radius: 50%;
	color: var(--bs-white) !important;
	position: relative;
}

.cart-icon-mobile i {
	font-size: 18px;
	color: var(--bs-white);
}

.cart-icon-mobile .cart_qty {
	position: absolute;
	top: -4px;
	right: -4px;
	background: #FF6A00;
	color: var(--bs-white);
	font-size: 10px;
	font-weight: 700;
	width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	border-radius: 50%;
}

/* =============================================
   DESKTOP NAVBAR (Section 2)
   ============================================= */
.navbar-main {
	background-color: var(--bs-white);
	padding: 10px 0;
	/* box-shadow: 0 2px 8px rgba(0,0,0,0.06); */
	position: sticky;
	top: 0;
	z-index: 1020;
}

.navbar-main-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.navbar-main .navbar-brand img {
	max-height: 48px;
}

.navbar-main-left {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
	margin-right: 16px;
}

.navbar-main-nav {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
}

.nav-categories-btn {
	background: #FFF3EA;
	border: none;
	border-radius: 5rem;
	padding: 12px 16px;
	font-size: 15px;
	font-weight: 500;
	color: #1A1A1A;
	display: flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	white-space: nowrap;
	transition: 0.3s;
}

.nav-categories-btn:hover {
	background: #FFE8D4;
	color: #1A1A1A;
}

.nav-categories-btn .cat-icon {
	width: 18px;
	height: 18px;
}

.nav-categories-btn::after {
	display: inline-block;
	margin-left: 4px;
	vertical-align: middle;
	content: "";
	border-top: 5px solid;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
}

/* .nav-categories-btn.dropdown-toggle::after {
  override bootstrap
} */
.nav-link-item {
	font-size: 15px;
	font-weight: 500;
	color: #616160;
	text-decoration: none;
	padding: 8px 12px;
	white-space: nowrap;
	transition: 0.3s;
}

.nav-link-item:hover {
	color: #FF6A00;
}

/* Navbar Right: Search + Login + Cart */
.navbar-main-right {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	justify-content: flex-end;
	max-width: 560px;
}

.navbar-search-form {
	display: flex;
	align-items: center;
	background: #F8F8F8;
	border: 1px solid #EAE7E7;
	border-radius: 5rem;
	flex: 1;
	max-width: 350px;
	padding: 2px;
	position: relative;
}

.navbar-search-form .someElem {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 1060;
}

.navbar-search-form .someElem .resultdiv {
	border-radius: 0 0 8px 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border: 1px solid #EAE7E7;
	width: 100%;
}

.navbar-search-input {
	border: none !important;
	background: transparent !important;
	padding: 8px 16px !important;
	font-size: 13px;
	color: #636261;
	flex: 1;
	outline: none !important;
	box-shadow: none !important;
	height: 40px;
}

.navbar-search-input::placeholder {
	color: #979797;
}

.navbar-search-btn {
	background: #979797;
	border: none;
	color: var(--bs-white);
	padding: 0 18px;
	height: 40px;
	font-size: 13px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	white-space: nowrap;
	border-radius: 5rem;
	transition: 0.3s;
}

.navbar-search-btn:hover {
	background: #7a7a7a;
}

.navbar-search-btn img {
	width: 16px;
	height: 16px;
	filter: brightness(0) invert(1);
}

/* Login/Signup Button */
.btn-login-signup {
	display: flex;
	align-items: center;
	gap: 6px;
	background: #FF6A00;
	color: var(--bs-white);
	border: none;
	border-radius: 1000px;
	padding: 10px 20px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: 0.3s;
}

.btn-login-signup:hover {
	background: #e55e00;
	color: var(--bs-white);
}

.btn-login-signup img {
	width: 18px;
	height: 18px;
	filter: brightness(0) invert(1);
}

/* Cart Button */
.btn-cart-main {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: #934204;
	border-radius: 50%;
	text-decoration: none;
	position: relative;
	flex-shrink: 0;
	transition: 0.3s;
}

.btn-cart-main:hover {
	background: #7a3703;
}

.btn-cart-main img {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
}

.cart-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	background: #FF6A00;
	color: var(--bs-white);
	font-size: 10px;
	font-weight: 700;
	min-width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	border-radius: 50%;
	padding: 0 3px;
}

/* Category Dropdown - keep existing menu-v styles but fix positioning */
.navbar-main .cat-menu {
	position: relative;
}

.navbar-main .cat-menu .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: none;
	border: none;
	border-radius: 0 0 0.25rem 0.25rem;
	padding: 0;
	min-width: 260px;
	display: none;
	z-index: 1050;
}

.navbar-main .cat-menu:hover .dropdown-menu {
	display: block;
}

.navbar-main .cat-menu .dropdown-menu ul#menu-v {
	background-color: var(--bs-white);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-radius: 0 0 0.25rem 0.25rem;
	margin-top: 10px;
	width: 260px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1199.98px) {
	.navbar-main-nav .nav-link-item {
		display: none;
	}
}

@media (max-width: 991.98px) {
	.navbar-main-right {
		max-width: 400px;
	}
}

@media (min-width: 768px) and (max-width: 1199.98px) {
	.navbar-main-inner {
		gap: 12px;
	}

	.navbar-search-form {
		max-width: fit-content;
	}

	.btn-login-signup {
		padding: 9px 16px;
		font-size: 14px;
	}

	.nav-link-item {
		font-size: 14px;
	}

	.nav-categories-btn {
		padding: 8px 12px;
		font-size: 14px;
	}
}

@media (max-width: 767.98px) {
	.masthead {
		display: none !important;
	}
}

/* =============================================
   FOOTER (Figma Design)
   ============================================= */
footer.site-footer {
	background-color: #F2F2F2;
	color: #616160;
	padding: 0;
	position: relative;
}

footer.site-footer .footer-top {
	display: block !important;
	padding: 50px 0 40px;
}

.footer-col {
	margin-bottom: 24px;
}

.footer-heading {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #4F2200;
	margin-bottom: 1rem;
}

ul.footer-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.footer-nav li {
	margin-bottom: 1rem;
}

ul.footer-nav li:last-child {
	margin-bottom: 0;
}

ul.footer-nav li a {
	font-weight: 500;
	line-height: 1.1875;
	color: #616160;
	text-decoration: none;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

ul.footer-nav li a:hover {
	color: #FF6A00;
}

ul.footer-nav li a .ri-arrow-right-up-line {
	font-size: 1.125rem;
}

footer.site-footer .footer-middle {
	border: none;
	padding: 0 0 24px;
}

.footer-payment-cards {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
}

.footer-payment-cards img {
	height: 28px;
	width: auto;
	object-fit: contain;
}

.footer-social {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.footer-social-icon {
	width: 40px;
	height: 40px;
	background: #F6F6F6;
	border: 1px solid #EAE7E7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #979797;
	font-size: 16px;
	text-decoration: none;
	transition: 0.3s;
}

.footer-social-icon:hover {
	color: #FF6A00;
	border-color: #FF6A00;
}

.footer-divider {
	height: 2px;
	background: #EAE7E7;
}

.footer-bottom {
	padding: 16px 0;
	text-align: center;
}

.footer-bottom p {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.286;
	color: #616160;
	margin: 0;
}

.warehouse-flag {
	width: 10px;
	height: 10px;
	border-radius: 100px;
	display: inline-block;
	background-size: cover;
	background-position: center;
}

.warehouse-flag--usa {
	background: url('https://flagcdn.com/w40/us.png') center/cover;
}

.warehouse-flag--cn {
	background: url('https://flagcdn.com/w40/cn.png') center/cover;
}

.country {
	background-color: var(--bs-white);
	border: 1px solid #ddd;
	border-radius: 0.75rem;
	color: #111;
	font-family: 'Poppins';
	font-size: 1.125rem;
	font-weight: 600;
	padding: 18px;
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.country:hover {
	background-color: var(--siteColor, #ff6a00);
	border-color: var(--siteColor, #ff6a00);
	color: var(--bs-white);
}

/* Footer Responsive */
@media (max-width: 991.98px) {
	.footer-heading {
		font-size: 20px;
	}

	.footer-social {
		justify-content: flex-start;
		margin-top: 16px;
	}

	.footer-payment-cards {
		margin-bottom: 16px;
	}
}

@media (max-width: 767.98px) {
	footer.site-footer .footer-top {
		padding: 30px 0 10px;
	}

	.footer-col {
		margin-bottom: 20px;
	}

	.footer-heading {
		font-size: 18px;
		margin-bottom: 8px;
	}

	ul.footer-nav li {
		margin-bottom: 12px;
	}

	ul.footer-nav li a {
		font-size: 14px;
	}

	.footer-arrow {
		width: 14px;
		height: 14px;
	}

	.footer-payment-cards {
		justify-content: center;
		margin-bottom: 16px;
	}

	.footer-payment-cards img {
		height: 22px;
	}

	.footer-social {
		justify-content: center;
		margin-top: 12px;
	}

	.footer-social-icon {
		width: 36px;
		height: 36px;
		font-size: 14px;
	}

	.footer-bottom p {
		font-size: 12px;
	}

	footer.site-footer .footer-middle {
		padding: 0 0 16px;
	}
}

/* END STYLE */