body {
	font-family: 'Kanit', sans-serif;
	font-weight: 300;
}

a {
	transition: 0.3s;
	text-decoration: none;
}

a:hover {
	transition: 0.3s;
	text-decoration: none;
}

button:focus {
	outline: none;
}

img {
	max-width: 100%;
}

header {
	position: fixed;
	width: 100%;
	z-index: 100;
	background-color: #fff;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header-container {
	max-width: 1280px;
	padding: 0 16px;
	margin: auto;
}

.logo {
	width: auto;
	display: block;
	height: 60px;
}

.logo img {
	height: 100%!important;
}

.top-header {
	background-color: #355a3a;
	color: #fff;
	padding: 2px 0;
	font-size: 14px;
	font-weight: 300;
}

.top-menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 0;
}

.main-menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.main-menu ul li {
	display: inline-block;
}

.main-menu ul > li > a {
	color: #111;
	padding: 24px 16px;
	height: 100%;
}

.main-menu ul > li > a:hover,
.main-menu ul > li.current-menu-item a {
	background-color: #355a3a;
	color: #fff;
}

.main-menu ul > li.menu-item-has-children {
	position: relative;
}

.main-menu ul > li.menu-item-has-children ul.sub-menu {
	position: absolute;
	padding: 0px;
	background-color: #fff;
	width: 240px;
	top: 40px;
	z-index: 10;
	display: none;
}

.main-menu ul > li.menu-item-has-children:hover ul.sub-menu {
	display: block;
}

.main-menu ul > li.menu-item-has-children ul.sub-menu li {
	padding: 0;
	width: 100%;
}

.main-menu ul > li.menu-item-has-children ul.sub-menu li a {
	display: block;
	padding: 10px;
	font-size: 14px;
	width: 100%;
	text-align: left;
}

.section-top {
	height: 520px;
	background-color: #eee;
	background-image: url('../img/top-banner.png');
	background-size: cover;
	background-position: center center;
}

.section-website-name {
	padding: 30px 0;
	background-color: #fff;
	text-align: center;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.section-website-name h2 {
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 10px;
	color: #355a3a;
}

.section-website-name h3 {
	font-size: 18px;
	font-weight: 300;
	margin: 0;
	color: #355a3a;
}

.section-first-padding {
	padding-top: 120px;
	padding-bottom: 60px; 
}

.section-padding {
	padding: 60px 0;
}

.text-box h3 {
	font-size: 32px;
	font-weight: 500;
	color: #355a3a;
	margin-bottom: 20px;
}

.text-box p {
	font-size: 18px;
	color: #545454;
}

.readmore-button {
	display: inline-block;
	margin-top: 10px;
	padding: 12px 48px;
	font-size: 18px;
	background-color: #355a3a;
	color: #fff;
	border-radius: 32px;
}

.readmore-button:hover {
	color: #fff;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.main-title {
	text-align: center;
	margin-bottom: 30px;
}

.main-title h2 {
	font-family: 'Rubik';
	font-weight: 700;
	font-size: 48px;
	color: #355a3a;
	margin-bottom: 10px;
}

.item-card {
	padding: 15px;
	border-radius: 15px;
	border: 3px solid #fff;
	display: block;
}

.item-card img {
	width: 100%;
	height: 200px;
	acpect-ratio: 4/3;
	object-fit: cover;
	border-radius: 8px;
}

.item-card h4 {
	margin: 16px 0;
	font-size: 24px;
	color: #355a3a;
}

.item-card p {
	font-size: 14px;
	color: #545454;
	height: 80px;
	overflow: hidden;
}

.reserve-button {
	transition: 0.3s;
	display: inline-block;
	padding: 4px 32px;
	border: 2px solid #355a3a;
	color: #355a3a;
	font-size: 18px;
	border-radius: 32px;
}

.item-card:hover {
	border-color: #355a3a;
}

.item-card:hover .reserve-button {
	transition: 0.3s;
	background-color: #355a3a;
	color: #fff;
}

.section-gray {
	padding: 60px 0;
	background-color: #EBEBEB;
}

.news-container {
	position: relative;
}

.news-item {
	padding: 15px;
	background-color: #fff;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	display: block;
	color: #000;
	border: 3px solid #fff;
}

.news-item:hover {
	border-color: #355a3a;
}

.news-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
}

.news-item h4 {
	font-size: 24px;
	color: #355a3a;
	margin: 10px 0;
}

.news-item p {
	font-size: 14px;
	color: #545454;
	line-height: 1.5; /* 1.5 times the font size */
	height: calc(1.5em * 3); /* 3 lines of text */
	overflow: hidden; /* Hide any overflow text */
}

