:root
{
	--green: #00A14B;
	--green2: #11D06A;
	--greendark: #00833D;
	--dark: #2A2D31;
	--meddark: #34373C;
	--lightgreen: #F2F9F9;
	--medgreen: #DBE7E7;
	--yellow: #FFDC00;
	--orange: #F75400;
	--darktext: #A9B2B2;
	--gray: #D4E5E5;
	--arrow: #E3E3E3;

	--white: #ffffff;
	--black: #000000;
	--textgray: #4A4D53;
	
	--modelgray: #A5A5A5;
	--pricered: #E40000;
	--youtubered: #DC0000;

	--color-hr: #DAE5E5;
	--modaltitle: #646970;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	outline: none !important; 
}

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

/*html, body
{
	position: relative;
	overflow-x: hidden;
}*/

body
{
	color: var(--dark);
	background-color: var(--lightblue);
	font-size: 14px;
	line-height: 1.7;
	font-family: hero-new, sans-serif;
}

.container .container:not(.-force)
{
	width: 100%;
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

/*
** DATA-TEXT CONTENT
*/

[data-text-content] > *:first-child
{
	margin-top: 0 !important;
}

[data-text-content] > *:last-child
{
	margin-bottom: 0 !important;
}

[data-text-content] ul
{
	margin: 30px 0;
	padding-left: 50px;
}

[data-text-content] p + p
{
	margin-top: 1.6em;
}

[data-text-content] p + [class*="section-title"]
{
	margin-top: 50px;
}

[data-text-content] p + [class*="section-subtitle"]
{
	margin-top: 40px;
}

[data-text-content] p > img
{
	display: block;
	max-width: 100%;
	height: auto !important;
}

[data-text-content] .row.row-content
{
	margin-top: 30px;
}

@media (min-width: 1200px)
{
	[data-text-content] .row.row-content
	{
		margin: 30px -30px 0;
	}

	[data-text-content] .row.row-content > div
	{
		padding-left: 30px;
		padding-right: 30px;
	}	
}

[data-text-content] .row.row-content-with-image + .row.row-content-with-image
{
	margin-top: 50px;
}

[data-text-content] .table.table-striped
{
	margin: 30px 0;
}

[data-text-content] .table.table-striped td
{
	padding: 12px 15px;
	border: 0 !important;
	font-size: 13px;
	line-height: 24px;
	color: var(--dark);
}

[data-text-content] .table.table-striped td:first-child
{
	font-weight: bold;
}

[data-text-content] .table.table-striped td + td
{
	padding-left: 0;
}

[data-text-content] .table.table-striped tr:nth-of-type(2n+1)
{
	background-color: var(--lightgreen);
}

body[class*="product-product"] [data-text-content] .table.table-striped
{
	margin: 0;
}

/*
** BASE ELEMENTS
*/

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

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

p, ul
{
	margin: 0;
}

h1, h2, h3, h4, h5, h6
{
	color: var(--dark);
	margin-top: 0;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.3;
	font-family: hero-new, sans-serif;
}

h1
{
	font-size: 42px;
	font-weight: 800;
}

h2
{
	font-size: 32px;
	font-weight: 800;
}

h3
{
	font-size: 24px;
}

h4
{
	font-size: 18px;
}

h5
{
	font-size: 16px;
}

h6
{
	font-size: 14px;
}

.list-inline
{
	display: flex;
}

.mb-30
{
	margin-bottom: 30px !important;
}

/*
** CONTAINER
*/

@media (min-width: 1290px)
{
	.container
	{
		max-width: 1260px;
	}
}

/*
** ALERT
*/

.alert
{
	padding: 10px 15px;
	border-radius: 0;
	border: 0;
	margin: 0;
}

.alert.alert-success
{
	color: var(--white);
	background: var(--green);
}

.alert.alert-danger
{
	color: var(--white);
	background: var(--orange);
}

.alert a,
.alert a:hover
{
	color: inherit;
	text-decoration: underline;
}

.alert a:hover
{
	text-decoration: none;
}

/*
** MODAL
*/

.modal .modal-content
{
	border: 0;
	border-radius: 5px;
}

.modal .modal-header
{
	padding: 50px 35px 0;
	border: 0;
}

.modal .modal-header .modal-title
{
	margin: 0;
	padding: 0;
	font-size: 24px;
	line-height: 32px;
	font-weight: bold;
	text-align: center;
	color: var(--modaltitle);
	width: 100%;
}

.modal .modal-body
{
	padding: 50px;
}

.modal .form-group
{
	margin: 0;
}

.modal .form-group + .form-group
{
	margin-top: 30px;
}

.modal .form-group .form-control
{
	padding: 0 20px;
	height: 60px;
	line-height: 60px;
	border-radius: 0;
	border: 0;
	font-size: 16px;
	font-weight: 500;
	color: var(--black);
	background: var(--lightgreen);
}

.modal .alert
{
	margin-bottom: 30px;
}

.modal-backdrop
{
	background: var(--dark);
}

#loginHeaderModal button[type="submit"]
{
	position: relative;
	height: 50px;
	line-height: 50px;
	padding: 0;
	padding-right: 50px;
	text-align: center;
	border: 0;
}

#loginHeaderModal button[type="submit"]:not(.btn-loading) > i
{
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	font-size: 24px;
	line-height: 50px;
	background: var(--greendark);
}

/*
** BUTTON
*/

.btn
{
	transition: background 0.3s, color 0.3s ease;
	border-radius: 0;
	padding: 10px 20px;
	font-weight: bold;
	border-radius: 0;
}

.btn-default,
.btn-default.disabled,
.btn-default:disabled
{
	color: var(--green);
	background-color: var(--medgreen);
	border-color: transparent;
}

.btn-default:hover
{
	color: var(--white);
	background-color: var(--dark);
}

.btn-primary,
.btn-primary.disabled,
.btn-primary:disabled
{
	background-color: var(--green);
	border-color: transparent;
}

.btn-primary:hover
{
	background-color: var(--greendark);
	border-color: transparent;
}

.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active
{
	background-color: var(--green);
	border-color: transparent;
}

.btn-outline-primary,
.btn-outline-primary.disabled,
.btn-outline-primary:disabled
{
	padding: 10px 33px;
	font-size: 15px;
	line-height: 24px;
	border-width: 3px;
	font-weight: 800;
	border-color: var(--lightgreen);
	color: var(--green);
}

.btn-outline-primary:hover
{
	color: var(--white);
	border-color: var(--green);
	background-color: var(--green) !important;
}

.btn-link,
.btn-link:hover
{
	padding: 0;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	color: var(--darktext);
	text-decoration: underline;
}

.btn-link:hover
{
	text-decoration: none;
}

.btn-loading
{
	padding-left: 0 !important;
	padding-right: 0 !important;
	cursor: wait !important;
}

/*
** LABEL
*/

.labels
{
	display: block;
	position: absolute;
	top: 0;
	right: 0;
}

.labels > span
{
	display: block;
	padding: 6px 8px;
	color: var(--white);
	font-size: 10px;
	line-height: 10px;
	text-align: center;
	border-radius: 10px;
	font-weight: 500;
}

.labels > span + span
{
	margin-top: 5px;
}

/*
** SLICK
*/

.slick-slider .slick-track
{
	display: flex !important;
	margin-left: 0;
	margin-right: 0;
}

.slick-slider .slick-slide
{
    height: inherit !important;
}

/*
** HEADER
*/

header
{
	position: relative;
	box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.1);
	background-color: var(--white);
	z-index: 10;
}

header .top
{
	padding: 16px 0;
	color: var(--white);
	font-size: 13px;
	line-height: 18px;
	background-color: var(--dark);
}

header .top .list-contact > .list-inline-item:not(:last-child)
{
	margin-right: 30px;
}

header .top .list-contact > li > a
{
	display: block;
	color: inherit;
}

header .top .list-contact > li > a > i
{
	margin-right: 10px;
	font-size: 16px;
	float: left;
	color: var(--green);
}

header .head
{
	/*position: relative;*/
	height: 100px;
	z-index: 9;
}

header .head #logo > img
{
	display: block;
	width: 200px;
}

header #menu .list-menu > li:not(:last-child)
{
	margin-right: 15px;
	min-width: 70px;
}

