/*!
Theme Name: ChandraTheme
Theme URI: http://underscores.me/
Author: ChandraTheme Developer
Author URI: https://serverict.id
Description: ChandraTheme Theme standard
Version: 1.1 - Beta
Tested up to: 8.1
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ChandraTheme
Tags: 

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

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

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

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


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

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

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



*,
*:before,
*:after {
	--container: 1170px;
	
	--text-xss: 10px;
	--text-xs: 12px;
	--text-sm: 14px;
	--text-base: 16px;
	--text-md: 16.5px;
	--text-lg: 17px;
	--text-xl: 18px;
	--text-2xl: 25px;
	--text-3xl: 40px;
	--text-4xl: 54px;
	--text-10xl: 90px;

	--text-30px: 30px;

	--suffix-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	--fontfamily-sans: 'Gordita', var(--suffix-family);
	--fontfamily-serif: 'Butler', var(--suffix-family);

	--padding-container: -webkit-calc((100% - var(--container)) / 2);

	--padding-container: -moz-calc((100% - var(--container)) / 2);

	--padding-container: calc((100% - var(--container)) / 2);
	--padding-field: 10px 16px;
	--padding-button: 15px 24px;

	--rounded-xs: 2px;
	--rounded-sm: 4px;
	--rounded: 6px;
	--rounded-md: 10px;
	--rounded-lg: 16px;
	--rounded-xl: 24px;
	--rounded-full: 999999px;

	--transparent: rgba(0, 0, 0, 0);
	--white: #fff;
	--black: #111;
	--blue: #00B0F0;
	--dark-blue: #29176D;
	--red: #9D2235;
	--yellow: #FFC000;
	--green: #0A460A;
	--purple: #CC00FF;
	--orange: #f97316;
	--gray-100: #F8F8F8;
	--gray-150: #d9d9d9;
	--gray-200: #CCCCCC;
	--gray-300: #EDEDED;
	--gray-400: #ABABAB;
	--gray-500: #9B9B9B;
	--gray: #A5A5A5;
	--gray-700: #696969;

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

	--duration: .3s;
	--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: 1299px) {

	*,
	*:before,
	*:after {
		--container: 100%;
		--padding-container: 16px;
		--text-4xl: 45px;
	}
}


* {
	margin: 0;
	padding: 0;
	outline: 0;
	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;
}

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

*: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);
	text-shadow: none;
	background-color: var(--black);
}

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



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

.screen-reader-text:focus {
	top: 5px;
	left: 5px;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: 15px 23px 14px;
	-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);
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--black);
	line-height: normal;
	text-decoration: none;
	clip: auto !important;
	-webkit-clip-path: none;
	clip-path: none;
	background-color: var(--white);
}

body {
	margin: 0;
	font-family: var(--fontfamily-sans);
	color: var(--gray-700);
	-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);
	word-break: break-word;
	background-color: var(--white);
}

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 {
	padding: 2px 5px;
	color: inherit;
	background-color: var(--black);
}


input[type="color"],
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%;
	padding: var(--padding-field);
	border: solid 1px var(--gray-150);
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	font-family: var(--fontfamily-sans);
	font-size: var(--text-sm);
	color: var(--black);
	caret-color: var(--black);
	word-break: normal;
	background-color: var(--white);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

select {
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	padding-right: 36px;
	-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;
	background: var(--white) url(/wp-content/uploads/2022/11/icon-collapse-bottom-grey.svg) -webkit-calc(100% - 16px) center/10px no-repeat;
	background: var(--white) url(/wp-content/uploads/2022/11/icon-collapse-bottom-grey.svg) -moz-calc(100% - 16px) center/10px no-repeat;
	background: var(--white) url(/wp-content/uploads/2022/11/icon-collapse-bottom-grey.svg) calc(100% - 16px) center/10px no-repeat;
	overflow: hidden;
}

select:invalid {
	color: var(--gray-150);
}

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

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

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: none;
}

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"] {
	display: inline-block;
	width: 20px;
	min-width: 20px;
	height: 20px;
	min-height: 20px;
	padding: 0;
	border: 1px solid var(--black);
	line-height: normal;
	background: var(--white) center/14px 10px no-repeat;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

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(/wp-content/themes/ChandraTheme/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(--transition);
	-o-transition: border-color var(--transition);
	-moz-transition: border-color var(--transition);
	transition: border-color var(--transition);
}

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

button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	border: 0;
	padding: var(--padding-button);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	font-family: var(--fontfamily-sans);
	font-size: var(--text-base);
	-webkit-appearance: button;
	overflow: visible;
}

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 {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 14px;
}

th,
td {
	padding: 10px 14px;
	border: 1px solid var(--gray-200);
	vertical-align: middle;
	text-align: left;
}

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

hr {
	height: 0;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	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: 0;
	text-decoration: none;
	-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 {
	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;
	width: 100%;
	min-height: 100vh;
}

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;
}

body:not(.single-post) .post-views {
	display: none !important;
}



/* PAGINATION STYLE */
.pagination,
.tw-pagination,
.woocommerce-pagination .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 .page-numbers li,
.tw-pagination li {
	width: auto;
	margin-left: 0;
	margin-bottom: 10px;
	list-style: none;
}

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

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

