/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 30 2025 | 07:41:06 */
/* General */
:root {
	--primary-color: #146864;
	--secondary-color: #1F9E9D;
	--text-color: #0D2B2B;
}
img {
	width: 100%;
	height: auto;
}
p {
	word-spacing: 1px;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: none;
}
p:last-child {
	margin-bottom: 0;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.overflow-hidden {
  overflow-x: hidden;
}

/* -------------- Animation ---------------- */
@keyframes zoom {

  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes slideFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideFadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-bounce {
  0% {
    transform: scale(1) translateY(0);
    box-shadow: 0 0 0 0 rgba(20, 104, 100, 0.5);
  }
  25% {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 0 10px 5px rgb(20, 104, 100, 0.3);
  }
  50% {
    transform: scale(0.95) translateY(2px);
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
  }
  75% {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 12px 4px rgba(20, 104, 100, 0.4);
  }
  100% {
    transform: scale(1) translateY(0);
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
  }
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(20, 104, 100, 0.7);
	}

	70% {
		transform: scale(1.2);
		box-shadow: 0 0 0 12px rgba(20, 104, 100, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(20, 104, 100, 0);
	}
}

@media(max-width: 767px) {
  @keyframes pulse {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(20, 104, 100, 0.7);
    }

    70% {
      transform: scale(1.2);
      box-shadow: 0 0 0 10px rgba(20, 104, 100, 0);
    }

    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(20, 104, 100, 0);
    }
  }
}

@keyframes heightShow {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.animate-zoom {
  animation: zoom 30s linear infinite;
}

.slideFadeOut {
  animation-name: slideFadeOut;
  animation-duration: 0.6s;
}

.slideFadeIn {
  animation-name: slideFadeIn;
  animation-duration: 0.6s;
}

.fadeInLeft {
  animation-name: fadeInLeft;
  animation-duration: 0.6s;
  animation-fill-mode: both;
}

.fadeInRight {
  animation-name: fadeInRight;
  animation-duration: 0.6s;
  animation-fill-mode: both;
}


/* Header */
header .elementor-nav-menu--main .elementor-item-active {
    font-weight: 600!important;
}
.elementor-nav-menu li .elementor-sub-item {
    border: 0!important;
}

/* Footer */
.footer-wrap .footer-logo img {
	filter: brightness(0) invert(1);
}

/* Light Box */
.elementor-lightbox .elementor-video-container .elementor-video-landscape iframe, .elementor-lightbox .elementor-video-container .elementor-video-landscape video {
	max-height: 80vh!important;
}

/* Button */
.btn-notclick {
	pointer-events: none!important;
}
.btn-play .elementor-button-content-wrapper {
  align-items: center;
}
.btn-play .elementor-button {
  text-align: left;
  text-decoration: underline;
  line-height: 1.5;
  text-underline-position: under;
  text-decoration-thickness: 1px;
}

.btn-play svg {
  width: auto !important;
  filter: drop-shadow(0 0 15px rgba(0 0 0/25%));
}

.btn-play .elementor-button-icon {
  border-radius: 50%;
}

.btn-play:hover .elementor-button-icon {
  animation: pulse-bounce 1.8s infinite ease-in-out;
}

.vide-btn-wrapper {
  margin: auto;
}
.vide-btn-wrapper .elementor-widget-image a {
  display: inline-block;
  border-radius: 50%;
  filter: drop-shadow(0 0 15px rgba(0 0 0/25%));
  animation: pulse-bounce 1.8s infinite ease-in-out;
  animation-delay: .3s;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.vide-btn-wrapper .elementor-widget-image a:hover {
  filter: brightness(1.15);
  animation-play-state: paused;
}

.btn-line .elementor-button-text:hover {
    font-weight: 500;
}

.btn-timeslot a.elementor-button {
    display: block;
}
.btn-timeslot .active {
	background-color: var(--secondary-color)!important;
	border-color: var(--secondary-color)!important;
	color: #fff!important;
}

.enquire-wa-btn {
  position: relative;
  padding: 8px;
  font-size: 1.25rem;
  background: rgb(20 104 100 / 90%);
  color: #fff!important;
  display: block;
  text-align: center;
}

.enquire-wa-btn:hover {
  background: var(--secondary-color);
}

.btn-shop-link.m svg {
  width: 15px;
}

.btn-shop-link.white:hover {
	color: #fff;
	opacity:0.8 ;
}

@media(max-width: 1025px) {
  .btn-play svg {
    width: auto !important;
    transform: scale(0.8);
  }
}

@media(max-width: 767px) {
	.elementor-lightbox .elementor-video-container .elementor-video-landscape iframe, .elementor-lightbox .elementor-video-container 	 .elementor-video-landscape video {
		max-height: 70vh!important;
		aspect-ratio: unset!important;
	}

  .btn-play svg {
    width: auto !important;
    transform: scale(0.8);
  }
  
  .btn-play .elementor-button-icon {
    animation: pulse-bounce 1.8s infinite ease-in-out;
  }
}

/* ------- Swiper ------- */
.swiper-pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 50px;
}

.hero-banner-wrap .swiper-pagination .swiper-pagination-bullet-active {
	width: 35px;
}

/* ------- Home ------- */
/* Hero Banner */
.hero-inner-wrap {
    transform: translateY(-50%);
}
.hero-banner-wrap .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
	background: #fff;
	opacity: 1;
}
.hero-banner-wrap .swiper-pagination-bullet:hover {
	background: #04BFBF;
}