header #menu .list-menu > li > a
{
	display: block;
	font-size: 14px;
	line-height: 18px;
	font-weight: bold;
	color: var(--black);
	padding: 20px 0px;
	text-decoration: none;
	transition: all 0.5s;
	position: relative;
	width: min-content;
	margin-right: 20px;
	min-width: 52px;
}

header #menu .list-menu > li > a:hover
{
	color: var(--green);
}
header .head ul.actions > li > a,
header .head ul.actions > li > .btn
{
	position: relative;
	display: block;
	width: 70px;
	height: 100px;
	padding: 0;
	text-align: center;
	font-size: 24px;
	color: var(--medgreen);
	line-height: 100px;
	border-left: 1px solid var(--medgreen);
	transition: background 0.3s, color 0.3s ease !important;
}

header .head ul.actions > li > a:hover
{
	color: var(--green);
}

header .head ul.actions > li > a.-active
{
	color: var(--green);
	background: var(--lightgreen);
}

header .head ul.actions > li.cart > a
{
	width: 100px;
	color: var(--white);
	font-size: 13px;
	line-height: 18px;
	text-decoration: none;
	background-color: var(--green);
	transition: background 0.3s ease;
}

header .head ul.actions > li.cart > a:hover
{
	background-color: var(--greendark);
}

header .head ul.actions > li.cart > a > i
{
	display: block;
	margin-top: 12px;
	font-size: 36px;
}

header .head ul.actions > li.cart > a > span
{
	display: block;
	margin-top: 8px;
}

header .head ul.actions > li.cart > a > span > .quantity
{
	position: absolute;
	top: 22px;
	right: 24px;
	width: 16px;
	height: 16px;
	font-size: 8px;
	color: var(--white);
	line-height: 16px;
	text-align: center;
	border-radius: 50%;
	padding-left: 1px;
	border: 1px solid var(--green2);
	background-color: var(--green);
}

header #search
{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 20px 0;
	background: var(--lightgreen);
}

header #search .form-control
{
	padding: 0 20px;
	height: 60px;
	line-height: 60px;
	font-size: 13px;
	color: var(--black);
	border: 0;
	border-radius: 0;
}

header #search .btn-search
{
	padding: 0;
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 20px;
	text-align: center;
}

/*
** FOOTER
*/

footer
{
	background: var(--dark);
}

footer .top
{
	padding: 20px 0;
	background: var(--meddark);
}

footer .bottom
{
	color: var(--white);
	font-size: 13px;
	line-height: 20px;
	font-weight: 300;
	padding: 50px 0;
}

footer .copy
{
	padding: 20px 0;
	font-size: 13px;
	line-height: 18px;
	font-weight: 300;
	color: var(--textgray);
	background: var(--white);
}

footer .copy .text-author
{
	color: inherit;
}

footer .footer-title
{
	margin: 0 0 30px;
	color: var(--white);
	font-size: 20px;
	line-height: 28px;
	font-weight: bold;
}

footer .footer-contact
{
	display: flex;
}

footer .footer-contact > a
{
	position: relative;
	display: block;
	padding-left: 60px;
	font-size: 15px;
	line-height: 22px;
	color: var(--white);
	font-weight: bold;
	text-decoration: none;
}

footer .footer-contact > a > i
{
	position: absolute;
	top: 50%;
	left: 0;
	font-size: 36px;
	color: var(--green);
	transform: translateY(-50%);
}

footer .footer-contact > a > .-title
{
	display: block;
	font-size: 12px;
	line-height: 22px;
	font-weight: 300;
	color: var(--darktext);
}

footer .footer-contact > a:hover > .-title + span
{
	text-decoration: underline;
}

footer .footer-certificate
{
	font-size: 13px;
	line-height: 18px;
	font-weight: 300;
	color: var(--white);
}

footer .footer-certificate img
{
	width: 64px;
	margin-left: 15px;
}

footer .list-footer > li + li
{
	margin-top: 10px;
}

footer .list-footer > li > a
{
	position: relative;
	display: block;
	color: var(--white);
	font-size: 13px;
	line-height: 20px;
	padding-left: 33px;
}

footer .list-footer > li > a::before
{
	position: absolute;
	display: block;
	content: "";
	top: 8px;
	left: 0;
	width: 15px;
	height: 4px;
	border-radius: 2px;
	background: var(--green);
}

footer .text-address > strong
{
	font-weight: bold;
}

/*
** ASIDE
*/
aside
{
	width: 240px;
}

/* ASIDE: FILTER */
.aside-filter
{
	margin: 0;
}