.news-left-icon,
.news-right-icon {
	position: absolute;
	top: 180px;
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #355a3a;
	color: #fff;
	font-size: 18px;
	z-index: 4;
	border-radius: 100%;
	cursor: pointer;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.news-left-icon {
	left: -30px;
}

.news-right-icon {
	right: -30px;
}

.review-content {
	text-align: center;
}

.review-content p {
	max-width: 800px;
	margin: auto;
	margin-bottom: 30px;
	font-size: 22px;
}

.review-pagination {
	bottom: 0px!important;
}

.review-pagination.swiper-pagination-clickable .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
}

.review-pagination .swiper-pagination-bullet-active {
	background-color: #355a3a;
}

.container-review {
	position: relative;
	padding-bottom: 40px;
}

footer {
	padding: 30px 0;
	background-color: #355a3a;
	color: #fff;
	font-size: 12px;
}

.custom-tab {
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom-tab li {
	display: block;
	margin-bottom: 30px;
}

.custom-tab li .cc-tab-item {
	transition: 0.3s;
	border: none;
	background: none;
	font-size: 30px;
	padding: 16px 48px;
}

.custom-tab li .cc-tab-item.active {
	transition: 0.3s;
	color: #355a3a;
	text-decoration: underline;
}

.container-chang,
.container-about-content {
	padding: 60px 0;
}

.item-chang {
	display: block;
	margin-bottom: 60px;
}

.item-chang img {
	width: 100%;
	height: 420px;
	border-radius: 8px;
	object-fit: cover;
	object-position: center;
	display: block;
	margin-bottom: 10px;
}

.item-chang h3 {
	font-size: 36px;
	color: #355a3a;
	margin-bottom: 20px;
	text-align: center;
}

.chang-content {
	margin-bottom: 50px;
}

.chang-content h4 {
	font-size: 16px;
	font-weight: 300;
	color: #355a3a;
}

.chang-content h3 {
	font-size: 24px;
	color: #355a3a;
}

.chang-content p {
	color: #545454;
}

.news-page .news-item {
	margin-bottom: 30px;
}

.contact-info {
	
}

.map-container iframe {
	width: 100%;
	height: 420px;
}

.default-image {
	width: 100%;
	height: 200px;
	background-color: #eee;
	border-radius: 8px;
}

.floating-social {
	position: fixed;
	bottom: 16px;
	right: 16px;
	z-index: 100;
	padding: 6px;
	background-color: rgba(255,255,255,0.4);
	border-radius: 32px;
}

.floating-social a {
	display: block;
	width: 32px;
	border-radius: 100%;
	background-color: #fff;
	margin-bottom: 12px;
	border: 1px solid #eee;
}

.floating-social a img {
	width: 100%;
}

.woocommerce .cart .button {
	display: block;
	padding: 16px 48px;
	background-color: #375A42!important;
	color: #fff!important;
	border-radius: 32px;
	margin-top: 32px;

	order: 4;
	width: 100%;
	font-size: 24px;
}

.product_title {
	font-size: 32px;
	color: #375A42;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #eee;
}

/* Hide product categories on single product pages */
.single-product .product_meta .posted_in {
    display: none;
}

.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
	color: #fff;
}

.custom-hour {
	color: #375A42;
	display: flex;
	justify-content: space-between;
	padding: 15px 0;
	font-weight: bold;
}

.custom-hour .time {
	font-size: 18px;
}

.the-single-price {
	font-size: 36px;
	color: #375A42;
	text-align: right;
}

.booking_price {
	font-size: 36px;
	color: #375A42;
	text-align: right;
	font-weight: bold;
	order: 3;
	width: 100%;
	margin-top: 32px;
}

.booking_price:before {
	content: "Total: ";
	display: inline-block;
	margin-right: 16px;
}

.quantity {
	text-align: right;
	font-size: 18px;
	order: 2;
	width: 100%;
}

.single-product .cart {
	display: flex;
	flex-wrap: wrap;
}

.wceb_picker_wrap {
	width: 100%;
}

.all-products {
	display: flex;
	justify-content: center;
	column-gap: 32px;
	padding: 60px 0;
	margin-bottom: 30px;
	border-bottom: 1px solid #eee;
}

.all-products a {
	font-size: 24px;
	color: #375A42;
}

.all-products a.active {
	text-decoration: underline;
	font-weight: bold;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
	max-width: 48%;
}

.section-payment-upload {
	padding: 100px 0;
	min-height: 80vh;
}

.payment-title {
	text-align: center;
	color: #375A42;
	margin-bottom: 30px;
}

.payment-form {
	max-width: 800px;
	margin: auto;
}