.hero-banner-wrap .hero-inner {
  animation-delay: 4s;
}

.hero-banner-wrap .swiper-slide-active .hero-inner {
  animation: slideFadeUp 1s forwards;
}

@media(min-width: 1025px) {
  .hero-banner-wrap .swiper-slide-active .slide-left {
    animation: fadeInLeft 1s forwards;
  }

  .hero-banner-wrap .swiper-slide-active .slide-right {
    animation: fadeInRight 1s forwards;
  }
}

@media(max-width: 767px) {
  .hero-inner-wrap {
    transform: unset;
  }

  .hero-inner-wrap .btn-wrap .elementor-button{
    width: 100%;
  }
}

/* List Item Col */
.list-item-col {
    transition: all 0.3s ease;
}
.list-item-col .img-wrap {
    overflow: hidden;
}
.list-item-col .img-wrap .icon {
    filter: drop-shadow(0px 2px 10px rgba(0 0 0/25%));
}
.list-item-col .img-wrap .icon .elementor-widget-container {
	padding-top: 8px;
	width: 60px;
    height: 80px;
    background: #f9f9f9;
	clip-path: polygon(0% 0%, 0% 0%, 100% 0%, 100% 0%, 100% 100%, 50% 80%, 0% 100%, 0% 100%);
}
.list-item-col:hover {
    box-shadow: 0 2px 20px rgba(0 0 0/15%);
}
.list-item-col:hover .img-wrap .icon .elementor-widget-container {
	background: #EFEFEF;
}

/*---- Full Calendar ----*/
.book-wrapper .fc .fc-toolbar-title {
    font-size: 2rem;
    font-weight: 500;
		color: var(--primary-color);
}

.book-wrapper .fc .fc-button:not(:disabled) {
    border-radius: 0;
    background-color: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.25rem;
    padding: 5px;
    width: 50px;
    height: 50px;
}

.book-wrapper .fc .fc-button:not(:disabled):focus {
	box-shadow: none;
}

.book-wrapper .fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 0;
}

.fc-col-header-cell .fc-col-header-cell-cushion {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.375rem;
    padding: 5px;
}

.book-wrapper .fc table, .book-wrapper .fc table th, .book-wrapper .fc table td {
    border: none!important;
}

.book-wrapper .fc table.fc-col-header {
    margin-bottom: 0;
}

.book-wrapper .fc thead {
    border-bottom: 1px solid #000;
}

.book-wrapper .fc td {
    background: transparent;
}

.book-wrapper .fc-daygrid-day-events {
    display: none;
}
.book-wrapper .fc .fc-scroller {
    overflow: hidden!important;
}
.book-wrapper .fc .fc-daygrid-day-frame {
		position: relative;
}
.book-wrapper .fc .fc-daygrid-day-top {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 1.25rem;
    font-weight: 500;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
		cursor: pointer;
		transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
}

/* today date */
.book-wrapper .fc .fc-daygrid-day.fc-day-today {
    background-color: transparent!important;
}
.book-wrapper .fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-top {
    background: #f5f5f5;
    font-weight: 600;
    color: #818181;
}

/* disabled date */
.book-wrapper .fc .fc-day-past .fc-daygrid-day-top,
.book-wrapper .fc .fc-day-disabled .fc-daygrid-day-top {
	pointer-events: none!important;
	color: #818181;
}

