.toolbar {
	display: flex;
	flex-direction: column;
	width: 100%;
	z-index: 999;
}

.toolbar.elevated {
	background-color: #ffffff;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toolbar.primary {
	color: #ffffff;
	background-color: #097F46 !important;
}

.toolbar .header {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 12px 0;
	overflow: hidden;
}

.toolbar .header>.action {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	height: 100%;
	color: #0094FF;
}

.toolbar .header>.action.left {
	padding-left: 24px;
}

.toolbar .header>.action.right {
	padding-right: 24px;
}

.toolbar .header>.action .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	font-size: 24px;
}

.toolbar .header>.logo {
	height: 44px;
}

.toolbar .header>.logo:first-child {
	padding-left: 24px;
}

.toolbar .header>.logo:last-child {
	padding-right: 24px;
}

.toolbar .header>.title {
	flex: 1;
	display: flex;
	align-items: center;
	margin-left: 10px;
	font-size: 20px;
	font-weight: 500;
}

.toolbar .header>.title:first-child {
	padding-left: 24px;
}

.toolbar .header>.title:last-child {
	padding-right: 24px;
}

.main {
	flex: 1;
	padding-bottom: 40px;
	overflow-y: scroll;
}

.main-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	padding-bottom: 20px;
	overflow-y: scroll;
}

.main-content.offset {}

.main-content.offset:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 160px;
	background-color: #58A79E;
	z-index: 1;
}

.main-content.offset .content:first-child {
	margin-bottom: -100px;
	padding-top: 0;
	padding-bottom: 84px;
	color: #ffffff;
}

.main-content .content {
	display: flex;
	flex-direction: column;
	padding: 24px;
	width: 100%;
	z-index: 2;
}

.main-content .content>.title {
	display: flex;
	align-items: center;
	margin-bottom: 14px;
	font-size: 18px;
	font-weight: 700;
}

.main-content .content>.description {
	display: flex;
	align-items: center;
	margin-bottom: 14px;
	font-size: 14px;
	font-weight: 500;
}

.footer {
	background-color: #212121;
	padding: 35px 60px;
	width: 100%;
	font-family: Roboto, sans-serif;


	/* display: flex;
	flex-direction: column;
	padding: 60px;
	width: 100%;
	height: 400;
	z-index: 999; */
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	align-item: flex-start;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;

}

.footer-left {
	flex: 1;
	min-width: 300px;
	text-align: left;
}

.footer-right {
	flex: 1;
	min-width: 300px;
	text-align: right;
}

.footer-logo {
	width: 150px;
	margin-bottom: 16px;
}

.footer-left,
.footer-right {
	flex: 1;
	min-width: 280px;
}

.footer-desc {
	margin-bottom: 16px;
	color: #FFFF;
}

.footer-logo {
	max-width: 150px;
	margin-bottom: 16px;
}

.download-button img {
	width: 160px;
	height: auto;
	transition: transform 0.3s ease;
}

.download-button img:hover {
	transform: scale(1.05);
}

.page-empty {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100%;
}

.page-empty .image {
	margin-bottom: 24px;
	width: 160px;
}

.page-empty .title {
	margin-bottom: 8px;
	max-width: 320px;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.page-empty .title:last-child {
	margin-bottom: 0;
}

.page-empty .desc {
	margin-bottom: 24px;
	max-width: 320px;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	color: #999999;
}

.page-empty .desc:last-child {
	margin-bottom: 0;
}

.page-header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 24px;
}

.page-header .title {
	font-size: 24px;
	font-weight: 700;
	text-align: left;
}

.page-header .desc {
	font-size: 14px;
	font-weight: 500;
	text-align: left;
}

.page-title {
	margin: 40px 0 30px 0;
}

.page-subtitle {
	margin: 15px 0 10px 0;
}

.page-body {
	display: block;
}

/*
 form element
*/