.pagination .page-numbers,
.tw-pagination .page,
.woocommerce-pagination .page-numbers .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;
	width: 28px;
	height: 28px;
	padding: 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	font-size: var(--text-sm);
	color: var(--gray-700);
	font-weight: 700;
	background-color: var(--transparent);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

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

.pagination .page-numbers.next,
.pagination .page-numbers.prev,
.woocommerce-pagination .page-numbers .next,
.woocommerce-pagination .page-numbers .prev {
	width: 10px;
	height: 10px;
	font-size: 0;
	padding: 0;
	line-height: 1;
	background: center/contain no-repeat;
}

.pagination .page-numbers.next,
.woocommerce-pagination .page-numbers .next {
	background-image: url(/wp-content/uploads/2022/11/icon-next-overviewdosen-active.svg);
}

.pagination .page-numbers.prev,
.woocommerce-pagination .page-numbers .prev {
	background-image: url(/wp-content/uploads/2022/11/icon-prev-overviewdosen-active.svg);
}



/* 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-item {
	cursor: pointer;
}

.listing .wpb_column {
	float: none;
}

.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;
}

.listing .content-item {
	font-size: var(--text-xs);
	line-height: 1;
}

.listitem-wrapper {
	position: relative;
}

.listitem-wrapper .link-absolute {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.content-item .title-listing {
	height: 43px;
	-webkit-line-clamp: 2;
	margin-bottom: 16px;
}

.btn-readmore {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: var(--text-sm);
	font-weight: 700;
	color: var(--red);
}

.btn-readmore:after {
	content: '';
	display: inline-block;
	width: 12px;
	height: 8px;
	background: url(/wp-content/uploads/2022/11/icon-arrow-red.svg) center/contain no-repeat;
	margin-left: 10px;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

.btn-readmore:hover:after {
	-webkit-transform: translateX(3px);
	-moz-transform: translateX(3px);
	-ms-transform: translateX(3px);
	-o-transform: translateX(3px);
	transform: translateX(3px);
}


@media all 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;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
}



/* 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: var(--padding-button);
	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;
	padding: 0px;
	line-height: 1;
	text-align: left;
}

.cta-whbutton .label-cta {
	font-size: var(--text-sm);
	font-weight: 700;
	color: inherit;
}

.cta-whbutton .icon-cta,
.whbutton-icon .cta-whbutton::after {
	display: inline-block;
	width: 12px;
	min-width: 12px;
	height: 8px;
	min-height: 8px;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

.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;
}

.cta-whbutton .icon-cta--hover {
	position: absolute;
	top: 50%;
	z-index: 2;
	opacity: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

[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 {
	right: 24px;
}

.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: 24px;
}

.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,
.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: var(--black);
}

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

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

.whbutton-colorhvr--black .cta-whbutton:hover {
	color: var(--black);
}

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

.whbutton-colorhvr--red .cta-whbutton:hover {
	color: var(--red);
}

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

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

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

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

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

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

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






/* SHAREPOST */
.share-post {
	position: relative;
	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;
	padding: 0;
	margin-left: 12px;
	list-style: none;
	overflow: hidden;
}

