/* :root {
--root-font-size: 1vw;
} */

* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent; /* Ẩn hiệu ứng trên trình duyệt WebKit (Chrome, Safari) */
	-webkit-touch-callout: none; /* Vô hiệu menu chọn văn bản trên iOS */
	font-family: 'Poppins', sans-serif;
}

html {
	/* font-size: var(--root-font-size); */
	font-size: 1vw;
}

.grecaptcha-badge {
	display:none;
}

@media screen and (max-width: 639.98px) {
	/* :root {
	--root-font-size: 4.267vw;
} */
	html {
		font-size: 4.267vw;
	}
}

body {
	margin: 0;
	padding: 0;
}

section {
	position: relative;
}
a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

input,
textarea{
	outline: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	transition: all 5000000s ease-in-out 0s;
}

[class^='wp-image'] {
	max-width: 100%;
	height: auto;
	display: block;
}

.size-full {
	width: 100%;
	height: auto;
}

.size-large {
	max-width: 100%;
	height: auto;
}

.size-medium,
.size-thumbnail {
	max-width: 100%;
	height: auto;
}

.alignleft {
	float: left;
	margin-right: 15px;
	margin-bottom: 10px;
}

.alignright {
	float: right;
	margin-left: 15px;
	margin-bottom: 10px;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

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

.wp-caption {
	max-width: 100%;
	text-align: center;
	margin-bottom: 15px;
	font-style: italic;
}

.wp-caption img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}

.wp-caption-text {
	font-size: 14px;
	color: #666;
}

@media (max-width: 639.98px) {
	.alignleft,
	.alignright {
		float: none;
		display: block;
		margin: 0.75rem auto;
		text-align: center;
	}
}

.swiper-button-disabled {
	opacity: 0.5;
	pointer-events: none;
}
.hide-scrollbar {
	overflow: auto; /* hoặc scroll nếu muốn */
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none;  /* IE và Edge cũ */
}