/* selected date */
.book-wrapper .fc .fc-highlight { background: transparent!important; }
.book-wrapper .fc .fc-day:not(.fc-day-past) .fc-daygrid-day-top:hover,
.book-wrapper .fc .fc-day:not(.fc-day-disabled) .fc-daygrid-day-top:hover,
.book-wrapper .fc .fc-highlight .fc-daygrid-day-top,
.book-wrapper .fc-day-selected:not(.fc-day-disabled) .fc-daygrid-day-top {
	background: var(--secondary-color);
	color: #fff;
	font-weight: 600;
}

@media(min-width: 768px) {
  .book-wrapper .fc .fc-button:not(:disabled):hover {
    background-color: var(--secondary-color);
    color: #fff;
  }
}

@media(max-width: 767px) {
  .book-wrapper .fc .fc-toolbar-title {
    font-size: 1.25rem;
  }
  .fc-col-header-cell .fc-col-header-cell-cushion {
    font-size: 1rem;
  }
  .book-wrapper .fc .fc-daygrid-day-top {
    font-size: 0.875rem;
  }
  .book-wrapper .fc .fc-button:not(:disabled) {
    width: 35px;
    height: 35px;
    font-size: 1.125rem;
  }
}

/* ------ Form ------ */
.frm_forms {
  font-family: 'Poppins', sans-serif;
}
.frm_style_formidable-style.with_frm_style .form-field {
    margin-bottom: 25px;
}
.frm_forms .form-field label {font-size: 1.125rem;margin-bottom: 5px;font-weight: 500;}

.frm_forms .form-field input {
  border-radius: 5px;
  border: 1px solid #D9D9D9;
  min-height: 50px;
}

.frm_forms .btn-submit.form-field {
  margin-bottom: 0;
}

.frm_forms .btn-submit .frm_submit button {
  margin: 0;
  margin-top: 35px;
  background: var(--primary-color);
  border-radius: 6px;
  font-size: 1.25rem;
  font-weight: normal;
  padding: 10px 45px;
  min-width: 200px;
  border: none;
}

.frm_forms .btn-submit .frm_submit button:hover {
  background: var(--secondary-color);
}

@media(max-width: 767px) { 
  .frm_forms .form-field label {
    font-size: 1rem;
  }
  .frm_forms .btn-submit .frm_submit button {
    font-size: 1rem;
    min-width: 150px;
    margin-top: 5px;
  }
}

/* ------- Contact us -------- */
.social-icon-wrap .elementor-icon:hover {
  filter: brightness(0) saturate(100%) invert(54%) sepia(66%) saturate(483%) hue-rotate(131deg) brightness(83%) contrast(91%);
}

/* -------- Modal ----------- */
.modal .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 1!important;
    background-color: transparent!important;
    padding: 8px!important;
    font-size: 1.5rem!important;
    filter: brightness(0) saturate(100%) invert(51%) sepia(94%) saturate(2530%) hue-rotate(145deg) brightness(90%) contrast(76%);
    border: none!important;
}

.modal .btn-close:hover,
.modal .btn-close:focus {
  opacity: .8!important;
  box-shadow: none!important;
}

.modal-technology-modal {
  --max-h: 600px;
}
.modal-technology-modal .modal-content {
    border-radius: 0;
}
.modal-technology-modal .modal-body {
    padding: 0;
}

.modal-technology-modal .thumb-wrap {
  background-color: #F9F9F9;
}

.modal-technology-modal .thumb-wrap img {
  width: 100%;
  height: var(--max-h);
  object-fit: contain;
}

.modal-technology-modal .detail-wrapper {
  padding: 70px 40px 0 70px;
}

.modal-technology-modal .detail-info {
    padding: 0 30px 30px 0;
    max-height: calc(var(--max-h) - 70px);
    overflow: auto;
    font-size: 1.25rem;
}

.modal-technology-modal .detail-info::-webkit-scrollbar {
  width: 2px;
  height: 100%;
}
.modal-technology-modal .detail-info::-webkit-scrollbar-track {
  background-color: #D9D9D9;
}

.modal-technology-modal .detail-info::-webkit-scrollbar-thumb {
  background: #5E7272;
  border-radius: 0;
}

@media(min-width: 1025px) {
  .modal-technology-modal .col-left {
    width: 350px;
  }
  .modal-technology-modal .col-right {
    width: calc(100% - 350px);
  }
}

@media(min-width: 1200px) {
  .modal-technology-modal .modal-lg, .modal-technology-modal .modal-xl {
    max-width: 1300px;
  }
   .modal-technology-modal .col-left {
    width: 565px;
  }
  .modal-technology-modal .col-right {
    width: calc(100% - 565px);
  }
}