.share-post .share-item {
	width: auto;
	margin: 0;
}

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

.share-post .share-item>a,
.share-post .share-item>.button-clipboard {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	padding: 6px;
	-webkit-border-radius: var(--rounded-full);
	-moz-border-radius: var(--rounded-full);
	border-radius: var(--rounded-full);
	background-color: var(--white);
}

.share-post .share-item img {
	width: 17px;
	height: 17px;
	-o-object-fit: contain;
	object-fit: contain;
}

.result-clipboard {
	border: 1px solid var(--black);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 15px;
}

.text-clipboard {
	position: absolute;
	opacity: 0;
}

.result-clipboard {
	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;
}

.result-clipboard:before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 15px;
	background: url(/wp-content/uploads/2022/11/icon-copyboard.png);
}

.result-clipboard {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10;
	width: auto;
	padding: 16px 20px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border: none;
	-webkit-box-shadow: var(--shadow);
	-moz-box-shadow: var(--shadow);
	box-shadow: var(--shadow);
	margin: 0;
	opacity: 0;
	visibility: hidden;
	font-size: var(--text-base);
	font-weight: 600;
	background-color: var(--white);
	-webkit-transform: translateY(20%);
	-moz-transform: translateY(20%);
	-ms-transform: translateY(20%);
	-o-transform: translateY(20%);
	transform: translateY(20%);
	-webkit-transition: var(--duration);
	-o-transition: var(--duration);
	-moz-transition: var(--duration);
	transition: var(--duration);
	pointer-events: none;
}

.result-clipboard.active {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-o-transform: translateY(0%);
	transform: translateY(0%);
}

.wrapper-result {
	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;
}

.desc-result {
	font-size: 14px;
	opacity: 0.8;
	margin-top: 10px;
}

.vc_row.row-sharepost p {
	font-size: var(--text-xs);
	opacity: .5;
}

.vc_row.row-sharepost strong {
	font-weight: 500;
}




/* WH FILTER */
.whfilter-overview .info-results {
	display: none;
}

.whfilter_form {
	width: 100%;
	max-width: 246px;
	font-size: var(--text-sm);
	line-height: 1;
}

.whfilter-filter>.filter-item:not(:last-of-type) {
	margin-bottom: 40px;
}

.whfilter-filter>.filter-item>label {
	margin-bottom: 12px;
	font-weight: 500;
}

.whfilter-overview .info-results {
	display: none;
}

.whfilter-overview .ajaxloading {
	position: fixed;
	z-index: 14;
}

.whfilter-overview .ajaxloading {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: wait;
	font-size: 0;
	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;
	background-color: rgba(255, 255, 255, .8);
}

.whfilter-overview .ajaxloading:before {
	content: " ";
	display: block;
	min-width: 80px;
	min-height: 80px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='267px' height='267px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'><circle cx='50' cy='50' r='32' stroke-width='8' stroke='%230575E6' stroke-dasharray='50.26548245743669 50.26548245743669' fill='none' stroke-linecap='round'>  <animateTransform attributeName='transform' type='rotate' repeatCount='indefinite' dur='1s' keyTimes='0;1' values='0 50 50;360 50 50'></animateTransform></circle></svg>") center/contain no-repeat;
}




/* POPUP TENAGA PENDIDIK */
.popup-tenaga-pendidik {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

.popup-tenaga-pendidik .popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: .7;
	background-color: var(--black);
}

.popup-tenaga-pendidik {
	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;
	-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;
}

.popup-tenaga-pendidik.active {
	opacity: 1;
	visibility: visible;
}

