:root {
	--theme-primary-color: #004289;
	--theme-secondary-color: #1c75bc;
	--theme-bg-page: #F6F6F6;
	--theme-bg-form: #F6F6F6;
	--theme-text-color: #424242;
	--theme-buyer-color: #1B5E20;
	--theme-seller-color: #0D47A1
}

.theme-bg-primary {
	background-color: var(--theme-primary-color)
}

.theme-bg-secondary {
	background-color: var(--theme-secondary-color)
}

.theme-text-primary {
	color: var(--theme-primary-color)
}

.theme-text-secondary {
	color: var(--theme-secondary-color)
}

.theme-bg-page {
	background-color: var(--theme-bg-page)
}

.theme-page-wrapper {
	padding: 2.875rem 0
}

@media(min-width: 768px) {
	.theme-page-wrapper {
		padding: 3.125rem 0
	}
}

@media(min-width: 1200px) {
	.theme-page-wrapper {
		padding: 3.75rem 0
	}
}

@media(min-width: 1400px) {
	.theme-page-wrapper {
		padding: 3.75rem 0
	}
}

.theme-banner-page {
	position: relative;
	display: flex;
	flex-direction: column-reverse
}

.theme-banner-page .container {
	position: relative
}

@media(max-width: 767px) {
	.theme-banner-page .container {
		padding: 0
	}
}

@media(min-width: 768px) {
	.theme-banner-page .container {
		position: absolute;
		inset: 0
	}
}

.theme-banner-page .container .banner-content {
	background-color: #1c1c1c;
	padding: .25rem 0;
	margin: auto;
	margin-top: .5rem;
	text-align: center
}

@media(min-width: 768px) {
	.theme-banner-page .container .banner-content {
		position: absolute;
		top: 50%;
		right: calc(var(--bs-gutter-x)*.5);
		transform: translateY(-50%);
		padding: 0 1.25rem;
		margin: 0
	}
}

@media(min-width: 1400px) {
	.theme-banner-page .container .banner-content {
		top: unset;
		bottom: 5%
	}
}

.theme-banner-page .container .banner-content .banner-title {
	font-size: 2.125rem;
	font-weight: 700;
	color: #fff
}

@media(min-width: 768px) {
	.theme-banner-page .container .banner-content .banner-title {
		font-size: 1.625rem
	}
}

@media(min-width: 992px) {
	.theme-banner-page .container .banner-content .banner-title {
		font-size: 2.125rem
	}
}

@media(min-width: 1200px) {
	.theme-banner-page .container .banner-content .banner-title {
		font-size: 2.375rem
	}
}

@media(min-width: 1400px) {
	.theme-banner-page .container .banner-content .banner-title {
		font-size: 2.625rem
	}
}

.theme-banner-page .container .banner-content .banner-title.big {
	font-size: 2.125rem
}

@media(min-width: 992px) {
	.theme-banner-page .container .banner-content .banner-title.big {
		font-size: 2.375rem
	}
}

@media(min-width: 1200px) {
	.theme-banner-page .container .banner-content .banner-title.big {
		font-size: 2.625rem
	}
}

@media(min-width: 1400px) {
	.theme-banner-page .container .banner-content .banner-title.big {
		font-size: 3.125rem
	}
}

.theme-banner-page .container .banner-content.center {
	top: 50%;
	bottom: unset
}

.theme-banner-page img {
	display: none !important
}

@media(min-width: 768px) {
	.theme-banner-page img {
		display: block !important
	}
}

.btn-navregister {
	padding: 8px 15px;
	text-decoration: none;
	border: none;
	font-weight: bold
}

.btn-navregister.btn-navregister {
	background-color: var(--theme-secondary-color);
	color: #fff
}

.btn-navregister.btn-navregister:hover {
	background-color: #e67e00
}