.form-row {
	display: flex;
	align-items: center;
	margin: 0 -8px 24px -8px;
}

.form-row:last-child {
	margin-bottom: 6px;
}

.form-row>.form-group {
	flex: 1;
	margin-bottom: 0 !important;
	padding: 0 8px;
}

.form-group {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 24px;
	width: 100%;
	text-align: left;
}

.form-group:last-child {
	margin-bottom: 6px;
}

.form-group.sm {
	margin-bottom: 14px;
}

.form-group.xs {
	margin-bottom: 10px;
}

.form-group>.center {
	width: 100%;
	align-items: center;
	text-align: center;
}

.form-group>.separator {
	width: 100%;
	margin: 14px 0;
}

.form-group>.separator.sm {
	margin: 7px 0;
}

.form-group>.separator.xs {
	margin: 5px 0;
}

.form-group>.left {
	width: 100%;
	align-items: flex-start;
	text-align: left;
}

.form-group>.right {
	width: 100%;
	align-items: flex-end;
	text-align: right;
}

.form-group .label {
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	color: rgba(0, 0, 0, 0.87);
}

.form-group .error {
	font-size: 12px;
	font-weight: 500;
	color: #dc5f5f;
}

.form-group .input-group {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.form-group .input-group .input {
	margin-bottom: 0;
	margin-right: 14px;
	width: auto;
}

.form-group .input-group .input:last-child {
	margin-bottom: 0;
	margin-right: 0;
}

.form-group .input-preview {
	display: flex;
}

.form-group .input-preview .preview-image {
	margin-top: 10px;
	width: 200px;
}

.form-group .input {
	display: flex;
	position: relative;
	margin-top: 10px;
	margin-bottom: 8px;
	width: 100%;
	min-height: min-content;
	background-color: #fff;
	border: 1px solid #eaeaea;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	overflow: hidden;
}

.form-group .input.flex {
	flex: 1;
}

.form-group .input:last-child {
	margin-bottom: 0;
}

.form-group .input.icon-left .form-control {
	--padding-start: 48px;
	padding-left: 48px;
}

.form-group .input.icon-left .form-icon {
	position: absolute;
	width: 48px;
	top: 0;
	left: 0;
}

.form-group .input.icon-right .form-control {
	--padding-end: 48px;
	padding-right: 48px;
}

.form-group .input.icon-right .form-icon {
	position: absolute;
	width: 48px;
	top: 0;
	right: 0;
}

.form-group .input .form-control {
	--padding-start: 16px;
	--padding-end: 16px;
	--padding-top: 16px;
	--padding-bottom: 16px;
	flex: 1;
	width: 100%;
	margin: 0;
	padding: 16px;
	font-size: inherit;
	font-weight: inherit;
	max-height: 160px;
	color: rgba(0, 0, 0, 0.87);
	background-color: transparent;
	opacity: 1;
	border: none;
	resize: none;
	overflow-x: hidden;
	overflow-y: auto;
}

.form-group .input .form-control.empty {
	color: #dedede;
}

.form-group .input .form-control.disabled {
	background-color: #ddd;
}

.form-group .input .form-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 100%;
	color: rgba(0, 0, 0, 0.87);
	z-index: 3;
}

.form-group .input .form-icon.default {
	color: #999;
}

.form-group .input .form-icon.primary {
	color: #58A79E;
}

.form-group .input .form-icon .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	font-size: 20px;
}

.form-group .input .form-label {
	display: flex;
	align-items: center;
	padding: 0 24px;
	font-size: 14px;
	font-weight: 700;
}

.form-group .input .form-label:first-child {
	border: 1px solid #58A79E;
	-webkit-border-radius: 4px 0 0 4px;
	border-radius: 4px 0 0 4px;
}

.form-group .input .form-label:last-child {
	border: 1px solid #58A79E;
	-webkit-border-radius: 0 4px 4px 0;
	border-radius: 0 4px 4px 0;
}