@media(max-width: 1024px) {
  .modal .btn-close {
    top: 15px;
    font-size: 1.125rem!important;
  }
  .modal-technology-modal .detail-wrapper {
    padding: 50px 35px 0 35px;
  }
}

@media(max-width: 991px) {
  .modal-technology-modal {
    --max-h: 300px;
  }
  .modal-technology-modal .col-left,
  .modal-technology-modal .col-right {
    width: 100%;
  }
  .modal-technology-modal .detail-wrapper {
    padding: 30px;
    font-size: 1rem;
  }
}

@media(max-width: 767px) {
  .modal .btn-close {
    top: 10px;
    right: 10px;
  }
  .modal-technology-modal {
    --max-h: 500px;
  }
  .modal-technology-modal .thumb-wrap img {
    --max-h: unset;
    height: auto;
  }
  .modal-technology-modal .detail-wrapper {
    padding: 20px;
  }
  .modal-technology-modal .detail-info {
    padding: 0 15px 15px 0;
    font-size: 1rem;
  }
}


/* List Technology */
.list-technology-gallery .thumb-wrap {
    position: relative;
}

.btn-toggle-popup {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    font-size: 0!important;
    opacity: 0!important;
    width: 100%!important;
    height: 100%!important;
    display: block!important;
}

.btn-toggle-popup .btn-primary {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    font-size: 0!important;
    opacity: 0!important;
    width: 100%!important;
    height: 100%!important;
    display: block!important;
}

.swiper-technology .swiper-slide {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  pointer-events: unset!important;
}
.swiper-technology:hover .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.7;
  filter: blur(3px);
}
@media(max-width: 767px) {
  .list-technology-gallery .thumb-wrap img {
    height: 200px;
  }
}

/* ------- Product list - Best Selling ------------ */
.prod-item-wrap .prod-img-wrap {
    overflow: hidden;
    position: relative;
}

.prod-item-wrap .prod-img-wrap img {
    width: 100%!important;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.prod-item-wrap .prod-img-wrap .hover-img,
.prod-item-wrap .prod-img-wrap .hover-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

.prod-item-wrap .prod-img-wrap .hover-img img {
    object-fit: cover;
}

.prod-item-wrap .prod-attr {
    font-style: normal;
    font-size: 0.9375rem;
    text-align: center;
    width: 100%;
}

@media(min-width: 1025px) {
  .secBestSelling .elementor-swiper-button,
  .secFeaturedProduct .elementor-swiper-button {
    display: none!important;
  }
}

/* Wa button - product */
.btn-wa-enquiry {
  display: block;
  text-align: center;
  width: 100%;
}
.prod-item-wrap .btn-addcart,
.prod-item-wrap .enquire-wa-btn {
  opacity: 0;
  z-index: -1!important;
}

/* hover - product */
.prod-item-wrap:hover .prod-img-wrap .hover-img img {
  opacity: 1;
}

.prod-item-wrap:hover .prod-detail {
  background: #F7F7F7!important;
}

.prod-item-wrap:hover .btn-addcart,
.prod-item-wrap:hover .enquire-wa-btn {
  opacity: 1;
  z-index: 1!important;
}

/* Featured Product */
.prod-featured-wrap .btn-addcart .elementor-button,
.prod-featured-wrap .enquire-wa-btn {
  background: transparent;
  color: var(--primary-color)!important;
  padding: 0; font-weight: normal;
}

/* Hover */
.prod-featured-wrap:hover .prod-img-wrap .hover-img img {
  opacity: 1;
}

.prod-featured-wrap:hover .prod-detail {
  background: #F7F7F7!important;
}

.prod-featured-wrap .btn-addcart .elementor-button:hover,
.prod-featured-wrap .enquire-wa-btn:hover {
  text-decoration: underline;
  font-weight: 500!important;
}

/* Default Width for small screen */
@media(min-width: 1150px) and (max-width: 1399px) {
  :root {
    font-size: 14px;
  }
  .e-con>.e-con-inner {
    --content-width: 1140px;
  }

  .swiper-technology.elementor-widget-loop-carousel .elementor-loop-container.offset-both {
    --swiper-offset-size: 300px;
  }

  /* Home */
  .sec-scent-home .e-con-inner {
    --column-gap: 4rem!important;
  }
  .sec-scent-home .col-right {
    --column-gap: 4rem!important;
    width: calc(35% - var(--column-gap))!important;
  }

  .vide-btn-wrapper .elementor-widget-image a {
    transform: translateX(-50px)!important;
  }
  .vide-btn-wrapper .elementor-widget-image a img {
    width: 120px!important;
    height: 120px!important;
  }

}

/* ---------------- Listing Industry ---------------- */
.list-industry .img-wrap {
  position: relative;
  height: 100%;
}
.list-industry .img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 18/23;
  object-fit: cover;
}