.navbar {
	box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

header nav .navbar-brand img {
	height: 36px
}

@media(min-width: 1400px) {
	header nav .navbar-brand img {
		height: 46px
	}
}

header nav .navbar-member .btn-reg,
header nav .navbar-member .btn-login {
	width: 100%
}

@media(max-width: 767px) {

	header nav .navbar-member .btn-reg,
	header nav .navbar-member .btn-login {
		padding-top: 8px;
		padding-bottom: 8px
	}
}

@media(min-width: 768px) {

	header nav .navbar-member .btn-reg,
	header nav .navbar-member .btn-login {
		width: fit-content
	}
}

header nav .navbar-member .btn-reg {
	border: 1px solid #000
}

@media(min-width: 768px) {
	header nav .navbar-member .btn-reg {
		border: none
	}
}

header nav .navbar-member .btn-login.btn-buyer {
	background: var(--theme-primary-color);
	background: -moz-linear-gradient(320deg, var(--theme-secondary-color) 0%, var(--theme-primary-color) 100%);
	background: -webkit-linear-gradient(320deg, var(--theme-secondary-color) 0%, var(--theme-primary-color) 100%);
	background: linear-gradient(320deg, var(--theme-secondary-color) 0%, var(--theme-primary-color) 100%);
}

header nav .navbar-member .btn-login.btn-seller {
	background: #D08700;
	background: -moz-linear-gradient(320deg, #F0B100 0%, #D08700 100%);
	background: -webkit-linear-gradient(320deg, #F0B100 0%, #D08700 100%);
	background: linear-gradient(320deg, #F0B100 0%, #D08700 100%)
}

header nav .navbar-member .btn-profile {
	border: 1px solid #eee
}

header nav .navbar-member .btn-profile .member-avatar {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	object-fit: contain;
	display: block;
	padding: 3px
}

header nav .navbar-member .btn-profile .member-avatar.buyer {
	background-color: var(--theme-buyer-color)
}

header nav .navbar-member .btn-profile .member-avatar.seller {
	background-color: var(--theme-seller-color)
}

header nav .navbar-member .dropdown-menu .dropdown-item:active {
	background-color: var(--theme-primary-color)
}

footer .sitemap {
	color: #fff;
	background-color: #1c1c1c;
	padding: 3.75rem 0
}

footer .sitemap .sitemap-logo {
	margin-bottom: 1rem
}

footer .sitemap .sitemap-logo img {
	width: auto;
	max-width: 100%;
	height: 56px;
	object-fit: contain;
	display: block
}

footer .sitemap .row {
	align-items: flex-end
}

footer .sitemap .row .sitemap-info .sitemap-title {
	margin-bottom: .125rem
}

footer .sitemap .row .sitemap-contact .contact-item {
	margin: 0
}

footer .sitemap .row .sitemap-nav {
	display: flex;
	flex-direction: column
}

footer .sitemap .row .sitemap-nav a {
	padding: .3125rem 0;
	border-bottom: 1px solid #ececec
}

@media(min-width: 992px) {
	footer .sitemap .row .sitemap-nav a {
		border-bottom: none
	}
}

footer .sitemap .row .sitemap-nav a:last-child {
	border-bottom: none
}

footer .sitemap .row .sitemap-line-oa {
	width: 175px;
	height: 175px;
	max-width: 100%;
	object-fit: contain;
	display: block
}

footer .copyright {
	padding: .625rem 0
}

footer .copyright .container {
	display: flex;
	justify-content: space-between
}

footer .copyright .container .policy {
	display: flex;
	flex-direction: row
}

footer .copyright .container .policy a {
	font-size: .875rem;
	position: relative
}

.theme-btn {
	border: none;
	background-color: none;
	background: var(--theme-primary-color);
	background: -moz-linear-gradient(320deg, var(--theme-secondary-color) 0%, var(--theme-primary-color) 100%);
	background: -webkit-linear-gradient(320deg, var(--theme-secondary-color) 0%, var(--theme-primary-color) 100%);
	background: linear-gradient(320deg, var(--theme-secondary-color) 0%, var(--theme-primary-color) 100%);
	transition: 500ms ease
}

.theme-btn:hover {
	transform: scale(1.04)
}

.theme-input-field .form-control:focus,
.theme-input-field select:focus {
	border-color: var(--theme-primary-color);
	box-shadow: 0 0 0 .25rem rgba(249, 125, 5, .25)
}

.theme-input-field input,
.theme-input-field textarea,
.theme-input-field select {
	font-weight: 300
}

.theme-line-header {
	position: relative;
	width: fit-content
}

.theme-line-header::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.3125rem;
	width: 3.75rem;
	height: 4px;
	background-color: var(--theme-secondary-color);
	border-radius: 0
}

.home-page .section-wrapper {
	padding: 1.875rem 0
}

@media(min-width: 768px) {
	.home-page .section-wrapper {
		padding: 2.5rem 0
	}
}

@media(min-width: 992px) {
	.home-page .section-wrapper {
		padding: 3.125rem 0
	}
}

@media(min-width: 1200px) {
	.home-page .section-wrapper {
		padding: 4.375rem 0
	}
}

@media(min-width: 1400px) {
	.home-page .section-wrapper {
		padding: 5rem 0
	}
}

.home-page .section-recommend .section-video {
	margin-top: 1.875rem
}

.home-page .section-seller-highlight {
	--padding-seller-list: 0.5rem;
	overflow: hidden
}

@media(min-width: 1400px) {
	.home-page .section-seller-highlight {
		--padding-seller-list: 1.5625rem
	}
}

.home-page .section-seller-highlight .section-title {
	font-size: 1.25rem
}

@media(min-width: 768px) {
	.home-page .section-seller-highlight .section-title {
		font-size: 1.5rem
	}
}

@media(min-width: 992px) {
	.home-page .section-seller-highlight .section-title {
		font-size: 1.625rem
	}
}

@media(min-width: 1200px) {
	.home-page .section-seller-highlight .section-title {
		font-size: 1.625rem
	}
}

@media(min-width: 1400px) {
	.home-page .section-seller-highlight .section-title {
		font-size: 1.875rem
	}
}

.home-page .section-seller-highlight .row {
	margin-left: calc(var(--padding-seller-list)*-1);
	margin-right: calc(var(--padding-seller-list)*-1)
}

.home-page .section-seller-highlight .row>* {
	padding-left: var(--padding-seller-list);
	padding-right: var(--padding-seller-list)
}

.home-page .section-seller-highlight .section-seller-lists {
	margin: 0 -0.625rem;
	margin-top: 1.25rem
}

@media(min-width: 768px) {
	.home-page .section-seller-highlight .section-seller-lists {
		margin-top: 1.375rem
	}
}

@media(min-width: 992px) {
	.home-page .section-seller-highlight .section-seller-lists {
		margin-top: 1.5rem
	}
}

@media(min-width: 1200px) {
	.home-page .section-seller-highlight .section-seller-lists {
		margin-top: 1.625rem
	}
}

@media(min-width: 1400px) {
	.home-page .section-seller-highlight .section-seller-lists {
		margin-top: 1.875rem
	}
}

.home-page .section-seller-highlight .section-seller-lists .card-seller {
	display: flex;
	flex-direction: column;
	padding: .5rem;
	row-gap: .75rem;
	align-items: center;
	margin: 1rem 0;
	transition: 500ms ease
}

@media(min-width: 1400px) {
	.home-page .section-seller-highlight .section-seller-lists .card-seller {
		flex-direction: row;
		padding: .625rem;
		column-gap: 1.5625rem;
		row-gap: 0
	}
}

.home-page .section-seller-highlight .section-seller-lists .card-seller .card-image {
	width: 100%;
	height: 160px;
	max-width: 100%;
	overflow: hidden;
	border-radius: 10px
}

@media(min-width: 1400px) {
	.home-page .section-seller-highlight .section-seller-lists .card-seller .card-image {
		width: 160px;
		height: 160px
	}
}

.home-page .section-seller-highlight .section-seller-lists .card-seller .card-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block
}

.home-page .section-seller-highlight .section-seller-lists .card-seller .card-body {
	flex: 1
}

.home-page .section-seller-highlight .section-seller-lists .card-seller .card-body .card-title {
	font-size: 1rem
}

@media(min-width: 768px) {
	.home-page .section-seller-highlight .section-seller-lists .card-seller .card-body .card-title {
		font-size: 1.125rem
	}
}

@media(min-width: 992px) {
	.home-page .section-seller-highlight .section-seller-lists .card-seller .card-body .card-title {
		font-size: 1.125rem
	}
}

@media(min-width: 1200px) {
	.home-page .section-seller-highlight .section-seller-lists .card-seller .card-body .card-title {
		font-size: 1.25rem
	}
}

@media(min-width: 1400px) {
	.home-page .section-seller-highlight .section-seller-lists .card-seller .card-body .card-title {
		font-size: 1.25rem
	}
}

.home-page .section-seller-highlight .section-seller-lists .card-seller .card-body .card-category {
	color: #fff;
	width: fit-content;
	background-color: var(--theme-primary-color);
	padding: .125rem .625rem;
	margin-top: .375rem;
	font-size: .75rem;
	line-height: 1.33
}

@media(min-width: 768px) {
	.home-page .section-seller-highlight .section-seller-lists .card-seller .card-body .card-category {
		font-size: .8125rem;
		line-height: normal
	}
}

@media(min-width: 992px) {
	.home-page .section-seller-highlight .section-seller-lists .card-seller .card-body .card-category {
		font-size: .8125rem;
		line-height: normal
	}
}

@media(min-width: 1200px) {
	.home-page .section-seller-highlight .section-seller-lists .card-seller .card-body .card-category {
		font-size: .9375rem;
		line-height: normal
	}
}

@media(min-width: 1400px) {
	.home-page .section-seller-highlight .section-seller-lists .card-seller .card-body .card-category {
		font-size: .9375rem;
		line-height: normal
	}
}

.home-page .section-seller-highlight .section-seller-lists .card-seller .card-body .card-brief {
	font-size: .9375rem;
	line-height: 1.33;
	color: #555;
	margin: 0;
	margin-top: 1rem;
	-webkit-line-clamp: 4
}

.home-page .section-seller-highlight .section-seller-lists .card-seller:hover {
	transform: scale(1.04);
	box-shadow: rgba(249, 125, 5, .2) 0px 8px 24px
}

.directory-page .page-content {
	padding-top: 2.875rem
}

.directory-page .page-content .section-directory {
	--padding-section-directory: 1.25rem;
	display: flex;
	gap: 0
}

@media(min-width: 768px) {
	.directory-page .page-content .section-directory {
		--padding-section-directory: 1.5rem
	}
}

@media(min-width: 992px) {
	.directory-page .page-content .section-directory {
		--padding-section-directory: 1.25rem;
		gap: var(--padding-section-directory)
	}
}

@media(min-width: 1200px) {
	.directory-page .page-content .section-directory {
		--padding-section-directory: 1.625rem;
		gap: var(--padding-section-directory)
	}
}

@media(min-width: 1400px) {
	.directory-page .page-content .section-directory {
		--padding-section-directory: 1.875rem;
		gap: var(--padding-section-directory)
	}
}

.directory-page .page-content .section-directory .section-filter {
	width: 100%;
	height: fit-content;
	padding: 1.25rem 1rem;
	background-color: #fff
}

@media(min-width: 992px) {
	.directory-page .page-content .section-directory .section-filter {
		width: 310px;
		padding: 1.625rem
	}
}

@media(min-width: 1200px) {
	.directory-page .page-content .section-directory .section-filter {
		width: 320px;
		padding: 1.875rem
	}
}

@media(min-width: 1400px) {
	.directory-page .page-content .section-directory .section-filter {
		width: 320px;
		padding: 1.875rem
	}
}

.directory-page .page-content .section-directory .section-filter .section-title {
	margin: 0
}

.directory-page .page-content .section-directory .section-filter .dropdown-category .dropdown-menu li {
	border-bottom: 1px solid #ececec
}

.directory-page .page-content .section-directory .section-filter .dropdown-category .dropdown-menu li .dropdown-item {
	white-space: normal
}

.directory-page .page-content .section-directory .section-filter .dropdown-category .dropdown-menu li:last-child {
	border-bottom: none
}

.directory-page .page-content .section-directory .section-filter .directory-category {
	margin: 0 -0.875rem;
	padding: 0;
	margin-top: 1.25rem;
	list-style: none
}

.directory-page .page-content .section-directory .section-filter .directory-category li {
	margin: .125rem 0;
	padding: .25rem .875rem
}

.directory-page .page-content .section-directory .section-filter .directory-category li a {
	display: block;
	width: 100%
}

.directory-page .page-content .section-directory .section-filter .directory-category li.active {
	color: #fff;
	font-weight: 500;
	background-color: none;
	background: var(--theme-primary-color);
	background: -moz-linear-gradient(320deg, var(--theme-secondary-color) 0%, var(--theme-primary-color) 100%);
	background: -webkit-linear-gradient(320deg, var(--theme-secondary-color) 0%, var(--theme-primary-color) 100%);
	background: linear-gradient(320deg, var(--theme-secondary-color) 0%, var(--theme-primary-color) 100%)
}

.directory-page .page-content .section-directory .section-directory-lists {
	flex: 1
}

.directory-page .page-content .section-directory .section-directory-lists .section-search {
	padding: .375rem 1rem;
	background-color: #fff
}

.directory-page .page-content .section-directory .section-directory-lists .directory-lists {
	--padding-seller-item: 0.375rem;
	margin-top: var(--padding-section-directory)
}

@media(min-width: 768px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists {
		--padding-seller-item: 0.5rem
	}
}

@media(min-width: 992px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists {
		--padding-seller-item: 0.5rem
	}
}

@media(min-width: 1200px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists {
		--padding-seller-item: 0.5625rem
	}
}

@media(min-width: 1400px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists {
		--padding-seller-item: 0.5625rem
	}
}

.directory-page .page-content .section-directory .section-directory-lists .directory-lists .row {
	margin: calc(var(--padding-seller-item)*-1)
}

.directory-page .page-content .section-directory .section-directory-lists .directory-lists .row>* {
	padding: var(--padding-seller-item)
}

.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller {
	display: block;
	height: 100%;
	padding: .625rem;
	background-color: #fff;
	transition: 500ms ease
}

@media(min-width: 768px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller {
		padding: 1.125rem
	}
}

@media(min-width: 992px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller {
		padding: 1.25rem
	}
}

@media(min-width: 1200px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller {
		padding: 1.375rem
	}
}

@media(min-width: 1400px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller {
		padding: 1.375rem
	}
}

.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-image {
	width: 100%;
	height: 150px;
	overflow: hidden;
	border-radius: 10px;
	margin: 0 auto;
	max-width: 100%
}

@media(min-width: 768px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-image {
		width: 200px;
		height: 200px
	}
}

@media(min-width: 992px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-image {
		width: 200px;
		height: 200px
	}
}

@media(min-width: 1200px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-image {
		width: 300px;
		height: 300px
	}
}

@media(min-width: 1400px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-image {
		width: 300px;
		height: 300px
	}
}

.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block
}

.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-body {
	margin-top: 1.25rem
}

.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-body .card-title {
	font-size: 1rem
}

@media(min-width: 768px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-body .card-title {
		font-size: 1.125rem
	}
}

@media(min-width: 992px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-body .card-title {
		font-size: 1.125rem
	}
}

@media(min-width: 1200px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-body .card-title {
		font-size: 1.25rem
	}
}

@media(min-width: 1400px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-body .card-title {
		font-size: 1.25rem
	}
}

.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-body .card-category {
	color: #fff;
	width: fit-content;
	background-color: var(--theme-primary-color);
	padding: .125rem .625rem;
	margin-top: .375rem;
	font-size: .75rem;
	line-height: 1.33
}

@media(min-width: 768px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-body .card-category {
		font-size: .8125rem;
		line-height: normal
	}
}

@media(min-width: 992px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-body .card-category {
		font-size: .8125rem;
		line-height: normal
	}
}

@media(min-width: 1200px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-body .card-category {
		font-size: .9375rem;
		line-height: normal
	}
}

@media(min-width: 1400px) {
	.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-body .card-category {
		font-size: .9375rem;
		line-height: normal
	}
}

.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller .card-body .card-brief {
	font-size: .9375rem;
	line-height: 1.33;
	height: 5rem;
	color: #555;
	margin: 0;
	margin-top: 1rem;
	-webkit-line-clamp: 4
}

.directory-page .page-content .section-directory .section-directory-lists .directory-lists .card-seller:hover {
	transform: scale(1.03);
	box-shadow: rgba(249, 125, 5, .2) 0px 8px 24px
}

.buyer-register-page,
.seller-register-page {
	background-color: var(--theme-bg-page)
}

.buyer-register-page .page-content .container,
.seller-register-page .page-content .container {
	min-height: calc(100dvh - 64px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem
}

@media(min-width: 992px) {

	.buyer-register-page .page-content .container,
	.seller-register-page .page-content .container {
		padding-top: 2.875rem;
		padding-bottom: 2.875rem
	}
}

@media(min-width: 1200px) {

	.buyer-register-page .page-content .container,
	.seller-register-page .page-content .container {
		padding-top: 3.75rem;
		padding-bottom: 3.75rem
	}
}

@media(min-width: 1400px) {

	.buyer-register-page .page-content .container,
	.seller-register-page .page-content .container {
		padding-top: 5rem;
		padding-bottom: 5rem
	}
}

.buyer-register-page .page-content .container .card,
.seller-register-page .page-content .container .card {
	border: 0;
	border-radius: 0
}

.buyer-register-page .page-content .container .card .card-body,
.seller-register-page .page-content .container .card .card-body {
	padding: 1.625rem 1.25rem;
	display: flex;
	flex-direction: row;
	column-gap: 3.75rem;
	color: var(--theme-text-color)
}

@media(min-width: 768px) {

	.buyer-register-page .page-content .container .card .card-body,
	.seller-register-page .page-content .container .card .card-body {
		padding: 1.875rem 1.5rem
	}
}

@media(min-width: 992px) {

	.buyer-register-page .page-content .container .card .card-body,
	.seller-register-page .page-content .container .card .card-body {
		padding: 2.125rem 1.75rem
	}
}

@media(min-width: 1200px) {

	.buyer-register-page .page-content .container .card .card-body,
	.seller-register-page .page-content .container .card .card-body {
		padding: 2.25rem 1.875rem
	}
}

@media(min-width: 1400px) {

	.buyer-register-page .page-content .container .card .card-body,
	.seller-register-page .page-content .container .card .card-body {
		padding: 2.5rem
	}
}

.buyer-register-page .page-content .container .card .card-body .card-image,
.seller-register-page .page-content .container .card .card-body .card-image {
	flex: 1
}

.buyer-register-page .page-content .container .card .card-body .card-image img,
.seller-register-page .page-content .container .card .card-body .card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 16px;
	background-color: #f5f5f5
}

.buyer-register-page .page-content .container .card .card-body .card-form,
.seller-register-page .page-content .container .card .card-body .card-form {
	flex: 1
}

.buyer-register-page .page-content .container .card .card-body .card-form .card-logo,
.seller-register-page .page-content .container .card .card-body .card-form .card-logo {
	width: auto;
	height: 70px;
	max-width: 100%;
	object-fit: contain;
	display: block;
	margin-bottom: 1.875rem
}

.buyer-register-page .page-content .container .card .card-body .card-form .card-title,
.seller-register-page .page-content .container .card .card-body .card-form .card-title {
	font-size: 1.75rem
}

.buyer-register-page .page-content .container .card .card-body .card-form .card-title.buyer,
.seller-register-page .page-content .container .card .card-body .card-form .card-title.buyer {
	color: var(--theme-buyer-color)
}

.buyer-register-page .page-content .container .card .card-body .card-form .card-title.seller,
.seller-register-page .page-content .container .card .card-body .card-form .card-title.seller {
	color: var(--theme-seller-color)
}

.buyer-register-page .page-content .container .card .card-body .card-form .card-brief,
.seller-register-page .page-content .container .card .card-body .card-form .card-brief {
	margin: 0
}

.buyer-register-page .page-content .container .card .card-body .card-form .form-field,
.seller-register-page .page-content .container .card .card-body .card-form .form-field {
	margin-top: 1.875rem
}

.buyer-register-page .page-content .container .card .card-body .card-form .form-field .btn-submit,
.seller-register-page .page-content .container .card .card-body .card-form .form-field .btn-submit {
	margin-top: 1.25rem
}

.buyer-register-page {
	background-color: var(--theme-primary-color)
}

.buyer-register-page .container .card {
	margin-top: 1.875rem
}

.buyer-register-page .container .card .card-body .card-form .form-field .theme-input-field:has(input[required]) label:after,
.buyer-register-page .container .card .card-body .card-form .form-field .theme-input-field:has(textarea[required]) label:after,
.buyer-register-page .container .card .card-body .card-form .form-field .theme-input-field:has(select[required]) label:after {
	content: "*";
	color: red;
	font-size: 1rem;
	margin-left: 2px;
	opacity: 1;
	position: relative;
	display: inline
}

.buyer-register-page .container .card .card-body .card-form .form-field .input-image-preview img {
	width: 200px;
	height: 200px;
	object-fit: contain;
	display: block
}

.buyer-register-page .container .card .card-body .card-form .btn-submit {
	margin-top: .5rem;
	width: 100%
}

@media(min-width: 768px) {
	.buyer-register-page .container .card .card-body .card-form .btn-submit {
		width: fit-content
	}
}

.buyer-register-page .container .card:first-child {
	margin-top: 0
}

.buyer-login-page .container,
.buyer-forgot-password-page .container,
.buyer-reset-password-page .container,
.seller-login-page .container {
	min-height: calc(100dvh - 64px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem
}

@media(min-width: 992px) {

	.buyer-login-page .container,
	.buyer-forgot-password-page .container,
	.buyer-reset-password-page .container,
	.seller-login-page .container {
		padding-top: 2.875rem;
		padding-bottom: 2.875rem
	}
}

@media(min-width: 1200px) {

	.buyer-login-page .container,
	.buyer-forgot-password-page .container,
	.buyer-reset-password-page .container,
	.seller-login-page .container {
		padding-top: 3.75rem;
		padding-bottom: 3.75rem
	}
}

@media(min-width: 1400px) {

	.buyer-login-page .container,
	.buyer-forgot-password-page .container,
	.buyer-reset-password-page .container,
	.seller-login-page .container {
		padding-top: 5rem;
		padding-bottom: 5rem
	}
}

.buyer-login-page .container .card,
.buyer-forgot-password-page .container .card,
.buyer-reset-password-page .container .card,
.seller-login-page .container .card {
	border: 0;
	border-radius: 0
}

.buyer-login-page .container .card .card-body,
.buyer-forgot-password-page .container .card .card-body,
.buyer-reset-password-page .container .card .card-body,
.seller-login-page .container .card .card-body {
	padding: 1.625rem 1.25rem;
	display: flex;
	flex-direction: row;
	color: var(--theme-text-color)
}

@media(min-width: 768px) {

	.buyer-login-page .container .card .card-body,
	.buyer-forgot-password-page .container .card .card-body,
	.buyer-reset-password-page .container .card .card-body,
	.seller-login-page .container .card .card-body {
		padding: 1.875rem 1.5rem
	}
}

@media(min-width: 992px) {

	.buyer-login-page .container .card .card-body,
	.buyer-forgot-password-page .container .card .card-body,
	.buyer-reset-password-page .container .card .card-body,
	.seller-login-page .container .card .card-body {
		padding: 2.125rem 1.75rem;
		column-gap: 2.5rem
	}
}

@media(min-width: 1200px) {

	.buyer-login-page .container .card .card-body,
	.buyer-forgot-password-page .container .card .card-body,
	.buyer-reset-password-page .container .card .card-body,
	.seller-login-page .container .card .card-body {
		padding: 2.25rem 1.875rem;
		column-gap: 3.125rem
	}
}

@media(min-width: 1400px) {

	.buyer-login-page .container .card .card-body,
	.buyer-forgot-password-page .container .card .card-body,
	.buyer-reset-password-page .container .card .card-body,
	.seller-login-page .container .card .card-body {
		padding: 2.5rem;
		column-gap: 3.75rem
	}
}

.buyer-login-page .container .card .card-body .card-image,
.buyer-forgot-password-page .container .card .card-body .card-image,
.buyer-reset-password-page .container .card .card-body .card-image,
.seller-login-page .container .card .card-body .card-image {
	flex: 1
}

.buyer-login-page .container .card .card-body .card-image img,
.buyer-forgot-password-page .container .card .card-body .card-image img,
.buyer-reset-password-page .container .card .card-body .card-image img,
.seller-login-page .container .card .card-body .card-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	border-radius: 16px;
	background-color: #f5f5f5
}

@media(min-width: 1200px) {

	.buyer-login-page .container .card .card-body .card-image img,
	.buyer-forgot-password-page .container .card .card-body .card-image img,
	.buyer-reset-password-page .container .card .card-body .card-image img,
	.seller-login-page .container .card .card-body .card-image img {
		object-fit: cover
	}
}

.buyer-login-page .container .card .card-body .card-form,
.buyer-forgot-password-page .container .card .card-body .card-form,
.buyer-reset-password-page .container .card .card-body .card-form,
.seller-login-page .container .card .card-body .card-form {
	flex: 1
}

.buyer-login-page .container .card .card-body .card-form .card-logo,
.buyer-forgot-password-page .container .card .card-body .card-form .card-logo,
.buyer-reset-password-page .container .card .card-body .card-form .card-logo,
.seller-login-page .container .card .card-body .card-form .card-logo {
	width: auto;
	height: 50px;
	max-width: 100%;
	object-fit: contain;
	display: block;
	margin-bottom: 1.875rem
}

@media(min-width: 1200px) {

	.buyer-login-page .container .card .card-body .card-form .card-logo,
	.buyer-forgot-password-page .container .card .card-body .card-form .card-logo,
	.buyer-reset-password-page .container .card .card-body .card-form .card-logo,
	.seller-login-page .container .card .card-body .card-form .card-logo {
		height: 60px
	}
}

@media(min-width: 1400px) {

	.buyer-login-page .container .card .card-body .card-form .card-logo,
	.buyer-forgot-password-page .container .card .card-body .card-form .card-logo,
	.buyer-reset-password-page .container .card .card-body .card-form .card-logo,
	.seller-login-page .container .card .card-body .card-form .card-logo {
		height: 70px
	}
}

.buyer-login-page .container .card .card-body .card-form .card-title,
.buyer-forgot-password-page .container .card .card-body .card-form .card-title,
.buyer-reset-password-page .container .card .card-body .card-form .card-title,
.seller-login-page .container .card .card-body .card-form .card-title {
	font-size: 1.75rem
}

.buyer-login-page .container .card .card-body .card-form .card-title.buyer,
.buyer-forgot-password-page .container .card .card-body .card-form .card-title.buyer,
.buyer-reset-password-page .container .card .card-body .card-form .card-title.buyer,
.seller-login-page .container .card .card-body .card-form .card-title.buyer {
	color: var(--theme-buyer-color)
}

.buyer-login-page .container .card .card-body .card-form .card-title.seller,
.buyer-forgot-password-page .container .card .card-body .card-form .card-title.seller,
.buyer-reset-password-page .container .card .card-body .card-form .card-title.seller,
.seller-login-page .container .card .card-body .card-form .card-title.seller {
	color: var(--theme-seller-color)
}

.buyer-login-page .container .card .card-body .card-form .card-brief,
.buyer-forgot-password-page .container .card .card-body .card-form .card-brief,
.buyer-reset-password-page .container .card .card-body .card-form .card-brief,
.seller-login-page .container .card .card-body .card-form .card-brief {
	margin: 0
}

.buyer-login-page .container .card .card-body .card-form .form-field,
.buyer-forgot-password-page .container .card .card-body .card-form .form-field,
.buyer-reset-password-page .container .card .card-body .card-form .form-field,
.seller-login-page .container .card .card-body .card-form .form-field {
	margin-top: 1.875rem
}

.buyer-login-page .container .card .card-body .card-form .form-field .btn-submit,
.buyer-forgot-password-page .container .card .card-body .card-form .form-field .btn-submit,
.buyer-reset-password-page .container .card .card-body .card-form .form-field .btn-submit,
.seller-login-page .container .card .card-body .card-form .form-field .btn-submit {
	margin-top: 1.25rem;
	width: 100%
}

@media(min-width: 768px) {

	.buyer-login-page .container .card .card-body .card-form .form-field .btn-submit,
	.buyer-forgot-password-page .container .card .card-body .card-form .form-field .btn-submit,
	.buyer-reset-password-page .container .card .card-body .card-form .form-field .btn-submit,
	.seller-login-page .container .card .card-body .card-form .form-field .btn-submit {
		width: fit-content
	}
}

.buyer-member-profile-page .page-content .section-profile,
.seller-member-profile-page .page-content .section-profile {
	--padding-section-profile: 1.375rem;
	display: flex;
	flex-direction: column;
	gap: var(--padding-section-profile)
}

@media(min-width: 768px) {

	.buyer-member-profile-page .page-content .section-profile,
	.seller-member-profile-page .page-content .section-profile {
		--padding-section-profile: 1.5rem
	}
}

@media(min-width: 992px) {

	.buyer-member-profile-page .page-content .section-profile,
	.seller-member-profile-page .page-content .section-profile {
		--padding-section-profile: 1.625rem
	}
}

@media(min-width: 1200px) {

	.buyer-member-profile-page .page-content .section-profile,
	.seller-member-profile-page .page-content .section-profile {
		--padding-section-profile: 1.75rem;
		flex-direction: row
	}
}

@media(min-width: 1400px) {

	.buyer-member-profile-page .page-content .section-profile,
	.seller-member-profile-page .page-content .section-profile {
		--padding-section-profile: 1.875rem;
		flex-direction: row
	}
}

.buyer-member-profile-page .page-content .section-profile .section-nav,
.seller-member-profile-page .page-content .section-profile .section-nav {
	width: 100%;
	height: fit-content;
	padding: var(--padding-section-profile);
	background-color: #fff
}

@media(min-width: 1200px) {

	.buyer-member-profile-page .page-content .section-profile .section-nav,
	.seller-member-profile-page .page-content .section-profile .section-nav {
		width: 300px
	}
}

@media(min-width: 1400px) {

	.buyer-member-profile-page .page-content .section-profile .section-nav,
	.seller-member-profile-page .page-content .section-profile .section-nav {
		width: 320px
	}
}

.buyer-member-profile-page .page-content .section-profile .section-nav .section-profile-avata,
.seller-member-profile-page .page-content .section-profile .section-nav .section-profile-avata {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto
}

.buyer-member-profile-page .page-content .section-profile .section-nav .section-profile-avata img,
.seller-member-profile-page .page-content .section-profile .section-nav .section-profile-avata img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.buyer-member-profile-page .page-content .section-profile .section-nav .section-profile-avata.buyer,
.seller-member-profile-page .page-content .section-profile .section-nav .section-profile-avata.buyer {
	background-color: var(--theme-buyer-color)
}

.buyer-member-profile-page .page-content .section-profile .section-nav .section-profile-avata.seller,
.seller-member-profile-page .page-content .section-profile .section-nav .section-profile-avata.seller {
	background-color: var(--theme-seller-color)
}

.buyer-member-profile-page .page-content .section-profile .section-nav .section-name,
.seller-member-profile-page .page-content .section-profile .section-nav .section-name {
	font-size: 1.125rem;
	text-align: center;
	margin: 0;
	margin-top: .875rem
}

.buyer-member-profile-page .page-content .section-profile .section-nav .section-username,
.seller-member-profile-page .page-content .section-profile .section-nav .section-username {
	font-size: 1rem;
	text-align: center;
	margin: 0;
	margin-top: .25rem;
	color: #424242
}

.buyer-member-profile-page .page-content .section-profile .section-nav .section-menu,
.seller-member-profile-page .page-content .section-profile .section-nav .section-menu {
	margin: 0 calc(var(--padding-section-profile)*-1);
	padding: 0;
	margin-top: 1.75rem;
	list-style: none
}

.buyer-member-profile-page .page-content .section-profile .section-nav .section-menu li,
.seller-member-profile-page .page-content .section-profile .section-nav .section-menu li {
	padding: .5rem 1rem
}

.buyer-member-profile-page .page-content .section-profile .section-nav .section-menu li a,
.seller-member-profile-page .page-content .section-profile .section-nav .section-menu li a {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: .875rem
}

.buyer-member-profile-page .page-content .section-profile .section-nav .section-menu li a i,
.seller-member-profile-page .page-content .section-profile .section-nav .section-menu li a i {
	font-size: 1.25rem;
	width: 1.25rem
}

.buyer-member-profile-page .page-content .section-profile .section-nav .section-menu li.active,
.seller-member-profile-page .page-content .section-profile .section-nav .section-menu li.active {
	border-left: 3px solid var(--theme-primary-color)
}

.buyer-member-profile-page .page-content .section-profile .section-nav .section-menu li.active a,
.seller-member-profile-page .page-content .section-profile .section-nav .section-menu li.active a {
	color: var(--theme-primary-color);
	font-weight: 500
}

.buyer-member-profile-page .page-content .section-profile .section-body,
.seller-member-profile-page .page-content .section-profile .section-body {
	flex: 1;
	width: 100%;
	height: fit-content
}

.buyer-member-profile-page .page-content .section-profile .section-body .section-header .section-title,
.seller-member-profile-page .page-content .section-profile .section-body .section-header .section-title {
	font-size: 1.5rem;
	margin: 0
}

@media(min-width: 768px) {

	.buyer-member-profile-page .page-content .section-profile .section-body .section-header .section-title,
	.seller-member-profile-page .page-content .section-profile .section-body .section-header .section-title {
		font-size: 1.625rem
	}
}

@media(min-width: 1200px) {

	.buyer-member-profile-page .page-content .section-profile .section-body .section-header .section-title,
	.seller-member-profile-page .page-content .section-profile .section-body .section-header .section-title {
		font-size: 1.75rem
	}
}

@media(min-width: 1400px) {

	.buyer-member-profile-page .page-content .section-profile .section-body .section-header .section-title,
	.seller-member-profile-page .page-content .section-profile .section-body .section-header .section-title {
		font-size: 1.75rem
	}
}

.buyer-member-profile-page .page-content .section-profile .section-body .section-content,
.seller-member-profile-page .page-content .section-profile .section-body .section-content {
	padding: var(--padding-section-profile);
	margin-top: var(--padding-section-profile);
	background-color: #fff
}

.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking,
.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking {
	display: flex;
	flex-direction: column;
	padding: .625rem;
	column-gap: 1.5625rem;
	align-items: center;
	margin: .5rem 0;
	border: 1px solid #eee;
	transition: 500ms ease
}

@media(min-width: 992px) {

	.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking,
	.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking {
		flex-direction: row
	}
}

@media(min-width: 1400px) {

	.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking,
	.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking {
		flex-direction: row
	}
}

.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-schedule,
.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-schedule {
	width: 200px;
	height: 100%;
	overflow: hidden;
	position: relative;
	padding-bottom: 10px
}

@media(min-width: 992px) {

	.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-schedule,
	.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-schedule {
		padding-bottom: 0
	}
}

@media(min-width: 1400px) {

	.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-schedule,
	.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-schedule {
		padding-bottom: 0
	}
}

.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-schedule::after,
.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-schedule::after {
	content: "";
	width: 100%;
	height: 1px;
	border-bottom: 1px solid #ececec;
	position: absolute;
	bottom: 0;
	left: 0
}

@media(min-width: 992px) {

	.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-schedule::after,
	.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-schedule::after {
		width: 1px;
		height: 100%;
		border-right: 1px solid #ececec;
		bottom: unset;
		left: unset;
		top: 0;
		right: 0
	}
}

@media(min-width: 1400px) {

	.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-schedule::after,
	.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-schedule::after {
		width: 1px;
		height: 100%;
		border-right: 1px solid #ececec;
		bottom: unset;
		left: unset;
		top: 0;
		right: 0
	}
}

.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-image,
.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-image {
	width: 160px;
	height: 160px;
	overflow: hidden;
	border-radius: 10px
}

.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-image img,
.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block
}