.payment-form input {
	padding: 6px 8px!important;
	border: 1px solid #ccc;
	height: auto;
	border-radius: 6px;
	font-size: 18px;
}

.payment-form a.upload-files {
	padding: 6px 8px!important;
	border: 1px solid #ccc;
	border-radius: 6px;
	display: block;
}

.fea-submit-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.confirm-payment {
	border: none;
	padding: 12px 48px;
	background-color: #375A42;
	color: #fff;
	display: block;
	border-radius: 32px;
	font-size: 18px;
	max-width: 100%;
	width: 320px;
	margin: auto;
}

.wc-block-components-checkout-place-order-button {
	margin: 0;
}

.confirm-payment {
	margin-top: 16px;
}

.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover,
.confirm-payment:hover {
	color: #fff;
}

.woocommerce-bacs-bank-details {
	display: none;
}

.qr-row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 2%;
}

.qr-row .qr-code-block {
	width: 400px;
	text-align: center;
}

.qr-row .qr-code-block img {
	width: 100%;
	display: block;
	margin: auto;
}

.qr-row .qr-code-block p {
	margin: 10px 0;
	font-size: 18px;
}

.woocommerce-customer-details {
	display: none;
}

.qr-main-title {
	text-align: center;
	color: #375A42;
	margin-bottom: 30px;
}

.order-container-cover {
	max-width: 780px;
	margin: auto;
}

.section-product-info {
	padding: 100px 0;
	background-color: #F8F7FA;
}

.product-content-tab {
	display: block;
	text-align: center;
	margin-bottom: 30px;
}

.product-content-tab li {
	border: none!important;
	display: inline-block;
	margin: 0 16px;
}

.product-content-tab li a {
	border: none!important;
	color: #375A42;
	font-size: 20px;
	font-weight: bold;
}

.product-content-tab li a.active {
	background-color: transparent!important;
	color: #375A42!important;
	border-bottom: 1px solid #375A42!important;
}

.news-title {
	text-align: center;
	margin-bottom: 30px;
}

.news-title h2 {
	font-size: 24px;
	color: #375A42;
}

.content-page img {
	width: auto;
}

.back-button {
	display: inline-block;
	padding: 8px 32px;
	background-color: #375A42;
	color: #fff;
	border-radius: 32px;
	font-size: 20px;
	margin-top: 16px;
}

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

.contact-container {
	margin-bottom: 60px;
	padding: 30px;
	border-radius: 32px;
	border: 1px solid #eee;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	background-color: #fff;
}