.list-industry .body ul {
  padding-left: 20px;
}

.list-industry .body ul li {
  padding-left: 5px;
  margin-bottom: 8px;
}

.list-industry .body ul li::marker {
  color: #04BFBF;
}

@media(min-width: 768px) {
  .list-industry .img-wrap > div {
    height: 100%;
  }
  .list-industry .img-wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
  }
}

/* ---------------- Scent Subscription ---------------- */
.intro-wrap-subscription .img-wrap .elementor-widget-image {
    height: 100%;
}

@media(max-width: 1024px) {
  .intro-wrap-subscription .img-wrap .elementor-widget-image {
    position: relative!important;
  }
}


/* Logo Marquee */
#uc_logo_marquee_elementor_e01050f:hover .uc_marquee > div {
    animation-play-state: paused;
}

/* Floating Butoon */
.float-btn-whatsapp {
    display: inline-block;
    width: 85px;
    height: 85px;
    position: fixed;
    z-index: 8;
    right: 20px;
    bottom: 100px;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
}

.float-btn-whatsapp:hover {
    filter: brightness(1.15);
}

#back-to-top {
  position: fixed;
  right: 35px;
  bottom: 30px;
  width: 55px;
  height: 55px;
  border-radius: 4px;
  background: #04BFBF;
  padding: 5px;
  display: none;
  box-shadow: 0 0 10px rgba(0 0 0/15%);
  z-index: 8;
  cursor: pointer;
  text-decoration: none;
}

#back-to-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  transform: translate(-50%, -50%);
}
#back-to-top:hover {
  background: var(--secondary-color);
}

@media(max-width: 767px) {
  #back-to-top {
    width: 45px;
    height: 45px;
    right: 15px;
  }

  #back-to-top img {
    width: 15px;
  }

  .float-btn-whatsapp {
    width: 70px;
    height: 70px;
    bottom: 85px;
    right: 4px;
  }
}

/* -------- slick -------- */
.slick-track > div {
    padding: 0 5px;
}
ul.slick-dots {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 0;
}

ul.slick-dots button {
  display: inline-block;
  padding: 0;
  color: transparent!important;
  width: 12px;
  height: 12px;
  margin: 5px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid var(--secondary-color);
}
ul.slick-dots .slick-active button {
  width: 40px;
  background: var(--secondary-color);
}

/* Our Client */

.slider-styleA-wrap {
  position: relative;
}

.slider-styleA-wrap .uc_quote_info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: unset!important;
  align-items: center;
}

.slider-styleA-wrap .uc_quote_info .uc_author {
  width: 50%;
  order: 2;
}

.slider-styleA-wrap .uc_quote_info .ctn-inner-wrap {
  width: 50%;
}

.slider-styleA-wrap .ue-image {
  width: 100%;
}

.slider-styleA-wrap .ue-image img {
  width: 100%;
  height: 100%!important;
}

.slider-styleA-wrap .ctn-inner-wrap {
  padding: 20px 80px 100px 30px;
}

.slider-styleA-wrap .elementor-widget-ucaddon_remote_counter_display {
  position: absolute;
  bottom: 40px;
  left: 50px;
  z-index: 3;
}
.slider-styleA-wrap .owl-nav button {
  position: absolute;
  bottom: 40px;
  top: unset!important;
}
.slider-styleA-wrap .owl-nav button.owl-prev {
  left: calc(50% - 235px)!important;
}
.slider-styleA-wrap .owl-nav button.owl-next {
  left: calc(50% - 150px)!important;
}

@media(max-width: 1399px) {
   .slider-styleA-wrap .uc_quote_info .ctn-inner-wrap .ue-text {
    max-height: 200px;
    overflow: auto;
  }
}

@media(max-width: 1024px) {
  .slider-styleA-wrap .uc_quote_info .uc_author {
    width: 100%;
    order: 0;
  }

  .slider-styleA-wrap .uc_quote_info .ctn-inner-wrap {
    width: 100%;
    padding: 20px 20px 70px;
  }

  .slider-styleA-wrap .elementor-widget-ucaddon_remote_counter_display {
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
  }
  
  .slider-styleA-wrap .owl-nav button {
    bottom: 10px;
  }
  
  .slider-styleA-wrap .owl-nav button.owl-next {
    left: 60%!important;
  }
  
  .slider-styleA-wrap .owl-nav button.owl-prev {
    left: 35%!important;
  }
}