.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-body,
.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-body {
	flex: 1;
	width: 100%
}

.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-body .card-category,
.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-body .card-category {
	color: #fff;
	width: fit-content;
	background-color: var(--theme-primary-color);
	padding: .125rem .625rem;
	margin-top: .375rem
}

.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-body .card-category span,
.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-body .card-category span {
	font-size: .875rem
}

.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-body .card-online,
.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-body .card-online {
	margin-top: 1rem
}

.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-body .card-online h6,
.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-body .card-online h6 {
	font-size: 1rem;
	color: #2a5caa;
	margin: 0
}

.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-body .card-btn,
.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-body .card-btn {
	margin-top: 1rem
}

.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-body .card-create,
.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking .card-body .card-create {
	margin-top: .5rem
}

.buyer-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking:hover,
.seller-member-profile-page .page-content .section-profile .section-body#matching .section-content .matching-lists .card-booking:hover {
	transform: scale(1.015);
	box-shadow: rgba(249, 125, 5, .2) 0px 8px 24px
}

.buyer-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .section-title,
.buyer-member-profile-page .page-content .section-profile .section-body#change_password .section-content .section-title,
.buyer-member-profile-page .page-content .section-profile .section-body#product_service .section-content .section-title,
.seller-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .section-title,
.seller-member-profile-page .page-content .section-profile .section-body#change_password .section-content .section-title,
.seller-member-profile-page .page-content .section-profile .section-body#product_service .section-content .section-title {
	color: var(--theme-text-color)
}

