/*!
Theme Name: Whello
Theme URI: http://underscores.me/
Author: Whello Developer
Author URI: https://whello.id
Description: Whello Theme standard
Version: 1.2.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: whello
Tags: 

This theme, like WordPress, is icensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/


:root {
	--text-xs: 12px;
	--text-sm: 14px;
	--text-base: 16px;
	--text-lg: 18px;
	--text-xl: 20px;
	--text-2xl: 30px;
	--text-3xl: 40px;
	--text-4xl: 55px;
	--suffix-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
		"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
		"Helvetica Neue", sans-serif;

	--line-height-xl: 30px;
	--line-height-2xl: 45px;
	--line-height-3xl: 60px;
	--line-height-4xl: 82.5px;
}

*,
*:before,
*:after {
	--container: 1170px;
	--padding-container: -webkit-calc((100% - var(--container)) / 2);
	--padding-container: -moz-calc((100% - var(--container)) / 2);
	--padding-container: calc((100% - var(--container)) / 2);

	--h-header: 120px;
	--h-screen: 100vh;

	--rounded-none: 0px;
	--rounded: 16px;
	--rounded-full: 50%;

	--transparent: rgba(0, 0, 0, 0);
	--white: #ffffff;
	--grey-600: #979D94;
	--grey-400: #D9D9D9;
	--grey: #f5f5f5;
	--black: #000000;
	--green-900: #2e3b29;
	--green-800: #213b17;
	--green-700: #46c24e;
	--green-600: #356e21;
	--green-500: #42B549;
	--green-400: #67b94a;
	--green-300: #9dd149;
	--orange: #ee4d2d;
	--red: #ff2643;
	--purple: #8a3ab9;
	--duration: .4s;

	--shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);

	--transition: background-color var(--duration), border-color var(--duration),
		color var(--duration), fill var(--duration), stroke var(--duration),
		opacity var(--duration), visibility var(--duration),
		box-shadow var(--duration), -webkit-box-shadow var(--duration),
		transform var(--duration), -webkit-transform var(--duration),
		filter var(--duration), backdrop-filter var(--duration);
}

@media all and (max-width: 600px) {
	:root {
		--text-4xl: 50px;
	}

	*,
	*:before,
	*:after {
		--line-height-4xl: 75px;
	}
}

@media all and (min-width: 320px) and (max-width: 365px) {
	:root {
		--text-4xl: 45px;
		--text-3xl: 32px;
	}

	*,
	*:before,
	*:after {
		--line-height-4xl: 70px;
		--line-height-3xl: 50px;
	}
}


@font-face {
	font-family: 'Poppins';
	src: local('Poppins-ExtraBold'),
		url('assets/fonts/Poppins-ExtraBold.woff') format('woff');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: local('Poppins-Bold'),
		url('assets/fonts/Poppins-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: local('Poppins-SemiBold'),
		url('assets/fonts/Poppins-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: local('Poppins-Regular'),
		url('assets/fonts/Poppins-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: local('Poppins-Light'),
		url('assets/fonts/Poppins-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}


* {
	margin: 0;
	padding: 0;
	outline: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	-webkit-backface-visibility: hidden;
	text-shadow: var(--transparent) 0 0 1px;
	vertical-align: baseline;
	background-clip: border-box;
	word-break: break-word;
}

*:focus,
*:active,
*:visited,
*:hover {
	outline: 0
}

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

::-moz-selection {
	color: var(--white);
	background-color: var(--black);
	text-shadow: none
}

::selection {
	color: var(--white);
	background-color: var(--black);
	text-shadow: none
}



/* STYLE SCREEN READERS */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: var(--white);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	-moz-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	-webkit-clip-path: none;
	clip-path: none;
	color: var(--black);
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

body {
	margin: 0;
	font-family: "Poppins", var(--suffix-family);
	color: var(--green-800);
	-moz-block-height: normal;
	line-height: 1.5;
	font-size: var(--text-base);
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: var(--transparent);
	background-color: var(--white);
	word-break: break-word;
}

html {
	overflow-x: hidden;
}

.container {
	width: -webkit-calc(100% - 32px);
	width: -moz-calc(100% - 32px);
	width: calc(100% - 32px);
	max-width: var(--container);
	margin: 0 auto;
}

html.prevent-default {
	overflow: hidden;
}

mark {
	background-color: var(--black);
	color: inherit;
	padding: 2px 5px
}

article,
aside,
details,
figcaption,
figure,
label,
footer,
header,
hgroup,
menu,
nav,
section,
main {
	display: block;
	width: 100%;
}

p:empty {
	display: none;
}

p+p,
p+table,
p+ol,
p+ul,
table+p,
ol+p,
ul+p {
	margin-top: 16px;
}


ol {
	margin: 0;
	padding-left: 17px;
}

li {
	width: 100%;
	margin: 0;
}

li:not(:last-child) {
	margin-bottom: 8px;
}

p a:hover,
li a:hover {
	color: var(--green-400);
}

ul {
	list-style: none;
}

ul li {
	width: 100%;
	position: relative;
	padding-left: 17px;
	margin: 0;
}