.agent-form-container {
	max-width: 800px;
	margin: auto;
	padding: 32px;
	background-color: #fff;
	border-radius: 32px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.gallery-box-container {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 10px;
}

.gallery-box-container a {
	display: block;
	width: calc(32% - 10px);
	margin-bottom: 10px;
}

.gallery-box-container a img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.cart > .quantity {
	display: none;
}

.booking-form-here input {
	border: 1px solid #ccc;
	border-radius: 8px;
	padding: 16px!important;
	height: 50px;
	font-size: 16px!important;
}

.total-price div {
	font-size: 48px!important;
	color: #375A42;
	font-weight: bold;
	text-align: right;
	border: none!important;
	padding: 10px 0!important;
	height: auto;
}

.total-price div:focus {
	border: none!important;
	outline: none;
}

.total-price div.small-calculator {
	font-size: 18px!important;
	color: #888;
	font-weight: 400;
}


.booking-form-here {
	position: relative;
}

.display-calculate {
	font-size: 16px;
	color: #666;
	width: 100%;
	text-align: right;
}

.booking-card {
	padding: 32px;
	border-radius: 32px;
	box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.book-card-title {
	font-size: 24px;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid #eee;
}

.qr-code-container {
	margin: 50px 0;
	text-align: center;
}

.qr-code-container h4 {
	margin-bottom: 30px;
}

.total-payment {
	font-size: 42px;
	color: #375A42;
	font-weight: bold;
}

.custom-booking-form input {
	width: 100%;
	margin-bottom: 15px;
}

.custom-booking-form label {
	display: block;
	margin-bottom: 10px;
	font-weight: bold;
}

.custom-booking-form select {
	height: 50px;
	width: 100%;
	padding: 6px 16px;
	border-radius: 6px;
	border: 1px solid #ccc;
	margin-bottom: 15px;
}

.booking-button {
	font-size: 20px;
	background-color: #375A42;
	color: #fff;
	padding: 16px 48px;
	border-radius: 100px;
	display: block;
	width: 100%;
	border: none;
	margin-top: 15px;
}

.book-info h4 {
	font-size: 16px;
}

.book-info p {
	font-size: 18px;
}

.book-info p.total-payment {
	font-size: 32px;
}

.confirm-payment-box {
	padding: 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	background-color: #f7f7f9;
	text-align: center;
}

.confirm-payment-box h3 {
	margin-bottom: 40px;
	margin-top: 20px;
}

.drop-container {
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  padding: 20px;
  border-radius: 10px;
  border: 2px dashed #555;
  color: #444;
  cursor: pointer;
  transition: background .2s ease-in-out, border .2s ease-in-out;
}

.drop-container:hover {
  background: #eee;
  border-color: #111;
}

.drop-container:hover .drop-title {
  color: #222;
}

.drop-title {
  color: #444;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: color .2s ease-in-out;
}

.upload-row input[type=file] {
  width: 350px;
  max-width: 100%;
  color: #444;
  padding: 5px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #555;
}

.upload-row input[type=file]::file-selector-button {
  margin-right: 20px;
  border: none;
  background: #084cdf;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease-in-out;
}

.upload-row input[type=file]::file-selector-button:hover {
  background: #0d45a5;
}

.confirm-payment-box button {
	max-width: 350px;
	margin: 30px auto;
}

.slip-image h3 {
	color: #375A42;
	font-size: 24px;
}

.slip-image img {
	max-width: 400px;
	max-height: 400px;
	object-fit: contain;
	display: block;
	margin: 30px auto;
}

.admin-approve-section {
	border-radius: 16px;
	padding: 32px 16px;
	border: 1px solid #ccc;
	background-color: #eee;
	text-align: center;
}

.woocommerce-Price-amount.amount {
	display: none;
}

.cross-sells {
    display: none !important;
}

.wp-block-woocommerce-empty-cart-block h2 {
	display: none;
}

.wp-block-woocommerce-empty-cart-block h2.wc-block-cart__empty-cart__title {
	display: block;
}

.wp-block-product-new {
	display: none;
}

.wp-block-woocommerce-cart {
	min-height: 75vh;
}

.woocommerce-billing-fields__field-wrapper label {
	display: block;
	width: 100%;
}

.woocommerce-billing-fields__field-wrapper input {
	width: 100%;
}

.woocommerce-billing-fields__field-wrapper .woocommerce-input-wrapper {
	display: block;
	width: 100%;
}

.woocommerce form .form-row-wide {
	display: block;
	width: 100%;
}

.woocommerce-additional-fields {
	display: none;
}

#order_review_heading {
	margin-top: 32px;
}

/*zzz*/

@media only screen and (max-width: 991px) {
	.logo {
		height: 45px;
	}

	header .container {
		max-width: 100%;
	}

	.m-order-1 {
		order: 1;
	}

	.m-order-2 {
		order: 2;
	}

	.item-card {
		margin-bottom: 30px;
	}

	.main-title h2 {
		font-size: 36px;
	}

	.qr-row .qr-code-block {
		width: 100%;
	}

	.qr-row .qr-code-block img {
		width: 100%;
	}

	.confirm-payment-box button {
		padding: 16px;
	}

	.booking-button {
		padding: 16px;
	}

	.admin-approve-section h2 {
		font-size: 20px;
	}
}

@media only screen and (max-width: 767px) {

	.all-products {
		flex-wrap: wrap;
		padding: 16px 0;
	}

	.all-products a {
		width: 100%;
		margin-bottom: 16px;
		font-size: 16px;
	}

	.product_title {
		margin-top: 16px;
	}

	.product-content-tab li {
		width: 48%;
		margin: 0;
	}

	.product-content-tab li a {
		font-size: 13px;
	}

	.floating-social {
		right: 10px;
		bottom: 10px;
	}

	.section-website-name h2 {
		font-size: 22px;
	}

	.section-website-name h3 {
		font-size: 12px;
	}

	.main-title h2 {
		font-size: 26px;
	}

	.news-right-icon {
		right: 5px;
	}

	.news-left-icon {
		left: 5px;
	}

	.section-top {
		height: 280px;
	}

	.section-first-padding {
		padding-top: 60px;
	}

	.order-custom-table {
		font-size: 9px;
	}

	.acf-fields > .acf-field {
		padding-left: 0!important;
		padding-right: 0!important;
	}

	.fea-submit-button, .wc-block-cart__submit-button, .wc-block-components-checkout-place-order-button, .confirm-payment {
		width: 100%;
	}

	.payment-title {
		font-size: 26px;
	}

	.section-payment-upload {
		padding: 50px 0;
	}

	.agent-form-container {
		padding: 16px;
	}

	.book-info h4 {
		margin-bottom: 0;
	}

	.book-info p {
		margin: 0;
	}

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