.form-group .input ion-textarea.form-control {
	padding: 0;
	white-space: pre-wrap;
	word-break: break-word;
	text-align: left;
}

.form-group .checkbox {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 8px;
	margin-bottom: 6px;
	min-height: min-content;
	overflow-x: auto;
}

.form-group .checkbox:last-child {
	margin-bottom: 0;
}

.form-group .checkbox.col-2 {
	flex-wrap: wrap;
}

.form-group .checkbox.col-2 .checkbox-item {
	flex-grow: 1;
	margin-right: 0;
	width: 50%;
}

.form-group .checkbox.elevated {
	padding: 14px;
	background-color: #fff;
	border: 1px solid #eaeaea;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	overflow: hidden;
}

.form-group .checkbox.elevated.disabled {
	background-color: #e8e8e8;
}

.form-group .checkbox.elevated.disabled .checkbox-item {
	position: relative;
	color: #999;
}

.form-group .checkbox.elevated.disabled .checkbox-item .checkbox-toggle {
	opacity: 0.5;
}

.form-group .checkbox.elevated.disabled .checkbox-item .checkbox-label {
	text-decoration: line-through;
}

.form-group .checkbox.list {
	flex-direction: column;
	align-items: stretch;
	min-height: auto;
	width: 100%;
}

.form-group .checkbox.list .checkbox-item {
	margin-bottom: 18px;
	margin-right: 0;
}

.form-group .checkbox.list .checkbox-item:last-child {
	margin-bottom: 0;
}

.form-group .checkbox.list .checkbox-item .checkbox-label {
	flex: 1;
}

.form-group .checkbox .checkbox-item {
	display: flex;
	align-items: center;
	margin-right: 24px;
	cursor: pointer;
}

.form-group .checkbox .checkbox-item:last-child {
	margin-right: 0;
}

.form-group .checkbox .checkbox-item .checkbox-control {
	display: none;
}

.form-group .checkbox .checkbox-item .checkbox-toggle {
	width: 20px;
	height: 20px;
	border: 1px solid #999999;
	opacity: 1;
}

.form-group .checkbox .checkbox-item .checkbox-control:checked+.checkbox-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #58A79E;
	border-color: #58A79E;
	color: #ffffff;
}

.form-group .checkbox .checkbox-item .checkbox-control:checked+.checkbox-toggle:after {
	content: "\e9d0";
	font-family: 'unicons-line' !important;
	font-size: 20px;
}

.form-group .checkbox .checkbox-item .checkbox-label {
	padding: 4px 0;
	font-size: inherit;
	font-weight: inherit;
}

.form-group .checkbox .checkbox-item .checkbox-label:first-child {
	padding-right: 10px;
}

.form-group .checkbox .checkbox-item .checkbox-label:last-child {
	padding-left: 10px;
}

.button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 14px;
	min-height: min-content;
	font-size: 14px;
	font-weight: 500;
	line-height: 14px;
	color: #fff;
	background-color: #999;
	border: none;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.button:hover {
	cursor: pointer;
	background-color: #019aa0;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
	transform: scale(1.05);


}

.button:disabled {
	opacity: .7;
}

.button:disabled:hover {
	cursor: default;
}

.button>.icon {
	font-size: 24px;
}

.button>.flex {
	flex: 1;
}

.button.button-block {
	width: 100%;
}