.aside-filter .section-title
{
	position: relative;
	cursor: pointer;
	padding: 13px 15px 13px 40px !important;
	margin: 0 !important;
	font-size: 15px;
	line-height: 24px;
	border-radius: 3px;
	color: var(--white);
	border-bottom: 1px solid var(--green);
	background: var(--green);
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.aside-filter .section-title::before {
    content: "\f0b0";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: 15px;
}

.aside-filter .section-title.-expanded
{
	color: var(--dark);
	border-color: var(--medgreen);
	background: var(--lightgreen);
	border-radius: 3px 3px 0 0;
}

.aside-filter .section-title > .-expand
{
	position: absolute;
	top: 14px;
	right: 15px;
	width: 24px;
	line-height: 24px;
	text-align: center;
	transition: transform 0.3s ease;
}

.aside-filter .section-title.-expanded > .-expand
{
	transform: rotate(180deg);
}

.aside-filter .mfilter-content
{
	border: 0;
	border-radius: 0;
}

.aside-filter .mfilter-button-top
{
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	margin: -40px 0 0;
	padding: 0 30px;
}

.aside-filter .mfilter-selected-filters[style*="none"] + .mfilter-button-top
{
	display: none;
}

.aside-filter .mfilter-button-top .mfilter-button-reset
{
	display: block;
	color: #CD2B4D;
	font-size: 14px;
	font-weight: bold;
	line-height: 31px;
	padding: 0;
	margin: 0;
	text-align: left;
	width: 100%;
	float: none;
}

.aside-filter .mfilter-button-top .mfilter-button-reset > i
{
	display: none;
}

.aside-filter .mfilter-content .mfilter-selected-filters
{
	margin: 0 !important;
	padding: 15px 15px 50px;
	border-bottom: 1px solid var(--medgreen);
	background: var(--lightgreen);
}

.aside-filter .mfilter-content .mfilter-selected-filters .mfilter-selected-filters-cnt
{
	display: block;
}

.aside-filter .mfilter-content .mfilter-selected-filters .mfilter-selected-filters-cnt a
{
	display: block;
	color: var(--dark) !important;
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
}

.aside-filter .mfilter-content .mfilter-selected-filters .mfilter-selected-filters-cnt a > span
{
	display: inline-block;
	padding: 0 !important;
	width: auto !important;
}

.aside-filter .mfilter-content .mfilter-selected-filters .mfilter-selected-filters-cnt a:hover > span
{
	text-decoration: underline !important;
}

.aside-filter .mfilter-content .mfilter-selected-filters .mfilter-selected-filters-cnt a > span.mfilter-close
{
	position: relative;
	top: 1px;
	padding-left: 10px !important;
}

@media (min-width: 992px)
{
	.aside-filter .mfilter-content .mfilter-selected-filters,
	.aside-filter .section-title,
	.aside-filter .mfilter-button-top
	{
		display: none !important;
	}
	
	.aside-filter .mfilter-content > ul
	{
		display: block !important;
	}
}

.aside-filter .mfilter-content > ul > li
{
	border-bottom: 1px solid var(--medgreen);
}

.aside-filter .mfilter-heading
{
	background: var(--white);
}

.aside-filter .mfilter-heading .mfilter-heading-content
{
	position: relative;
	padding: 15px 0;
	padding-right: 32px;
}

.aside-filter .mfilter-heading .mfilter-heading-text,
.aside-filter .mfilter-heading .mfilter-heading-text > span
{
	display: block;
	margin: 0;
	padding: 0;
	font-size: 15px;
	line-height: 21px;
	font-weight: 800;
	color: var(--dark);
}

.aside-filter .mfilter-heading-content > i
{
	position: absolute;
	top: 19px;
	right: 10px;
	width: 12px;
	height: 12px;
	font-size: 12px;
	color: var(--darktext);
}

.aside-filter .mfilter-heading.mfilter-collapsed .mfilter-heading-content > i.fa-minus,
.aside-filter .mfilter-heading:not(.mfilter-collapsed) .mfilter-heading-content > i.fa-plus
{
	display: none;
}

.aside-filter .mfilter-opts-container
{
	padding: 0;
	border: 0;
}

.aside-filter .mfilter-opts-container .mfilter-options
{
	padding: 0 0 5px !important;
}

.aside-filter .mfilter-options .mfilter-tb-as-td
{
	padding: 0;
	border: 0 !important;
}

.aside-filter .mfilter-options .mfilter-col-input
{
	width: 20px;
}

.aside-filter .mfilter-options .mfilter-col-input > input
{
	visibility: hidden;
}

.aside-filter .mfilter-options label.mfilter-tb-as-td
{
	position: relative;
	display: block;
	padding: 10px 0;
	margin: 0;
	padding-left: 7px;
	font-size: 13px;
	line-height: 18px;
	color: var(--dark);
	font-weight: 400;
}

.aside-filter .mfilter-options label.mfilter-tb-as-td::before
{
	position: absolute;
	display: block;
	content: "";
	top: 8px;
	left: -20px;
	width: 20px;
	height: 20px;
	line-height: 18px;
	font-size: 10px;
	font-family: "Font Awesome 5 Pro";
	font-weight: bold;
	text-align: center;
	color: var(--white);
	border-radius: 3px;
	border: 1px solid var(--medgreen);
	background: var(--white);
	transition: border-color 0.3s ease, background 0.3s ease;
}

.aside-filter .mfilter-options label.mfilter-tb-as-td:hover::before,
.aside-filter .mfilter-options .mfilter-input-active + label.mfilter-tb-as-td::before
{
	border-color: var(--green);
}

.aside-filter .mfilter-options .mfilter-input-active + label.mfilter-tb-as-td::before
{
	content: "\f00c";
	background: var(--green);
}

.aside-filter .mfilter-options .mfilter-input-active + label.mfilter-tb-as-td:hover::before
{
	content: "\f00d";
	border-color: var(--medgreen);
	background: var(--medgreen);
}

.aside-filter .mfilter-options .mfilter-counter
{
	padding-right: 10px;
	font-size: 12px;
	line-height: 17px;
	color: var(--medgreen);
	background: none !important;
}

.aside-filter .mfilter-options .mfilter-counter::before
{
	content: "(";
}

.aside-filter .mfilter-options .mfilter-counter::after
{
	content: ")";
}

.aside-filter .mfilter-options .mfilter-counter.mfilter-close
{
	display: none !important;
}

/*
** LABELS
*/
.-labels
{
	display: flex;
}

.-labels > span
{
	display: block;
	padding: 4px 12px;
	font-size: 9px;
	line-height: 12px;
	font-weight: 600;
	border-radius: 15px;
	page-break-after: always;
	break-after: always;
}

.-labels.-vertical
{
	flex-direction: row !important;
	flex-wrap: wrap;
	flex-flow: column wrap;
	justify-content: right;
	width: 1px;
}

.-labels.-horizontal
{
	margin: -2.5px -5px;
}

.-labels.-horizontal > span
{
	margin: 2.5px 5px;
}

.-labels.-vertical > span + span
{
	margin-top: 5px;
}

.-labels .label-green
{
	color: var(--white);
	background: var(--green);
}

.-labels .label-yellow
{
	color: var(--black);
	background: var(--yellow);
}

/*
** ITEM
*/

/* ITEM: SLIDESHOW */
.item-slideshow
{
	width: 790px;
	height: 475px;
	padding: 0 15px;
	opacity: 1;
	transition: all 0.3s ease;
}

.slick-slide:not(.slick-current) .item-slideshow
{
	opacity: 0.4;
}

.item-slideshow > a
{
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.item-slideshow > a > img
{
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.item-slideshow .-title
{
	position: absolute;
	bottom: 30px;
	left: 30px;
	margin: 0;
	max-width: 410px;
	padding: 17px 23px;
	font-size: 29px;
	line-height: 41px;
	font-weight: 800;
	color: var(--white);
	border-radius: 5px;
	background: var(--green);
	z-index: 9;
}

/* ITEM: SUBCATEGORY */
.item-subcategory
{
	height: 100%;
	padding-bottom: 15px;
}

.item-subcategory > a
{
	position: relative;
	display: flex;
	height: 100%;
	min-height: 76px;
	align-items: center;
	padding: 17px 20px;
	padding-left: 90px;
	border-radius: 3px;
	font-size: 14px;
	line-height: 20px;
	color: var(--dark);
	font-weight: 600;
	text-decoration: none;
	border: 1px solid var(--medgreen);
	background: var(--white);
	transition: box-shadow 0.3s ease;
}

.item-subcategory > a:hover
{
	box-shadow: 0px 0px 15px #00000014;
}

.item-subcategory > a > img
{
	position: absolute;
	top: 50%;
	left: 10px;
	width: 60px;
	margin-top: -20px;
}

/* ITEM: PAGINATION */
.item-pagination
{
	margin-top: 30px;
}

.item-pagination .list-pagination
{
	display: flex;
	justify-content: center;
}

.item-pagination .list-pagination > li.-txt
{
	margin-bottom: -7px;
	padding-top: 13px;
	font-size: 20px;
	font-weight: bold;
	color: var(--darktext);
}

.item-pagination .list-pagination > li + li
{
	margin-left: 17px;
}

.item-pagination .list-pagination > li > *
{
	display: block;
	width: 40px;
	height: 40px;
	font-size: 16px;
	font-weight: bold;
	color: var(--black);
	text-align: center;
	line-height: 38px;
	border-radius: 3px;
	text-decoration: none;
	border: 1px solid var(--medgreen);
	transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.item-pagination .list-pagination > li.-btn > *
{
	width: auto;
	color: var(--darktext);
	padding-left: 22px;
	padding-right: 22px;
}

.item-pagination .list-pagination > li.active > *,
.item-pagination .list-pagination > li > a:hover
{
	color: var(--white);
	border-color: var(--green);
	background: var(--green);
}

/* ITEM: QUANTITY PICKER */
.item-quantity-picker
{
	position: relative;
	overflow: hidden;
	width: 150px;
	height: 60px;
	border: 1px solid var(--medgreen);
	border-radius: 3px;
}

.item-quantity-picker .btn
{
	padding: 0;
	border: 0;
	width: 45px;
	line-height: 58px;
	font-size: 20px;
	text-align: center;
	background-color: var(--white);
}

.item-quantity-picker .btn:hover
{
	background-color: var(--lightgreen);
}

.item-quantity-picker .btn > i
{
	margin: 0;
	color: var(--green);
}

.item-quantity-picker .form-control
{
	border: 0;
	padding: 0;
	height: 58px;
	line-height: 58px;
	text-align: center;
	width: 100%;
	border-radius: 0;
	box-shadow: none;
	border-left: 1px solid var(--medgreen);
	border-right: 1px solid var(--medgreen);
}


/* ITEM: IMAGE EFFECT */
.item-image-effect
{
	position: relative;
	padding-right: 50px;
}

.item-image-effect::before
{
	position: absolute;
	display: block;
	content: "";
	bottom: -50px;
	left: 50px;
	width: calc(100% - 50px);
	height: 265px;
	background: var(--lightgreen);
	z-index: -1;
}

.item-image-effect > img
{
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

/* ITEM: BENEFIT */
.item-benefit
{
	text-align: center;
	color: var(--dark);
	font-size: 18px;
	line-height: 25px;
	font-weight: bold;
}

.item-benefit p > i
{
	display: block;
	width: 100px;
	height: 100px;
	line-height: 100px;
	font-size: 48px;
	color: var(--green);
	margin: 0 auto 30px;
	text-align: center;
	border-radius: 50%;
	background: var(--white);
}

/* ITEM: ARROWS */
.item-arrows > .btn
{
	padding: 0;
	height: 50px;
	line-height: 50px;
	font-size: 40px;
	color: var(--arrow);
	transition: color 0.3s ease;
}

.item-arrows > .btn:hover
{
	color: var(--green);
}

.item-arrows > .btn ~ .btn
{
	margin-left: 30px;
}

/* ITEM: FAVORITE CATEGORY */
.item-favcategory
{
	position: relative;
	width: 390px;
	margin: 0 15px;
}

.item-favcategory::before
{
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 3px;
	border: 3px solid var(--lightgreen);
	z-index: -1;
}

.item-favcategory > .-image
{
	position: relative;
	display: block;
	overflow: hidden;
	height: 300px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.item-favcategory > .-image::after
{
	position: absolute;
	display: block;
	content: "";
	left: 0;
	bottom: 0;
	width: 100%;
	height: 140px;
	background: linear-gradient(180deg, #23232300 0%, #232323 100%);
	z-index: 10;
}

.item-favcategory > .-image > img
{
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	z-index: 9;
}

.item-favcategory > .-image > span
{
	position: absolute;
	display: block;
	padding: 0 30px;
	left: 0;
	bottom: 20px;
	font-size: 24px;
	line-height: 33px;
	font-weight: 800;
	color: var(--white);
	z-index: 11;
}

.item-favcategory .list-subcategory
{
	padding: 30px 30px 50px;
	border-top: 0;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

.item-favcategory .list-subcategory > li + li
{
	margin-top: 8px;
}

.item-favcategory .list-subcategory > li > a
{
	font-size: 15px;
	text-decoration: underline;
}

.item-favcategory .list-subcategory > li > a:hover
{
	color: var(--green);
	text-decoration: none;
}

.item-favcategory > .-more
{
	position: absolute;
	left: 0;
	bottom: -25px;
	width: 100%;
	text-align: center;
}

.item-favcategory > .-more > .btn
{
	background: var(--white);
}

/* ITEM: PRODUCT */
.row.row-product
{
	margin-top: -30px;
}

.item-product
{
	position: relative;
	overflow: hidden;
	margin-top: 30px;
	height: calc(100% - 30px);
	border-radius: 3px;
	border: 2px solid var(--lightgreen);
	background: var(--white);
}

.slick-slide > .item-product
{
	margin-top: 0;
	height: 100%;
}

.item-product .-top
{
	padding: 50px 30px 15px;
}

.item-product .-bottom
{
	padding: 15px 30px;
	background: var(--lightgreen);
}

.item-product .-image > a
{
	position: relative;
	display: block;
}

.item-product .-image > a > img
{
	display: block;
	margin: 0 auto;
}

.item-product .-labels
{
	position: absolute;
	top: -33px;
	right: 0;
}

.item-product .-model
{
	margin: 15px 0 5px;
	font-size: 12px;
	line-height: 17px;
	color: var(--modelgray);
}

.item-product .-title
{
	margin: 0;
	font-size: 15px;
	line-height: 22px;
	font-weight: bold;
	color: var(--black);
}

.item-product .-title > a
{
	color: inherit;
}

.item-product .-title > a:hover
{
	text-decoration: underline;
}

.item-product .-stock
{
	font-size: 14px;
	line-height: 20px;
	font-weight: bold;
}

.item-product .-price
{
	padding-left: 15px;
	text-align: right;
	font-size: 18px;
	line-height: 25px;
	color: var(--dark);
	font-weight: 800;
}

.item-product .-price > .--tax
{
	display: block;
	margin-top: 1px;
	font-size: 12px;
	line-height: 17px;
	font-weight: 400;
	color: var(--darktext);
}

.slick-favorite .slick-slide .item-product
{
	width: 320px;
	height: 100%;
	margin: 0 15px;
}

.slick-favorite .slick-slide .item-product .-bottom
{
	border-top: 2px solid var(--lightgreen);
	background: inherit;
}

.item-product.-small .-top
{
	padding: 15px 20px;
}

.item-product.-small .-labels
{
	top: -5px;
	right: -10px;
}

.item-product.-small .-title
{
	font-size: 13px;
	line-height: 20px;
}

.item-product.-small .-bottom
{
	padding: 15px;
}

/* ITEM: PRODUCT DETAIL */
@media (min-width: 1200px)
{
	.item-product-detail
	{
		margin-left: -30px;
		margin-right: -30px;
	}

	.item-product-detail > div[class*="col"]
	{
		padding-left: 30px;
		padding-right: 30px;
	}
}

.item-product-detail .-image > a
{
	display: block;
	background: var(--white);
}

.item-product-detail .slick-image
{
	position: relative;
	height: 115px;
	padding-bottom: 25px;
	overflow: hidden;
	margin-top: 30px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.item-product-detail .slick-image.slick-initialized
{
	opacity: 1;
}

.item-product-detail .slick-image .slick-list
{
	margin: 0 -15px;
}

.item-product-detail .slick-image .slick-slide
{
	padding: 0 15px;
}

.item-product-detail .slick-image .slick-slide > a
{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 90px;
	padding: 10px;
	text-decoration: none;
	background: var(--white);
}

.item-product-detail .slick-image .slick-slide > a > img
{
	display: block;
	margin: 0 auto;
	height: 100%;
}

.item-product-detail .slick-image .slick-slide > a > i
{
	margin: 0 auto;
	font-size: 50px;
	color: var(--youtubered);
}

.item-product-detail .slick-image .slick-dots
{
	position: absolute;
	left: 0;
	bottom: 0;
	display: flex;
}

.item-product-detail .slick-image .slick-dots > li + li
{
	margin-left: 15px;
}

.item-product-detail .slick-image .slick-dots > li > button
{
	display: block;
	width: 30px;
	height: 5px;
	border: 0;
	padding: 0;
	text-indent: -999px;
	background: var(--gray);
	transition: background 0.3s ease;
}

.item-product-detail .slick-image .slick-dots > li.slick-active > button
{
	background: var(--green);
}

.item-product-detail .-model
{
	font-size: 12px;
	line-height: 20px;
	color: var(--modelgray);
}

.item-product-detail .list-data
{
	margin: 12px 0 20px;
}

.item-product-detail .list-data > li
{
	padding: 8px 0;
	font-size: 13px;
	line-height: 24px;
	color: var(--dark);
	border-bottom: 1px solid var(--medgreen);
}

.item-product-detail .list-price
{
	margin: 20px 0 0;
	padding: 10px 15px;
	text-align: right;
	background: var(--white);
}

.item-product-detail .list-price > li
{
	display: flex;
	font-size: 12px;
	line-height: 24px;
	color: var(--darktext);
}

.item-product-detail .list-price > li + li
{
	padding-top: 13px;
}

.item-product-detail .list-price > li .-price
{
	font-size: 24px;
	line-height: 33px;
	font-weight: 800;
	color: var(--pricered);
}

.item-product-detail .list-price > li .-tax
{
	font-size: 14px;
	line-height: 20px;
}

.item-product-detail .-addtocart
{
	margin-top: 30px;
}

.item-product-detail #button-cart
{
	position: relative;
	overflow: hidden;
	padding: 0 30px;
	padding-left: 95px;
	font-size: 20px;
	line-height: 28px;
	height: 60px;
	line-height: 60px;
	border: 0;
	border-radius: 30px;
}

.item-product-detail #button-cart > i
{
	position: absolute;
	top: 0;
	left: 0;
	width: 75px;
	line-height: 60px;
	font-size: 30px;
	height: 100%;
	text-align: center;
	background: var(--greendark);
}

/* ITEM: CONTACT */
.item-contact .-title
{
	margin: 0 0 20px;
	font-size: 20px;
	line-height: 24px;
	font-weight: bold;
	color: var(--dark);
	font-size: 15px;
	line-height: 24px;
}

.item-contact hr
{
	margin: 30px 0;
	border-color: var(--color-hr);
}

@media (min-width: 768px)
{
	.item-contact .-p + .-p
	{
		margin-top: 20px;
	}	
}

.item-contact p > strong
{
	display: block;
	margin-bottom: 8px;
}

.item-contact .-contact
{
	position: relative;
	display: block;
	padding-left: 40px;
	font-size: 13px;
	line-height: 20px;
	color: var(--dark);
	text-decoration: none;
}

.item-contact .-contact > i
{
	position: absolute;
	display: block;
	top: 8px;
	left: 0;
	font-size: 26px;
	color: var(--green);
}

.item-contact .-contact > strong
{
	display: block;
	margin: 2px 0 0;
	font-size: 16px;
}

.item-contact .-contact:hover > strong
{
	text-decoration: underline;
}

/*
** SECTION
*/

section .section-title,
section .section-subtitle
{
	margin: 0 0 15px;
	padding: 0;
	font-size: 32px;
	line-height: 45px;
	font-weight: bold;
	color: var(--dark);
}

section .section-title > strong
{
	color: var(--green);
}

section .section-title > span
{
	font-weight: 300;
}

section .section-subtitle
{
	margin-bottom: 20px;
	font-size: 24px;
	line-height: 33px;
	font-weight: bold;
}

section .section-text
{
	font-size: 14px;
	line-height: 24px;
	color: var(--dark);
}

@media (min-width: 1200px)
{
	section.-effect-left
	{
		padding-top: 0;
		padding-bottom: 0;
		background: var(--white);
	}

	section.-effect-left > .container
	{
		position: relative;
		z-index: 9;
	}

	section.-effect-left > .container::before
	{
		position: absolute;
		display: block;
		content: "";
		top: 0;
		left: 0;
		margin-left: 15px;
		width: 100vw;
		height: 100%;
		background: var(--lightgreen);
		z-index: -1;
	}
}

/* MODULE: NOTIFICATION */
section.module-notification
{
	background: var(--lightgreen);
}

section.module-notification.-effect-left
{
	background: var(--white);
}

section.module-notification > .container:empty
{
	display: none;
}

section.module-notification.-effect-left > .container
{
	padding-top: 30px;
	padding-left: 45px;
}

section.module-notification .alert
{
	margin: 0;
}

/* MODULE: SLIDESHOW */
section.module-slideshow
{
	position: relative;
	overflow: hidden;
	padding: 30px 0 35px;
	background-color: var(--lightgreen);
}

section.module-slideshow .slick-slideshow
{
	position: relative;
	overflow: hidden;
	height: 515px;
	opacitY: 0;
	padding-bottom: 40px;
	transition: opacity 0.3s ease;
}

section.module-slideshow .slick-slideshow.slick-initialized
{
	opacity: 1;
}

section.module-slideshow .slick-slideshow .slick-dots,
section.module-benefit .slick-slider .slick-dots
{
	position: absolute;
	display: flex;
	list-style: none;
	justify-content: center;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 9;
}

section.module-slideshow .slick-slideshow .slick-dots > li + li,
section.module-benefit .slick-slider .slick-dots > li + li
{
	margin-left: 15px;
}

section.module-slideshow .slick-slideshow .slick-dots > li > *,
section.module-benefit .slick-slider .slick-dots > li > *
{
	display: block;
	width: 30px;
	height: 5px;
	border: 0;
	padding: 0;
	text-indent: -9999px;
	background: var(--gray);
	transition: background 0.3s ease;
}

section.module-slideshow .slick-slideshow .slick-dots > li > *:hover,
section.module-slideshow .slick-slideshow .slick-dots > li.slick-active > *,
section.module-benefit .slick-slider .slick-dots > li > *:hover,
section.module-benefit .slick-slider .slick-dots > li.slick-active > *
{
	background: var(--green);
}

section.module-slideshow > .container-arrow
{
	position: absolute;
	height: 0;
	top: 50%;
	left: 50%;
	width: 760px;
	padding-bottom: 40px;
	transform: translateX(-50%) translateY(-50%);
}

section.module-slideshow > .container-arrow .btn
{
	position: absolute;
	top: -29px;
	left: -25px;
	padding: 0;
	width: 58px;
	height: 58px;
	line-height: 42px;
	text-align: center;
	border-radius: 50%;
	font-size: 24px;
	color: var(--green);
	border: 8px solid var(--lightgreen);
	background: var(--white);
}

section.module-slideshow > .container-arrow .btn:hover
{
	color: var(--white);
	background: var(--green);
}

section.module-slideshow > .container-arrow .btn ~ .btn
{
	left: auto;
	right: -25px;
}

/* MODULE: CONTENT */
section.module-content
{
	padding: 75px 0;
}

section.module-content.-with-image
{
	padding-bottom: 125px;
}

section.module-content .section-title
{
	font-size: 42px;
	line-height: 50px;
	margin-bottom: 25px;
	font-weight: 800;
	color: var(--black);
}

section.module-content .col-content
{
	font-size: 15px;
	line-height: 24px;
	padding-left: 80px;
}

section.module-content .col-content .btn
{
	margin-top: 30px;
}

/* MODULE: FAVORITE + FAVORITE CATEGORY + RELATED */
section.module-favorite,
section.module-related
{
	position: relative;
	overflow: hidden;
	padding: 50px 0 75px;
	color: var(--black);
	background: var(--lightgreen);
}

@media (min-width: 1200px)
{
	section.module-favorite.-effect-left
	{
		padding: 0;
		background: var(--white);
	}	
}

section.module-favorite .section-title
{
	color: var(--black);
	font-size: 36px;
	line-height: 50px;
	font-weight: 800;
}

section.module-favorite.module-favorite-category
{
	background-color: var(--white);
}

section.module-favorite .section-text
{
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 26px;
}

section.module-favorite-category .section-text
{
	margin-bottom: 50px;
}

section.module-favorite .slick-favorite-category,
section.module-favorite .slick-favorite
{
	position: relative;
	overflow: hidden;
	width: calc(100vw - (100vw - 1330px) / 2);
}

section.module-favorite .slick-list
{
	margin-left: -15px;
}

section.module-favorite-category .slick-slide
{
	padding-bottom: 25px;
}

@media (min-width: 1200px)
{
	section.module-favorite.-effect-left > .container
	{
		padding-top: 50px;
		padding-bottom: 75px;
		padding-left: 65px;
	}
}

section.module-related
{
	color: var(--dark);
	background: var(--white);
}

section.module-related .section-title
{
	margin-bottom: 30px;
}

section.module-related .section-text
{
	margin-top: -15px;
	margin-bottom: 30px;
}

section.module-related .slick-related .slick-list
{
    margin: 0 -15px;
}

section.module-related .slick-related .slick-slide
{
    margin: 0 15px;
}

/* MODULE: BENEFIT */
section.module-benefit
{
	position: relative;
	padding: 0 0 30px;
	margin: 0;
	background: var(--lightgreen);
}

section.module-benefit::before
{
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background: var(--white);
	z-index: 9;
}

section.module-benefit .container
{
	position: relative;
	z-index: 10;
}

/* MODULE: BREADCRUMB */
section.module-breadcrumb
{
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

@media (min-width: 1200px)
{
	section.module-breadcrumb:not(.-effect-left)
	{
		background: var(--lightgreen);
	}

	section.module-breadcrumb.-effect-left > .container
	{
		padding-left: 45px;
	}
}

section.module-breadcrumb ul
{
	padding: 20px 0 17px;
	border-bottom: 1px solid var(--medgreen);
}

section.module-breadcrumb ul > li
{
	position: relative;
	color: var(--dark);
}

section.module-breadcrumb ul > li:not(:last-child)
{
	margin-right: 30px;
}

section.module-breadcrumb ul > li + li::before
{
	position: absolute;
	display: block;
	content: "\f178";
	left: -30px;
	top: 0;
	width: 30px;
	font-family: "Font Awesome 5 Pro";
	font-size: 12px;
	line-height: 17px;
	font-weight: 300;
	text-align: center;
	color: var(--darktext);
}

section.module-breadcrumb ul > li:last-of-type
{
	color: var(--darktext);
}

section.module-breadcrumb ul > li > *
{
	display: block;
	color: inherit;
	font-size: 12px;
	line-height: 17px;
	font-weight: 400;
}

section.module-breadcrumb ul > li > a:not(:hover)
{
	text-decoration: underline;
}

section.module-breadcrumb ul > li > a > i
{
	font-size: 16px;
}

/* MODULE: CATEGORY */
section.module-category
{
	position: relative;
	overflow: hidden;
	margin: 0 0 38px;
	padding-bottom: 12px;
}

section.module-category:not(.-effect-left)
{
	padding: 35px 0 25px;
	background: var(--lightgreen);
}

section.module-category.-effect-left > .container
{
	padding-top: 28px;
	padding-bottom: 10px;
}

@media (min-width: 1200px)
{
	section.module-category.-effect-left > .container
	{
		padding-left: 45px;
	}
}

section.module-category .section-title:not(:last-child)
{
	margin-bottom: 0;
}

section.module-category .section-text
{
	margin-top: 17px;
}

section.module-category .section-title:last-child
{
	margin-bottom: 18px;
}

section.module-category .slick-cats
{
	margin-top: 27px;
	padding-bottom: 11px;
}

@media (min-width: 1200px)
{
	section.module-category .slick-cats
	{
		margin-right: -30px;
	}
}

section.module-category .slick-cats .slick-list
{
    margin: 0 -15px;
}

section.module-category .slick-cats .slick-slide
{
    margin: 0 15px;
}

section.module-category .slick-cats-arrows
{
	display: flex;
	position: absolute;
	left: 50%;
	bottom: -12px;
	padding: 8px;
	margin-left: 0;
	transform: translateX(-50%);
	border-radius: 999px;
	background: var(--lightgreen);
	z-index: 10;
}

section.module-category .slick-cats-arrows .slick-arrow
{
	display: block;
    width: 24px;
	height: 24px;
	padding: 0;
	line-height: 23px;
	text-align: center;
	font-size: 12px;
	color: var(--green);
	border-radius: 50%;
	background: var(--white);
}

section.module-category .slick-cats-arrows .slick-arrow ~ .slick-arrow
{
	margin-left: 8px;
}

/* MODULE: LISTING */
section.module-listing
{
	margin: 0 0 75px;
}

section.module-listing .list-sorting
{
	margin: 0 0 30px;
	border-bottom: 1px solid var(--medgreen);
}

section.module-listing .list-sorting > li + li
{
	margin-left: 5px;
}

section.module-listing .list-sorting > li > a
{
	display: block;
	position: relative;
	margin: 0;
	padding: 15px 35px;
	border: 1px solid var(--medgreen);
	border-bottom: 0;
	font-size: 14px;
	line-height: 20px;
	color: var(--dark);
	font-weight: 600;
	background: var(--lightgreen);
}

section.module-listing .list-sorting > li > a:hover
{
	text-decoration: underline;
}

section.module-listing .list-sorting > li > a.active
{
	padding-bottom: 16px;
	margin-bottom: -1px;
	background-color: var(--white);
}

/* MODULE: PRODUCT DESCRIPTION */
section.module-product-description
{
	margin: 50px 0 200px;
}

section.module-related + section.module-product-description
{
	margin-top: 0;
}

/* MODULE: PRODUCT DETAIL */
section.module-product-detail
{
	position: relative;
	overflow: hidden;
	padding: 50px 0;
	background: var(--lightgreen);
}

@media (min-width: 1200px)
{
	section.module-product-detail.-effect-left
	{
		padding: 0;
		background: var(--white);
	}
	
	section.module-product-detail.-effect-left > .container
	{
		padding-left: 45px;
		padding-top: 55px;
		padding-bottom: 50px;
	}
}

section.module-product-detail .section-title
{
	margin: 13px 0 20px;
	font-size: 24px;
	line-height: 33px;
	font-weight: 800;
}

/* MODULE: CONTACT */
section.module-contact
{
	margin: 45px 0;
}

@media (min-width: 1290px)
{
	section.module-contact .container > .row
	{
		margin-left: -30px;
		margin-right: -30px;
	}
	
	section.module-contact .container > .row  > div
	{
		padding-left: 30px;
		padding-right: 30px;
	}
}

/* MODULE: MAP */
section.module-map
{
	margin: 75px 0;
}

section.module-map iframe
{
	border: 0;
	width: 100%;
	height: 400px;
}

/*
** RESPONSIVE
*/

@media (min-width: 1200px) and (max-width: 1289px)
{
	header #menu .list-menu > li:last-child
	{
		display: none;
	}
	
	.item-contact hr
	{
		margin: 22px 0 27px;
	}
}

@media (max-width: 1199px)
{
	.slick-favorite .slick-slide .item-product
	{
		margin-left: 10px;
		margin-right: 10px;
	}

	header .top
	{
		padding: 14px 0;
		font-size: 12px;
		line-height: 16px;
	}

	header .top .list-contact > li > a > i
	{
		margin-right: 8px;
	}

	header #menu
	{
		display: none;
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		background: var(--lightgreen);
	}

	header #menu .list-menu
	{
		display: block;
	}

	header #menu .list-menu > li
	{
		display: block;
		margin: 0 !important;
	}

	header #menu .list-menu > li + li
	{
		border-top: 1px solid var(--medgreen);
	}

	header #menu .list-menu > li > a
	{
		display: block;
		padding: 12px 20px;
		text-align: center;
		width: auto;
	}

	header .head
	{
		height: 90px;
	}

	header .head #logo > img
	{
		width: 180px;
	}

	header .head ul.actions > li > a,
	header .head ul.actions > li.cart > a,
	header .head ul.actions > li > .btn
	{
		width: 60px;
		height: 90px;
		line-height: 90px;
		color: var(--medgreen);
		background: var(--white);
	}

	header .head ul.actions > li.cart > a
	{
		padding-right: 2px;
	}

	header .head ul.actions > li.cart > a:hover
	{
		color: var(--green);
	}

	header .head ul.actions > li > .btn
	{
		padding-left: 2px;
		color: var(--white);
		border-right: 1px solid var(--green);
		background: var(--green) !important;
	}

	body.menuToggled header .head ul.actions > li > .btn
	{
		color: var(--green);
		border-right: 1px solid var(--medgreen);
		background: var(--lightgreen) !important;
	}

	body.menuToggled header .head ul.actions > li > .btn > i::before
	{
		content: "\f00d";
	}

	header .head ul.actions > li > .btn:hover
	{
		background-color: var(--greendark) !important;
	}

	header .head ul.actions > li.cart > a > i
	{
		font-size: 24px;
	}

	header .head ul.actions > li.cart > a > span > .quantity
	{
		top: 31px;
		right: 12px;
		padding: 0;
		width: 11px;
		height: 11px;
		line-height: 11px;
		font-size: 7px;
		border: 0;
	}

	header #search .form-control
	{
		height: 50px;
		line-height: 50px;
	}

	header #search .btn-search
	{
		width: 50px;
		height: 50px;
		line-height: 50px;
	}

	footer .copy
	{
		padding: 15px 0;
	}

	footer .footer-contact > a
	{
		padding-left: 45px;
	}

	footer .footer-contact > a > i
	{
		font-size: 30px;
		margin-top: 2px;
	}

	footer .footer-certificate img
	{
		width: 50px;
	}

	aside
	{
		width: 230px;
	}

	.item-arrows > .btn
	{
		height: 45px;
		line-height: 45px;
		font-size: 35px;
	}

	.item-arrows > .btn ~ .btn
	{
		margin-left: 25px;
	}

	.item-slideshow
	{
		width: 650px;
		height: 400px;
	}

	.item-slideshow .-title
	{
		padding: 15px 20px;
		font-size: 26px;
		line-height: 34px;
	}

	.item-favcategory
	{
		width: 350px;
		margin-left: 10px;
		margin-right: 10px;
	}

	.item-favcategory > .-image
	{
		height: 260px;
	}

	.item-favcategory > .-image > span
	{
		font-size: 20px;
		line-height: 28px;
	}

	.item-favcategory .list-subcategory
	{
		padding-top: 20px;
	}

	.item-image-effect
	{
		padding-right: 30px;
	}

	.item-image-effect::before
	{
		bottom: -30px;
		left: 30px;
		width: calc(100% - 30px);
		height: 265px;
	}

	.item-benefit
	{
		font-size: 16px;
		line-height: 21px;
	}

	.item-benefit p > i
	{
		margin-bottom: 20px;
	}
	
	.item-contact hr
	{
		margin: 15px 0 25px;
	}

	.item-product-detail .-image + .row
	{
		margin-left: -7.5px;
		margin-right: -7.5px;
	}

	.item-product-detail .-image + .row > div
	{
		padding-left: 7.5px;
		padding-right: 7.5px;
	}

	.item-product-detail .slick-image
	{
		height: 90px;
	}

	.item-product-detail .slick-image .slick-slide
	{
		padding: 0 7.5px;
	}
	
	.item-product-detail .slick-image .slick-slide > a
	{
		height: 65px;
	}

	.item-product-detail .slick-image .slick-slide > a > i
	{
		font-size: 40px;
	}

	.item-subcategory > a
	{
		padding: 12px 15px;
		padding-left: 70px;
		min-height: 65px;
	}

	.item-subcategory > a > img
	{
		left: 10px;
		width: 50px;
		margin-top: -17px;
	}

	.item-product
	{
		margin-top: 20px;
		height: calc(100% - 20px);
	}

	.item-product .-top
	{
		padding: 20px 15px 10px;
	}

	.item-product .-bottom
	{
		padding: 12px 15px;
	}

	.item-product .-labels
	{
		top: -10px;
		right: -5px;
	}

	.item-product .-title
	{
		font-size: 14px;
		line-height: 20px;
	}

	.item-product .-model
	{
		margin: 10px 0 5px;
		font-size: 11px;
		line-height: 16px;
	}

	.item-product .-stock
	{
		font-size: 12px;
		line-height: 18px;
	}

	.item-product .-price
	{
		padding-left: 10px;
		font-size: 16px;
		line-height: 22px;
	}

	.item-product .-price > .--tax
	{
		font-size: 11px;
		line-height: 16px;
	}

	section .section-title,
	section .section-subtitle,
	section.module-favorite .section-title,
	section.module-content .section-title
	{
		margin: 0 0 15px;
		font-size: 32px;
		line-height: 45px;
	}

	section .section-subtitle
	{
		margin-bottom: 15px;
		font-size: 24px;
		line-height: 33px;
	}

	section .section-text,
	section.module-favorite .section-text,
	section.module-favorite-category .section-text
	{
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 30px;
	}

	section.module-slideshow .slick-slideshow
	{
		height: 440px;
	}

	section.module-favorite,
	section.module-related
	{
		padding: 40px 0 50px;
	}

	section.module-related .slick-related .slick-slide
	{
		margin: 0 10px;
	}

	section.module-content,
	section.module-content.-with-image
	{
		padding: 40px 0;
	}

	section.module-content .col-content
	{
		padding-left: 50px;
		font-size: 14px;
		line-height: 24px;
	}

	section.module-breadcrumb.-effect-left,
	section.module-category.-effect-left
	{
		background: var(--lightgreen);
	}

	section.module-category
	{
		margin-bottom: 28px;
		padding-bottom: 12px;
	}

	section.module-category::before
	{
		position: absolute;
		display: block;
		content: "";
		bottom: 0;
		left: 0;
		width: 100%;
		height: 12px;
		background: var(--white);
		z-index: 9;
	}

	section.module-category .slick-cats-arrows
	{
		bottom: 0;
	}

	section.module-contact
	{
		margin: 40px 0;
	}

	section.module-map
	{
		margin: 50px 0 40px;
	}

	section.module-product-description
	{
		margin: 40px 0;
	}

	section.module-product-detail
	{
		padding: 40px 0 30px;
	}

	section.module-listing
	{
		margin-bottom: 40px;
	}

	section.module-listing .list-sorting
	{
		margin-bottom: 20px;
	}

	section.module-listing .row.row-product
	{
		margin-top: -20px;
		margin-left: -10px;
		margin-right: -10px;
	}

	section.module-listing .row.row-product > div
	{
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media (min-width: 992px)
{
	.btn-md-inline
	{
		display: inline-block;
		width: auto;
	}
}

@media (max-width: 991px)
{
	[data-text-content] ul
	{
		margin: 20px 0;
		padding-left: 30px;
	}

	[data-text-content] p + p
	{
		margin-top: 20px;
	}

	[data-text-content] p + [class*="section-title"],
	[data-text-content] p + [class*="section-subtitle"]
	{
		margin-top: 30px;
	}

	.slick-slide > .item-product
	{
		width: 320px;
	}

	footer .top
	{
		padding: 15px 0;
	}

	footer .bottom
	{
		padding: 0 0 40px;
	}

	footer .column
	{
		margin-top: 40px;
	}

	footer .footer-certificate
	{
		margin-top: 15px;
		padding-top: 15px;
		border-top: 1px solid var(--modaltitle);
	}

	aside
	{
		width: 100%;
	}

	.aside-filter
	{
		border-radius: 3px;
		background: var(--white);
		border: 1px solid var(--medgreen);
	}

	.aside-filter .mfilter-heading
	{
		background: var(--white);
	}

	.aside-filter .mfilter-heading .mfilter-heading-content
	{
		padding: 12px 0;
		padding-right: 32px;
	}

	.aside-filter .mfilter-heading-content > i
	{
		top: 15px;
	}

	.aside-filter .mfilter-heading .mfilter-heading-text,
	.aside-filter .mfilter-heading .mfilter-heading-text > span
	{
		font-size: 14px;
		line-height: 18px;
		font-weight: 700;
	}

	.aside-filter .mfilter-content > ul
	{
		display: none;
		padding: 0 20px 5px;
	}

	.aside-filter .mfilter-content > ul > li:last-child
	{
		border-bottom: 0;
	}

	.aside-filter .mfilter-options label.mfilter-tb-as-td
	{
		padding: 8px 0;
		padding-left: 7px;
		font-size: 12px;
		line-height: 16px;
	}

	.aside-filter .mfilter-options label.mfilter-tb-as-td::before
	{
		top: 5px;
	}

	.aside-filter .mfilter-opts-container .mfilter-options
	{
		padding: 0 0 10px !important;
	}

	.item-arrows > .btn
	{
		height: 35px;
		line-height: 35px;
		font-size: 30px;
	}

	.item-arrows > .btn ~ .btn
	{
		margin-left: 20px;
	}

	.item-favcategory > .-image > span
	{
		padding: 0 20px;
		bottom: 15px;
		font-size: 18px;
		line-height: 26px;
	}

	.item-favcategory .list-subcategory
	{
		padding: 15px 20px 40px;
	}

	.item-favcategory .list-subcategory > li + li
	{
		margin-top: 5px;
	}

	.item-favcategory .list-subcategory > li > a
	{
		font-size: 14px;
	}

	.item-image-effect
	{
		padding: 0;
	}

	.item-image-effect::before
	{
		display: none;
	}

	.item-image-effect > img
	{
		border-radius: 5px;
	}

	.item-benefit
	{
		margin-left: -15px;
		margin-right: -15px;
	}

	.item-contact img
	{
		margin-bottom: 30px;
		max-height: 320px;
	}

	.item-product-detail #product
	{
		padding-top: 35px;
	}

	.item-product-detail .-image > a > img
	{
		display: block;
		margin: 0 auto;
		max-height: 350px;
	}

	.item-subcategory
	{
		width: 260px;
	}

	section .section-title,
	section .section-subtitle,
	section.module-favorite .section-title,
	section.module-content .section-title
	{
		font-size: 28px;
		line-height: 38px;
	}

	section .section-title br,
	section .section-subtitle br,
	section.module-favorite .section-title br,
	section.module-content .section-title br
	{
		display: none;
	}

	section .section-subtitle
	{
		font-size: 24px;
		line-height: 33px;
	}

	section.module-favorite,
	section.module-related
	{
		padding: 30px 0 40px;
	}

	section.module-favorite-category .section-text
	{
		margin-bottom: 30px;
	}

	section.module-content .col-content
	{
		padding-top: 30px;
		padding-left: 0;
	}

	section.module-benefit .slick-dotted
	{
		padding-bottom: 32px;
	}

	section.module-category
	{
		margin-bottom: 30px;
	}

	section.module-category > .container
	{
		position: relative;
	}

	section.module-category .slick-cats
	{
		position: relative;
		overflow: hidden;
		width: calc(100vw - (100vw - 1330px) / 2);
		margin-top: 20px;
	}

	section.module-category .section-text + .slick-cats
	{
		margin-top: -10px;
	}

	section.module-category .slick-cats .slick-list
	{
		margin: 0;
	}

	section.module-category .slick-cats-arrows
	{
		left: 6px;
		transform: none;
		bottom: -12px;
	}

	section.module-contact
	{
		margin: 30px 0;
	}

	section.module-map
	{
		margin: 40px 0 30px;
	}

	section.module-product-detail
	{
		padding: 30px 0;
	}

	section.module-product-description
	{
		margin: 30px 0;
	}

	section.module-product-description [data-text-content] + [data-text-content]
	{
		margin-top: 35px;
	}

	section.module-related .slick-related
	{
		position: relative;
		overflow: hidden;
		width: calc(100vw - (100vw - 1330px) / 2);
	}

	section.module-related .slick-related .slick-list
	{
		margin: 0;
	}

	section.module-listing
	{
		margin-bottom: 30px;
	}
}

@media (max-width: 767px)
{
	[data-text-content] .row.row-content-with-image img
	{
		margin-bottom: 20px;
	}

	[data-text-content] .row.row-content-with-image + .row.row-content-with-image
	{
		margin-top: 30px;
	}

	.alert
	{
		padding: 8px 12px;
		font-size: 12px;
		line-height: 18px;
	}

	header .head
	{
		height: 80px;
	}

	header .head #logo > img
	{
		width: 160px;
	}

	header .head ul.actions > li > a,
	header .head ul.actions > li.cart > a,
	header .head ul.actions > li > .btn
	{
		width: 50px;
		height: 80px;
		line-height: 80px;
	}

	header .head ul.actions > li.cart > a > span > .quantity
	{
		top: 27px;
		right: 9px;
	}

	header #search
	{
		padding: 15px 0;
	}

	header #search .form-control
	{
		height: 40px;
		line-height: 40px;
	}

	header #search .btn-search
	{
		height: 40px;
		line-height: 40px;
		font-size: 16px;
	}

	footer .bottom
	{
		padding: 0 0 30px;
	}

	footer .column
	{
		margin-top: 30px;
	}
	
	footer .footer-title
	{
		margin: 0 0 25px;
	}

	footer .copy .text-author
	{
		display: block;
		margin-top: 6px;
		color: var(--green);
	}

	.item-slideshow
	{
		width: 540px;
		height: 320px;
	}

	.item-slideshow .-title
	{
		left: 20px;
		bottom: 20px;
		padding: 10px 15px;
		font-size: 22px;
		line-height: 28px;
		max-width: 320px;
	}

	.item-favcategory,
	.slick-favorite .slick-slide .item-product
	{
		width: 320px;
		margin-left: 10px;
		margin-right: 10px;
	}

	.item-favcategory > .-image
	{
		height: 220px;
	}

	.item-favcategory .list-subcategory > li > a
	{
		font-size: 13px;
	}

	.item-contact .-title.--second
	{
		margin-top: 20px;
	}

	.item-contact hr
	{
		margin-bottom: 5px;
	}

	.item-contact .-contact
	{
		margin-top: 20px;
		padding-left: 0;
		font-size: 12px;
		line-height: 16px;
	}

	.item-contact .-contact > i,
	.item-contact .-contact > span
	{
		position: relative;
		display: inline-block;
	}
	
	.item-contact .-contact > i
	{
		font-size: 14px;
		margin-right: 4px;
		top: 1px;
	}

	.item-contact .-contact > strong
	{
		margin: 5px 0 0;
		font-size: 15px;
	}

	.item-product-detail .-addtocart
	{
		margin-top: 20px;
	}
	
	.item-subcategory
	{
		width: 230px;
	}

	.item-pagination .list-pagination > li > *
	{
		font-size: 14px;
		width: 35px;
		height: 35px;
		line-height: 33px;
	}

	.item-pagination .list-pagination > li.-txt
	{
		margin-bottom: -7px;
		padding-top: 10px;
		font-size: 18px;
	}

	/*.item-pagination .list-pagination > li.-btn + li,
	.item-pagination .list-pagination > li.-btn + li + li.-txt
	{
		display: none;
	}*/

	section .section-subtitle
	{
		font-size: 22px;
		line-height: 28px;
	}

	section.module-slideshow
	{
		padding: 20px 0;
	}

	section.module-slideshow .slick-slideshow
	{
		height: 345px;
	}

	section.module-favorite, section.module-related
	{
		padding-bottom: 30px;
	}

	section.module-content,
	section.module-content.-with-image
	{
		padding: 30px 0;
	}

	section.module-content .col-content .btn
	{
		margin-top: 20px;
	}

	section.module-benefit
	{
		margin-top: -25px;
		padding-bottom: 20px;
	}

	section.module-benefit .slick-dotted
	{
		padding-bottom: 22px;
	}

	section.module-breadcrumb ul
	{
		padding: 15px 0 13px;
	}

	section.module-category.-effect-left > .container
	{
		padding-top: 20px;
		padding-bottom: 2px;
	}

	section.module-category .slick-cats
	{
		padding-bottom: 21px;
	}

	section.module-listing .list-sorting > li > a
	{
		padding: 12px 25px;
	}

	section.module-listing .list-sorting > li > a.active
	{
		padding-bottom: 13px;
	}
}

@media (max-width: 575px)
{
	.slick-slide > .item-product
	{
		width: 270px;
	}

	[data-text-content] u
	{
		padding-left: 20px;
	}

	header > .container,
	header .head > .row,
	header .head > .row > div
	{
		margin: 0;
		padding: 0;
	}

	header .head #logo
	{
		display: block;
		margin-left: 20px;
	}

	header .head #logo > img
	{
		width: 140px;
		max-width: calc(100% - 20px);
	}

	footer .footer-contact > a
	{
		padding: 0;
		font-size: 14px;
		line-height: 20px;
	}
	
	footer .footer-contact > a > .-title,
	footer .footer-contact > a > i
	{
		display: inline;
	}

	footer .footer-contact > a > i
	{
		position: static;
		margin-right: 4px;
		font-size: 14px;
		margin-top: 2px;
	}

	footer .footer-contact > a > .-title
	{
		font-size: 11px;
		line-height: 20px;
	}

	footer .footer-contact > a > .-title + span
	{
		display: block;
		margin-top: 2px;
	}
	
	.item-slideshow
	{
		width: 100vw;
		height: 240px;
	}

	.item-slideshow .-title
	{
		font-size: 14px;
		line-height: 20px;
		max-width: 210px;
	}

	.item-favcategory,
	.slick-favorite .slick-slide .item-product
	{
		width: 270px;
	}

	.item-favcategory > .-image
	{
		height: 200px;
	}

	.item-benefit
	{
		font-size: 14px;
		line-height: 18px;
	}

	.item-benefit p > i
	{
		width: 80px;
		height: 80px;
		line-height: 80px;
		font-size: 32px;
		margin: 0 auto 15px;
	}

	.item-contact .-title.--second + .row > div + div
	{
		margin-top: 20px;
	}

	.item-product-detail #button-cart
	{
		display: block;
		width: 100%;
		height: 50px;
		font-size: 16px;
		line-height: 50px;
		padding-left: 75px;
		padding-right: 0;
		text-align: left;
	}

	.item-product-detail #button-cart > i
	{
		width: 55px;
		line-height: 50px;
		font-size: 22px;
	}

	.item-quantity-picker
	{
		width: 130px;
		height: 50px;
		margin-right: -10px;
	}

	.item-quantity-picker .btn
	{
		width: 40px;
		line-height: 48px;
		font-size: 16px;
	}

	.item-quantity-picker .form-control
	{
		height: 48px;
		line-height: 48px;
	}

	.item-pagination .list-pagination > li:not(.-btn):not(.active)
	{
		display: none;
	}

	section .section-subtitle
	{
		font-size: 20px;
		line-height: 26px;
	}

	section.module-slideshow .slick-slideshow
	{
		height: 265px;
	}

	section.module-listing .list-sorting > li + li
	{
		margin-left: 3px;
	}

	section.module-listing .list-sorting > li > a
	{
		padding: 10px 12px;
		font-size: 13px;
		line-height: 18px;
	}

	section.module-listing .list-sorting > li > a.active
	{
		padding-bottom: 11px;
	}
}