ul li::before {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	top: 8px;
	left: 0;
	background-color: var(--green-300);
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

ol {
	list-style: outside decimal;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	cursor: hand;
	-webkit-transition: var(--duration);
	-o-transition: var(--duration);
	-moz-transition: var(--duration);
	transition: var(--duration);
}

a * {
	cursor: pointer;
	cursor: hand
}

h1,
h2,
h3 {
	font-weight: 800;
	color: var(--green-900);
}

h1,
h2,
h3,
h4 {
	margin-bottom: 20px;
}

h5,
h6 {
	margin-bottom: 10px;
}

h1 {
	font-size: var(--text-4xl);
	line-height: var(--line-height-4xl);
}

h2 {
	font-size: var(--text-3xl);
	line-height: var(--line-height-3xl);
}

h3 {
	font-size: var(--text-2xl);
	line-height: var(--line-height-2xl);
}

h4 {
	font-size: var(--text-xl);
	line-height: var(--line-height-xl);
}

h5 {
	font-size: var(--text-lg);
}

h6 {
	font-size: var(--text-base);
}

h2~h2,
h2~h3 {
	margin-top: 24px;
}


h3~h4,
h4~h4 {
	margin-top: 16px;
}

p a,
ul a,
ol a,
table a {
	color: var(--green-900);
}

p a {
	font-weight: 700;
}

blockquote>p {
	display: inline;
}

blockquote:before {
	content: '“';
}

blockquote:after {
	content: '”';
}

.break {
	height: 16px;
	margin-bottom: 0 !important;
}

p a:hover {
	color: var(--green-400);
}

ul a:hover,
ol a:hover,
table a:hover {
	color: inherit;
}

strong,
b {
	font-weight: 700;
}

img {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) {
	img {
		-webkit-mask-image: -webkit-radial-gradient(white, black);
	}
}

img[src*="jpg"],
img[src*="jpeg"] {
	background-color: transparent;
}

::-webkit-input-placeholder {
	color: var(--black);
	opacity: 1;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder,
::placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder {
	color: var(--black);
	opacity: 1;
}

input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.meta-input :focus {
	border: 1px solid var(--green-600);
}

input[type=color],
input[type=date],
input[type=date],
input[type=datetime-local],
input[type=file],
input[type=hidden],
input[type=image],
input[type=month],
input[type=range] {
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
}

input[type="file"]::-ms-value,
input[type="file"]::-ms-browse {
	display: none;
}

button {
	background-color: var(--transparent);
}

input,
textarea,
select {
	width: 100%;
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	caret-color: var(--black);
	border: solid 1px var(--black);
	color: var(--black);
	font-size: var(--text-base);
	background-color: var(--white);
	padding: 20px 24px;
	word-break: normal;
	/* -webkit-transition: var(--duration);
	-o-transition: var(--duration);
	-moz-transition: var(--duration);
	transition: var(--duration); */
}

select {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	padding-right: 58px;
	word-wrap: normal;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	background: var(--white) url(assets/images/icon-arrow-chevrongrey-down.svg) -webkit-calc(100% - 40px) center/16px no-repeat;
	background: var(--white) url(assets/images/icon-arrow-chevrongrey-down.svg) -moz-calc(100% - 40px) center/16px no-repeat;
	background: var(--white) url(assets/images/icon-arrow-chevrongrey-down.svg) calc(100% - 40px) center/16px no-repeat;
}

select::-ms-expand {
	display: none;
}

select option {
	background-color: var(--white);
	color: var(--black);
}

select option[disabled] {
	display: none;
}

textarea {
	height: 200px;
	resize: none;
	overflow: auto;
}

textarea::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	-webkit-border-radius: 2px;
	border-radius: 2px;
	background-color: var(--black);
}

textarea::-webkit-scrollbar {
	width: 7px;
	background-color: var(--black);
}

textarea::-webkit-scrollbar-thumb {
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: var(--black);
}

input:active,
input:focus,
input:hover,
textarea:active,
textarea:focus,
textarea:hover,
select:active,
select:focus,
select:hover {
	border-color: var(--black);
	outline: 1px solid #817f7f;
}

input[type=search]::-ms-clear {
	display: none;
	width: 0;
	height: 0
}

input[type=search]::-ms-reveal {
	display: none;
	width: 0;
	height: 0
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-clear-button {
	cursor: pointer;
	opacity: 0;
}

input[type="range"] {
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

input[type="range"]:active {
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: grabbing;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto
}

[type="search"] {
	outline-offset: -2px;
	-webkit-appearance: none
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button
}

input[type="date"] {
	background: url(assets/images/icon-calendar-grey.svg) -webkit-calc(100% - 24px) center/24px 26px no-repeat;
	background: url(assets/images/icon-calendar-grey.svg) -moz-calc(100% - 24px) center/24px 26px no-repeat;
	background: url(assets/images/icon-calendar-grey.svg) calc(100% - 24px) center/24px 26px no-repeat;
}

input[type="radio"],
input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	width: 20px;
	min-width: 20px;
	height: 20px;
	min-height: 20px;
	padding: 0;
	line-height: normal;
	border: 1px solid var(--black);
	cursor: pointer;
	background: center/14px 10px no-repeat;
	background-color: var(--white);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	cursor: pointer;
	-webkit-transition: var(--duration);
	-o-transition: var(--duration);
	-moz-transition: var(--duration);
	transition: var(--duration);
}

input[type="checkbox"] {
	-webkit-border-radius: var(--rounded-none);
	-moz-border-radius: var(--rounded-none);
	border-radius: var(--rounded-none);
}

input[type="checkbox"]:checked {
	background-image: url(assets/images/icon-checkmark-darkgrey.svg);
}

input[type="checkbox"]:hover,
input[type="checkbox"]:checked {
	border-color: var(--black);
}

input[type="radio"] {
	-webkit-border-radius: var(--rounded-full);
	-moz-border-radius: var(--rounded-full);
	border-radius: var(--rounded-full);
	-webkit-transition: border-color var(--duration);
	-o-transition: border-color var(--duration);
	-moz-transition: border-color var(--duration);
	transition: border-color var(--duration);
}

input[type="radio"]:checked {
	border-width: 6px;
	border-color: var(--black);
}

button,
input[type=submit],
input[type=reset],
input[type=button] {
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-size: var(--text-base);
	border: 0;
	overflow: visible;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-appearance: button
}

button:not(:disabled),
input[type=submit]:not(:disabled),
input[type=reset]:not(:disabled),
input[type=button]:not(:disabled),
select {
	cursor: pointer;
}

button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
	padding: 0;
	border-style: none
}

input[type="color"] {
	-webkit-appearance: initial;
	-moz-appearance: initial;
	appearance: initial;
}

button,
select {
	text-transform: none
}

fieldset {
	min-width: 0;
	border: 0
}

progress {
	vertical-align: baseline
}

table {
	font-size: 14px;
	border-collapse: collapse;
	border-spacing: 0
}

th,
td {
	vertical-align: middle;
}

audio,
video {
	display: -moz-inline-stack;
	display: inline-block;
	*display: inline;
	zoom: 1;
	vertical-align: top
}

hr {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
	overflow: visible
}

address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: inherit
}