.button.button-xs {
	padding: 6px 12px;
	font-size: 12px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

.button.button-sm {
	padding: 8px 14px;
	font-size: 12px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

.button.button-circle {
	margin: 0;
	padding: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
}

.button.button-outline {
	color: rgba(0, 0, 0, 0.87);
	background-color: transparent;
	border: 1px solid #dedede;
}

.button.button-outline .primary {
	color: #58A79E;
}

.button.button-primary {
	color: #fff;
	background-color: #58A79E;
}

.button.button-primary.button-outline {
	color: #58A79E;
	background-color: transparent;
	border-color: #58A79E;
}

.button.button-secondary {
	color: #fff;
	background-color: #e7ac45;
}

.button.button-secondary.button-outline {
	color: #e7ac45;
	background-color: transparent;
	border-color: #e7ac45;
}

.button.button-success {
	color: #fff;
	background-color: #61c2bd;
}

.button.button-success.button-outline {
	color: #61c2bd;
	background-color: transparent;
	border-color: #61c2bd;
}

.button.button-warning {
	color: #fff;
	background-color: #e7ac45;
}

.button.button-warning.button-outline {
	color: #e7ac45;
	background-color: transparent;
	border-color: #e7ac45;
}

.button.button-danger {
	color: #fff;
	background-color: #dc5f5f;
}

.button.button-danger.button-outline {
	color: #dc5f5f;
	background-color: transparent;
	border-color: #dc5f5f;
}

.button.button-clear {
	color: rgba(0, 0, 0, 0.87);
	background-color: transparent;
	border-color: transparent;
}

.button.button-clear.button-outline {
	color: rgba(0, 0, 0, 0.87);
	background-color: transparent;
	border-color: rgba(0, 0, 0, 0.87);
}

.button.button-google {
	color: #fff;
	background-color: #de5246;
}

.button.button-google.button-outline {
	color: #de5246;
	background-color: transparent;
	border-color: #de5246;
}

.button.button-facebook {
	color: #fff;
	background-color: #3b5998;
}

.button.button-facebook.button-outline {
	color: #3b5998;
	background-color: transparent;
	border-color: #3b5998;
}

.button.button-whatsapp {
	color: #fff;
	background-color: #25d366;
}

.button.button-whatsapp.button-outline {
	color: #25d366;
	background-color: transparent;
	border-color: #25d366;
}

.button-group {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}

.button-group>.button {
	flex: 1;
	margin-right: 16px;
}

.button-group>.button:last-child {
	margin-right: 0;
}

.modal-dialog {
	width: 100% !important;
}

.modal-fullscreen .modal-dialog {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
}

.modal-fullscreen .modal-dialog .modal-content {
	width: 360px;
	height: 0;
	display: flex;
	border: none;
	overflow: visible;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section {
	width: 100%;
	overflow: visible;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-form {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 0;
	height: 100vh;
	background-color: #f8f8f8;
	overflow-x: hidden;
	overflow-y: hidden;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.close {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 12px 24px;
	opacity: 1;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.close .image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.close .image .icon {
	font-size: 20px;
	color: #58A79E;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.content {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 24px;
	overflow-x: hidden;
	overflow-y: scroll;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.content.fullwidth {
	padding-left: 0;
	padding-right: 0;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.content.fullheight {
	padding-top: 0;
	padding-bottom: 0;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.content.fullscreen {
	padding: 0;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.content.middle {
	justify-content: center;
	padding: 24px;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.content.center {
	width: 100%;
	display: flex;
	align-items: center;
	text-align: center;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.content .image {
	margin-bottom: 16px;
	width: 190px;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.content .image:last-child {
	margin-bottom: 0;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.content>.title {
	margin-top: 8px;
	margin-bottom: 24px;
	font-size: 24px;
	font-weight: 700;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.content>.title:first-child {
	margin-top: 0;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.content>.desc {
	margin-top: 8px;
	font-size: 12px;
	font-weight: 500;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.content>.desc:first-child {
	margin-top: 0;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.content .action {
	display: flex;
	align-items: center;
	margin-top: 12px;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.content .action:first-child {
	margin-top: 0;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.content .action .button {
	margin-right: 12px;
	min-width: 160px;
}

.modal-fullscreen .modal-dialog .modal-content .modal-section .modal-body>.content .action .button:last-child {
	margin-right: 0;
}

.modal-bottom-sheet .modal-dialog {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	position: fixed;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
}

.modal-bottom-sheet .modal-dialog .modal-content {
	width: 360px;
	height: 0;
	display: flex;
	border: none;
	overflow: visible;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section {
	width: 100%;
	overflow: visible;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-form {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body {
	display: flex;
	flex-direction: column;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px;
	max-height: calc(100vh - 54px);
	background-color: #f8f8f8;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-border-radius: 12px 12px 0 0;
	border-radius: 12px 12px 0 0;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.close {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.close .image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.close .image .icon {
	font-size: 20px;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content.center {
	width: 100%;
	display: flex;
	align-items: center;
	text-align: center;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content .image {
	margin-bottom: 16px;
	width: 190px;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content .image:last-child {
	margin-bottom: 0;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content>.title {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 700;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content>.title:first-child {
	margin-top: 0;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content>.desc {
	margin-top: 8px;
	font-size: 12px;
	font-weight: 500;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content>.desc:first-child {
	margin-top: 0;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content .list {
	display: flex;
	flex-direction: column;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content .list .item {
	display: flex;
	align-items: center;
	margin-bottom: 14px;
	text-transform: none;
	color: rgba(0, 0, 0, 0.87);
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content .list .item:last-child {
	margin-bottom: 0;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content .list .item .icon {
	margin-right: 18px;
	font-size: 24px;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content .list .item .text {
	flex: 1;
	font-size: 14px;
	font-weight: 500;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content .action {
	display: flex;
	align-items: center;
	margin-top: 12px;
	width: 100%;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content .action:first-child {
	margin-top: 0;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content .action .button {
	flex: 1;
	margin-right: 12px;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content .action .button:last-child {
	margin-right: 0;
}

.modal-bottom-sheet .modal-dialog .modal-content .modal-section .modal-body>.content .bottom-separator {
	margin-bottom: 12px;
}

.modal-popover .modal-dialog {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0;
}

.modal-popover .modal-dialog .modal-content {
	width: 360px;
	height: 0;
	display: flex;
	border: none;
	overflow: visible;
}

.modal-popover .modal-dialog .modal-content .modal-section {
	width: 100%;
	overflow: visible;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-form {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0;
	left: 24px;
	right: 24px;
	padding: 24px;
	max-height: calc(100vh - (2 * 54px));
	background-color: #f8f8f8;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-border-radius: 12px;
	border-radius: 12px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .close {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .close .image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .close .image .icon {
	font-size: 20px;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .content {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .content>.title {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 700;
	color: #58A79E;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .content>.title:first-child {
	margin-top: 0;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .content>.desc {
	margin-top: 8px;
	font-size: 12px;
	font-weight: 500;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .content>.desc:first-child {
	margin-top: 0;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .content .list {
	display: flex;
	flex-direction: column;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .content .list .item {
	display: flex;
	align-items: center;
	margin-bottom: 14px;
	text-transform: none;
	color: rgba(0, 0, 0, 0.87);
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .content .list .item:last-child {
	margin-bottom: 0;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .content .list .item .icon {
	margin-right: 18px;
	font-size: 24px;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .content .list .item .text {
	flex: 1;
	font-size: 14px;
	font-weight: 500;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .content .action {
	display: flex;
	align-items: center;
	margin-top: 12px;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .content .action:first-child {
	margin-top: 0;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .content .action .button {
	flex: 1;
	margin-right: 12px;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .content .action .button:last-child {
	margin-right: 0;
}

.modal-popover .modal-dialog .modal-content .modal-section .modal-body .content .bottom-separator {
	margin-bottom: 12px;
}


img {
	max-width: 100%;
}

.bg-inherit {
	background-color: inherit;
	box-shadow: 2px 2px 2px rgba(255, 255, 255, 0.5)
}

.card-harga {
	box-shadow: 0 2px 6px rgba(0, 0, 67, 0.5)
}

.card-rekomendasi {
	background-color: #06743F;
}

.card-contains {
	background-color: inherit;
}

.rekomendasi {
	color: #FFFFFF;
}

/* Custom CSS untuk section height */
.full-height {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Custom CSS untuk WhatsApp button */
.whatsapp-button {
	display: flex;
	align-items: center;
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 100;
	-webkit-border-radius: 35px;
	border-radius: 35px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0, 0, 0.10, 0.15);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.whatsapp-button:hover {
	text-decoration: none;
	transform: scale(1.05);
}

.whatsapp-button:focus {
	text-decoration: none;
}

.trial-text {
	background: white;
	color: #411fbd;
	padding: 0.75rem 1.5rem;
	font-weight: 500;
	/* font-size: 1.25rem; */
}

.icon-section {
	background: #00d1b2;
	color: white;
	padding: 0.75rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.price-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 24px;
	height: 72px;
}

.price-content .title {
	margin-bottom: 0;
	font-weight: 700;
}

.scroll-arrow {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1000;
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.scroll-arrow:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

.scroll-arrow.left {
	left: 1rem;
}

.scroll-arrow.right {
	right: 1rem;
}

.bg0 {
	background-color: cornflowerblue;
}

.bg1 {
	background-color: #F8F8F8;
	color: #212121;
}

.bg2 {
	background-color: #86D293;
}

.bg3 {
	background-color: #00CCDD;
}

.bg4 {
	background-color: #E8B86D;
}

.bg5 {
	background-color: #B59F78;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	/* Rasio aspek 16:9 (9/16 * 100) */
	height: 0;
	overflow: hidden;
}

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

.landing {
	padding: 0;
	background-color: #F8F8F8;
}

.sticky-navbar {
	padding-top: 52px;
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	height: 52px;
	background-color: white;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	z-index: 999;
}

.navbar .container {
	display: flex;
	align-items: center;
	height: 100%;
}

.navbar .brand {
	padding: 12px 0;
	height: 100%;
}

.navbar-item {
	padding: 12px;
	color: #4a4a4a;
	font-weight: 500;
}

.navbar-item:hover {
	text-decoration: none;
}

.navbar-item>img {
	height: 100%;
}

/* Styling untuk mobile burger menu */
.navbar-burger {
	color: #4a4a4a;
}

.navbar-burger:hover {
	background-color: transparent;
}

/* Animasi untuk burger menu */
.navbar-burger span {
	height: 2px;
	width: 16px;
	left: calc(50% - 8px);
}

.navbar-menu {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

#home.section {
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 52px;
	box-sizing: border-box;
}

#home.section>.container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

#home.section>.container>.text-content .title {
	font-size: 48px;
	font-weight: 500;
	margin-bottom: 12px;
}

#home.section>.container>.text-content .subtitle {
	font-size: 20px;
	margin-bottom: 24px;
}

.cta-button {
	display: inline-block;
	padding: 12px 24px;
	background-color: #01CDD4;
	color: black;
	font-size: 16px;
	font-weight: 500;
	border: none;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.3s ease;
	transition: transform 0.3s ease;
}

.cta-button:hover {
	background-color: #019aa0;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
	transform: scale(1.05);
}

.banner-image {
	display: block;
	max-width: 100%;
	height: auto;
}

/* #testimonial.section>.container img {
	width: auto;
	height: auto;
	margin-right: 0;
	margin-bottom: 82px;
}

#testimonial.section>.container>.title {
	font-size: 40px;
	font-weight: 500;
}

#testimonial.section>.container>.subtitle {
	margin-bottom: 24px;
	font-size: 20px;
}

#testimonial.section>.container>.video {
	width: 100%;
} */

html {
	scroll-behavior: smooth;
}

.section {
	scroll-margin-top: 80px;
}

#feature.section>.container>.title {
	font-size: 40px;
	font-weight: 500;
}

#feature.section>.container>.subtitle {
	font-size: 20px;
	margin-bottom: 24px;
}

#feature.section>.container .feature-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

#feature.section>.container .feature-item {
	display: flex;
	align-items: stretch;
	padding-top: 15px;
	padding-bottom: 15px;
}

#feature.section>.container .feature-item>.card {
	padding: 24px;
	background-color: #FFFFFF;
	color: #363636;
	/* -webkit-border-radius: 4px;
	border-radius: 4px; */

	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 67, 0.5);
	box-shadow: 0 2px 6px rgba(0, 0, 67, 0.5);
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

#feature.section>.container .feature-item>.card .icon {
	display: flex;
	justify-content: center;
	color: #01CDD4;
	margin-bottom: 24px;
}

#feature.section>.container .feature-item>.card .icon>svg {
	width: 48px;
}

#feature.section>.container .feature-item>.card img {
	margin-bottom: 24px;
}

#feature.section>.container .feature-item>.card .title {
	font-size: 24px;
	font-weight: 700;
}

#feature.section>.container .feature-item>.card .subtitle {
	font-size: 16px;
	font-weight: 400;
}

#price.section>.container>.title-lg {
	font-size: 48px;
	font-weight: 400;
}

#price.section>.container>.title {
	font-size: 40px;
	font-weight: 500;
}

#price.section>.container>.subtitle {
	margin-bottom: 24px;
	font-size: 24px;
}

#price.section>.container .price-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

#price.section>.container .price-item {
	display: flex;
	align-items: stretch;
	padding-top: 15px;
	padding-bottom: 15px;
}

#price.section>.container .price-item>.card {
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	background-color: #FFFFFF;
	color: #363636;
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 67, 0.5);
	box-shadow: 0 2px 6px rgba(0, 0, 67, 0.5);
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

#price.section>.container .price-item>.card.highlighted {
	background-color: #01CDD4;
	color: #000000;
}

#price.section>.container .price-item .card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 24px;
}

#price.section>.container .price-item .card-content .separator {
	flex: 1;
}

#price.section>.container .price-item .title {
	font-size: 20px;
	font-weight: 500;
}

#price.section>.container .price-item .price-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 80px;
}

#price.section>.container .price-item .price {
	display: flex;
	justify-content: center;
	margin: 0;
	line-height: 1em;
	font-size: 40px;
	font-weight: 500;
	font-weight: 700;
}

#price.section>.container .price-item .price>strike {
	font-size: 24px;
}

#price.section>.container .price-item ul {
	margin-top: 24px;
	list-style: none;
}

#price.section>.container .price-item ul>li {
	text-align: center;
}

#price.section>.container .price-item .button {
	display: block;
	margin-top: 24px;
	padding: 15px 0;
	line-height: 1em;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
	color: #363636;
	background-color: #FFFFFF;
	border: 1px solid #dbdbdb;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

#price.section>.container .price-item .button:hover,
#price.section>.container .price-item .button:focus {
	text-decoration: none;
}

#price.section>.container .price-item .card.highlighted .button {
	background-color: #FFFFFF;
}

#price.section>.container .title {
	text-align: center;
}

.m-b-0 {
	margin-bottom: 0 !important;
}

* {
	box-sizing: border-box
}

/* Slideshow container */
.slideshow {
	position: relative;
	width: 100%;
}

/* Hide the images by default */
.slideshow .image {
	display: none;
	width: 100%;
	-webkit-animation: fadeIn 1s ease-in-out;
	animation: fadeIn 1s ease-in-out;
}

/* Next & previous buttons */
.slideshow .slide-nav {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}

.slideshow .slide-nav:hover,
.slideshow .slide-nav:active {
	background-color: rgba(0, 0, 0, 0.8);
	text-decoration: none;
}

/* Position the "next button" to the right */
.slideshow .next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

@keyframes fadeIn {
	from {
		opacity: .4
	}

	to {
		opacity: 1
	}
}