.buyer-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .form-field,
.buyer-member-profile-page .page-content .section-profile .section-body#change_password .section-content .form-field,
.buyer-member-profile-page .page-content .section-profile .section-body#product_service .section-content .form-field,
.seller-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .form-field,
.seller-member-profile-page .page-content .section-profile .section-body#change_password .section-content .form-field,
.seller-member-profile-page .page-content .section-profile .section-body#product_service .section-content .form-field {
	margin-top: 1.5rem
}

.buyer-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists,
.buyer-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists,
.buyer-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists,
.seller-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists,
.seller-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists,
.seller-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists {
	margin-top: 1.5rem;
	--padding-seller-product-lists: 0.5rem
}

.buyer-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .row,
.buyer-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .row,
.buyer-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .row,
.seller-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .row,
.seller-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .row,
.seller-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .row {
	margin: calc(var(--padding-seller-product-lists)*-1)
}

.buyer-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .row>*,
.buyer-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .row>*,
.buyer-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .row>*,
.seller-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .row>*,
.seller-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .row>*,
.seller-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .row>* {
	padding: var(--padding-seller-product-lists)
}

.buyer-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .card-product-service,
.buyer-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .card-product-service,
.buyer-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .card-product-service,
.seller-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .card-product-service,
.seller-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .card-product-service,
.seller-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .card-product-service {
	border: 1px solid #eee
}