@media(max-width: 767px) {
  .slider-styleA-wrap {
    background-color: #fff;
    padding-bottom: 20px;
  }
  .slider-styleA-wrap .uc_quote_info .ctn-inner-wrap {
    padding: 20px 15px 70px;
  }

  .slider-styleA-wrap .uc_quote_info .ctn-inner-wrap .ue-text {
    max-height: 250px;
    overflow: auto;
  }

  .slider-styleA-wrap .elementor-widget-ucaddon_remote_counter_display {
    left: 50%;
    transform: translateX(-50%);
    bottom: 35px;
  }
  
  .slider-styleA-wrap .owl-nav button {
    bottom: 10px;
  }
  
  .slider-styleA-wrap .owl-nav button.owl-next {
    left: 62%!important;
  }
  
  .slider-styleA-wrap .owl-nav button.owl-prev {
    left: 26%!important;
  }
}

/* ---------------- Scent For Home ---------------- */
.unlock-wrap { aspect-ratio: 370/420; min-height: unset; }

/* ---------------- All Time Scent ---------------- */
.listing-allTime-wrap .e-loop-item:nth-child(odd) .alltime-item-wrap {
    flex-direction: row-reverse;
}
.listing-allTime-wrap .e-loop-item:nth-child(odd) .alltime-item-wrap .prod-img-wrap {
    flex-direction: row-reverse;
}