dd {
	margin-left: 0
}

pre,
code,
kbd,
samp {
	font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

pre {
	margin-top: 0;
	margin-bottom: 1rem;
	overflow: auto
}

svg {
	overflow: hidden;
	vertical-align: middle
}

[hidden] {
	display: none !important
}

abbr[title] {
	border-bottom: none;
	text-decoration: none;
	border-bottom: 0;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none
}



/* WORDPRESS RESET & PLUGIN STANDARD WHELLO */
.wpb_wrapper .wpb_content_element {
	margin-bottom: 0;
}

body>.site {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: var(--h-screen);
}

body>.site>.site-main {
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 auto;
	-moz-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
}

.vc_row>.wpb_column.vc_column_container>.vc_column-inner,
.wpb_row.vc_row.vc_row-has-fill>.wpb_column.vc_column_container>.vc_column-inner,
.wpb_row.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner {
	padding-top: 0;
}

.prevent-scroll {
	overflow: hidden;
}

.vc_row.vc_row-has-fill {
	background: center/cover no-repeat;
}

.post-views {
	display: none !important;
}



/* PAGINATION STYLE */
.pagination,
.tw-pagination,
.woocommerce-pagination ul.page-numbers {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	width: 100%;
	margin-top: 40px;
	margin-bottom: -10px;
}

.woocommerce-pagination ul.page-numbers li,
.tw-pagination li {
	width: auto;
	list-style: none;
	margin-left: 0;
	margin-bottom: 10px;
}

.tw-pagination .next,
.tw-pagination .prev {
	display: none;
}

.pagination .page-numbers.current,
.tw-pagination .page.current,
.woocommerce-pagination ul.page-numbers .page-numbers.current {
	background-color: var(--black);
	color: var(--white);
}

.pagination .page-numbers,
.tw-pagination .page,
.woocommerce-pagination ul.page-numbers .page-numbers {
	width: 40px;
	height: 40px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-border-radius: var(--rounded-full);
	-moz-border-radius: var(--rounded-full);
	border-radius: var(--rounded-full);
	font-size: var(--text-lg);
	color: var(--black);
	background-color: var(--transparent);
	-webkit-transition: var(--duration);
	-o-transition: var(--duration);
	-moz-transition: var(--duration);
	transition: var(--duration);
}

.pagination .page-numbers:not(:last-child),
.tw-pagination .page:not(:last-child),
.woocommerce-pagination ul.page-numbers li:not(:last-child) {
	margin-right: 10px;
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev,
.woocommerce-pagination ul.page-numbers .next,
.woocommerce-pagination ul.page-numbers .prev {
	width: 30px;
	-webkit-border-radius: var(--rounded-none);
	-moz-border-radius: var(--rounded-none);
	border-radius: var(--rounded-none);
	font-size: 30px;
	line-height: 1;
	padding-bottom: 6px;
}

.pagination .page-numbers.next:hover,
.pagination .page-numbers.prev:hover,
.woocommerce-pagination ul.page-numbers .next:hover,
.woocommerce-pagination ul.page-numbers .prev:hover {
	color: var(--black);
	background-color: var(--transparent);
}




/* LISTING STYLE */
.listing,
.listing .thumbnail-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	overflow: hidden;
}

.listing .listing-item,
.listing .wpb_column {
	position: relative;
}

.listing.listing-blog .listing-item {
	cursor: pointer;
}

.listing .wpb_column {
	float: none;
}

ul.listing li {
	list-style: none;
	margin-left: 0;
}

.vc_row.listing,
.vc_row.listing .vc_inner {
	margin: 0;
}

.vc_row.listing:before,
.vc_row.listing:after,
.vc_row.listing .vc_column-inner:before,
.vc_row.listing .vc_column-inner:after,
.vc_row.listing .vc_inner:before,
.vc_row.listing .vc_inner:after {
	display: none;
}

.vc_row.listing .wpb_column {
	float: none;
}

.vc_row.listing .wpb_column>.vc_column-inner {
	padding: 0;
}

@media screen and (min-width:0\0) and (min-resolution:+72dpi) {
	.listing {
		width: -webkit-calc(100% + 1px);
		width: -moz-calc(100% + 1px);
		width: calc(100% + 1px);
	}
}

.vc_row.listing {
	width: 100%;
	margin: 0;
}

.vc_row.listing .vc_column-inner {
	padding: 0;
}

.site .listing[class*="lists-"] .listing-item:last-child,
.site .listing[class*="lists-"] .wpb_column:last-child {
	margin-right: 0;
}

.listing .title-listing,
.listing .content-item p,
.listing .wpb_text_column * {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}



/* RESET BUTTON / CTA */
.whbutton-wrapper {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.whbutton-wrapper:not(.whbutton-align--inline) {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.whbutton-wrapper.whbutton-align--left {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-moz-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.whbutton-wrapper.whbutton-align--center {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.whbutton-wrapper.whbutton-align--right {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

[class*="whbutton-fill"] .cta-whbutton,
[class*="whbutton-outline"] .cta-whbutton {
	padding: 10px 25px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	border: 1px solid var(--transparent);
}

.cta-whbutton {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	text-align: left;
}

.cta-whbutton .label-cta {
	color: inherit;
	font-size: var(--text-sm);
	line-height: 21px;
	font-weight: 400;
}

.cta-whbutton .icon-cta,
.whbutton-icon .cta-whbutton::after {
	display: inline-block;
	width: 20px;
	min-width: 20px;
	height: 20px;
	min-height: 20px;
	transition: transform .3s, opacity .3s,
		visibility .3s, -webkit-transform .3s;
}

.cta-whbutton .icon-cta {
	-o-object-fit: contain;
	object-fit: contain;
}

.whbutton-icon:not() .cta-whbutton::after {
	background: center/contain no-repeat;
}

/* DEFAULT SIZE ICON CIRCLE */
.whbutton-wrapper[class*="-circle"] .cta-whbutton .icon-cta {
	width: 36px;
	min-width: 36px;
	height: 36px;
	min-height: 36px;
}

[class*="whbutton-animate-"] .cta-whbutton .icon-cta--hover {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.whbutton-icon-left .cta-whbutton .icon-cta--hover {
	left: 0;
}

[class*="whbutton-fill"].whbutton-icon-left .cta-whbutton .icon-cta--hover,
[class*="whbutton-outline"].whbutton-icon-left .cta-whbutton .icon-cta--hover {
	left: 0;
}

.whbutton-icon-right .cta-whbutton .icon-cta--hover {
	right: 0;
}

[class*="whbutton-fill"].whbutton-icon-right .cta-whbutton .icon-cta--hover,
[class*="whbutton-outline"].whbutton-icon-right .cta-whbutton .icon-cta--hover {
	right: 0;
}

.cta-whbutton:hover .icon-cta--hover {
	opacity: 1;
}

.cta-whbutton .icon-cta--hover,
.cta-whbutton:hover .icon-cta--hover~.icon-cta--default {
	opacity: 0;
}

.whbutton-icon-left .cta-whbutton .icon-cta.icon-cta--hover {
	display: none;
}

.whbutton-icon-left .cta-whbutton:hover .icon-cta.icon-cta--hover {
	display: block;
	margin-right: 10px;
}

.whbutton-icon-left .cta-whbutton:hover .icon-cta.icon-cta--default {
	display: none;
}

.whbutton-icon-right .cta-whbutton .icon-cta.icon-cta--default {
	margin-left: -20px;
}

.whbutton-icon-left .cta-whbutton .icon-cta,
.whbutton-icon-right .cta-whbutton .label-cta,
.whbutton-icon-left .cta-whbutton::after {
	-webkit-box-ordinal-group: 0;
	-webkit-order: -1;
	-moz-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1;
	margin-right: 10px;
}

.whbutton-animate-left .cta-whbutton:hover .icon-cta,
.whbutton-animate-left .cta-whbutton:hover::after {
	-webkit-transform: translateX(-3px);
	-moz-transform: translateX(-3px);
	-ms-transform: translateX(-3px);
	-o-transform: translateX(-3px);
	transform: translateX(-3px);
}

.whbutton-animate-right .cta-whbutton:hover .icon-cta,
.whbutton-animate-right .cta-whbutton:hover::after {
	-webkit-transform: translateX(3px);
	-moz-transform: translateX(3px);
	-ms-transform: translateX(3px);
	-o-transform: translateX(3px);
	transform: translateX(3px);
}

.whbutton-animate-top .cta-whbutton:hover .icon-cta,
.whbutton-animate-top .cta-whbutton:hover::after {
	-webkit-transform: translateY(-3px);
	-moz-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	-o-transform: translateY(-3px);
	transform: translateY(-3px);
}

.whbutton-animate-bottom .cta-whbutton:hover .icon-cta,
.whbutton-animate-bottom .cta-whbutton:hover::after {
	-webkit-transform: translateY(3px);
	-moz-transform: translateY(3px);
	-ms-transform: translateY(3px);
	-o-transform: translateY(3px);
	transform: translateY(3px);
}

.whbutton-animate-left .cta-whbutton:hover .icon-cta--hover {
	-webkit-transform: translate(-3px, -50%);
	-moz-transform: translate(-3px, -50%);
	-ms-transform: translate(-3px, -50%);
	-o-transform: translate(-3px, -50%);
	transform: translate(-3px, -50%);
}

.whbutton-animate-right .cta-whbutton:hover .icon-cta--hover {
	-webkit-transform: translate(3px, -50%);
	-moz-transform: translate(3px, -50%);
	-ms-transform: translate(3px, -50%);
	-o-transform: translate(3px, -50%);
	transform: translate(3px, -50%);
}

.whbutton-animate-top .cta-whbutton:hover .icon-cta--hover {
	-webkit-transform: translateY(-webkit-calc(-50% - 3px));
	-moz-transform: translateY(-moz-calc(-50% - 3px));
	-ms-transform: translateY(calc(-50% - 3px));
	-o-transform: translateY(calc(-50% - 3px));
	transform: translateY(calc(-50% - 3px));
}

.whbutton-animate-bottom .cta-whbutton:hover .icon-cta--hover {
	-webkit-transform: translateY(-webkit-calc(-50% + 3px));
	-moz-transform: translateY(-moz-calc(-50% + 3px));
	-ms-transform: translateY(calc(-50% + 3px));
	-o-transform: translateY(calc(-50% + 3px));
	transform: translateY(calc(-50% + 3px));
}

.whbutton-color--black .cta-whbutton {
	color: #000;
}

.whbutton-color--white .cta-whbutton {
	color: #fff;
}

.whbutton-color--green .cta-whbutton {
	color: var(--green-600);
}

.whbutton-colorhvr--black .cta-whbutton:hover {
	color: #000;
}

.whbutton-colorhvr--white .cta-whbutton:hover {
	color: #fff;
}

.whbutton-colorhvr--green .cta-whbutton:hover {
	color: var(--white);
	background-color: var(--green-600);
}

.whbutton-colorhvr--light_green .cta-whbutton:hover {
	color: var(--green-400);
}

.whbutton-colorhvr--emeraldgradient .cta-whbutton:hover,
.whbutton-colorhvr--emerald300 .cta-whbutton:hover {
	color: var(--text-emerald-300);
}

.whbutton-fill--black .cta-whbutton {
	background-color: #000;
	border-color: #000;
}

.whbutton-fill--white .cta-whbutton {
	background-color: #fff;
	border-color: #fff;
}

.whbutton-fill--green .cta-whbutton {
	background-color: var(--green-600);
	border-color: var(--green-600);
}

.whbutton-fill--green .cta-whbutton:hover {
	background-color: var(--white);
	color: var(--green-600);
}

.whbutton-fill--shopee .cta-whbutton {
	background-color: var(--orange);
	border-color: var(--orange);
}

.whbutton-fill--tokopedia .cta-whbutton {
	background-color: var(--green-500);
	border-color: var(--green-500);
}

.whbutton-outline--black .cta-whbutton {
	border-color: #000;
}

.whbutton-outline--white .cta-whbutton {
	border-color: #fff;
}

.whbutton-outline--green .cta-whbutton {
	border-color: var(--green-600);
}

.btn-shopee-banner .cta-whbutton:hover {
	background-color: var(--orange);
	border-color: var(--orange);
}

.btn-tokopedia-banner .cta-whbutton:hover {
	background-color: var(--green-500);
	border-color: var(--green-500);
}

.whbutton-fill--shopee .cta-whbutton:hover {
	background-color: transparent;
	border-color: var(--orange);
	color: var(--orange);
}

.whbutton-fill--tokopedia .cta-whbutton:hover {
	background-color: transparent;
	border-color: var(--green-500);
	color: var(--green-500);
}





/* w-full */
.whbutton-wrapper.width-full-btn {
	width: 100%;
}

.whbutton-wrapper.width-full-btn .cta-whbutton {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
}



/* BREADCRUMBS STYLE */
.site-breadcrumbs {
	font-size: 16px;
	line-height: 24px;
}

.site-breadcrumbs a,
.site-breadcrumbs {
	font-weight: 600;
}

.breadcrumb-wrapper>span,
.site-breadcrumbs span>span,
.site-breadcrumbs span.current-item {
	color: var(--green-600);
}

.site-breadcrumbs .breadcrumb-wrapper>span:not(:nth-last-of-type(1)):not(:nth-last-of-type(2)) span {
	font-size: 0;
}

.site-breadcrumbs .breadcrumb-wrapper>span:not(:nth-last-of-type(1)):not(:nth-last-of-type(2)) span:after {
	content: '...';
	font-size: 16px;
}

.site-breadcrumbs .breadcrumb-wrapper>span:first-child span:after {
	content: '...';
	font-size: 16px;
}

.site-breadcrumbs .breadcrumb-wrapper>span:first-child {
	font-size: 0;
}

.site-breadcrumbs i {
	display: inline-block;
	margin: 0;
	color: var(--green-600);
	font-style: normal;
}

.site-breadcrumbs .breadcrumb-wrapper>i:not(:nth-last-of-type(1)):not(:nth-last-of-type(2)),
.site-breadcrumbs .breadcrumb-wrapper>span:not(:nth-last-of-type(1)):not(:nth-last-of-type(2)):not(:nth-last-of-type(3)) {
	display: none;
}




/* STYLE LOGO LABEL IMAGE GALLERY */
.logo-groups {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}

.logo-groups .logo-group-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}

.logo-groups .image-logo-group {
	width: auto;
}

.logo-groups .image-logo-group,
.logo-groups .image-wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}




/* ICON & TEXT CUSTOM */
.icon-text-wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.icon-text-wrapper:hover {
	cursor: pointer;
}

.icon-text-wrapper .col-icontext {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/* small */
.icon-text-wrapper.icon-size--small .col-icontext {
	width: 14px;
}

.icon-text-wrapper.icon-size--small .col-content-icontext {
	width: -webkit-calc(100% - 14px);
	width: -moz-calc(100% - 14px);
	width: calc(100% - 14px);
	padding-left: 5px;
}

.icon-text-wrapper.small-text {
	font-size: 14px;
}


/* medium */
.icon-text-wrapper.icon-size--medium .col-icontext {
	width: 18px;
}

.icon-text-wrapper.icon-size--medium .col-content-icontext {
	width: -webkit-calc(100% - 18px);
	width: -moz-calc(100% - 18px);
	width: calc(100% - 18px);
	padding-left: 10px;
}

.icon-text-wrapper.medium-text {
	font-size: 16px;
}


/* large */
.icon-text-wrapper.icon-size--large .col-icontext {
	width: 52px;
}

.icon-text-wrapper.icon-size--large .col-content-icontext {
	width: -webkit-calc(100% - 52px);
	width: -moz-calc(100% - 52px);
	width: calc(100% - 52px);
	padding-left: 18px;
}

.icon-text-wrapper.large-text {
	font-size: 20px;
}

.icon-text-wrapper.fw-400 .col-content-icontext {
	font-weight: 400;
}

.icon-text-wrapper.fw-600 .col-content-icontext {
	font-weight: 600;
}

.icon-text-wrapper.fw-700 .col-content-icontext {
	font-weight: 700;
}

.col-content-icontext.green {
	color: var(--green-600);
}

.col-content-icontext.darkgreen {
	color: var(--green-800);
}

.col-content-icontext.dark {
	color: var(--green-900);
}

/* text color white */
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white a {
	color: var(--white) !important;
}

.slick-slider {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}

.slick-slider .slick-slide {
	float: none;
}

.slick-slider .slick-track {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-moz-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-moz-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.slick-slider .slick-dots {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	margin-top: 32px;
	padding: 0;
}

.slick-slider .slick-dots li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	width: auto;
	margin-bottom: 0;
	padding-left: 0;
}

.slick-slider .slick-dots li::before {
	display: none;
}

.slick-slider .slick-dots li:not(:last-child) {
	margin-right: 7px;
}

.slick-slider .slick-dots button {
	width: 12px;
	height: 12px;
	border: 1px solid #c2d1d9;
	background-color: var(--green-600);
	opacity: .5;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	font-size: 0;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-moz-transition: .2s;
	transition: .2s;
}

.slick-slider .slick-dots button:hover {
	border-color: var(--green-600);
	opacity: 1;
}

.slick-dots .slick-active button {
	background-color: var(--green-600);
	border-color: var(--green-600);
	opacity: 1;
}

.slick-slider .slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 1;
	width: 30px;
	height: 30px;
	font-size: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-moz-transition: .2s;
	transition: .2s;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0) center/11px 17px no-repeat;
}

.slick-slider.slick-dotted .slick-arrow {
	top: -webkit-calc(50% - 20px);
	top: -moz-calc(50% - 20px);
	top: calc(50% - 20px);
}

.slick-slider .slick-prev.slick-arrow {
	/* background-image: url(assets/images/icon-arrow-chevrongrey-left.svg); */
}

.slick-slider .slick-prev.slick-arrow {
	left: 0;
}

.slick-slider .slick-next.slick-arrow {
	right: 0;
}

.slick-slider .slick-next.slick-arrow {
	/* background-image: url(assets/images/icon-arrow-chevrongrey-right.svg); */
}

.slick-slider .slick-arrow.slick-disabled {
	opacity: 0.4;
}




/* GRAVITY FORM RESET */
.gform_wrapper {
	background-color: var(--white);
	padding: 60px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-box-shadow: 0px 4px 30px rgba(33, 59, 23, 0.05);
	-moz-box-shadow: 0px 4px 30px rgba(33, 59, 23, 0.05);
	box-shadow: 0px 4px 30px rgba(33, 59, 23, 0.05);
}

.gform_wrapper ul,
.gform_wrapper ol {
	list-style: none;
	padding-left: 0;
}

.gform_fields {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}

.gform_fields .gfield {
	width: 100%;
	margin-bottom: 20px;
}

.gform_wrapper.gravity-theme .gfield input,
.gform_wrapper.gravity-theme .gfield select,
.gform_wrapper.gravity-theme .gfield textarea {
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	border-color: #d9d9d9;
}

.gform_wrapper ::-webkit-input-placeholder {
	color: #d9d9d9;
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
}

.gfield .gfield_label {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 8px;
}

.gfield_checkbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.gfield_radio li,
.gfield_checkbox li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}

.gfield_radio label,
.gfield_checkbox label {
	display: inline-block;
	width: auto;
	margin-left: 10px;
	margin-top: 2px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.gfield_checkbox .gchoice,
.gfield_radio .gchoice {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
}

.gfield_checkbox .gchoice:not(:last-child),
.gfield_radio .gchoice:not(:last-child) {
	margin-bottom: 10px;
}

.gform_wrapper.gform_wrapper.gravity-theme .gfield input.LV_invalid_field,
.gform_wrapper.gform_wrapper.gravity-theme .gfield select.LV_invalid_field,
.gform_wrapper.gform_wrapper.gravity-theme .gfield textarea.LV_invalid_field,
.gform_wrapper.gform_wrapper.gravity-theme .gfield.gfield_error input[aria-invalid="true"] {
	border-color: var(--red);
}

.gform_wrapper.gform_wrapper.gravity-theme .gfield input.LV_valid_field,
.gform_wrapper.gform_wrapper.gravity-theme .gfield select.LV_valid_field,
.gform_wrapper.gform_wrapper.gravity-theme .gfield textarea.LV_valid_field {
	border-color: var(--green-700);
}

.gform_wrapper.gform_wrapper.gravity-theme .gform_footer,
.gform_wrapper.gform_wrapper.gravity-theme .gform_page_footer {
	margin: 0;
	padding: 0;
}

.ginput_container input {
	height: 38px;
}

.gform_wrapper.gform_wrapper.gravity-theme .gform_footer button {
	margin-bottom: 0;
	margin-top: 20px;
}

.gform_wrapper.gform_wrapper.gravity-theme .gform_fields {
	grid-row-gap: 24px;
	grid-column-gap: 28px;
}

.gform_wrapper.gform_wrapper.gravity-theme .gfield_label {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 12px;
	color: #213B17;
}

.gform_fields.gform_fields .gfield {
	margin-bottom: 0;
}

.gform_wrapper .gform_button {
	-webkit-border-radius: 32px;
	-moz-border-radius: 32px;
	border-radius: 32px;
	background-color: var(--green-600);
	border: 1px solid var(--green-600);
	font-size: 14px;
	font-weight: 400;
	color: var(--white);
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
	height: 45px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.gform_wrapper .validation_error,
.gform_validation_errors,
.gfield_description.validation_message {
	display: none;
}

.gform_wrapper.gform_wrapper.gravity-theme .gfield input,
.gform_wrapper.gform_wrapper.gravity-theme .gfield select,
.gform_wrapper.gform_wrapper.gravity-theme .gfield textarea {
	padding-right: 40px;
	padding-left: 14px;
}


.gform_wrapper.gform_wrapper.gravity-theme .gfield select {
	padding-right: 50px;
}

select,
input.LV_valid_field,
input.LV_invalid_field {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	word-wrap: normal;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

select {
	background: #fff url(/wp-content/uploads/2022/05/angle-down.svg) -webkit-calc(100% - 15px) center/15px no-repeat;
	background: #fff url(/wp-content/uploads/2022/05/angle-down.svg) -moz-calc(100% - 15px) center/15px no-repeat;
	background: #fff url(/wp-content/uploads/2022/05/angle-down.svg) calc(100% - 15px) center/15px no-repeat;
}

input.LV_valid_field {
	background: #fff url(/wp-content/uploads/2022/08/check-form-japo.svg) -webkit-calc(100% - 15px) center/15px no-repeat;
	background: #fff url(/wp-content/uploads/2022/08/check-form-japo.svg) -moz-calc(100% - 15px) center/15px no-repeat;
	background: #fff url(/wp-content/uploads/2022/08/check-form-japo.svg) calc(100% - 15px) center/15px no-repeat;
}

input.LV_invalid_field {
	background: #fff url(/wp-content/uploads/2022/08/warning-form-japo.svg) -webkit-calc(100% - 15px) center/15px no-repeat;
	background: #fff url(/wp-content/uploads/2022/08/warning-form-japo.svg) -moz-calc(100% - 15px) center/15px no-repeat;
	background: #fff url(/wp-content/uploads/2022/08/warning-form-japo.svg) calc(100% - 15px) center/15px no-repeat;
}

.gform_wrapper.gform_wrapper .gfield_required {
	display: none;
}

.gform_wrapper.gform_wrapper.gravity-theme .gfield textarea.large {
	height: 152px;
}

.gfield {
	position: relative;
}




/* ------------------------------------
			Loading filter
---------------------------------------*/
.ajaxloading span {
	background-color: var(--green-600);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	width: 200px;
	height: 200px;
	top: -webkit-calc(50% - 50px);
	top: -moz-calc(50% - 50px);
	top: calc(50% - 50px);
	left: -webkit-calc(50% - 100px);
	left: -moz-calc(50% - 100px);
	left: calc(50% - 100px);
	display: -webkit-box !important;
	display: -webkit-flex !important;
	display: -moz-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	animation: loadingText 1s linear alternate-reverse infinite;
	color: #fff;
	font-size: 20px;
}

@-webkit-keyframes loadingText {
	0% {
		-webkit-border-radius: 54% 46% 63% 37% / 44% 58% 42% 56%;
		border-radius: 54% 46% 63% 37% / 44% 58% 42% 56%;
	}

	100% {
		-webkit-border-radius: 34% 63% 37% 66% / 45% 55% 46% 54%;
		border-radius: 34% 63% 37% 66% / 45% 55% 46% 54%;
	}
}

@-moz-keyframes loadingText {
	0% {
		-moz-border-radius: 54% 46% 63% 37% / 44% 58% 42% 56%;
		border-radius: 54% 46% 63% 37% / 44% 58% 42% 56%;
	}

	100% {
		-moz-border-radius: 34% 63% 37% 66% / 45% 55% 46% 54%;
		border-radius: 34% 63% 37% 66% / 45% 55% 46% 54%;
	}
}

@-o-keyframes loadingText {
	0% {
		border-radius: 54% 46% 63% 37% / 44% 58% 42% 56%;
	}

	100% {
		border-radius: 34% 63% 37% 66% / 45% 55% 46% 54%;
	}
}

@keyframes loadingText {
	0% {
		-webkit-border-radius: 54% 46% 63% 37% / 44% 58% 42% 56%;
		-moz-border-radius: 54% 46% 63% 37% / 44% 58% 42% 56%;
		border-radius: 54% 46% 63% 37% / 44% 58% 42% 56%;
	}

	100% {
		-webkit-border-radius: 34% 63% 37% 66% / 45% 55% 46% 54%;
		-moz-border-radius: 34% 63% 37% 66% / 45% 55% 46% 54%;
		border-radius: 34% 63% 37% 66% / 45% 55% 46% 54%;
	}
}

.ajaxloading {
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 10001;
	overflow: hidden;
}



/* PAGINATION STYLE */
.pagination,
.tw-pagination,
.woocommerce-pagination ul.page-numbers {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	width: 100%;
	margin-top: 65px;
	margin-bottom: -10px;
}

.woocommerce-pagination ul.page-numbers li,
.tw-pagination li {
	width: auto;
	list-style: none;
	margin-left: 0;
	margin-bottom: 10px;
}

.tw-pagination .next,
.tw-pagination .prev {
	display: none;
}

.pagination .page-numbers.current,
.tw-pagination .page.current,
.woocommerce-pagination ul.page-numbers .page-numbers.current {
	color: var(--green-600);
	font-weight: 800;
	font-size: var(--text-base);
	line-height: 24px;
	background-color: rgba(0, 0, 0, 0);
}

.pagination .page-numbers,
.tw-pagination .page,
.woocommerce-pagination ul.page-numbers .page-numbers {
	width: 24px;
	height: 24px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-size: var(--text-base);
	color: var(--green-600);
	background-color: rgba(0, 0, 0, 0);
	-webkit-transition: .3s;
	-o-transition: .3s;
	-moz-transition: .3s;
	transition: .3s;
	font-weight: 400;
}

.pagination .page-numbers:not(:last-child),
.tw-pagination .page:not(:last-child),
.woocommerce-pagination ul.page-numbers li:not(:last-child) {
	margin-right: 10px;
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev,
.woocommerce-pagination ul.page-numbers .next,
.woocommerce-pagination ul.page-numbers .prev {
	width: 10px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	font-size: 0;
	line-height: 1;
	padding-bottom: 6px;
	font-weight: 300;
}

.pagination .page-numbers.next:hover,
.pagination .page-numbers.prev:hover,
.woocommerce-pagination ul.page-numbers .next:hover,
.woocommerce-pagination ul.page-numbers .prev:hover {
	color: var(--green-600);
	background-color: rgba(0, 0, 0, 0);
}


/* SHARE POST */
ul.share-post {
	list-style: none;
	padding: 0px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

ul.share-post li {
	margin: 0;
	width: auto;
	height: 30px;
}

ul.share-post li a,
ul.share-post li .copyButton {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 30px;
	height: 30px;
	background-color: #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
}

ul.share-post li:not(:last-child) {
	margin-right: 14px;
}

li.share-item.share-copyboard {
	position: relative;
}

li.share-item.share-copyboard .textToCopy {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	opacity: 0;
	visibility: visible;
}

li.share-item.share-copyboard .copyResult {
	position: absolute;
	left: -8px;
	right: 0;
	bottom: -25px;
	width: 50px;
	font-size: 14px;
}





/* COOKIE NOTICE */
body #cookie-notice {
	width: 100%;
	min-width: auto;
	max-width: 748px;
	margin: 20px auto;
	left: 0;
	right: 0;
	background-color: #f5f5f5 !important;
}

body #cookie-notice a {
	text-decoration: none;
}

body #cookie-notice .cookie-notice-container {
	color: #000 !important;
}

body #cookie-notice .cookie-notice-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row wrap;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}

body #cookie-notice .cookie-notice-container #cn-notice-text {
	text-align: left;
	line-height: 1.29;
	margin-bottom: 0px;
}

body #cookie-notice .cookie-notice-container #cn-notice-buttons {
	margin-left: auto;
}

body #cookie-notice #cn-notice-buttons #cn-accept-cookie {
	background: none !important;
	padding: 0px 19px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 35px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	border: solid 2px #000;
	font-size: 13px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	-moz-transition: .3s;
	transition: .3s;
}

body #cookie-notice #cn-notice-buttons #cn-accept-cookie:hover {
	background: #000 !important;
	color: #fff !important;
}

/* body #cookie-notice #cn-notice-buttons #cn-accept-cookie:after {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	background: url(/wp-content/uploads/2022/08/japo-ic-left-arrow.svg) center/contain no-repeat;
	margin-left: 14px;
} */

body #cookie-notice #cn-notice-buttons #cn-accept-cookie:hover:after {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

body #cookie-notice .cn-close-icon {
	opacity: 1;
	top: 0;
	right: 0;
	margin: 16px;
}

body #cookie-notice .cn-close-icon:before,
body #cookie-notice .cn-close-icon:after {
	height: 10px;
	width: 1px;
	background-color: #000;
}




/* RESPONSIVE */
@media all and (min-width: 601px) {
	body #cookie-notice .cookie-notice-container {
		padding: 30px 53px 26px 30px;
	}

	body #cookie-notice .cookie-notice-container #cn-notice-text {
		width: 65%;
	}
}


@media all and (max-width: 600px) {
	body #cookie-notice #cn-notice-buttons #cn-accept-cookie {
		margin-top: 12px;
	}

	body #cookie-notice .cookie-notice-container {
		padding: 40px 16px;
	}

	body #cookie-notice .cookie-notice-container #cn-notice-text {
		width: 100%;
	}
}