.buyer-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .card-product-service .card-image,
.buyer-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .card-product-service .card-image,
.buyer-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .card-product-service .card-image,
.seller-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .card-product-service .card-image,
.seller-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .card-product-service .card-image,
.seller-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .card-product-service .card-image {
	width: 100%;
	height: 180px
}

.buyer-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .card-product-service .card-image img,
.buyer-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .card-product-service .card-image img,
.buyer-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .card-product-service .card-image img,
.seller-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .card-product-service .card-image img,
.seller-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .card-product-service .card-image img,
.seller-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .card-product-service .card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.buyer-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .card-product-service .card-body,
.buyer-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .card-product-service .card-body,
.buyer-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .card-product-service .card-body,
.seller-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .card-product-service .card-body,
.seller-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .card-product-service .card-body,
.seller-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .card-product-service .card-body {
	padding: .75rem
}

.buyer-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .card-product-service .card-body .card-title,
.buyer-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .card-product-service .card-body .card-title,
.buyer-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .card-product-service .card-body .card-title,
.seller-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .card-product-service .card-body .card-title,
.seller-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .card-product-service .card-body .card-title,
.seller-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .card-product-service .card-body .card-title {
	font-size: 1rem;
	line-height: 1.25;
	height: 2.5rem;
	-webkit-line-clamp: 2
}

