/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

# Base
- Base
- Reset
- Variables
# Components
- Breadcrumb
- Button
- Component
- Menu Mobile
- Pagination
# General
- General
# Layout
- Footer
- Forms
- Header
- Sidebar
# Mixin
- Common
+ Breakpoint
+ Prefix
+ Truncate
- Mixin  
# Pages
- Home
+ Home
+ ...
+ ...    

--------------------------------------------------------------*/

/* Mixin
--------------------------------------------- */

/* Breakpoint
--------------------------------------------- */

/* Truncate
--------------------------------------------- */

/* Prefix
--------------------------------------------- */

/* SCSS */

/* CSS */

/* Base
--------------------------------------------- */

/* Variables
--------------------------------------------- */

/** =============== Font ================= **/

@font-face {
	font-family: Proxima-Nova;
	src: url(../fonts/svn-proxima-nova-semibold.ttf);
	font-weight: 600;
}

@font-face {
	font-family: Proxima-Nova;
	src: url(../fonts/svn-proxima-nova-regular.ttf);
	font-weight: 400;
}

@font-face {
	font-family: Proxima-Nova;
	src: url(../fonts/svn-proxima-nova-bold.ttf);
	font-weight: 700;
}

/** =============== Color ================= **/

:root {
	--lightgrey: #949494;
}

/* Reset
--------------------------------------------- */

/** Reset CSS **/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	line-height: 1.5;
	font-size: 1.6rem;
	font-family: Proxima-Nova;
	font-weight: 400;
	color: #000;
	overflow-y: scroll;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	vertical-align: middle;
	max-width: 100%;
}

button {
	cursor: pointer;
	outline: none;
}

a {
	text-decoration: none;
	color: currentColor;
}

a:hover {
	text-decoration: none;
}

input:focus {
	box-shadow: none;
}

select {
	cursor: pointer;
}

::selection {
	background: #faff70;
	color: #000;
	text-shadow: none;
}

@media only screen and (min-width: 1280px) {
	.container {
		max-width: 1230px;
	}
}