.alltime-item-wrap .main-img-wrap img {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.alltime-item-wrap .sub-img-wrap img {
    aspect-ratio: 4/5;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.p-summary-wrap .title-label {
    color: #000;
    font-weight: 300;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 3px;
}
.p-summary-wrap .text {
    font-size: 1.25rem;
}

.dots-wrapper {line-height: 1;display: flex;align-items: center;gap: 12px;}
.dots-wrapper > span {
    width: 16px;
    height: 16px;
    border: 1px solid var(--secondary-color);
    display: inline-block;
    border-radius: 50%;
}

.dots-wrapper > span.active {
    background: var(--secondary-color);
}

.list-level {
    display: flex;
    align-items: center;
    gap: 20px;
}
.list-level .text {
    color: var(--secondary-color);
}

.aroma-note-wrap {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.aroma-note-wrap .list-item-aroma {
    --iconWidth: 55px;
    display: flex;
    align-items: center;
}
.aroma-note-wrap .list-item-aroma .icon {
    width: var(--iconWidth);
    height: var(--iconWidth);
}
.aroma-note-wrap .list-item-aroma .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.aroma-note-wrap .list-item-aroma .ctn-info {
    padding-left: 15px;
    width: calc(100% - var(--iconWidth));
}
.aroma-note-wrap .list-item-aroma .ctn-info .text {
    font-weight: 500;
}

@media(max-width: 767px) {
    .p-summary-wrap .title-label, .p-summary-wrap .text {
        font-size: 1.125rem;
    }
	.p-summary-wrap .category-wrap .title-label, 
	.p-summary-wrap .intensity-wrap .title-label {
		font-size: 1rem;
		letter-spacing: 0.5px;
	}
	.p-summary-wrap .category-wrap .text, 
	.p-summary-wrap .intensity-wrap .text {
		font-size: 1rem;
	}

	.dots-wrapper {
		gap: 8px;
	}
	.dots-wrapper > span {
		width: 12px;
		height: 12px;
	}
}

@media(max-width: 1367px) and (min-width: 1200px) {
   .title-float {
        padding: 20px 35px 0!important;
    }
}
@media(max-width: 1199px) and (min-width: 1025px) {
   .title-float {
        padding: 15px 20px 0!important;
    }
}

/* Accodion */
.e-n-accordion-item-title-header {
    width: calc(100% - 40px);
}
.e-n-accordion p:last-child {
    margin-bottom: 0!important;
}
.e-n-accordion .elementor-widget-container a {
    color: #04BFBF;
}

/* General Page - Policy */
.text-wrap ol, .text-wrap ul {
    padding-left: 20px;
}
.text-wrap ol li, .text-wrap ul li {
    margin-bottom: 25px;
}
.text-wrap a,
.text-wrap .elementor-widget-container a {
    color: #04BFBF;
}

/* Certificate */
.cert-wrap {
	height: 100%;
}

/* Listing - Scent Library */
.list-scent-libry-wrap .elementor-widget-theme-post-featured-image img {
    width: 100%;
    aspect-ratio: 340/230;
    height: auto;
}
.list-scent-libry-wrap .intensity-wrap {
    --gap: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--gap);
}

.list-scent-libry-wrap .intensity-wrap .title-label {
  width: auto;
  font-size: 1.25rem;
}

.list-scent-libry-wrap .intensity-wrap .list-level {
    gap: 12px;
}

.list-scent-libry-wrap .intensity-wrap .list-level .text {
    font-weight: 500;
    font-size: 1rem;
}

.list-scent-libry-wrap .intensity-wrap .dots-wrapper {
    gap: 10px;
}

.list-scent-libry-wrap .enquire-wa-btn {
    display: inline-block;
    background: transparent;
    color: #000000!important;
    font-size: 1rem;
    padding: 0 25px 0 0;
    position: relative;
    transition: all .4s ease;
}

.list-scent-libry-wrap .enquire-wa-btn::after {
    content: '';
    position: absolute;
    background: url("../svg/link-arrow-up.svg")no-repeat;
    width: 15px;
    height: 15px;
    background-size: 100%;
    transform: translateY(-50%);
    top: 50%;
    right: 0;
}

.list-scent-libry-wrap .enquire-wa-btn:hover {
    color: #1F9E9D!important;
}

.series-wrap {
 padding: 4px 15px;
 display: inline-block;
 background: #1F9E9D;
 color: #fff;
 border-radius: 100px;
}

.series-wrap.floral {
 background: #D7AE17;
}

.series-wrap.citrusy {
 background: #A97C50;
}

.series-wrap.hotel-series {
  background: #02B9C6;
}


/* Default Width for small screen */
@media(min-width: 1150px) and (max-width: 1399px) {
  .list-scent-libry-wrap .intensity-wrap .title-label {
    font-size: 1rem;
  }

  .list-scent-libry-wrap .intensity-wrap {
    --gap: 10px;
  }

  .list-scent-libry-wrap .intensity-wrap .list-level {
    gap: 10px;
  }

  .list-scent-libry-wrap .intensity-wrap .dots-wrapper span {
    width: 12px;
    height: 12px;
  }

  .list-scent-libry-wrap .intensity-wrap .dots-wrapper {
    gap: 8px;
  }

  .series-wrap {
    padding: 4px 10px;
    font-size: 0.9285rem;
  }

  .list-scent-libry-wrap .enquire-wa-btn {
    font-size: 0.9285rem;
    padding-right: 20px;
  }

  .list-scent-libry-wrap .enquire-wa-btn::after {
    width: 12px;
    height: 12px;
  }
}


/* -------- Pagination -------- */
.elementor-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 5px 0;
}
.elementor-pagination .page-numbers.prev, 
.elementor-pagination .page-numbers.next {
    color: #000000!important;
    word-spacing: 5px;
}
.elementor-pagination .page-numbers:not(.prev):not(.next) {
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.elementor-pagination .page-numbers:not(.prev):not(.next).current, 
.elementor-pagination .page-numbers:not(.prev):not(.next):hover {
    color: #fff!important;
    background: #04BFBF;
    border-radius: 5px;
    font-weight: bold;
}

.page-numbers.current + .next {
    opacity: 0.5;
}
span.page-numbers.prev,
span.page-numbers.next {
 opacity: 0.5;
}

/* Map Dots */
.dots-container {
  position: unset!important;
}
.map-dot-wrapper .dot-wrap {
  position: absolute;
  z-index: 2;
}

.map-dot-wrapper .dot {
  width: 12px;
  height: 12px;
  background: #04BFBF;
  border-radius: 50%;
  border: 2px solid #146864;
  animation: pulse 1.8s infinite ease-in-out;
}

.map-dot-wrapper .dot-wrap .text {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #0D2B2B;
  font-size: 1.25rem;
  font-weight: 500;
}

.map-dot-wrapper .d-usa {
  top: 47.5%;
  transform: translateY(-50%);
  left: 22.5%;
}

.map-dot-wrapper .d-usa .text {
  left: unset;
  right: 0;
  top: -15px;
}

.map-dot-wrapper .d-switzerland {
  top: 37.5%;
  transform: translateY(-50%);
  left: 48.6%;
}

.map-dot-wrapper .d-switzerland .text {
  top: -10px;
  left: 15px;
}

.map-dot-wrapper .d-china {
  top: 50%;
  transform: translateY(-50%);
  left: 77%;
}

.map-dot-wrapper .d-china .text {
  top: -20px;
  left: unset;
  right: 10px;
}

.map-dot-wrapper .d-singapore {
    top: 65%;
    transform: translateY(-50%);
    left: 75%;
}

.map-dot-wrapper .d-singapore .text {
    left: unset;
    right: 25px;
    top: 30px;
}

.map-dot-wrapper .d-australia {
    top: 77.5%;
    transform: translateY(-50%);
    left: 86.5%;
}

.map-dot-wrapper .d-australia .text {
    left: 40px;
    top: -5px;
}

.map-wrap .map-bottom {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}

.map-wrap.show .map-bottom {
  animation: heightShow 3.5s ease-in-out forwards;
}

@media(max-width: 767px) {
  .map-wrap.show .map-bottom {
    animation: heightShow 2s ease-in-out forwards;
  }
  .map-dot-wrapper .dot-wrap .text {
    font-size: 0.75rem;
  }
  .map-dot-wrapper .dot {
    width: 6px;
    height: 6px;
    border-width: 1px;
  }
  .map-dot-wrapper .d-china .text {
    top: -5px;
  }
  .map-dot-wrapper .d-australia .text {
    left: -20px;
    top: 30px;
  }
  .map-dot-wrapper .d-singapore .text {
    top: 20px;
    right: 5px;
  }
}
/* -------- Product Listing -------- */
.products-listing .prod-item-wrap .prod-img-wrap {
  background: #f1f1f1!important;
}
.products-listing .prod-item-wrap .btn-addcart {
  opacity: 0;
  transition: all .4s ease;
}
.products-listing .prod-item-wrap:hover .btn-addcart {
  opacity: 1;
}

/* sorting */
.wpc-orderby-select {
  width: 100%;
  color: var(--text-color);
  border-radius: 0;
  border: 1px solid #000;
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  background-image: url(../webp/select-arrow.webp);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 93%;
  padding-right: 35px!important;
}
body.woocommerce-shop select.wpc-orderby-select {
  padding-right: 35px!important;
}

/* filter */
.wpc-sorting-form selet {
	background-color: #fff;
}
.wpc-filters-section {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
}
.wpc-filter-header {
  font-size: 1.5rem;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 12px;
  border-bottom: 1px solid #000;
  margin-bottom: 12px;
}

.wpc-filter-header .wpc-filter-title {
  margin-bottom: 0;
}

.wpc-filter-content input:focus {
  box-shadow: none;
  outline: none;
}

.wpc-filter-content input[type=checkbox],
.wpc-filter-content input[type=checkbox]:hover {
  width: 18px;
  height: 18px;
  background-color: #D9D9D9!important;
  appearance: unset;
  -webkit-appearance: unset;
  margin-right: 15px!important;
  border: none;
}

.wpc-filter-content input[type=checkbox]:checked {
  background-color: #14C3C3!important;
  background-image: url(../webp/checkmark-white.webp);
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: center;
}

.wpc-filter-content label,
.wpc-filter-content label a {
  color: var(--text-color);
  align-items: center;
  font-weight: 300!important;
}

.wpc-filter-content label:hover a {
  color: #146864;
}

.wpc-term-count {
  color: #5E7272;
  font-size: 80%;
}

.wpc-term-count .wpc-term-count-brackets-open,
.wpc-term-count .wpc-term-count-brackets-close {
  display: inline;
}

.wpc-filters-widget-content input[type=number] {
    padding: 6px 15px;
    font-size: 1rem;
}

.wpc-filter-layout-range {
    padding-bottom: 1px;
}

.wpc-filters-reset-button {
    border-color: #000!important;
}

.wpc-filters-reset-button:hover {
    color: inherit;
}

@media(max-width: 1024px) {
  .wpc-filters-section {
    font-size: 1rem;
  }
  .wpc-filter-header {
    font-size: 1.25rem;
  }
	
}

@media(max-width: 767px) {
  .products-listing .prod-item-wrap .prod-detail {
    height: auto!important;
  }
	
	.wpc-filters-open-button-container {
		text-align: center;
	}
	body .wpc-filters-open-button-container a.wpc-open-close-filters-button {
		border-radius: 0!important;
	}
}

/* Detail Page */
.detail-wrap .wp-block-image.size-full a {
    display: block;
}
.detail-wrap .wp-block-heading {
	margin-bottom: 20px;
}
.detail-wrap p:not(:last-child) {
	margin-bottom: 30px;
}