.buyer-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .card-product-service .card-body .card-brief,
.buyer-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .card-product-service .card-body .card-brief,
.buyer-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .card-product-service .card-body .card-brief,
.seller-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .card-product-service .card-body .card-brief,
.seller-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .card-product-service .card-body .card-brief,
.seller-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .card-product-service .card-body .card-brief {
	font-size: .875rem;
	line-height: 1.428;
	height: 6.25rem;
	margin: 0;
	margin-top: .375rem;
	-webkit-line-clamp: 5
}

.buyer-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .card-product-service .card-body .card-btn,
.buyer-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .card-product-service .card-body .card-btn,
.buyer-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .card-product-service .card-body .card-btn,
.seller-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .card-product-service .card-body .card-btn,
.seller-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .card-product-service .card-body .card-btn,
.seller-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .card-product-service .card-body .card-btn {
	margin-top: 1rem
}

.buyer-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .card-product-service .card-body .card-btn .btn,
.buyer-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .card-product-service .card-body .card-btn .btn,
.buyer-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .card-product-service .card-body .card-btn .btn,
.seller-member-profile-page .page-content .section-profile .section-body#edit_profile .section-content .product-service-lists .card-product-service .card-body .card-btn .btn,
.seller-member-profile-page .page-content .section-profile .section-body#change_password .section-content .product-service-lists .card-product-service .card-body .card-btn .btn,
.seller-member-profile-page .page-content .section-profile .section-body#product_service .section-content .product-service-lists .card-product-service .card-body .card-btn .btn {
	width: 34px;
	height: 34px;
	color: #fff;
	border-radius: 50%
}