@media only screen and (min-width: 1500px) {
	.container--big {
		max-width: 1430px;
	}
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */

input[type="number"] {
	-moz-appearance: textfield;
}

@media only screen and (min-width: 1200px) {
	.container-fluid {
		padding-left: 50px;
		padding-right: 50px;
	}
}

/* General
--------------------------------------------- */

/** GENERAL **/

.modal {
	z-index: 6666;
}

.page-load-status {
	display: none;
	/* hidden by default */
	padding-top: 20px;
	border-top: 1px solid #ddd;
	text-align: center;
	color: #777;
}

/** Fixed menu in right **/

.menu-fixed {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	border-right: 4px solid #000;
	padding: 10px 15px 10px 0;
	display: block;
}

.menu-fixed ul {
	list-style: none;
	padding-left: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.menu-fixed ul li {
	margin: 10px 0;
}

.menu-fixed ul li a {
	font-size: 14px;
	color: #717171;
}

.menu-fixed ul li a span {
	opacity: 0;
	transform: translateX(10px);
	transition: 0.3s;
	display: inline-block;
	margin-right: 10px;
}

.menu-fixed ul li a:hover span {
	transform: translateX(0);
	opacity: 1;
}

.page-content {
	margin-top: 135px;
}

@media only screen and (max-width: 1199px) {
	.page-content {
		margin-top: 0;
	}
}

.section__title {
	font-size: 25px;
}

.sticky-top-150 {
	position: sticky;
	top: 150px;
	z-index: 1020;
}

/** Archive Search **/

.archive__search {
	font-size: 14px;
	margin: 30px 0 10px 0;
}

.archive__search label {
	margin-right: 10px;
	display: flex;
	align-items: center;
}

.archive__search label input {
	background: url(../images/ratio_empty.gif) no-repeat;
	-webkit-appearance: none;
	width: 14px;
	height: 14px;
	margin-right: 4px;
}

.archive__search label input:checked {
	background: url(../images/ratio_check.gif) no-repeat;
}

.archive__search input[type="text"] {
	height: 21px;
	outline: none;
	margin-right: 5px;
	padding: 2px 0 0 2px;
	line-height: 17px;
	border: 1px solid #dcdcdc;
}

@media only screen and (max-width: 424px) {
	.archive__search input[type="text"] {
		margin-top: 10px;
	}
}

.archive__search button {
	border: none;
	outline: none;
	height: 21px;
	background-color: #cacaca;
	line-height: 16px;
}

@media only screen and (max-width: 424px) {
	.archive__search button {
		margin-top: 10px;
	}
}

.archive__search button svg path {
	fill: #fff;
}

/** Post navigation **/

.post__navigation {
	padding: 6px 14px;
	border-top: 1px solid #ededed;
	border-bottom: 1px solid #ededed;
}

.post__navigation ul {
	list-style: none;
}

.post__navigation ul li a {
	font-size: 14px;
	color: #000;
}

.post__navigation ul li a:hover {
	color: #9d9d9d;
}

.post__navigation ul li a span {
	font-size: 11px;
	color: #9d9d9d;
	margin-right: 3px;
	display: inline-block;
}

.post__navigation ul li a .post__navigation-prev:before {
	margin-right: 5px;
	content: url("data:image/svg+xml,%3Csvg width='9' height='8' viewBox='0 0 12 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.742541 8.68824C0.173682 9.68881 0.639698 10.5 1.78259 10.5L10.2166 10.5C11.3606 10.5 11.826 9.68881 11.2577 8.68824L7.03007 1.25068C6.46101 0.249774 5.53904 0.249774 4.97012 1.25068L0.742541 8.68824Z' fill='%23C3C3C3'/%3E%3C/svg%3E%0A");
}

.post__navigation ul li a .post__navigation-next:before {
	margin-right: 5px;
	content: url("data:image/svg+xml,%3Csvg width='9' height='8' viewBox='0 0 12 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.2575 2.31176C11.8263 1.31119 11.3603 0.5 10.2174 0.5L1.78341 0.5C0.639381 0.5 0.173968 1.31119 0.742291 2.31176L4.96993 9.74932C5.53899 10.7502 6.46096 10.7502 7.02988 9.74932L11.2575 2.31176Z' fill='%23C3C3C3'/%3E%3C/svg%3E%0A");
}

/** Scroll mobile **/

.scroll-mobile {
	position: fixed;
	bottom: 45px;
	right: 5px;
	padding: 3px 0 0;
	z-index: 4;
}

.scroll-mobile__item {
	width: 30px;
	height: 30px;
	border: 0px;
	padding-top: 0px;
	border-radius: 15px;
	display: block;
	background-color: #c5ad97;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 5px 0;
}

.scroll-mobile__item svg path {
	stroke: #fff;
}

/** Image **/

.img-block {
	position: relative;
}

.img-block img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/** Image 1/1 **/

.img-1-1 {
	padding-bottom: 100%;
}

/** Image 4/3 **/

.img-4-3 {
	padding-bottom: 75%;
}

/** Image 3/2 **/

.img-3-2 {
	padding-bottom: 66.67%;
}

/** Image 16/9 **/

.img-16-9 {
	padding-bottom: 56.25%;
}

/** Font **/

.font-bold {
	font-weight: 700;
}

.font-semibold {
	font-weight: 600;
}

.font-medium {
	font-weight: 500;
}

/** Text **/

.text-primary {
	color: var(--primary-color) !important;
}

.text-hover-primary {
	color: var(--primary-color);
}

.text-hover-primary a {
	color: var(--primary-color);
}

/** Grid **/

.no-gutter {
	margin-left: 0;
	margin-right: 0;
}

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

.gutter-20 {
	margin-left: -10px;
	margin-right: -10px;
}

.gutter-20 > [class*="col-"] {
	padding-left: 10px;
	padding-right: 10px;
}

.gutter-5 {
	margin-left: -2.5px;
	margin-right: -2.5px;
}

.gutter-5 > [class*="col-"] {
	padding-left: 2.5px;
	padding-right: 2.5px;
}

.col-lg-20p {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}

@media only screen and (min-width: 1024px) {
	.col-lg-20p {
		max-width: 20%;
		flex-basis: 20%;
	}
}

/** Background **/

.bg-center {
	background-position: center;
}

.bg-no-repeat {
	background-repeat: no-repeat;
}

.bg-cover {
	background-size: cover;
}

.bg-primary {
	background-color: var(--primary-color) !important;
}

/** Flickity fade **/

.flickity-enabled.is-fade .flickity-slider > * {
	pointer-events: none;
	z-index: 0;
}

.flickity-enabled.is-fade .flickity-slider > .is-selected {
	pointer-events: auto;
	z-index: 1;
}

/** Style for post **/

.responsive-table {
	width: 100%;
	overflow-x: auto;
}

.ws-sgct blockquote {
	padding: 10px 20px;
	margin: 0 0 20px;
	border-left: 5px solid #eb2b2d;
}

.ws-sgct blockquote p {
	margin: 0 !important;
}

.ws-sgct code {
	background: rgba(0, 0, 0, 0.05);
	border-radius: 3px;
	font-size: 0.85rem;
	color: #e83e8c;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
}

.ws-sgct p,
.ws-sgct table {
	margin: 0 0 10px;
	line-height: 1.5;
}

.ws-sgct table {
	border: 1px solid #ddd;
	margin-bottom: 30px;
}

.ws-sgct table > tbody > tr > td,
.ws-sgct table > tbody > tr > th,
.ws-sgct table > tfoot > tr > td,
.ws-sgct table > tfoot > tr > th,
.ws-sgct table > thead > tr > td,
.ws-sgct table > thead > tr > th {
	border: 1px solid #ddd;
	padding: 7px 10px;
}

.ws-sgct h6 {
	font-size: 18px;
}

@media only screen and (max-width: 767px) {
	.ws-sgct h6 {
		font-size: 17px;
	}
}

.ws-sgct h5 {
	font-size: 21px;
}

@media only screen and (max-width: 767px) {
	.ws-sgct h5 {
		font-size: 19px;
	}
}

.ws-sgct h4 {
	font-size: 24px;
}

@media only screen and (max-width: 767px) {
	.ws-sgct h4 {
		font-size: 20px;
	}
}

.ws-sgct h3 {
	font-size: 27px;
}

@media only screen and (max-width: 767px) {
	.ws-sgct h3 {
		font-size: 22px;
	}
}

.ws-sgct h2 {
	font-size: 30px;
}

@media only screen and (max-width: 767px) {
	.ws-sgct h2 {
		font-size: 25px;
	}
}

.ws-sgct ul,
.ws-sgct ol {
	margin: 0 0 20px;
	padding-left: 55px;
	list-style: disc;
}

.ws-sgct ul li,
.ws-sgct ol li {
	line-height: 1.5;
}

.ws-sgct ol {
	list-style: decimal;
}

.ws-sgct iframe {
	margin: auto;
	width: 100%;
}

.ws-sgct .syntaxhighlighter {
	padding: 10px 0;
}

.ws-sgct h2,
.ws-sgct h3,
.ws-sgct h4,
.ws-sgct h5,
.ws-sgct h6 {
	margin: 0 0 30px;
}

/* Components
--------------------------------------------- */

/* Button
--------------------------------------------- */

/** Button **/

.button-white {
	display: inline-block;
	color: #000;
	cursor: pointer;
	padding: 4px 28px;
	border: 1px solid #000;
	position: relative;
	font-size: 16px;
	text-align: center;
	background-color: #000;
	transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
		border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	z-index: 1;
	-webkit-tap-highlight-color: initial;
	overflow: hidden;
	right: 0;
}

.button-white:hover {
	color: #fff;
}

.button-white:before {
	position: absolute;
	content: "";
	display: block;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	transform: scale(1, 1);
	transform-origin: left center;
	z-index: -1;
	background: #fff;
	transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.button-white:hover:before {
	transform-origin: right center;
	transform: scale(0, 1);
}

.button-black {
	color: #fff;
	border: 1px solid transparent;
	background-color: transparent;
	border: 1px solid #000;
	margin-right: 5px;
}

.button-black:hover {
	color: #000;
}

.button-black:before {
	background: #000;
}

.button-blue {
	background: #7993b5;
	border: 2px solid #7993b5;
	color: #fff;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
}

.button-blue:hover {
	background-color: #fff;
	color: #7993b5;
}

.button-grey {
	background: #eaeaea;
	border: 2px solid #eaeaea;
	color: #656565;
	height: 50px;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.button-grey:hover {
	background-color: #fff;
	color: #656565;
}

/* Breadcrumb
--------------------------------------------- */

/** Breadcrumb **/

/* Menu mobile
--------------------------------------------- */

/** Menu Mobile **/

.menu-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 4444;
	transform: translateX(-100%);
	transition: 0.5s;
	overflow-y: scroll;
	font-family: Proxima-Nova;
	display: none;
}

.menu-mobile ul {
	list-style: none;
}

.menu-mobile-inner {
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	width: 85%;
	height: 100%;
	padding: 10px 10px 50px 10px;
}

.menu-mobile .menu-mobile-close {
	position: absolute;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}

.menu-mobile .menu-mobile-close svg {
	color: #fff;
}

.menu-mobile .menu-mobile-close svg path {
	fill: #fff;
	stroke: #fff;
}

.menu-mobile.menu-mobile-active {
	transform: translate(0);
}

.menu-mobile .menu-mobile__logo {
	max-width: 120px;
	margin: 0 auto;
}

.menu-mobile .menu-mobile__account {
	background-color: inherit;
	margin: 0 10px;
	border: 1px solid #dcdcdc;
	margin-top: 20px;
}

.menu-mobile .menu-mobile__account ul {
	display: flex;
	align-items: center;
}

.menu-mobile .menu-mobile__account ul li {
	max-width: 50%;
	flex-basis: 50%;
}

.menu-mobile .menu-mobile__account ul li:first-child {
	border-right: 1px solid #dcdcdc;
}

.menu-mobile .menu-mobile__account ul li a {
	text-align: center;
	display: block;
	padding: 9px 5px;
}

.menu-mobile .menu-mobile__list {
	margin-top: 20px;
}

.menu-mobile .menu-mobile__list ul {
	display: flex;
	align-items: center;
}

.menu-mobile .menu-mobile__list ul li {
	max-width: 33.33%;
	flex-basis: 33.33%;
}

.menu-mobile .menu-mobile__list ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.menu-mobile .menu-mobile__search {
	border: 0px;
	border-radius: 35px;
	background-color: #f3f3f3;
	padding-left: 10px;
	line-height: 36px;
	margin-top: 20px;
}

.menu-mobile .menu-mobile__search form {
	display: flex;
	align-items: center;
}

.menu-mobile .menu-mobile__search form input {
	flex: 1;
	border: none;
	background-color: transparent;
}

.menu-mobile .menu-mobile__search form button {
	background-color: transparent;
	border: none;
	outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
}

.menu-mobile .menu-mobile__main {
	margin-top: 20px;
}

.menu-mobile .menu-mobile__main ul {
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
}

.menu-mobile .menu-mobile__main ul li {
	max-width: 50%;
	flex-basis: 50%;
	text-transform: uppercase;
	position: relative;
}

@media only screen and (max-width: 374px) {
	.menu-mobile .menu-mobile__main ul li {
		max-width: 100%;
		flex-basis: 100%;
	}
}

.menu-mobile .menu-mobile__main ul li a {
	display: block;
	padding: 5px;
}

.menu-mobile .menu-mobile__main ul li ul {
	padding-left: 15px;
	display: none;
}

.menu-mobile .menu-mobile__main ul li ul li {
	text-transform: none !important;
	max-width: 100%;
	flex-basis: 100%;
	display: block;
}

.menu-mobile .menu-mobile__main ul li ul li a {
	color: #666666;
	display: block;
}

.menu-mobile
.menu-mobile__main
ul
li.current-menu-parent.menu-item-has-children
ul {
	display: block;
}

.menu-mobile .menu-mobile__main ul li .li-plus {
	width: 25px;
	height: 25px;
	position: absolute;
	top: 0;
	right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-mobile .menu-mobile__main ul li .li-plus:after {
	content: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	transition: 0.3s;
}

.menu-mobile .menu-mobile__main ul li .li-plus.clicked:after {
	transform: rotate(180deg);
}

.menu-mobile .menu-mobile__copyright {
	font-size: 14px;
	color: #666666;
}

.overlay {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3333;
	background: rgba(0, 0, 0, 0.5);
	-webkit-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}

.overlay.overlay-active {
	opacity: 1;
	visibility: visible;
}

.overlay.overlay-white {
	background-color: #ffffff66;
	opacity: 1;
	visibility: visible;
}

/* Pagination
--------------------------------------------- */

/** PAGINATION **/

.hazo-pagination {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.hazo-pagination ul {
	display: flex;
	list-style: none;
}

.hazo-pagination ul li {
	margin-right: 4px;
}

.hazo-pagination ul li a {
	padding: 4px 8px;
	font-size: 14px;
	border: 1px solid #b3b3b3;
	line-height: 1.25;
}

.hazo-pagination ul li a:hover {
	background: #eaeaea;
	color: #555;
}

.hazo-pagination ul li.active a {
	background: #eaeaea;
	color: #555;
	font-weight: 700;
}

/** Product Pagination **/

.products .hazo-pagination {
	display: flex;
	justify-content: flex-end;
}

/* Header
--------------------------------------------- */

/** Header **/

.header {
	top: 0;
	width: 100%;
	left: 0;
	font-size: 14px;
	z-index: 3333;
	transition: all 200ms ease;
	position: sticky;
	top: 0;
}

@media only screen and (max-width: 1199px) {
	.header {
		padding-bottom: 10px;
		font-family: Proxima-Nova;
	}
}

@media only screen and (min-width: 1200px) {
	.header {
		position: fixed;
	}
}

.header ul {
	list-style: none;
}

@media only screen and (min-width: 1500px) {
	.header .container {
		max-width: 1430px;
	}
}

.header-inner {
	padding: 25px 0;
}

@media only screen and (max-width: 1199px) {
	.header-inner {
		padding: 15px 0;
	}
}

.header__logo {
	max-width: 200px;
}

@media screen and (max-width: 767px) {
	.header__logo {
		max-width: 125px;
	}
}

.header__menu ul {
	display: flex;
	align-items: center;
}

.header__menu ul li {
	position: relative;
	margin: 0 22px;
}

.header__menu ul li a {
	color: #fff;
	position: relative;
	font-size: 16px;
}

.header__menu ul li a:before {
	content: "";
	display: inline-block;
	width: 1px;
	height: 1px;
	background: #fff;
	position: absolute;
	left: 50%;
	top: -3px;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.header__menu ul li:hover a:before {
	width: 100%;
	opacity: 1;
	left: 0;
	filter: alpha(opacity=100);
}

.header__menu ul li ul {
	position: absolute;
	background-color: #fff;
	top: calc(100% + 15px);
	flex-direction: column;
	left: -12px;
	padding: 15px;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s ease;
}

.header__menu ul li ul:before {
	content: "";
	position: absolute;
	top: -15px;
	width: 100%;
	height: 15px;
	display: block;
	left: 0;
}

.header__menu ul li ul li {
	width: 100%;
	margin: 0;
}

.header__menu ul li ul li a {
	white-space: pre;
	padding: 4px 4px 4px 0;
	display: inline-block;
	opacity: 1;
	filter: alpha(opacity=100);
	position: relative;
	color: #000;
}

.header__menu ul li ul li a:after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 1px;
	background: #000;
	position: absolute;
	left: 0;
	bottom: 1px;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.header__menu ul li ul li a:before {
	display: none;
}

.header__menu ul li ul li:hover a:after {
	width: 100%;
	opacity: 1;
	filter: alpha(opacity=100);
}

.header__menu ul li:hover ul {
	opacity: 1;
	visibility: visible;
}

.header__action {
	color: #fff;
}

@media only screen and (max-width: 1199px) {
	.header__action {
		color: #000;
	}
}

.header__action svg path {
	fill: currentColor;
}

.header__action-language {
	margin-left: 15px;
}

.header__action-language ul {
	display: flex;
	align-items: center;
}

.header__action-language ul li {
	margin-left: 5px;
}

.header__action-search {
	position: relative;
	cursor: pointer;
}

.header__action-search form {
	position: absolute;
	right: 20px;
	top: 0;
	font-size: 14px;
	display: flex;
	padding-bottom: 5px;
	border-bottom: 1px solid #000;
	opacity: 0;
	visibility: hidden;
}

.header__action-search form input {
	border: none;
	outline: none;
	flex: 1;
	height: 20px;
	background-color: transparent;
}

.header__action-search form input::placeholder {
	color: #000;
}

.header__action-search form button {
	font-size: 10px;
	background-color: transparent;
	border: none;
	outline: none;
	width: max-content;
}

.header__action-search.active form {
	opacity: 1;
	visibility: visible;
}

.header__action-account {
	position: relative;
	margin-left: 20px;
	cursor: pointer;
}

@media only screen and (max-width: 767px) {
	.header__action-account {
		margin-left: 10px;
	}
}

.header__action-account ul {
	position: absolute;
	background-color: #fff;
	top: calc(100% + 15px);
	left: -15px;
	padding: 15px;
	width: max-content;
	opacity: 0;
	visibility: hidden;
	transition: all 300ms ease;
}

.header__action-account ul:before {
	content: "";
	position: absolute;
	top: -15px;
	width: 100%;
	height: 15px;
	display: block;
	left: 0;
}

.header__action-account ul li a {
	color: #000;
	font-size: 14px;
	padding: 4px 4px 4px 0;
	display: inline-block;
	position: relative;
}

.header__action-account ul li a:after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 1px;
	background: #000;
	position: absolute;
	left: 0;
	bottom: 1px;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.header__action-account ul li:hover a:after {
	width: 100%;
	opacity: 1;
	filter: alpha(opacity=100);
}

.header__action-account:hover ul {
	opacity: 1;
	visibility: visible;
}

.header__action-cart {
	margin-left: 20px;
	cursor: pointer;
	font-weight: 700;
}

@media only screen and (max-width: 767px) {
	.header__action-cart {
		margin-left: 10px;
	}
}

body:not(.home),
.header.stuck {
	background-color: #ffffffb3;
}

body:not(.home) .header__menu li a,
.header.stuck .header__menu li a {
	color: #000;
}

body:not(.home) .header__menu li a:before,
.header.stuck .header__menu li a:before {
	background-color: #000;
}

body:not(.home) .header__action,
.header.stuck .header__action {
	color: #000;
}

.header__search-mobile {
	padding: 15px 0 0 0;
	display: none;
}

.header__search-mobile form {
	background-color: rgba(238, 238, 238, 0.623);
	border-radius: 18px;
	padding: 5px;
}

.header__search-mobile form input {
	flex: 1;
	border: none;
	background-color: transparent;
}

.header__search-mobile form button {
	border: none;
	outline: none;
	background-color: transparent;
}

.header__search-mobile-category {
	margin-top: 10px;
}

.header__search-mobile-category li {
	margin: 0 5px 5px 0;
}

.header__search-mobile-category li a {
	display: block;
	border-radius: 2px;
	padding: 3px 7px;
	font-size: 14px;
	border: 1px solid #bbbbbb;
	background-color: #c5ad97;
	border-color: #c5ad97;
	color: #fff;
}

.header__category {
	font-size: 14px;
}

.header__category [class*="col-"] {
	padding: 0;
}

@media only screen and (min-width: 1200px) {
	.header__category {
		display: none;
	}
}

.header__category-item {
	text-align: center;
	padding-top: 20px;
	display: block;
}

.header__category .flickity-button {
	background-color: transparent;
	width: 10px;
	height: 10px;
	top: 60%;
}

.header__category .flickity-button-icon {
	top: 56%;
	width: 100%;
	height: 100%;
	left: 0;
}

.header__category .flickity-button-icon path {
	fill: #bebebe;
}

.header__category .flickity-button.next {
	right: 0;
}

.header__category .flickity-button.previous {
	left: 0;
}

/* Home
--------------------------------------------- */

/** Home **/

/** HOME BANNER **/

.home-banner .flickity-page-dots {
	bottom: 20px;
}

.home-banner .flickity-page-dots .dot {
	background-color: transparent;
	border: 2px solid #fff;
	width: 13px;
	height: 13px;
	opacity: 1;
}

.home-banner .flickity-page-dots .is-selected {
	background-color: #fff;
	border: 2px solid #fff;
}

.home-banner-carousel .carousel-cell {
	height: 100vh;
}

.home-banner-carousel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/** HOME PRODUCTS **/

.home-products {
	padding: 50px 0;
}

@media only screen and (max-width: 1023px) {
	.home-products {
		padding: 30px 0;
	}
}

.home-products__list {
	margin-top: 75px;
}

@media only screen and (max-width: 1023px) {
	.home-products__list {
		margin-top: 40px;
	}
}

.products-banner {
	height: 600px;
}

.products-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/** PRODUCT ITEM **/

.product__item {
	margin-bottom: 60px;
}

@media only screen and (max-width: 1023px) {
	.product__item {
		margin-bottom: 40px;
	}
}

.product__item-thumb {
	position: relative;
}

.product__item-thumb-image {
	padding-bottom: 75%;
}

.product__item-thumb-image:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border: 10px solid #fff;
	opacity: 0;
	transition: 0.3s ease;
}

.product__item:hover .product__item-thumb-image:after {
	opacity: 0.5;
}

.product__item-video {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 35px;
	line-height: 35px;
	background-color: rgba(255, 255, 255, 0.5);
	color: black;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	font-size: 14px;
}

@media only screen and (max-width: 424px) {
	.product__item-video {
		font-size: 11px;
	}
}

.product__item-video:before {
	content: url("data:image/svg+xml,%3Csvg width='10' height='11' viewBox='0 0 10 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.81176 0.242541C0.811194 -0.326318 0 0.139698 0 1.28259V9.71659C0 10.8606 0.811194 11.326 1.81176 10.7577L9.24932 6.53007C10.2502 5.96101 10.2502 5.03904 9.24932 4.47012L1.81176 0.242541Z' fill='black'/%3E%3C/svg%3E%0A");
}

.product__item-tag {
	margin-top: 5px;
}

@media only screen and (max-width: 767px) {
	.product__item-tag {
		font-size: 14px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
}

.product__item-tag-sale {
	color: #236f53;
	font-weight: 700;
}

@media only screen and (max-width: 767px) {
	.product__item-tag-sale {
		margin-right: 5px;
	}
}

.product__item-tag-new {
	background-color: #eebcbd;
	padding: 2px 3px;
	color: #fff;
	font-size: 14px;
}

.product__item-name {
	font-size: 15px;
	margin-top: 10px;
	max-width: 50%;
	flex-basis: 50%;
}

@media only screen and (max-width: 1199px) {
	.product__item-name {
		font-family: Proxima-Nova;
	}
}

@media only screen and (max-width: 767px) {
	.product__item-name {
		max-width: 100%;
		flex-basis: 100%;
	}
}

@media only screen and (max-width: 424px) {
	.product__item-name {
		font-size: 14px;
		margin-top: 5px;
	}
}

.product__item-name a:hover {
	color: #000;
}

.product__item:hover .product__item-name {
	text-decoration: underline;
}

.product__item-price {
	color: #949494;
	font-size: 15px;
	margin-top: 10px;
	max-width: 50%;
	flex-basis: 50%;
	text-align: right;
}

@media only screen and (max-width: 767px) {
	.product__item-price {
		max-width: 100%;
		flex-basis: 100%;
		text-align: left;
	}
}

@media only screen and (max-width: 424px) {
	.product__item-price {
		font-size: 14px;
	}
}

.price del {
	margin: 0 2px;
}

.price ins {
	margin: 0 2px;
	text-decoration: none;
}

/** PRODUCTS CATEGORY **/

.products-category ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

@media only screen and (max-width: 1023px) {
	.products-category ul {
		justify-content: center;
	}
}

.products-category ul li {
	margin-right: 20px;
}

@media only screen and (max-width: 1023px) {
	.products-category ul li {
		margin-bottom: 7px;
	}
}

.products-category ul li a {
	font-size: 14px;
	position: relative;
}

.products-category ul li a:after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 1px;
	background: #000;
	position: absolute;
	left: 0;
	bottom: -3px;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.products-category ul li a:hover {
	color: #000;
}

.products-category ul li a:hover:after {
	width: 100%;
	opacity: 1;
	filter: alpha(opacity=100);
}

.products-category ul li.current a:after,.products-category ul li.chosen a:after {
	width: 100%;
	opacity: 1;
	filter: alpha(opacity=100);
}
.products-category ul li .count{
	display: none;
}
/** Products Head **/

.products-head {
	padding: 30px 0;
}

@media only screen and (max-width: 767px) {
	.products-head {
		padding: 20px 0;
	}
}

.products-head-register {
	max-width: 50%;
	flex-basis: 50%;
	font-size: 14px;
	text-align: right;
}

.products-head-register:hover {
	color: #000;
}

.products-title {
	max-width: 50%;
	flex-basis: 50%;
	font-size: 30px;
}

@media only screen and (max-width: 1199px) {
	.products-title {
		text-align: center;
		max-width: 100%;
		flex-basis: 100%;
	}
}

@media only screen and (max-width: 767px) {
	.products-title {
		font-size: 23px;
	}
}

/** Products Sort **/

.products__filter form {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

@media only screen and (max-width: 1023px) {
	.products__filter form {
		justify-content: center;
		margin-top: 15px;
	}
}

.products__filter form select {
	outline: none;
	margin-left: 10px;
}

@media only screen and (min-width: 768px) {
	.products__filter form select {
		width: 30%;
	}
}

/** Products Change Grid **/

.products-change-grid {
	margin: 15px 0;
}

.products-change-grid li {
	margin: 0 5px;
}

.products-change-grid li.active svg path {
	fill: #bbbbbb;
}

/** Products List **/

.products__list {
	margin-top: 40px;
}

@media only screen and (max-width: 1023px) {
	.products__list {
		margin-top: 25px;
	}
}

@media only screen and (max-width: 767px) {
	.products__list {
		margin-top: 30px;
	}
}

.products__list[grid="grid-1"] .col-12 {
	max-width: 100%;
	flex-basis: 100%;
}

.products__list[grid="grid-2"] .col-12 {
	max-width: 50%;
	flex-basis: 50%;
}

.products__list[grid="grid-3"] {
	margin-left: -5px;
	margin-right: -5px;
}

.products__list[grid="grid-3"] .col-12 {
	max-width: 33.33%;
	flex-basis: 33.33%;
}

.products__list[grid="grid-3"] [class*="col-"] {
	padding-left: 5px;
	padding-right: 5px;
}

/** Products Modal Video **/

.product-video-modal .modal-header {
	border: none;
	display: block;
}

.product-video-modal .modal-header .modal-title {
	font-size: 24px;
	text-align: center;
	font-family: Proxima-Nova;
	width: 90%;
	margin: 0 auto;
}

@media only screen and (max-width: 767px) {
	.product-video-modal .modal-header .modal-title {
		font-size: 15px;
	}
}

.product-video-modal .modal-header .close {
	position: absolute;
	width: 30px;
	height: 30px;
	top: 15px;
	right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
}

.product-video-modal .modal-header .close svg path {
	stroke: #000;
}

@media only screen and (min-width: 767px) {
	.product-video-modal .modal-dialog {
		max-width: 705px;
	}
}

.product-video-modal .modal-content {
	border: none;
}

.product-video-modal .modal-body__video {
	position: relative;
	padding-bottom: 56.2%;
}

.product-video-modal .modal-body__video iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.product-video-modal .product-video-modal__button {
	border-radius: 50px;
	border: 1px solid #f2c355;
	background-color: #faca5b;
	padding: 10px 31px;
}

@media only screen and (max-width: 767px) {
	.product-video-modal .product-video-modal__button {
		padding: 4px 25px;
	}
}

.product-video-modal .product-video-modal__button:hover {
	color: #000;
	text-decoration: underline;
}

/** Product Carousel **/

.single-product__image .carousel-nav {
	max-height: 600px;
	overflow-y: scroll;
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* Firefox */
	/* Hide scrollbar for IE, Edge and Firefox */
}

.single-product__image .carousel-nav::-webkit-scrollbar {
	display: none;
}

.single-product__image .carousel-nav .carousel-cell {
	padding-bottom: 75%;
	position: relative;
	margin-bottom: 5px;
	height: 20%;
	cursor: pointer;
}

.single-product__image .carousel-nav .carousel-cell img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-product__image .carousel .flickity-slider .carousel-cell {
	padding-bottom: 75%;
}

.single-product__image .carousel .flickity-slider .carousel-cell img {
	position: absolute;
	top: 0;
	left: 0;
	object-fit:cover;
	width: 100%;
	height: 100%;
}

.single-product__image .carousel .flickity-button {
	display: none;
}

.single-product__image .carousel .flickity-page-dots {
	bottom: 15px;
}

@media only screen and (min-width: 1200px) {
	.single-product__image .carousel .flickity-page-dots {
		display: none;
	}
}

.single-product__image .carousel .flickity-page-dots .dot.is-selected {
	background-color: #c5ad97;
}

.single-product .products-head-register {
	padding: 20px 0 30px 0;
	text-align: right;
	max-width: 100%;
	flex-basis: 100%;
}

.single-product__name {
	margin-right: 20px;
	font-size: 16px;
}

.single-product__info-head {
	padding: 15px 120px 15px 10px;
	font-size: 14px;
	color: #656565;
	border-bottom: 1px solid #c2c2c2;
}

.single-product__price {
	padding: 15px 20px 15px 10px;
	color: #656565;
	border-bottom: 1px solid #c2c2c2;
}

.single-product__price-item {
	color: #bfbfbf;
}

.single-product__price-item:not(:last-child) {
	margin-bottom: 25px;
}

.single-product__price-item .item__title {
	font-size: 14px;
	color: #545454;
	font-weight: 700;
	width: 200px;
	display: block;
	flex-shrink: 0;
}

.single-product__addToCart {
	font-size: 14px;
	padding-top: 15px;
}

.single-product__addToCart-select {
	padding: 0 10px;
}

.single-product__addToCart-select:not(:last-child) {
	margin-bottom: 7px;
}

.single-product__addToCart-select .select-title {
	max-width: 200px;
	flex-basis: 200px;
}

.single-product__addToCart-select select {
	max-width: calc(100% - 200px);
	flex-basis: calc(100% - 200px);
	height: 30px;
	line-height: 28px;
	border: 1px solid #d2d2d2;
	transition: all 200ms ease;
	outline: none;
}

.addToCart-noti {
	padding: 15px 10px;
}

.addToCart-noti:before {
	content: url("data:image/svg+xml,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='Capa_1' x='0px' y='0px' viewBox='0 0 191.667 191.667' style='enable-background:new 0 0 191.667 191.667;' xml:space='preserve'%3E%3Cpath fill='%23616161' d='M95.833,0C42.991,0,0,42.99,0,95.833s42.991,95.834,95.833,95.834s95.833-42.991,95.833-95.834S148.676,0,95.833,0z M150.862,79.646l-60.207,60.207c-2.56,2.56-5.963,3.969-9.583,3.969c-3.62,0-7.023-1.409-9.583-3.969l-30.685-30.685 c-2.56-2.56-3.97-5.963-3.97-9.583c0-3.621,1.41-7.024,3.97-9.584c2.559-2.56,5.962-3.97,9.583-3.97c3.62,0,7.024,1.41,9.583,3.971 l21.101,21.1l50.623-50.623c2.56-2.56,5.963-3.969,9.583-3.969c3.62,0,7.023,1.409,9.583,3.969 C156.146,65.765,156.146,74.362,150.862,79.646z'/%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
	margin-right: 3px;
	height: 17px;
}

.single-product__addToCart .price__head {
	padding: 7px 15px;
	display: none;
}

.single-product__addToCart .price__head-type {
	margin-right: auto;
	color: #808080;
}

.single-product__addToCart .price__head .price {
	color: #808080;
}

.single-product__addToCart .price__head-close {
	border: none;
	outline: none;
	background-color: transparent;
}

.single-product__addToCart .price__head-close svg path {
	fill: #8a8a8a;
}

.single-product__addToCart .price__bottom {
	padding: 12px 20px;
	font-size: 14px;
	color: #545454;
	background: #f9f9f9;
	border-top: 1px solid #c2c2c2;
	border-bottom: 1px solid #c2c2c2;
	text-align: right;
	width: 100%;
	box-sizing: border-box;
}

.single-product__addToCart .price__bottom p {
	margin-left: 20px;
}

.single-product__addToCart .price__bottom-number {
	color: #bfbfbf;
	font-size: 18px;
}

.quantity {
	margin-right: 20px;
}

.quantity input {
	border: none;
	border-radius: unset;
	border-top: 1px solid #989898;
	border-bottom: 1px solid #989898;
	border-left: 1px solid #989898;
	text-align: center;
}

.quantity button {
	border-top: 1px solid #989898;
	border-bottom: 1px solid #989898;
	border-right: 1px solid #989898;
	border-radius: unset;
	font-size: 15px;
}

.quantity button:focus {
	box-shadow: none;
}

.single-product__button {
	margin-top: 25px;
}

.product-fit-size {
	padding: 17px 20px 20px 20px;
	margin-top: 25px;
	position: relative;
	border: dashed 1px #dedede;
	cursor: pointer;
	font-size: 14px;
}

.product-fit-size .fit-size__bottom {
	margin-top: 25px;
	font-size: 16px;
}

.product-fit-size .fit-size__bottom .percent__bars {
	background: #f2f2f2;
	width: 100%;
	margin-top: 10px;
}

.product-fit-size .fit-size__bottom .percent__bars .percent {
	background-color: #363636;
	height: 16px;
}

.product-fit-size__block {
	position: fixed;
	right: 0%;
	transform: translateX(100%);
	top: 0;
	height: 100%;
	background-color: #fff;
	z-index: 7777;
	border: 1px solid #ccc;
	overflow-y: scroll;
	width: 437px;
	-ms-overflow-style: none;
	scrollbar-width: none;
	transition: 0.5s;
	display: none;
}

@media only screen and (max-width: 767px) {
	.product-fit-size__block {
		width: 100%;
	}
}

.product-fit-size__block.active {
	transform: translateX(0);
}

.product-fit-size__block::-webkit-scrollbar {
	display: none;
}

.product-fit-size__block .block__head {
	position: sticky;
	top: 0;
	background-color: #fff;
	padding: 30px 30px 0 30px;
}

.product-fit-size__block .block__close {
	position: absolute;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	right: 0;
	cursor: pointer;
	z-index: 999;
}

.product-fit-size__block .block__close svg path {
	stroke: #000;
}

.product-fit-size__block .block__title {
	font-size: 28px;
	margin-bottom: 10px;
}

.product-fit-size__block .block__name {
	font-size: 18px;
}

.product-fit-size__block .block-inner {
	margin-top: 20px;
	padding: 30px;
}

.product-fit-size__block .block__image-item {
	display: none;
}

.product-fit-size__block .block__image-item.active {
	display: block;
}

.product-fit-size__block .block__dropdown {
	width: 100%;
	position: relative;
	border: 1px solid #000;
	font-size: 14px;
	margin-top: 20px;
}

.product-fit-size__block .dropdown-select {
	background-color: white;
	box-shadow: var(--shadow);
	padding: 10px 15px;
	border-radius: inherit;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	position: relative;
}

.product-fit-size__block .dropdown-select:after {
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='product-size-selector__arrow' width='8' height='8'%3E%3Cpath d='M.793 3h6.414L4 6.207.793 3z'%3E%3C/path%3E%3C/svg%3E");
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	height: 25px;
}

.product-fit-size__block .dropdown-select * {
	pointer-events: none;
}

.product-fit-size__block .dropdown-list {
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	background-color: white;
	box-shadow: var(--shadow);
	display: none;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}

.product-fit-size__block .dropdown-list:before {
	content: "";
	height: 1rem;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background-color: transparent;
	transform: translateY(-100%);
}

.product-fit-size__block .dropdown-list.show {
	display: block;
}

.product-fit-size__block .dropdown-item {
	padding: 8px 12px;
	color: #000;
	transition: all 0.25s ease;
	cursor: pointer;
}

.product-fit-size__block .dropdown-item.active {
	background-color: #f2f2f2;
	font-weight: 700;
}

.product-fit-size__block .dropdown-item:hover {
	color: #000;
	background-color: #f2f2f2;
}

.fiz-size-modal {
	z-index: 4444;
	font-size: 13px;
	font-family: Proxima-Nova;
}

@media only screen and (min-width: 1200px) {
	.fiz-size-modal .modal-dialog {
		max-width: 1150px;
	}
}

.fiz-size-modal .modal-content {
	padding: 20px 50px;
	border-radius: 8px;
	background-color: #fafafa;
	align-items: flex-start !important;
}

@media only screen and (max-width: 1023px) {
	.fiz-size-modal .modal-content {
		padding: 15px;
	}
}

.fiz-size-modal .modal-content .modal-body {
	background-color: #fff;
	width: 100%;
	padding: 15px 20px;
	border: 1px solid #eeeeee;
}

.fiz-size-modal .modal-content .modal-body-content {
	border-right: 1px solid #eeeeee;
	padding-left: 10px;
}

.fiz-size-modal .modal-title {
	font-size: 30px;
}

@media only screen and (max-width: 767px) {
	.fiz-size-modal .modal-title {
		font-size: 22px;
	}
}

.fiz-size-modal .close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background-color: #fff;
	border-radius: 50%;
	opacity: 1;
}

.fiz-size-modal .close svg path {
	stroke: #000;
}

.modal-backdrop {
	z-index: 3333;
}

.find-size__title {
	font-size: 16px;
	font-weight: bold;
	line-height: 24px;
	color: #222222;
	margin-bottom: 15px;
}

.find-size__item {
	max-width: 45%;
	flex-basis: 45%;
}

.find-size__item p {
	margin-bottom: 5px;
}

.find-size__item p span {
	font-size: 13px;
	line-height: 20px;
	color: #222222;
	color: #999999;
	margin-left: 4px;
}

.find-size__item input {
	width: 100%;
	font-size: 14px;
	line-height: 20px;
	color: #222222;
	border: solid 1px #e8e8e8;
	border-radius: 4px;
	padding: 10px 16px;
	height: 50px;
	box-sizing: border-box;
	outline: none;
}

.find-size__btn {
	padding: 7px 15px;
	background-color: #000;
	text-align: center;
	color: #fff;
	display: block;
	margin-top: 15px;
	cursor: pointer;
}

.find-size__btn.disabled {
	pointer-events: none;
	background-color: #eeeeee;
	color: #bababa;
	pointer-events: none;
	cursor: default;
}

.find-size-result {
	display: none;
}

.find-size-result .result__head {
	font-size: 13px;
}

.find-size-result .result__head .result-title {
	font-size: 16px;
	font-weight: bold;
	line-height: 24px;
	color: #222222;
	font-weight: normal;
}

.find-size-result .result__head .result-size {
	font-size: 36px;
	font-weight: bold;
	line-height: 43px;
	color: #222222;
	padding-top: 16px;
	margin-bottom: 15px;
}

.find-size-result .result__head p {
	margin-bottom: 5px;
}

.find-size-result .result__bottom {
	margin-top: 15px;
	font-size: 13px;
	line-height: 20px;
	color: #222222;
	color: #999999;
	margin-left: 16px;
}

.find-size-result .result__bottom p span {
	display: inline-block;
	margin-right: 10px;
}

.find-size-result .result__bottom-reset {
	cursor: pointer;
	background-color: transparent;
	border: none;
	outline: none;
}

.find-size-result.firework {
	background-image: url(../images/firework.gif);
}

/** Single product tab **/

.single-product-detail {
	margin-top: 100px;
}

.single-product-detail .nav {
	flex-wrap: nowrap !important;
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.single-product-detail .nav::-webkit-scrollbar {
	display: none;
}

.single-product-detail .nav .nav-item {
	max-width: 33.33%;
	flex-basis: 33.33%;
	border: 1px solid #e6e6e6;
}

@media only screen and (max-width: 767px) {
	.single-product-detail .nav .nav-item {
		min-width: max-content;
	}
}

.single-product-detail .nav .nav-item .nav-link {
	font-size: 13px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #000;
}

.single-product-detail .nav .nav-item .active {
	background-color: #000;
	color: #fff;
}

.single-product-detail .tab-pane {
	font-size: 14px;
}

.single-product-detail .tab-pane-inner {
	padding: 30px;
}

@media only screen and (max-width: 767px) {
	.single-product-detail .tab-pane-inner {
		padding: 15px;
	}
}

.product-personal-information {
	font-size: 14px;
	padding: 50px;
}

@media only screen and (max-width: 1199px) {
	.product-personal-information {
		padding: 20px;
	}
}

.information__box-left {
	border-right: 1px dashed #d0d0d0;
}

.information__material {
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid #949494;
}

.information__material-item {
	padding: 10px 0;
}

.information__material-item .item__image {
	max-width: 15%;
	flex-basis: 15%;
}

.information__material-item .item__name {
	max-width: 15%;
	flex-basis: 15%;
	text-align: center;
}

.information__material-item .item__desc {
	max-width: 70%;
	flex-basis: 70%;
}

.single-product {
	padding-top: 60px;
}

.single-product-shipping {
	background: #f3f3f3;
	padding: 40px 80px;
	box-sizing: border-box;
	margin: -1px 0 0 -1px;
}

@media only screen and (max-width: 1199px) {
	.single-product-shipping {
		padding: 20px;
	}
}

.single-product-shipping h2,
.single-product-shipping h3,
.single-product-shipping h4,
.single-product-shipping h5,
.single-product-shipping h6 {
	position: relative;
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 20px;
}

.single-product-shipping h2:after,
.single-product-shipping h3:after,
.single-product-shipping h4:after,
.single-product-shipping h5:after,
.single-product-shipping h6:after {
	content: "";
	position: absolute;
	bottom: 2px;
	display: block;
	width: 100%;
	height: 1px;
	background-color: #000;
}

.addToCart-mb {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
}

.addToCart-mb.active {
	opacity: 1;
	visibility: visible;
}

.addToCart-mb__item {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #c5ad97;
	color: #fff;
	border: none;
	outline: none;
}

.addToCart-mb__item:focus {
	outline: none;
}

.addToCart-mb .row [class*="col-"]:nth-child(2) .addToCart-mb__item {
	background-color: #b19982;
}

.celebrity {
	padding-top: 20px;
}

.celebrity__list {
	margin-top: 80px;
}

@media only screen and (max-width: 1023px) {
	.celebrity__list {
		margin-top: 60px;
	}
}

@media only screen and (max-width: 767px) {
	.celebrity__list {
		margin-top: 40px;
	}
}

.celebrity__item {
	margin-bottom: 50px;
}

@media only screen and (max-width: 1023px) {
	.celebrity__item {
		margin-bottom: 20px;
	}
}

.celebrity__item-thumb {
	padding-bottom: 69%;
	overflow: hidden;
}

.celebrity__item-thumb img {
	width: 100%;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.celebrity__item:hover .celebrity__item-thumb img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.celebrity__item-name {
	position: relative;
	font-size: 11px;
	margin-top: 5px;
}

.celebrity__item-name:after {
	content: "";
	position: absolute;
	width: 100%;
	bottom: -2px;
	background-color: #000;
	height: 1px;
	opacity: 0;
	display: block;
	transition: 0.1s ease;
}

.celebrity__item:hover {
	color: #000;
}

.celebrity__item:hover .celebrity__item-name:after {
	opacity: 1;
}

/** SINGLE CELEBRITY **/

.celebrity__name {
	font-size: 18px;
	margin-top: 80px;
	border-bottom: 1px solid #000;
	padding: 9px 0;
}

.celebrity__post-info {
	border-bottom: 1px solid #eee;
	padding: 9px 0;
}

.celebrity__post-info p {
	font-size: 14px;
	margin-left: 15px;
}

.celebrity__post-info span {
	color: #9c9c9c;
	font-size: 11px;
	margin-right: 3px;
}

.celebrity__post-detail {
	margin-top: 30px;
}

/** Q&A ACCORDION **/

.notice-inner {
	margin-top: 80px;
}

@media only screen and (max-width: 1023px) {
	.notice-inner {
		margin-top: 60px;
	}
}

@media only screen and (max-width: 767px) {
	.notice-inner {
		margin-top: 40px;
	}
}

.notice__item {
	border: none;
}

@media only screen and (max-width: 767px) {
	.notice__item {
		font-size: 14px;
	}
}

.notice__item .card-header {
	cursor: pointer;
	position: relative;
	border-top: 1px solid #9d9d9d;
	background-color: #fff;
	border-bottom: none;
}

.notice__item .card-header span {
	max-width: 90%;
	display: block;
}

.notice__item .card-header:after {
	content: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L9 9L17 1' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	transition: 0.3s ease;
}

.notice__item .card-header[aria-expanded^="true"] {
	background-color: #00000008;
	border-color: #446084;
	font-weight: 700;
}

.notice__item .card-header[aria-expanded^="true"]:after {
	transform: rotate(180deg) translateY(50%);
}

.guide-inner {
	font-size: 14px;
	margin-top: 80px;
}

@media only screen and (max-width: 1023px) {
	.guide-inner {
		margin-top: 60px;
	}
}

@media only screen and (max-width: 767px) {
	.guide-inner {
		margin-top: 40px;
	}
}

.guide__content {
	margin: 50px 0;
	font-size: 14px;
}

.guide__content h2,
.guide__content h3,
.guide__content h4,
.guide__content h5,
.guide__content h6 {
	font-weight: 700;
	display: inline-block;
	position: relative;
	margin-bottom: 20px;
}

.guide__content h2:after,
.guide__content h3:after,
.guide__content h4:after,
.guide__content h5:after,
.guide__content h6:after {
	content: "";
	position: absolute;
	bottom: 3px;
	width: 100%;
	height: 1px;
	display: block;
	background-color: #000;
}

.guide__content ul {
	padding-left: 20px;
}

.guide__content ul li::marker {
	color: #9d9d9d;
}

/** SINGLE POST **/

.single__post-inner {
	margin-top: 80px;
}

@media only screen and (max-width: 1023px) {
	.single__post-inner {
		margin-top: 60px;
	}
}

@media only screen and (max-width: 767px) {
	.single__post-inner {
		margin-top: 40px;
	}
}

.single__post-title {
	font-size: 18px;
	border-bottom: 1px solid #000;
	font-weight: 700;
	padding: 9px 0;
}

.single__post-info {
	border-bottom: 1px solid #eee;
	padding: 9px 0;
	font-size: 14px;
}

.single__post-info p {
	margin-right: 15px;
}

.single__post-info span {
	font-size: 11px;
	color: #9c9c9c;
	display: inline-block;
	margin-right: 3px;
}

.single__post-content {
	margin-top: 30px;
}

/* Sidebar
--------------------------------------------- */

/** SIDEBAR **/

.sidebar ul {
	list-style: none;
}

.sidebar__item {
	margin-bottom: 20px;
}

.sidebar__item-title {
	font-size: 14px;
}

.sidebar__item ul li a {
	font-size: 13px;
	position: relative;
}

.sidebar__item ul li a:after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 1px;
	background: #000;
	position: absolute;
	left: 0;
	bottom: 1px;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.sidebar__item ul li a:hover {
	color: #000;
}

.sidebar__item ul li a:hover:after {
	width: 100%;
	opacity: 1;
	filter: alpha(opacity=100);
}

/* Forms
--------------------------------------------- */

/** Form **/

/* Footer
--------------------------------------------- */

/** FOOTER **/

.footer {
	margin-top: 100px;
	padding: 30px 0 160px;
	border-top: 3px solid #000;
}

@media only screen and (max-width: 1023px) {
	.footer {
		padding: 30px 0 50px;
	}
}

@media only screen and (min-width: 1500px) {
	.footer .container {
		max-width: 1400px;
	}
}

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

.footer__item-title {
	font-size: 17px;
	margin-bottom: 12px;
}

.footer__item-content {
	font-size: 14px;
}

.footer__item-content p {
	margin-bottom: 5px;
}

.footer__info {
	font-size: 14px;
}

@media only screen and (min-width: 1024px) {
	.footer__info {
		text-align: right;
	}
}

.footer__info p {
	margin-bottom: 5px;
}

/*# sourceMappingURL=style.css.map */
.gnws-slect select {
	height: 30px;
	line-height: 28px;
	border: 1px solid #d2d2d2;
	transition: all 200ms ease;
	outline: none;
	width: 100%;
	margin-bottom: 10px;
}
.woosw-btn{
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	width: 100%!important;
	background: #eaeaea;
	border: 2px solid #eaeaea;
	color: #656565;
	height: 50px;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.woosw-btn:hover{
	background-color: #fff;
	color: #656565;
}
.addToCart-mb .woosw-btn{
	border-radius: 0;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #b19982;
	color: #fff;
	border: none;
	outline: none;
}