.hide-scrollbar::-webkit-scrollbar {
	display: none; /* Chrome, Safari */
}
/* Pagination */
.pagination__list {
	display: flex;
	align-items: center;
	justify-content: center;
}
.pagination__item {
	width: 2rem;
	height: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 2rem;
	background-color: rgba(4, 52, 36, 0.1);
	color: var(--Button-Text, #043424);
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
	line-height: 150%; /* 1.3125rem */
	transition: all 0.3s ease-in-out;
	margin: 0 0.625rem;
}
.pagination__dot {
	font-size: 2.5rem;
	line-height: 0.5;
	margin-bottom: 0.8rem;
}
.pagination__item.active {
	color: var(--Brand-White, #fff);
	background-color: rgba(4, 52, 36);
}


/* H1/BLACK */
.heading-1 {
	color: var(--Green-03, #043620);
	font-family: 'Big Shoulders';
	font-size: 4.5rem;
	font-style: normal;
	font-weight: 900;
	line-height: 120%; /* 5.4rem */
	text-transform: uppercase;
}
@media (max-width: 639.98px) {
	.heading-1 {
		font-size: 2.0625rem;
		letter-spacing: -0.01563rem;
	}
}

/* H2/BLACK */
.heading-2 {
	color: var(--Green-03, #043620);
	font-family: 'Big Shoulders';
	font-size: 3rem;
	font-style: normal;
	font-weight: 900;
	line-height: 120%; /* 3.6rem */
}
@media (max-width: 639.98px) {
	.heading-2 {
		font-size: 1.75rem;
		letter-spacing: -0.01563rem;
	}
}

/* SUBTITTLE */
.sub-heading {
	color: var(--Orange-03, #ff7a00);
	font-family: 'Refresh Screen';
	font-size: 2.5rem;
	font-style: normal;
	font-weight: 400;
	line-height: 111%; /* 2.775rem */
	letter-spacing: 0.125rem;
}
@media (max-width: 639.98px) {
	.sub-heading {
		font-size: 1.5rem;
		letter-spacing: 0.075rem;
	}
}

/* Button */
.btn {
	display: inline-flex;
	padding: 0.96875rem 2rem;
	justify-content: center;
	align-items: center;
	border-radius: 0.5rem;
	background: var(--Green, #0b6836);
	border: none;
	transition: all 0.4s ease-out;
}
.btn__text {
	color: var(--White, #fff);
	text-align: center;
	font-size: 1rem;
	font-style: normal;
	font-weight: 600;
	line-height: 1.56113rem; /* 156.112% */
	transition: all 0.4s ease-out;
}
.btn__arrow {
	margin-left: 0.5rem;
	display: flex;
	width: 1.48813rem;
	height: 1.48813rem;
	overflow: hidden;
}
.btn__arrow img {
	width: 100%;
	height: 100%;
	padding: 0.25588rem 0.18606rem 0.25563rem 0.18606rem;
	object-fit: contain;
	object-position: center;
	transform: translateX(-200%);
	transition: transform 0.4s ease-out;
}
.btn__arrow img:first-child {
	margin-right: 100%;
}
@media (min-width: 639.98px) {
	.btn:hover {
		background: var(--Orange-03, #ff7a00);
	}
	.btn:hover .btn__arrow img {
		transform: translateX(0);
	}
}
@media (max-width: 639.98px) {
	.btn {
		padding: 0.625rem 2rem;
	}
	.btn__text {
		font-size: 0.875rem;
	}
}

/* Breadcrumbs */
.breadcrumb {
	display: flex;
	align-items: center;
}
.breadcrumb__item {
	color: #b2b2b2;
	font-family: Poppins;
	font-size: 1rem;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 1.5rem */
	letter-spacing: 0.03125rem;
	text-transform: uppercase;
	padding: 0.25rem;
	transition: all 0.3s ease-out;
}
.breadcrumb__item:not(:last-child) {
	flex: 0 0 auto;
}
.breadcrumb__item:not(:last-child)::after {
	content: '/';
	margin-left: 0.5rem;
}
.breadcrumb__item:hover,
.breadcrumb__item:last-child {
	color: var(--Text-Body-T1, #2e2e2e);
}

.breadcrumb__item:last-child {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

@media (max-width: 639.98px) {
	.breadcrumb__item {
		font-size: 0.75rem;
	}
	.breadcrumb__item:not(:last-child)::after {
		content: '/';
		margin-left: 0.375rem;
	}
}

/* Card tour */
.card-tour {
	border-radius: 0.5rem;
	overflow: hidden;
	display: block;
	position: relative;
}
.card-tour__tag {
	position: absolute;
	top: 1rem;
	left: 1rem;
	display: flex;
	z-index: 1;
	padding: 0.25rem 0.75rem;
	justify-content: center;
	align-items: center;
	border-radius: 625rem;
	background: var(--Orange-03, #ff7a00);
	color: #fff;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.03125rem;
}
.card-tour__img {
	width: 100%;
	height: 15.375rem;
	overflow: hidden;
	position: relative;
}
.card-tour__img::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.1);
}
.card-tour__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 0.5s cubic-bezier(0.84, 0.01, 0.29, 0.99);
}

@media (min-width: 639.98px) {
	.card-tour:hover .card-tour__img img {
		transform: scale(1.2);
	}
}
.card-tour__content {
	padding: 1rem;
	background: var(--White, #fff);
}
.card-tour__content-top {
	display: flex;
	justify-content: space-between;
	align-items: start;
}
.card-tour__title {
	color: var(--Green-02, #103025);
	font-family: Poppins;
	font-size: 1rem;
	font-style: normal;
	font-weight: 700;
	line-height: 140%; /* 1.4rem */
	letter-spacing: -0.01563rem;
	text-transform: uppercase;
}
.card-tour__price {
	display: flex;
	align-items: center;
	flex-direction: column;
	color: var(--text-body-75, rgba(46, 46, 46, 0.75));
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 500;
	line-height: 160%; /* 1.2rem */
	margin-left: 2rem;
}
.card-tour__price .price {
	color: var(--Green, #0b6836);
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 600;
	line-height: 160%; /* 2rem */
}

.card-tour__content-bottom {
	margin-top: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: end;
}
.card-tour__content-bottom-left {
	color: var(--Green-02, #103025);
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 1.125rem */
}
.card-tour__content-bottom-left > *:not(:last-child) {
	margin-bottom: 0.5rem;
}
.card-tour__content-bottom-left img {
	width: 0.875rem;
	height: 0.875rem;
	object-fit: contain;
	margin-right: 0.5rem;
}
.card-tour__content-text {
	color: var(--Green-02, #103025);
	font-family: Poppins;
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 0.9rem */
	text-transform: uppercase;
}
.card-tour__content-bottom button {
	height: 2.75rem;
	width: 2.75rem;
	border-radius: 100%;
	background: var(--Green, #0b6836);
	display: flex;
	justify-content: center;
	align-items: center;
}
.card-tour__content-bottom button img {
	width: 1.5rem;
	height: 1.5rem;
	object-fit: contain;
}
@media (max-width: 639.98px) {
	.card-tour__tag {
		position: absolute;
		top: 1rem;
		left: 1rem;
		display: flex;
		z-index: 1;
		padding: 0.25rem 0.75rem;
		justify-content: center;
		align-items: center;
		border-radius: 625rem;
		background: var(--Orange-03, #ff7a00);
		color: #fff;
		font-size: 0.875rem;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
		letter-spacing: -0.03125rem;
	}
	.card-tour__img {
		height: 11.79063rem;
	}
	.card-tour__content {
		padding: 0.75rem;
	}
	.card-tour__title {
		font-size: 0.875rem;
		letter-spacing: -0.012rem;
	}
	.card-tour__price {
		font-size: 0.625rem;
		margin-left: 1.5rem;
	}
	.card-tour__price .price {
		font-size: 1rem;
	}

	.card-tour__content-bottom {
		margin-top: 0.75rem;
	}
	.card-tour__content-bottom-left {
		font-size: 0.625rem;
	}
	.card-tour__content-bottom-left > *:not(:last-child) {
		margin-bottom: 0.38344rem;
	}
	.card-tour__content-bottom-left img {
		width: 0.75rem;
		height: 0.75rem;
		margin-right: 0.38344rem;
	}
	.card-tour__content-text {
		font-size: 0.625rem;
	}
	.card-tour__content-bottom button {
		height: 2.1089rem;
		width: 2.1089rem;
	}
	.card-tour__content-bottom button img {
		width: 1.15031rem;
		height: 1.15031rem;
	}
}

/* Card blog */
.card-blog {
	border-radius: 0.5rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
	box-shadow: 0px 3.317px 44.22px 1.106px rgba(214, 214, 221, 0.40);
}
.card-blog__tag {
	position: absolute;
	top: 1.40388rem;
	left: 1.40388rem;
	display: flex;
	z-index: 1;
	padding: 0.351rem 1.05294rem;
	justify-content: center;
	align-items: center;
	border-radius: 625rem;
	background: var(--Orange-03, #ff7a00);
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
}
.card-blog__img {
	width: 100%;
	height: 21.5rem;
	overflow: hidden;
}
.card-blog__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 0.5s cubic-bezier(0.84, 0.01, 0.29, 0.99);
}
@media (min-width: 639.98px) {
	.card-blog:hover .card-blog__img img {
		transform: scale(1.2);
	}
}
.card-blog__content {
	padding: 1.38188rem;
	background: var(--White, #fff);
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.card-blog__title {
	color: var(--Green-02, #103025);
	font-family: Poppins;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.00625rem;
	text-transform: uppercase;
	display: -webkit-box;
	-webkit-line-clamp: 3; /* Số dòng muốn giới hạn */
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card-blog__content-bottom {
	margin-top: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.card-blog__content-bottom-left {
	color: var(--Green-02, #103025);
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 1.5rem */
	letter-spacing: -0.05181rem;
}
.card-blog__content-bottom-left > *:not(:last-child) {
	margin-bottom: 0.5rem;
}
.card-blog__content-bottom-left img {
	width: 1.25rem;
	height: 1.25rem;
	object-fit: contain;
	margin-right: 0.75rem;
}
.card-blog__content-bottom button {
	height: 3.5rem;
	width: 3.5rem;
	border-radius: 100%;
	background: var(--Green, #0b6836);
	display: flex;
	justify-content: center;
	align-items: center;
}
.card-blog__content-bottom button img {
	width: 1.90906rem;
	height: 1.90906rem;
	object-fit: contain;
}
@media (max-width: 639.98px) {
	.card-blog {
		box-shadow: 0px 3px 40px 1px rgba(214, 214, 221, 0.40);
	}
	.card-blog__tag {
		padding: 0.26088rem 0.78269rem;
		font-size: 0.75rem;
		letter-spacing: 0.025rem;
		left: 0.875rem;
		top: 0.875rem;
	}
	.card-blog__img {
		height: 15.625rem;
	}
	.card-blog__content {
		padding: 1rem;
	}
	.card-blog__title {
		font-size: 1rem;
		letter-spacing: 0.03125rem;
	}

	.card-blog__content-bottom {
		margin-top: 0.71906rem;
	}
	.card-blog__content-bottom-left {
		font-size: 0.875rem;
		font-weight: 400;
		line-height: 160%; /* 1.4rem */
		letter-spacing: 0.01563rem;
	}
	.card-blog__content-bottom-left > *:not(:last-child) {
		margin-bottom: 0.25rem;
	}
	.card-blog__content-bottom-left img {
		width: 1rem;
		height: 1rem;
		margin-right: 0.52181rem;
	}
	.card-blog__content-bottom button {
		height: 3rem;
		width: 3rem;
	}
	.card-blog__content-bottom button img {
		width: 1.63638rem;
		height: 1.63638rem;
	}
}

/* card hotel */
.card-hotel {
	border-radius: var(--4, 0.25rem);
	background: #fff;
	box-shadow: 0px 3px 40px 1px rgba(214, 214, 221, 0.4);
	overflow: hidden;
	display: flex;
	position: relative;
}
.card-hotel___tag {
	display: flex;
	padding: 0.25rem 0.75rem;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.03125rem;
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 3;
	border-radius: 479.119rem;
	background: var(--Orange-03, #FF7A00);
}

@media screen and (max-width: 639.98px) {
	.card-hotel___tag {
		padding: 0.19163rem 0.57494rem;
		color: #fff;
		font-size: 0.75rem;
		letter-spacing: -0.025rem;
		top: 1.52rem;
		left: 1.39rem;
	}
}


.card-hotel .card-hotel__hot {
	display: flex;
	color: #FFF;
	font-family: Poppins;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.03125rem;
	border-radius: 625rem;
	background: var(--Orange-03, #FF7A00);
	padding: 0.25rem 0.75rem;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 10;
}
.card-hotel__gallery {
	width: 22.1875rem;
	height: 18.8125rem;
	position: relative;
}
.card-hotel__gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: border 0.3s ease-in-out;
	border: 0;
}
.card-hotel__gallery-slide {
	width: 100%;
	height: 16.0625rem;
}
.card-hotel__gallery-thumb {
	width: 100%;
	height: 2.75rem;
	padding: 0.1875rem 0.1875rem 0.18013rem 0.1875rem !important;
}
.card-hotel .swiper-slide-thumb-active img {
	border: 3px solid #259a37;
}
.card-hotel__gallery-button-next,
.card-hotel__gallery-button-prev {
	width: 2rem;
	height: 2rem;
	border-radius: 0.16669rem;
	background: var(--Green, #0b6836);
	position: absolute;
	z-index: 1;
	top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-50%);
}
.card-hotel__gallery-button-next img,
.card-hotel__gallery-button-prev img {
	width: 1.09094rem;
	height: 1.09094rem;
	object-fit: contain;
}
.card-hotel__gallery-button-next img {
	transform: rotate(180deg);
}

.card-hotel__gallery-button-next {
	right: 0;
}
.card-hotel__gallery-button-prev {
	left: 0;
}
.card-hotel__gallery-pagination {
	display: none;
}

@media (max-width: 639.98px) {
	.card-hotel {
		padding: 0.75rem;
		border-radius: 0.38331rem;
		flex-direction: column;
	}
	.card-hotel__gallery {
		width: 100%;
		height: 12.74456rem;
		border-radius: 0.38331rem;
		overflow: hidden;
	}
	.card-hotel__gallery-slide {
		width: 100%;
		height: 16.0625rem;
	}
	.card-hotel__gallery-thumb {
		display: none;
	}
	.card-hotel__gallery-button-next,
	.card-hotel__gallery-button-prev {
		display: none;
	}
	.card-hotel__gallery-pagination {
		position: absolute;
		bottom: 0;
		z-index: 2;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.card-hotel__gallery-pagination .swiper-pagination-bullet {
		width: 0.38331rem;
		height: 0.38331rem;
		background-color: #fff;
		opacity: 0.6;
		transition: all 0.3s ease-in-out;
		margin: 0 0.38331rem;
	}
	.card-hotel__gallery-pagination .swiper-pagination-bullet-active {
		width: 1.9165rem;
		height: 0.38331rem;
		border-radius: 0.38331rem;
		opacity: 1;
	}
}
.card-hotel__content {
	flex: 1;
}
.card-hotel__content-PC {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
.card-hotel__content-MB {
	display: none;
}
.card-hotel__content__title {
	color: #000;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 1.875rem */
	letter-spacing: -0.01981rem;
	padding-top: 1rem;
	margin: 0 1rem;
	margin-right: 0.75rem;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
.card-hotel__content__sub-title {
	color: var(--text-body-75, rgba(46, 46, 46, 0.75));
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	line-height: 160%; /* 1.4rem */
	letter-spacing: 0.01981rem;
	margin: 0 1rem;
}
.card-hotel__content__info {
	color: var(--text-body-60, rgba(46, 46, 46, 0.6));
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
	line-height: 160%; /* 1.4rem */
	letter-spacing: -0.03125rem;
	margin: 1rem;
	margin-bottom: 0;
}
.card-hotel__content__info > * {
	margin-bottom: 0.875rem;
	display: flex;
	align-items: center;
}
.card-hotel__content__info img {
	width: 1.125rem;
	height: 1.125rem;
	object-fit: contain;
	margin-right: 0.5rem;
}
.card-hotel__content__price {
	display: flex;
	height: 3.25rem;
	justify-content: space-between;
	align-items: center;
	padding: 0.875rem 0;
	margin: 0 1rem;
	color: var(--text-body-75, rgba(46, 46, 46, 0.75));
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1rem; /* 133.333% */
	letter-spacing: 0.025rem;
	border-top: 1px solid rgba(221, 221, 221, 0.47);
}
.card-hotel__content__price .price {
	color: var(--Orange-03, #ff7a00);
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 1.5rem */
}
.card-hotel__content__price .price span {
	color: var(--text-body-40, rgba(46, 46, 46, 0.4));
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 600;
	line-height: 160%;
	letter-spacing: -0.025rem;
}
.card-hotel__content-PC .btn {
	width: 100%;
	border-radius: unset;
}
@media (max-width: 639.98px) {
	.card-hotel__content-PC {
		display: none;
	}
	.card-hotel__content-MB {
		display: block;
	}
	.card-hotel__content__wrap {
		display: flex;
		align-items: start;
		justify-content: space-between;
	}
	.card-hotel__content__title {
		color: #000;
		font-size: 1rem;
		letter-spacing: -0.01563rem;
		padding-top: 0;
		margin: 0;
		-webkit-line-clamp: 2;
	}
	.card-hotel__content__sub-title {
		font-size: 0.75rem;
		letter-spacing: normal;
		margin: 0;
	}
	.card-hotel__content__info {
		color: var(--Text-Body-T1, #2e2e2e);
		font-family: Poppins;
		font-size: 0.75rem;
		letter-spacing: -0.025rem;
		margin: 1rem 0 0.75rem;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.card-hotel__content__info > * {
		margin-bottom: 0;
	}
	.card-hotel__content__info img {
		width: 0.86244rem;
		height: 0.86244rem;
		margin-right: 0.38331rem;
	}
	.card-hotel__content__price {
		height: auto;
		padding: 0;
		margin: 0;
		border-top: none;
	}
	.card-hotel__content__price .price {
		font-size: 0.875rem;
		line-height: 160%; /* 1.4rem */
		letter-spacing: -0.03125rem;
	}
	.card-hotel__content__price .price span {
		font-size: 0.625rem;
		line-height: 160%;
		letter-spacing: -0.01919rem;
	}
	.card-hotel__content-MB .btn {
		width: 100%;
		margin-top: 1.125rem;
	}
}
#loading {
	display: none;
}
.skeleton {
	height: 24rem;
	border-radius: 8px;
	background: linear-gradient(
		90deg,
		#e0e0e0 25%,
		#f0f0f0 50%,
		#e0e0e0 75%
	);
	background-size: 200% 100%;
	animation: shimmer 1.2s infinite;
}
@media (max-width: 639.98px) {
	.skeleton {
		height: 18.875rem;
	}
}
/*  */
.not_item {
	margin-top: 0.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.not_item.hidden {
	display: none;
}
.not_item p {
	margin-top: 0.88rem;
	color: var(--Orange-03, #FF7A00);
	text-align: center;
	font-family: Poppins;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: 160%; /* 2.4rem */
	letter-spacing: -0.01563rem;
	text-transform: uppercase;
}