.popup-tenaga-pendidik .popup-content {
	position: relative;
	z-index: 1;
	width: -webkit-calc(100% - 32px);
	width: -moz-calc(100% - 32px);
	width: calc(100% - 32px);
	max-width: 1170px;
	height: 100%;
	margin: 100px auto;
	background-color: var(--white);
	overflow: hidden;
}

.popup-tenaga-pendidik .popup-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-flow: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.popup-tenaga-pendidik .popup-content .btn-close-popup {
	display: inline-block;
	width: 30px;
	height: 30px;
	padding: 0;
	font-size: 0;
	background: url(/wp-content/uploads/2022/11/icon-close.svg) center/contain no-repeat;
	-webkit-transition: var(--duration);
	-o-transition: var(--duration);
	-moz-transition: var(--duration);
	transition: var(--duration);
}

.popup-tenaga-pendidik .popup-content .btn-close-popup:hover {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

.popup-tenaga-pendidik .popup-content .btn-close-popup {
	position: absolute;
	top: 0;
	right: 0;
}

.popup-tenaga-pendidik .listing-tenaga-pendidik {
	overflow: hidden auto;
	height: 100%;
	max-height: -webkit-calc(100vh - 475px);
	max-height: -moz-calc(100vh - 475px);
	max-height: calc(100vh - 475px);
	padding-right: 5px;
}

.popup-tenaga-pendidik .listing-tenaga-pendidik::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	-webkit-border-radius: 60px;
	border-radius: 60px;
	background-color: var(--gray-100);
}

.popup-tenaga-pendidik .listing-tenaga-pendidik::-webkit-scrollbar-thumb {
	width: 6px;
	height: 6px;
	-webkit-border-radius: 60px;
	border-radius: 60px;
	background-color: var(--red);
}



/* BEFORE LOAD SLICK */
.banner-slider:not(.slick-initialized),
.listing-slider:not(.slick-initialized) {
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	-webkit-flex-flow: row nowrap;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	flex-flow: row nowrap;
}

.listing-slider:not(.slick-initialized) .listing-item,
.banner-slider:not(.slick-initialized) .banner-slider--item {
	opacity: 0.5;
}

.banner-slider:not(.slick-initialized) .banner-slider--item {
	min-width: 100%;
}

.listing-slider:not(.slick-initialized) .listing-item {
	min-width: 33.333%;
}

.listing-slider:not(.slick-initialized)::-webkit-scrollbar,
.banner-slider:not(.slick-initialized)::-webkit-scrollbar {
	width: 1px;
	height: 1px;
}

.listing-slider:not(.slick-initialized)::-webkit-scrollbar-button,
.banner-slider:not(.slick-initialized)::-webkit-scrollbar-button {
	width: 1px;
	height: 1px;
}



/* 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;
	margin-bottom: -20px;
}

.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;
	margin-bottom: 20px;
}

.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;
}

.logo-label-wrapper.logo-sosmed .logo-group-item:not(:last-child) {
	margin-right: 28px;
}

.logo-label-wrapper.logo-sosmed img {
	width: 30px;
	height: 30px;
	-o-object-fit: contain;
	object-fit: contain;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

.site-footer .logo-label-wrapper.logo-sosmed img {
	width: 25px;
	height: 25px;
}

.logo-label-wrapper.logo-sosmed img:hover {
	-webkit-transform: translateY(-3px);
	-moz-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	-o-transform: translateY(-3px);
	transform: translateY(-3px);
}


/* COOKIE STYLE */
#cookie-notice {
	background: rgb(51 51 51 / 80%) !important;
}

#cookie-notice #cn-notice-buttons .cn-button {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid var(--red);
	padding: var(--padding-button);
	font-family: var(--fontfamily-sans);
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--white);
	line-height: normal;
	background-color: var(--red) !important;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

#cookie-notice #cn-notice-buttons .cn-button:hover {
	color: var(--red);
	background-color: var(--white) !important;
}


.site-main p a, 
.site-main ul a, 
.site-main ol a, 
.site-main table a {
	font-family: var(--fontfamily-serif);
}