.buyer-member-profile-page .page-content .section-profile .section-body#edit_profile .theme-input-field:has(input[required]) label:after,
.buyer-member-profile-page .page-content .section-profile .section-body#edit_profile .theme-input-field:has(textarea[required]) label:after,
.buyer-member-profile-page .page-content .section-profile .section-body#edit_profile .theme-input-field:has(select[required]) label:after,
.buyer-member-profile-page .page-content .section-profile .section-body#change_password .theme-input-field:has(input[required]) label:after,
.buyer-member-profile-page .page-content .section-profile .section-body#change_password .theme-input-field:has(textarea[required]) label:after,
.buyer-member-profile-page .page-content .section-profile .section-body#change_password .theme-input-field:has(select[required]) label:after,
.buyer-member-profile-page .page-content .section-profile .section-body#product_service .theme-input-field:has(input[required]) label:after,
.buyer-member-profile-page .page-content .section-profile .section-body#product_service .theme-input-field:has(textarea[required]) label:after,
.buyer-member-profile-page .page-content .section-profile .section-body#product_service .theme-input-field:has(select[required]) label:after,
.seller-member-profile-page .page-content .section-profile .section-body#edit_profile .theme-input-field:has(input[required]) label:after,
.seller-member-profile-page .page-content .section-profile .section-body#edit_profile .theme-input-field:has(textarea[required]) label:after,
.seller-member-profile-page .page-content .section-profile .section-body#edit_profile .theme-input-field:has(select[required]) label:after,
.seller-member-profile-page .page-content .section-profile .section-body#change_password .theme-input-field:has(input[required]) label:after,
.seller-member-profile-page .page-content .section-profile .section-body#change_password .theme-input-field:has(textarea[required]) label:after,
.seller-member-profile-page .page-content .section-profile .section-body#change_password .theme-input-field:has(select[required]) label:after,
.seller-member-profile-page .page-content .section-profile .section-body#product_service .theme-input-field:has(input[required]) label:after,
.seller-member-profile-page .page-content .section-profile .section-body#product_service .theme-input-field:has(textarea[required]) label:after,
.seller-member-profile-page .page-content .section-profile .section-body#product_service .theme-input-field:has(select[required]) label:after {
	content: "*";
	color: red;
	font-size: 1rem;
	margin-left: 2px;
	opacity: 1;
	position: relative;
	display: inline
}

.buyer-member-profile-page .page-content .section-profile .section-body#edit_profile .input-image-preview img,
.buyer-member-profile-page .page-content .section-profile .section-body#change_password .input-image-preview img,
.buyer-member-profile-page .page-content .section-profile .section-body#product_service .input-image-preview img,
.seller-member-profile-page .page-content .section-profile .section-body#edit_profile .input-image-preview img,
.seller-member-profile-page .page-content .section-profile .section-body#change_password .input-image-preview img,
.seller-member-profile-page .page-content .section-profile .section-body#product_service .input-image-preview img {
	width: 200px;
	height: 200px;
	object-fit: contain;
	display: block
}

.buyer-member-profile-page .modal-booking-detail .modal-dialog .modal-content .modal-body .input-image-preview img,
.seller-member-profile-page .modal-booking-detail .modal-dialog .modal-content .modal-body .input-image-preview img {
	width: 200px;
	height: 200px;
	object-fit: contain;
	display: block
}

.buyer-member-profile-page .page-content {
	padding-top: 2.875rem
}

.buyer-member-profile-page .page-content .notify-alert {
	margin-bottom: 1.875rem
}

.seller-profile-page .page-content .section-seller-profile .section-seller-header {
	--gap-seller-profile: 0.875rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.125rem
}

@media(min-width: 768px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header {
		--gap-seller-profile: 2rem;
		gap: 1.625rem
	}
}

@media(min-width: 992px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header {
		--gap-seller-profile: 2.5rem
	}
}

@media(min-width: 1200px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header {
		--gap-seller-profile: 2.5rem;
		gap: var(--gap-seller-profile);
		flex-direction: row
	}
}

@media(min-width: 1400px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header {
		--gap-seller-profile: 2.5rem;
		gap: var(--gap-seller-profile);
		flex-direction: row
	}
}

.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile {
	width: 100%;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: var(--gap-seller-profile)
}

@media(min-width: 768px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile {
		flex-direction: row
	}
}

@media(min-width: 1200px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile {
		flex-direction: row
	}
}

@media(min-width: 1400px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile {
		flex-direction: row
	}
}

.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-logo {
	width: 160px;
	height: 160px;
	overflow: hidden;
	border-radius: 10px
}

@media(min-width: 768px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-logo {
		width: 180px;
		height: 180px
	}
}

@media(min-width: 992px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-logo {
		width: 200px;
		height: 200px
	}
}

@media(min-width: 1200px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-logo {
		width: 230px;
		height: 230px
	}
}

@media(min-width: 1400px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-logo {
		width: 300px;
		height: 300px
	}
}

.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block
}

.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name {
	flex: 1
}

@media(min-width: 768px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name {
		margin-top: 1rem
	}
}

@media(min-width: 1400px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name {
		margin-top: 1rem
	}
}

.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name .card-title {
	font-size: 1.75rem
}

@media(min-width: 768px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name .card-title {
		font-size: 1.875rem
	}
}

@media(min-width: 992px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name .card-title {
		font-size: 2rem
	}
}

@media(min-width: 1200px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name .card-title {
		font-size: 2.125rem
	}
}

@media(min-width: 1400px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name .card-title {
		font-size: 2.25rem
	}
}

.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name .card-category {
	color: #fff;
	width: fit-content;
	background-color: var(--theme-primary-color);
	padding: .125rem .625rem;
	margin-top: .75rem
}

.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name .card-category span {
	font-size: .9375rem
}

.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-booking {
	width: 100%;
	text-align: center
}

@media(min-width: 768px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-booking {
		width: fit-content
	}
}

@media(min-width: 1400px) {
	.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-booking {
		width: fit-content
	}
}

.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-booking .btn-booking {
	width: 100%;
	max-width: 370px;
	color: #fff;
	border-radius: 0;
	background: linear-gradient(#FF0000, #BF0000);
	box-shadow: 9px 9px #f3bbbd;
	transition: 500ms ease;
	-webkit-box-shadow: 9px 9px #f3bbbd
}

.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-booking .btn-booking .btn-title {
	font-size: 2rem
}

.seller-profile-page .page-content .section-seller-profile .section-seller-header .seller-booking .btn-booking:hover {
	transform: scale(1.04);
	-webkit-box-shadow: 10px 10px #f3bbbd
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content {
	--padding-section-seller-content: 1.875rem;
	display: flex;
	flex-direction: row;
	gap: var(--padding-section-seller-content);
	margin-top: 2.5rem
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-detail {
	flex: 1;
	height: fit-content
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-image {
	margin-bottom: var(--padding-section-seller-content)
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-image img {
	width: 100%;
	height: auto;
	max-height: 370px;
	object-fit: cover;
	display: block
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-info,
.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-contact {
	width: 100%;
	height: auto;
	background-color: #fff;
	margin-bottom: var(--padding-section-seller-content);
	padding: var(--padding-section-seller-content)
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-info .header,
.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-contact .header {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: .875rem;
	font-size: 1.375rem;
	color: var(--theme-primary-color)
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-info .header .title,
.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-contact .header .title {
	font-size: 1.375rem;
	margin: 0
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-info .content,
.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-contact .content {
	font-size: 1rem;
	line-height: 1.5;
	color: #555;
	margin: 0;
	margin-top: .875rem
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-contact {
	margin-bottom: 0
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-product {
	flex: 1;
	width: 100%;
	height: fit-content;
	background-color: #fff;
	padding: var(--padding-section-seller-content)
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-product .header {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: .875rem;
	font-size: 1.375rem;
	color: var(--theme-primary-color)
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-product .header .title {
	font-size: 1.375rem;
	margin: 0
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-product .content {
	font-size: 1rem;
	line-height: 1.5;
	color: #555;
	margin: 0;
	margin-top: .875rem
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service {
	--padding-seller-product-service: 0.5rem;
	margin-top: 3.125rem
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service .row {
	margin: calc(var(--padding-seller-product-service)*-1)
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service .row>* {
	padding: var(--padding-seller-product-service)
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service .card-product-service {
	border: 1px solid #eee
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service .card-product-service .card-image {
	width: 100%;
	height: 180px
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service .card-product-service .card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service .card-product-service .card-body {
	padding: .75rem
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service .card-product-service .card-body .card-title {
	font-size: 1rem;
	line-height: 1.25;
	height: 2.5rem;
	-webkit-line-clamp: 2
}

.seller-profile-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service .card-product-service .card-body .card-brief {
	font-size: .875rem;
	line-height: 1.428;
	height: 6.25rem;
	margin: 0;
	margin-top: .375rem;
	-webkit-line-clamp: 5
}

.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile {
	gap: .875rem
}

@media(min-width: 768px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile {
		gap: 2rem
	}
}

@media(min-width: 992px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile {
		gap: 2.5rem
	}
}

@media(min-width: 1400px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile {
		gap: 2.5rem
	}
}

.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-logo {
	width: 160px;
	height: 160px;
	overflow: hidden;
	border-radius: 10px
}

@media(min-width: 768px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-logo {
		width: 180px;
		height: 180px
	}
}

@media(min-width: 992px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-logo {
		width: 200px;
		height: 200px
	}
}

@media(min-width: 1200px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-logo {
		width: 230px;
		height: 230px
	}
}

@media(min-width: 1400px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-logo {
		width: 300px;
		height: 300px
	}
}

.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block
}

.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name {
	flex: 1
}

@media(min-width: 768px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name {
		margin-top: 1rem
	}
}

@media(min-width: 1400px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name {
		margin-top: 1rem
	}
}

.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name .card-title {
	font-size: 1.75rem
}

@media(min-width: 768px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name .card-title {
		font-size: 1.875rem
	}
}

@media(min-width: 992px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name .card-title {
		font-size: 2rem
	}
}

@media(min-width: 1200px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name .card-title {
		font-size: 2.125rem
	}
}

@media(min-width: 1400px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name .card-title {
		font-size: 2.25rem
	}
}

.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name .card-category {
	color: #fff;
	width: fit-content;
	background-color: var(--theme-primary-color);
	padding: .125rem .625rem;
	margin-top: .75rem
}

.seller-booking-page .page-content .section-seller-profile .section-seller-header .seller-profile .seller-name .card-category span {
	font-size: .9375rem
}

.seller-booking-page .page-content .section-seller-profile .section-seller-booking {
	--padding-section-seller-booking: 1.25rem;
	margin-top: var(--padding-section-seller-booking);
	padding: var(--padding-section-seller-booking);
	background-color: #fff;
	border: 1px solid #eee
}

@media(min-width: 768px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-booking {
		--padding-section-seller-booking: 1.625rem
	}
}

@media(min-width: 992px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-booking {
		--padding-section-seller-booking: 1.75rem
	}
}

@media(min-width: 1200px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-booking {
		--padding-section-seller-booking: 1.875rem
	}
}

@media(min-width: 1400px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-booking {
		--padding-section-seller-booking: 1.875rem
	}
}

.seller-booking-page .page-content .section-seller-profile .section-seller-booking .section-header {
	--font-size-section-header: 1.5rem;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	font-size: var(--font-size-section-header)
}

@media(min-width: 768px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-booking .section-header {
		--font-size-section-header: 1.625rem
	}
}

@media(min-width: 1200px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-booking .section-header {
		--font-size-section-header: 1.75rem
	}
}

@media(min-width: 1400px) {
	.seller-booking-page .page-content .section-seller-profile .section-seller-booking .section-header {
		--font-size-section-header: 1.75rem
	}
}

.seller-booking-page .page-content .section-seller-profile .section-seller-booking .section-header .title {
	font-size: var(--font-size-section-header);
	margin: 0
}

.seller-booking-page .page-content .section-seller-profile .section-seller-booking .section-program-slot {
	margin-top: 1rem;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1.25rem
}

.seller-booking-page .page-content .section-seller-profile .section-seller-booking .section-program-slot .card-slot {
	width: 135px;
	height: 175px;
	border: 1px solid #ececec;
	border-radius: 8px;
	overflow: hidden;
	cursor: default
}

.seller-booking-page .page-content .section-seller-profile .section-seller-booking .section-program-slot .card-slot .card-time {
	background-color: var(--theme-primary-color);
	color: #fff;
	font-size: 1.125rem;
	font-weight: 600;
	text-align: center;
	text-wrap: nowrap;
	padding: .375rem
}

.seller-booking-page .page-content .section-seller-profile .section-seller-booking .section-program-slot .card-slot .card-status {
	padding: 1rem;
	margin: auto
}

.seller-booking-page .page-content .section-seller-profile .section-seller-booking .section-program-slot .card-slot .card-status img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	border-radius: 50%
}

.seller-booking-page .page-content .section-seller-profile .section-seller-booking .section-program-slot .card-slot.available {
	cursor: pointer;
	transition: 500ms
}

.seller-booking-page .page-content .section-seller-profile .section-seller-booking .section-program-slot .card-slot.available img {
	opacity: .5
}

.seller-booking-page .page-content .section-seller-profile .section-seller-booking .section-program-slot .card-slot.available:hover {
	transform: scale(1.03);
	box-shadow: rgba(120, 167, 65, .3) 0px 8px 24px
}

.seller-booking-page .page-content .section-seller-profile .section-seller-booking .section-program-slot .card-slot.available:hover img {
	opacity: 1
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content {
	--padding-section-seller-content: 1.875rem;
	display: flex;
	flex-direction: row;
	gap: var(--padding-section-seller-content);
	margin-top: 2.5rem
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-detail {
	flex: 1;
	height: fit-content
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-image {
	margin-bottom: var(--padding-section-seller-content)
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-image img {
	width: 100%;
	height: auto;
	max-height: 370px;
	object-fit: cover;
	display: block
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-info,
.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-contact {
	width: 100%;
	height: auto;
	background-color: #fff;
	margin-bottom: var(--padding-section-seller-content);
	padding: var(--padding-section-seller-content)
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-info .header,
.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-contact .header {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: .875rem;
	font-size: 1.375rem;
	color: var(--theme-primary-color)
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-info .header .title,
.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-contact .header .title {
	font-size: 1.375rem;
	margin: 0
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-info .content,
.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-contact .content {
	font-size: 1rem;
	line-height: 1.5;
	color: #555;
	margin: 0;
	margin-top: .875rem
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-detail .seller-contact {
	margin-bottom: 0
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-product {
	flex: 1;
	width: 100%;
	height: fit-content;
	background-color: #fff;
	padding: var(--padding-section-seller-content)
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-product .header {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: .875rem;
	font-size: 1.375rem;
	color: var(--theme-primary-color)
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-product .header .title {
	font-size: 1.375rem;
	margin: 0
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-product .content {
	font-size: 1rem;
	line-height: 1.5;
	color: #555;
	margin: 0;
	margin-top: .875rem
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service {
	--padding-seller-product-service: 0.5rem;
	margin-top: 3.125rem
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service .row {
	margin: calc(var(--padding-seller-product-service)*-1)
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service .row>* {
	padding: var(--padding-seller-product-service)
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service .card-product-service {
	border: 1px solid #eee
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service .card-product-service .card-image {
	width: 100%;
	height: 180px
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service .card-product-service .card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service .card-product-service .card-body {
	padding: .75rem
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service .card-product-service .card-body .card-title {
	font-size: 1rem;
	line-height: 1.25;
	height: 2.5rem;
	-webkit-line-clamp: 2
}

.seller-booking-page .page-content .section-seller-profile .section-seller-content .seller-product .seller-product-service .card-product-service .card-body .card-brief {
	font-size: .875rem;
	line-height: 1.428;
	height: 6.25rem;
	margin: 0;
	margin-top: .375rem;
	-webkit-line-clamp: 5
}

.confirm-booking-page .page-content {
	min-height: 50dvh
}