/* variable Declaration */
:root {
  --font-merriweather: "Merriweather", Sans-serif;
  --font-maison-neue: "Maison Neue", Sans-serif;
  --font-maison-neue-700: "Maison Neue 700";
  --font-montserrat: "Montserrat", sans-serif;
  --red: #dc143c;
  --tulip: #f98d8d;
  --white: #ffffff;
  --black: #000000;
  --black-2: #181818;
  --black-3: #070707;
  --lightyellow: #f7f1e1;
  --border-color: #dddddd;
  --dark-blue: #231f2d;
}

html,
body {
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scrollbar-color: transparent;
}
/* Responsive Menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #0000005e;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
}
.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}
.header_mobile.header-hide {
  position: relative;
}
.header_mobile.header-hide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #0000005e;
  z-index: 9;
}
.header-hide .elementor-element-247a342 {
  display: none;
}
#crea-mobile-menu img {
  cursor: pointer;
}
.mobile-ham-menu-container {
  position: relative;
}
.mobile-ham-menu-container .menu-fixed-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: var(--lightyellow);
  width: 100%;
  max-width: 276px;
  height: 100%;
  transform: translateX(-100%);
  transition: 0.5s all;
  padding: 20px 15px 40px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scrollbar-color: transparent;
}
.mobile-ham-menu-container .menu-fixed-wrapper::-webkit-scrollbar {
  display: none;
}
.mobile-ham-menu-container .menu-fixed-wrapper.menu-open {
  transition: 0.5s all;
  transform: translateX(0);
}
.menu-fixed-wrapper .menu-logo-close-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.menu-fixed-wrapper .menu-list-wrapper ul.Header {
  padding: 0;
  list-style: none;
}
.menu-fixed-wrapper .menu-list-wrapper ul.Header li.menu-item:not(:last-child) {
  margin-bottom: 29px;
  padding-bottom: 29px;
  border-bottom: 1px solid var(--border-color);
}
.menu-fixed-wrapper .menu-list-wrapper ul.Header li.menu-item a {
  position: relative;
  font-family: var(--font-merriweather);
  font-weight: 700;
  font-size: 24px;
  line-height: 20px;
  letter-spacing: 0px;
  color: var(--dark-blue);
  display: block;
}
.menu-fixed-wrapper .menu-list-wrapper ul.Header li.menu-item a:hover {
  color: var(--red);
}
.menu-fixed-wrapper .menu-list-wrapper ul.Header li.menu-item a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: url(/wp-content/uploads/2025/07/arrow_circle_right.svg) no-repeat;
  cursor: pointer;
}
.menu-fixed-wrapper .contact-us-wrapper {
  padding-top: 30px;
  margin-top: 60px;
  border-top: 1px solid var(--border-color);
}
.menu-fixed-wrapper .menu-list-wrapper {
  margin-top: 60px;
}
.menu-fixed-wrapper .menu-close-btn img {
  cursor: pointer;
}
.menu-fixed-wrapper .contact-us-wrapper h4 {
  font-family: var(--font-merriweather);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--black-3);
}
.contact-detail-wrapper p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.contact-detail-wrapper p a {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: var(--black-3);
}

/* Home Page */
.banner-scroll-container {
  /* overflow: hidden; */
  position: relative;
  width: 100%;
  /* height: 908px; */
}
.banner-scroll-wrapper {
  display: flex;
  gap: 30px;
}
.banner-scroll-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.banner-scroll-track {
  display: flex;
  flex-direction: column;
  gap: 40px;
  /* width: 100%; */
  /* flex: 1 0 100%; */
  animation: scroll-up 10s linear infinite;
  flex-wrap: wrap;
}
.banner-scroll-track:nth-child(even) {
  margin-top: -115px;
}
/* .banner-scroll-track:hover {
  animation-play-state: paused;
} */
.banner-scroll-item img {
  width: 100%;
  /* height: auto; */
  /* border-radius: 10px; */
  /* display: block; */
}
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
.product-box {
  border: 1px solid #e8e8e8;
  background: var(--white);
  padding: 15px;
  height: 100%;
  min-height: 536px;
  max-height: 536px;
  border-radius: 8px;
}
.product-box ul {
  padding: 0;
  list-style: none;
}
.product-box .image-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-box .image-flex-wrapper .image-wrapper {
  width: 188px;
  height: 205px;
  position: relative;
}
.product-box .image-flex-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
}
.product-box .image-flex-wrapper .image-wrapper .absolute-product-tag {
  position: absolute;
  bottom: 5px;
  left: 5px;
}
.absolute-product-tag p.product-tag {
  font-family: var(--font-maison-neue);
  font-weight: 300;
  font-style: Light;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: var(--white);
  padding: 9px 7px 7px 23px;
  position: relative;
  border-radius: 2px;
}
.absolute-product-tag p.product-tag::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 4px;
  width: 13px;
  height: 13px;
  background: url(/wp-content/uploads/2025/07/star.svg) no-repeat;
}
.absolute-product-tag p.product-tag.tag-best-selling {
  background: #da7e33;
}
.absolute-product-tag p.product-tag.tag-top-pick-by-parents {
  background: var(--black-3);
}
.absolute-product-tag p.product-tag.tag-stem-for-young-minds {
  background: #fa7154;
}
.absolute-product-tag p.product-tag.tag-favourite {
  background: #fbe047;
  color: var(--black-3);
}
.absolute-product-tag p.product-tag.tag-favourite::before {
  background: url(/wp-content/uploads/2025/08/star-1.svg) no-repeat;
}
.product-price-wrapper {
  flex: 0 0 49%;
}
.product-box :is(p, h3, h4, h5, h6) {
  margin: 0;
}
.product-box .product-price-wrapper h3 {
  font-family: var(--font-merriweather);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--dark-blue);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-box .product-price-wrapper .price {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 24px;
  line-height: 32px;
  color: var(--dark-blue);
  margin: 10px 0 10px;
}
.product-box .product-price-wrapper li {
  background: var(--lightyellow);
  border-radius: 48px;
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 14px;
  line-height: 18.99px;
  letter-spacing: 1px;
  color: var(--black-3);
  display: inline-block;
  padding: 5px 10px 2px 10px;
}
.product-box .product-price-wrapper li:not(:last-child) {
  margin-bottom: 5px;
}
.product-box .product-price-wrapper ul.product-tags-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 3px 5px;
}
.product-box .product-format ul.formats-list-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-box .product-format ul.formats-list-flex-wrapper li {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 14px;
  line-height: 18.99px;
  letter-spacing: 1%;
  color: var(--white);
  position: relative;
  border-radius: 48px;
  padding: 5px 10px 2px 26px;
}
.product-box .product-format ul.formats-list-flex-wrapper li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translate(0%, -50%);
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.product-box .product-format ul.formats-list-flex-wrapper li.format-e-book {
  background: #fa7154;
}
.product-box
  .product-format
  ul.formats-list-flex-wrapper
  li.format-e-book::before {
  background: url(/wp-content/uploads/2025/07/auto_stories.svg) no-repeat;
}
.product-box .product-format ul.formats-list-flex-wrapper li.format-audio {
  background: #ffa700;
}
.product-box
  .product-format
  ul.formats-list-flex-wrapper
  li.format-audio::before {
  background: url(/wp-content/uploads/2025/07/brand_awareness.svg) no-repeat;
}
.product-box .product-format ul.formats-list-flex-wrapper li.format-video {
  background: #d74f4f;
}
.product-box
  .product-format
  ul.formats-list-flex-wrapper
  li.format-video::before {
  background: url(/wp-content/uploads/2025/07/play_circle.svg) no-repeat;
}
.product-box .product-description p {
  font-family: var(--font-maison-neue);
  font-weight: 300;
  font-style: Light;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: var(--black-3);
  margin: 10px 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 96px;
}
.product-box .product-format p {
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  color: #848484;
  margin: 18px 0 10px;
}
.product-box .product-benefits-level p strong {
  color: #848484;
  font-weight: 700;
}
.product-box .product-benefits-level p {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: var(--dark-blue);
}
.product-box .product-benefits-level p:not(:last-child) {
  margin-bottom: 15px;
}
.product-box .product-benefits-level .reader-tag {
  background: #fef9c3;
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #b08113;
  border-radius: 23px;
  padding: 5px 10px 2px;
}
.product-box .cart-button {
  margin-top: 18px;
}
.product-box .cart-button button.add-to-cart {
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 14.2px;
  line-height: 18.93px;
  vertical-align: middle;
  padding: 13px 13px 9px;
  border-radius: 70px;
  width: 100%;
  transition: 0.5s all;
}
.product-box .cart-button button.add-to-cart:hover {
  background: var(--white);
  color: var(--red);
  transition: 0.5s all;
  border: 1px solid var(--red);
}
.product-box span.level-tag {
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  padding: 6px 10px 6px;
  border-radius: 23px;
}
.product-box span.level-tag.EarlyReader {
  background: #dcfce7;
  color: #226534;
}
.product-box span.level-tag.ProReader {
  background: #fed1d1;
  color: #d74f4f;
}
.product-box span.level-tag.GrowingReader {
  background: #fef9c3;
  color: #b08113;
}
.product-box .cart-button a.added_to_cart {
  display: none;
}
.books-product-listing .slick-track {
  display: flex;
  gap: 20px;
}
.books-product-listing button.slick-arrow {
  border: 0 !important;
  width: 14px !important;
  height: 27px !important;
  background: transparent !important;
  font-size: 0 !important;
  top: 102.5% !important;
  z-index: 9;
}
.books-product-listing button.slick-arrow:is(:hover, :focus) {
  outline: none !important;
  box-shadow: 0 0 0 !important;
  background: transparent !important;
}
.books-product-listing button.slick-arrow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.books-product-listing button.slick-arrow.slick-prev {
  left: 39%;
}
.books-product-listing button.slick-arrow.slick-next {
  right: 39%;
}
.books-product-listing button.slick-arrow.slick-prev::before {
  background: url(/wp-content/uploads/2025/07/Image-5.svg) no-repeat center
    center;
}
.books-product-listing button.slick-arrow.slick-next::before {
  background: url(/wp-content/uploads/2025/07/image-fill-1.svg) no-repeat center
    center;
}
.books-product-listing ul.slick-dots {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 10px;
}
.books-product-listing ul.slick-dots li button::before {
  display: none;
}
.books-product-listing ul.slick-dots li button {
  background: var(--white);
  border-radius: 100%;
}
.books-product-listing ul.slick-dots li.slick-active button {
  background: var(--red);
}
.books-product-listing ul.slick-dots li {
  margin: 0 !important;
}
.custom-cart-icon {
  position: relative;
  display: inline-block;
}
.custom-cart-icon img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.custom-cart-icon .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Contact Form Popup */
.crea-contact-popup .elementor-field-type-textarea {
  display: inline-block;
  height: 130px !important;
}
.crea-contact-popup
  .elementor-message.elementor-message-success.elementor-message-svg {
  font-size: 16px;
}
.crea-contact-popup .elementor-field-group input,
.crea-contact-popup .elementor-field-group textarea {
  color: url(--black) !important;
}
.crea-contact-popup .elementor-field-group input.elementor-field {
  height: clamp(48px, 100%, 48px);
}
.crea-contact-popup .elementor-field-group textarea {
  height: clamp(84px, 100%, 84px);
}
.crea-contact-popup .elementor-field-type-submit button.elementor-button {
  min-height: 42px;
}

/* Footer */
.footer-quick-links li.elementor-icon-list-item {
  padding: 0 17px 0 10px;
  position: relative;
}
.footer-quick-links li.elementor-icon-list-item::before {
  content: "";
  position: absolute;
  top: 7px;
  right: 18px;
  width: 24px;
  height: 24px;
  background: url(/wp-content/uploads/2025/07/arrow_outward.svg) no-repeat;
  cursor: pointer;
}
.footer-quick-links li.elementor-icon-list-item:hover::before {
  background: url(/wp-content/uploads/2025/08/arrow_outward-3.svg) no-repeat;
  width: 24px;
  height: 24px;
}
/* Books Listing Page */
.book_banner_slider .elementor-swiper-button:hover svg > g > path,
.book_banner_slider .elementor-swiper-button:hover svg > rect {
  fill: var(--red);
}
.book_banner_slider .elementor-swiper-button:hover svg > g > g > path,
.book_banner_slider
  .elementor-swiper-button:hover
  svg
  > rect
  + mask
  + g
  > path {
  fill: var(--white);
}
.featured_image_loop {
  background-size: cover !important;
}
.banner_top_cloud {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  margin-top: 90px !important;
}
/* .book_banner_slider {
  z-index: auto !important;
} */
/* .book_banner_slider .swiper {
  padding-top: 75px;
} */
.book_slider .elementor-swiper-button {
  margin: 0 40px;
}
.banner_blur_image {
  position: absolute !important;
  top: 45px;
  left: -30px;
  width: 750px !important;
  height: 950px !important;
  opacity: 0;
  /* overflow: hidden; */
  z-index: -1 !important;
  filter: blur(10px);
  rotate: 22.05deg;
}
.banner_blur_image img {
  width: 100%;
  height: 100% !important;
}
.swiper-slide-active .banner_blur_image {
  opacity: 1;
}
.banner_icon .elementor-button:hover path {
  stroke: var(--red);
}
.product-box.products-filter:has(.product-tags-list) {
  padding-bottom: 0;
}
.product-box.products-filter {
  min-height: 100%;
  max-height: 100%;
  height: 100%;
  border: 0;
  padding-top: 0;
}
.product-box.products-filter .product-info ul.product-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}
.product-box.products-filter .product-info ul.product-tags-list li {
  background: var(--lightyellow);
  padding: 8px 10px 4px;
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 14px;
  line-height: 18.99px;
  letter-spacing: 1%;
  color: var(--black-3);
  border-radius: 47px;
}
.books-text {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: bottom;
  color: var(--black-2);
  text-align: center;
  margin: 0;
}
.filter-books-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.our-books-product-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.our-books-product-listing .product-box {
  flex: 0 0 32.2%;
}
.filter-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: var(--white);
  z-index: 10;
  transform: translateX(150%);
  transition: 0.5s all;
  padding-bottom: 90px;
}
.filter-menu.filter-menu-show {
  transform: translateX(0%);
  transition: 0.5s all;
}
.load-more-btn-wrapper-books {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.load-more-btn-wrapper-books a.load-more-button {
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--black-3);
  border: 1px solid var(--black-3);
  border-radius: 110px;
  padding: 11px 50px 7px;
  transition: 0.5s all;
}
.load-more-btn-wrapper-books a.load-more-button:hover {
  border: 1px solidvar(--red);
  color: var(--red);
  transition: 0.5s all;
}
.category-filter {
  display: flex;
  flex-wrap: nowrap;
  flex: 1 0 auto;
  align-items: center;
}
.category-list {
  flex: 1;
  width: 695px;
  min-width: 695px;
}
.category-filter .category-prev-button img,
.category-filter .category-next-button img {
  cursor: pointer;
  display: flex;
  width: 24px;
  height: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.category-list div.books-text {
  border: 1px solid #e8e8e8;
  border-radius: 132px;
  padding: 12px 20px 10px;
  cursor: pointer;
  /* width: auto !important; */
}
.category-list div.books-text.active,
.category-list div.books-text:hover {
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
}
.category-filter .category-list .slick-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: center;
  /* width: 100% !important; */
  justify-content: flex-start;
}
.category-filter .category-prev-button,
.category-filter .category-next-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.result-show p.result-text {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #4f4c57;
  margin: 0;
}
.filter-wrapper,
.sort-wrapper {
  border: 1px solid #e8e8e8;
  border-radius: 132px;
  /* padding: 5px 11px 0; */
  height: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}
.filter-wrapper .filter-flex-column,
.sort-wrapper .sort-flex-column {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  padding: 5px 11px 0;
}
.filter-wrapper .filter-flex-column img,
.sort-wrapper .sort-flex-column img {
  position: relative;
  top: 2px;
}
.filter-wrapper {
  width: 143px;
}
.sort-wrapper {
  width: 158px;
}
.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000005e;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
}
.filter-overlay.show {
  opacity: 1;
  visibility: visible;
}
.filter-container {
  overflow-x: scroll;
  height: 100%;
  padding: 0px 0px 20px 16px;
  margin: 20px 10px 0 0;
}
.filter-container::-webkit-scrollbar {
  width: 8px;
}
/* Track */
.filter-container::-webkit-scrollbar-track {
  background: #d9d9d9;
  border-radius: 70px;
}
/* Handle */
.filter-container::-webkit-scrollbar-thumb {
  background: var(--black-3);
  border-radius: 70px;
}
.filter-btn-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  background: var(--white);
  box-shadow: 0px -4px 8px 0px #00000014;
  padding: 12px 22.5px;
}
.filter-btn-wrapper button.filter-btn,
.filter-btn-wrapper button.filter-btn:focus {
  background: var(--white);
  border: 1px solid var(--red);
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: var(--black-3);
  border-radius: 8px;
  width: 100%;
  padding: 13px 9px 7px;
  transition: 0.5s all;
  cursor: pointer;
}
.filter-btn-wrapper button.filter-btn:disabled {
  background: rgb(178 178 178 / 50%);
  color: rgb(255 255 255 / 70%);
  border: rgb(178 178 178 / 50%);
  pointer-events: none;
}
.filter-btn-wrapper button.filter-btn:hover {
  color: var(--white);
  background: var(--red);
}
.filter-menu-close-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: var(--white);
  box-shadow: 0 0 0;
  border-bottom: 1px solid #e6e7eb;
  padding: 18px;
}
.filter-menu .filter-menu-close-wrapper h3 {
  font-family: var(--font-merriweather);
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  color: var(--black-3);
  margin: 0;
}
.filter-menu .filter-menu-close-wrapper img {
  cursor: pointer;
}
.sort-close-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  display: none;
}
.sort-close-wrapper h3 {
  font-family: var(--font-merriweather);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--black);
  margin: 0;
}
.sort-close-wrapper img {
  cursor: pointer;
}
.sort-menu {
  position: absolute;
  right: 0;
  top: 50px;
  background: var(--white);
  border: 2px solid #dfdfdf;
  border-radius: 12px;
  box-shadow: 0px 4px 20px 0px #00000040;
  display: none;
  z-index: 10;
  padding: 20px 14px;
  width: 212px;
  height: 242px;
  /* display: flex; */
}
.sort-menu.sort-menu-show {
  display: block;
}
.sort-menu .sort-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sort-menu .sort-flex-wrapper input[type="radio"] {
  accent-color: var(--red);
  width: 20px;
  height: 20px;
}
.sort-menu .sort-flex-wrapper label {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: bottom;
  color: var(--black-2);
}
.books-search-containter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin: 20px 0 20px;
}
.books-search-containter .search-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #e8e8e8;
  border-radius: 132px;
  justify-content: space-between;
  padding: 8px 15px 8px;
  flex: 0 0 32.2%;
  gap: 10px;
}
.books-search-containter .search-wrapper .search-close-icon {
  display: none;
}
.books-search-containter .search-wrapper input {
  border: 0;
  padding: 0;
  outline: 0;
  font-family: var(--font-maison-neue);
  font-size: 14px;
  line-height: 100%;
  color: var(--black-2);
  /* z-index: -1; */
  flex: 1 0 80%;
}
.books-search-containter .search-wrapper input::placeholder {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: bottom;
  color: var(--black-2);
  position: relative;
  top: 2px;
}
.books-search-containter .search-wrapper img {
  cursor: pointer;
}
.no-books-found {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.no-books-found img {
  margin-bottom: 15px;
  width: 118px !important;
  height: 118px !important;
}
.no-books-found * {
  flex: 1 1 100%;
  text-align: center;
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: var(--black-3);
  margin: 0;
}
.price-range .price-range-wrapper .price-range-slider {
  background: #b2b2b2;
  height: 4px;
  border: 0;
  width: 275px;
  touch-action: pan-y;
}
.price-range-text {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: bottom;
  color: var(--black-2);
  margin: 20px 0 0 0px;
}
.price-range-text .price-number {
  font: inherit;
  color: inherit;
  margin: 0;
}
.price-range .price-range-wrapper .price-range-slider .ui-slider-range {
  background: var(--red);
}
.price-range .price-range-wrapper .price-range-slider .ui-slider-handle {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  border: 1px solid var(--red);
  background: var(--white);
  outline: 0;
  margin: 0;
  top: -10px;
  cursor: grab;
}
.price-range
  .price-range-wrapper
  .price-range-slider
  .ui-slider-handle:last-child {
  margin-left: -15px;
}
.clear-filter {
  margin-bottom: 15px;
}
.clear-filter a.clear-filter-btn {
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  color: #ff3b30;
}
.clear-filter a.clear-filter-btn.disabled {
  pointer-events: none;
  color: var(--black-2);
}
.price-range {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 23px;
  margin-bottom: 25px;
}
.price-range-wrapper {
  flex: 1;
}
.filter-text {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: bottom;
  color: var(--black-2);
}
.filter-text p {
  font: inherit;
  color: inherit;
  margin: 0;
}
.filter-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.filter-flex-wrapper:not(:last-child) {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d9d9d9;
  margin-right: 10px;
}
.filter-flex-wrapper .filter-text {
  flex: 0 0 40%;
}
.filter-flex-wrapper .filter-input-column {
  flex: 0 0 59%;
}
.filter-flex-wrapper .filter-input-column .filter-input-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 8px;
}
.filter-flex-wrapper
  .filter-input-column
  .filter-input-wrapper:not(:last-child) {
  margin-bottom: 14px;
}
.filter-input-wrapper label {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0%;
  vertical-align: bottom;
  color: var(--black-2);
  position: relative;
  top: 2px;
}
.filter-input-wrapper input[type="checkbox"] {
  width: 18px !important;
  min-width: 18px;
  height: 18px !important;
  border: 2px solid #d9d9d9;
  border-radius: 3px;
  accent-color: var(--red);
  appearance: none;
}
.filter-input-wrapper input[type="radio"] {
  width: 20px;
  height: 20px;
  border: 2px solid #d9d9d9;
  border-radius: 100%;
  accent-color: var(--red);
  appearance: none;
}
.filter-input-wrapper input[type="checkbox"]:checked,
.filter-input-wrapper input[type="radio"]:checked {
  appearance: auto;
}
.sort-flex-wrapper label {
  position: relative;
  top: 4px;
}
.sort-flex-wrapper:not(:last-child) {
  margin-bottom: 24px;
}
/* Cart Page */
.cart-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(150%);
  background: #fffcf6;
  transition: 0.5s all;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  /* overflow-y: scroll; */
  z-index: 999;
  display: block !important;
}
.cart-menu.cart-menu-open {
  transition: 0.5s all;
  transform: translateX(0);
}
.cart-detailed-wrapper p.empty-cart-message {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: var(--black-3);
}
.cart-menu-container {
  padding: 20px 16px 250px 20px;
  position: relative;
  background: #fffcf6;
  overflow-y: scroll;
  height: 100%;
  margin-right: 12px;
}
.cart-menu-container::-webkit-scrollbar {
  width: 8px;
}
/* Track */
.cart-menu-container::-webkit-scrollbar-track {
  background: #d9d9d9;
  border-radius: 70px;
  margin-top: 20px;
  margin-right: 20px;
}
/* Handle */
.cart-menu-container::-webkit-scrollbar-thumb {
  background: var(--black-3);
  border-radius: 70px;
}
.cart-close-menu-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 3px 8px 0px #0000000a;
  padding: 18px 20px;
  background: var(--white);
}
.cart-menu .cart-close-menu-wrapper h3 {
  margin: 0;
  font-family: var(--font-merriweather);
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  color: var(--black-3);
}
.cart-menu .cart-close-menu-wrapper img {
  cursor: pointer;
}
/* Cart items list */
.cart-detailed-wrapper {
  border-radius: 8px;
  overflow: hidden;
}
.cart-wrapper {
  background-color: var(--white);
  padding: 12px 12px 12px;
}
.cart-wrapper:not(:last-child) {
  padding-bottom: 0px;
}
.cart-detail-row {
  display: flex;
  gap: 12px;
}
.cart-detail-row .cart-image {
  width: 93px;
  height: 100px;
}
.cart-detail-row .cart-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.cart-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cart-detail-row .cart-detail .cart-title {
  margin: 0 0 4px;
  font-family: var(--font-merriweather);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: var(--dark-blue);
}
.cart-price {
  color: #333;
  margin: 0 0 8px;
  font-size: 14px;
}
.cart-button-incrementor {
  display: flex;
  background-color: var(--red);
  color: var(--white);
  border-radius: 30px;
  width: fit-content;
  padding: 0 10px;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  width: 136px;
  height: 32px;
  padding: 8px 8px 8px;
}
.cart-button-incrementor button {
  background: transparent !important;
  border: none;
  color: var(--white);
  font-size: 18px;
  width: 14px;
  height: 14px;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  position: relative;
  top: -4px;
}
.cart-button-incrementor button.crea-decrementor {
  left: 10px;
}
.cart-button-incrementor button.crea-incrementor {
  right: 6px;
}
.cart-button-incrementor p.cart-count {
  margin: 0;
  font-weight: 400;
  font-family: var(--font-maison-neue);
  font-size: 18px;
  line-height: 24px;
  position: relative;
  top: 2.5px;
}
/* Coupon section */
.cart-coupon-wrapper {
  margin: 20px 0;
}
.cart-coupon-wrapper .coupon-field-wrapper {
  display: flex;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  height: 48px;
}
.cart-coupon-wrapper .coupon-field-wrapper input {
  flex: 1;
  border: none;
  padding: 12px 12px 9px 12px;
  border: 0;
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: bottom;
  color: var(--black-2);
}
.cart-coupon-wrapper .coupon-field-wrapper input::placeholder {
  font: inherit;
  color: inherit;
}
.coupon-field-wrapper input:focus {
  outline: none;
}
.coupon-field-wrapper a {
  background-color: transparent;
  color: var(--red);
  padding: 14px 12px 9px 12px;
  text-decoration: none;
  font-family: var(--font-maison-neue);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.coupon-field-wrapper a:hover {
  color: var(--red);
}
.coupon-field-wrapper a.apply-coupon-link.crea-applied-coupon {
  color: #1faf38;
  position: relative;
  padding-right: 32px;
  padding-top: 15px;
  pointer-events: none;
}
.coupon-field-wrapper a.apply-coupon-link.crea-applied-coupon::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 12px;
  background: url(/wp-content/uploads/2025/08/check_circle.svg) no-repeat;
  width: 24px;
  height: 24px;
}
.cart-coupon-wrapper a.remove-coupon-link {
  font-weight: 700;
  width: 100%;
  display: block;
  text-align: right;
  padding-top: 5px;
  padding-right: 3px;
}
.cart-coupon-wrapper a.remove-coupon-link,
.cart-coupon-wrapper .coupon-response-msg {
  background-color: transparent;
  color: var(--red);
  /* padding: 12px 12px 9px 12px; */
  text-decoration: none;
  font-family: var(--font-maison-neue);
  font-size: 16px;
  line-height: 24px;
}
.cart-coupon-wrapper .coupon-response-msg {
  margin: 0;
  padding-top: 5px;
  padding: 0;
  padding-top: 5px;
}
/* Bill Details */
.cart-bill-detail-wrapper {
  background-color: var(--white);
  padding: 12px;
  border-radius: 8px;
}
.cart-menu-container .cart-bill-detail-wrapper h3 {
  margin: 0 0 12px;
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  color: var(--dark-blue);
}
.cart-bill-detail {
  margin-bottom: 10px;
}
.cart-bill-detail:nth-last-child(2),
.cart-bill-detail:last-child {
  font-weight: 700;
}
.cart-bill-detail:last-child {
  margin-bottom: 0px;
  border-top: 1px solid #f9f9f9;
  margin: 0 -12px 0;
  padding: 12px 12px 0;
}
.cart-bill-detail .heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cart-bill-detail p {
  margin: 0;
  font-size: 14px;
}
.total-pay .heading p:last-child {
  font-weight: bold;
  color: #000;
}
/* Address and Checkout */
.address-checkout-cart-wrapper {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99;
  box-shadow: 0px -4px 8px 0px #00000014;
  background: var(--white);
  border-radius: 8px 8px 0 0;
  width: 100%;
  height: auto;
}
.adress-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 9px 16px 4px;
  border-top: 1px solid #eee;
  position: relative;
  align-items: stretch;
}
.address-flex-wrapper {
  flex: 1;
}
.address-flex-wrapper h3 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}
.address-flex-wrapper p.address {
  margin: 4px 0 0;
  font-size: 13px;
  color: #070707;
  font-family: var(--font-maison-neue);
  font-weight: 300;
  font-style: Light;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 0%;
}
.adress-wrapper a.change-address-btn {
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
  color: var(--red);
}
.address-change {
  color: #ed1b53;
  font-size: 13px;
  text-decoration: none;
}
/* Checkout */
.proceed-to-checkout {
  padding-top: 16px;
  border-top: 1px solid #e8e8e8;
}
.proceed-to-checkout a {
  display: flex;
  background-color: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
  text-decoration: none;
  border-radius: 12px;
  padding: 8px 14px;
  margin: 0 16px 16px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0px 10px 40px 0px #00000033 !important;
  transition: 0.5s all;
}
.proceed-to-checkout a:hover {
  color: var(--red);
  border: 1px solid var(--red);
  background: var(--white);
  transition: 0.5s all;
}
.proceed-to-checkout a:hover p {
  color: #dc143c !important;
  font-weight: 700;
}
.proceed-to-checkout a:hover .proceed-text img {
  filter: brightness(0) saturate(100%) invert(19%) sepia(94%) saturate(6584%)
    hue-rotate(342deg) brightness(89%) contrast(92%);
}
.proceed-to-checkout a.crea-checkout-disable {
  background: rgb(178 178 178 / 50%);
  color: rgb(255 255 255 / 70%);
  border: rgb(178 178 178 / 50%);
  pointer-events: none;
  box-shadow: 0 0 0 !important;
}
.proceed-to-checkout .flex-wrapper {
  /* display: flex; */
  justify-content: space-between;
  font-size: 15px;
  /* margin-bottom: 6px; */
}
.proceed-text p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-weight: bold;
  flex-wrap: wrap;
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
}
.cart-menu-overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.37);
}
.cart-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}
#filter_sort_mobile_header {
  display: none;
  transition: 1s ease;
}
.mobile-view-listing-container {
  display: none;
}
.address-flex-wrapper h3 {
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
  color: var(--black-3);
}
.address-flex-wrapper a.change-address-btn {
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
  color: var(--red);
}
.adress-wrapper .address-flex-wrapper h3 {
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
  color: var(--black-3);
  margin: 0;
}
.proceed-to-checkout .flex-wrapper p.total-price,
.proceed-to-checkout .flex-wrapper p.total {
  margin: 0;
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0%;
  color: var(--white);
}
/* eslint-disable */
/* Address Add Popup */
.address-form-field-container {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1007px;
  margin: 0 auto;
  height: auto;
  transform: translate(-50%, -50%);
  background: var(--white);
  z-index: 999;
  display: none;
  border-radius: 20px;
  padding: 0 23px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scrollbar-color: transparent;
}
.address-form-field-container:has(
    .address-change-popup[style="display: block;"]
  ) {
  max-width: 770px;
  height: 512px;
}
.address-form-field-container.form-open {
  display: block;
}
.address-form-title-close-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #e6e7eb;
  margin: 0 -23px;
  padding: 15px 23px;
}
.address-form-title-close-wrapper h3.title {
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  color: var(--black);
  margin: 0;
}
.address-form-title-close-wrapper img {
  cursor: pointer;
}
.custom-billing-form {
  display: flex;
  flex-wrap: wrap;
  gap: 23px 20px;
  margin-top: 20px;
}
.custom-billing-form .form-row {
  vertical-align: top;
  flex: 0 0 48.5%;
  margin: 0;
}
.form-row span.woocommerce-error-message {
  font-size: 14px;
  line-height: normal;
  color: var(--red);
}
.custom-billing-form label {
  display: block;
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 6px;
  color: var(--black-2);
}
.custom-billing-form .required {
  color: var(--red);
}
.custom-billing-form input[type="text"],
.custom-billing-form input[type="email"],
.custom-billing-form input[type="tel"],
.custom-billing-form select,
.custom-billing-form input[type="date"] {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  line-height: normal;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  outline: 0;
  background: var(--white);
  box-sizing: border-box;
  transition: border 0.3s ease;
  height: 48px;
}
.custom-billing-form input::placeholder {
  color: #c1c1c1;
  position: relative;
  top: 1px;
}
.custom-billing-form select option:first-child {
  color: #c1c1c1;
}
.custom-billing-form input:focus,
.custom-billing-form select:focus {
  outline: none;
  border-color: var;
  background: #fff;
}
/* Submit Button */
.address-form-submit-button {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  border-top: 1px solid #e6e7eb;
  margin: 0px -23px;
  padding: 15px 23px;
  /* flex: 1; */
  width: 100vw;
  /* height: 66px; */
}
.address-form-submit-button .save-address-submit-btn {
  background-color: var(--red);
  color: var(--white);
  border: 1px solid var(--red) !important;
  padding: 11px 45px 7px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  border: none;
  border-radius: 78px;
  cursor: pointer;
  transition: 0.5s all;
}
.address-form-submit-button .save-address-submit-btn:hover {
  background: var(--white);
  color: var(--red);
  border: 1px solid var(--red) !important;
  transition: 0.5s all;
}
.add-address-wrapper {
  margin: 10px 15px;
}
.add-address-wrapper .crea-checkout-add-address {
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: var(--white);
  background: var(--red);
  width: 100%;
  display: block;
  padding: 10px;
  border-radius: 78px;
  border: 1px solid var(--red);
  text-align: center;
  transition: 0.5s all;
}
.add-address-wrapper .crea-checkout-add-address:hover {
  background: var(--white);
  color: var(--red);
  border: 1px solid var(--red);
  transition: 0.5s all;
}
.custom-address-response-msg {
  display: none;
}
.address-change-popup {
  display: none;
}
.address-change-wrapper .address-button-wrapper {
  padding: 15px 23px;
  margin: 0 -23px;
  border-top: 1px solid #d9d9d9;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
  align-items: center;
}
.address-change-wrapper .address-title-close-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px 23px;
  margin: 0 -23px;
  border-bottom: 1px solid #d9d9d9;
  align-items: center;
}
.address-change-wrapper .address-title-close-wrapper h3 {
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  margin: 0;
  color: var(--black);
}
.address-change-wrapper .address-title-close-wrapper img {
  cursor: pointer;
}
.address-change-wrapper .address-change-row-container {
  margin: 20px 0 40px;
}
.address-change-row-container .address-change-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  padding: 16px;
  position: relative;
}
.address-change-row-container .address-change-flex-wrapper:has(input:checked) {
  border: 1px solid var(--red);
}
.address-change-row-container .address-change-flex-wrapper:not(:last-child) {
  margin-bottom: 15px;
}
.address-change-row-container
  .address-change-flex-wrapper
  .address-checkox-wrapper {
  flex: 1;
}
.address-change-flex-wrapper .edit-button-address-change {
  flex: 0 0 8%;
  position: absolute;
  right: 16px;
  width: 18%;
  text-align: right;
}
.address-change-flex-wrapper .edit-button-address-change img {
  position: relative;
  top: 4px;
  left: -4px;
}
.address-change-flex-wrapper .edit-button-address-change a {
  font-family: var(--font-maison-neue);
  /* font-weight: 400; */
  font-size: 14px;
  line-height: 100%;
  color: var(--black-3);
}
.address-checkox-wrapper .input-checkbox-wrapper input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #1c1b1f;
  border-radius: 4px; /* <-- Square edges like a checkbox */
  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: var(--white);
  vertical-align: middle;
}
.address-checkox-wrapper .input-checkbox-wrapper input[type="radio"]:checked {
  background: var(--red);
  border: 2px solid var(--red);
}
/* When selected, show the tick/check mark */
.address-checkox-wrapper
  .input-checkbox-wrapper
  input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 4px;
  width: 6px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.address-checkox-wrapper .input-checkbox-wrapper {
  margin-bottom: 5px;
}
.address-checkox-wrapper .input-checkbox-wrapper label,
.address-checkox-wrapper .customer-address-wrapper p {
  margin: 0;
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--black-3);
}
.address-checkox-wrapper .customer-address-wrapper p:not(:last-child) {
  margin-bottom: 5px;
}
.address-checkox-wrapper .input-checkbox-wrapper label {
  font-weight: 700;
  text-transform: capitalize;
}
.address-button-wrapper a.change-addnew-address {
  border-radius: 88px;
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: var(--black-3);
  border: 1px solid var(--black-3);
  padding: 11px 27px 5px;
  transition: 0.5s all;
}
.address-button-wrapper a.change-addnew-address:hover {
  color: var(--red);
  border: 1px solid var(--red);
  transition: 0.5s all;
}
.address-button-wrapper a.change-deliver-address {
  border-radius: 88px;
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: var(--white);
  border: 1px solid var(--red);
  background: var(--red);
  padding: 11px 18px 5px;
  transition: 0.5s all;
}
.address-button-wrapper a.change-deliver-address:hover {
  color: var(--red);
  border: 1px solid var(--red);
  background: var(--white);
  transition: 0.5s all;
}
/* Book Single Page */
.product-author p {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #4f4c57;
  margin: 0;
}
.woocommerce .additional_info table.shop_attributes {
  border-top: 0 !important;
}
.woocommerce .additional_info table.shop_attributes th {
  text-align: left;
  border: 0 !important;
  box-shadow: 0 0 0 !important;
  background: transparent !important;
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #4f4c57;
  width: 50%;
  padding-left: 0;
}
.woocommerce .additional_info table.shop_attributes td {
  text-align: left;
  border: 0 !important;
  background: transparent !important;
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: normal !important;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0%;
  color: var(--dark-blue);
  width: 50%;
  padding-left: 0;
}
.additional_info tr.woocommerce-product-attributes-item:not(:last-child) td,
.additional_info tr.woocommerce-product-attributes-item:not(:last-child) th {
  padding-bottom: 20px;
}
.cart_btn .cart-button button.add-to-cart {
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
  font-family: Maison Neue;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  border-radius: 9999px;
  padding: 10px 78px 7px;
  transition: 0.5s all;
}
.cart_btn .cart-button button.add-to-cart:hover {
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
  transition: 0.5s all;
}
.go_back_icon a.elementor-button:hover svg path {
  fill: var(--red);
}
.additional_info
  .shop_attributes
  .woocommerce-product-attributes-item--attribute_authors {
  display: none;
}
.social_share_image svg {
  cursor: pointer;
}
.social_share_btn {
  display: none;
}
.social_share_btn.active {
  display: block;
}
/* Thank You Page */
body.woocommerce-order-received {
  background: #fffcf6;
}
.page-header,
.woocommerce-notice,
.woocommerce-order-overview {
  display: none;
}
.check-icon,
.thank-you-title,
.success-text,
.order-message,
.order-id {
  text-align: center;
  margin: 0;
}
.thank-you-container {
  width: 100%;
  max-width: 593px;
  margin: 0 auto;
}
.woocommerce .thank-you-container h1.thank-you-title {
  font-family: var(--font-merriweather);
  font-weight: 700;
  font-size: 56px;
  line-height: 62px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  color: #070707;
}
.woocommerce .thank-you-container p.success-text {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: #86b961;
}
.woocommerce .thank-you-container p.order-message {
  font-family: var(--font-merriweather);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  color: #070707;
  margin-bottom: 5px;
  margin-top: 5px;
}
.woocommerce .thank-you-container p.order-id {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: #070707;
  margin: 10px 0;
}
.thank-you-container .order-box {
  background: #ffffff;
  border-radius: 8px;
  padding: 12px 15px;
}
.order-items-wrapper .item {
  display: flex;
  flex-wrap: wrap;
  border-radius: 8px;
  padding: 8px;
}
.order-items-wrapper .item:not(:last-child) {
  margin-bottom: 8px;
}
.order-items-wrapper .item img {
  width: 76px;
  height: 76px;
}
.item .item-details {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  margin-left: 8px;
}
.item-details p {
  font-family: var(--font-merriweather);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: var(--dark-blue);
}
.item-details span.qty {
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #9f9f9f;
}
.item-details span.qty .count {
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: var(--black-3);
}
.item .price {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  align-items: flex-end;
  justify-content: flex-end;
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: var(--black-3);
}
.order-box .total {
  display: flex;
  font-family: var(--font-merriweather);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: var(--dark-blue);
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 8px 0 0;
}
.shop-again-button-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 70px;
}
.shop-again-button-wrapper a.shop-again-button {
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
  border-radius: 88px;
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  padding: 11px 86px 8px;
  transition: 0.5s all;
}
.shop-again-button-wrapper a.shop-again-button:hover {
  border: 1px solid var(--red);
  background: transparent;
  color: var(--red);
  transition: 0.5s all;
}
.order-box .download-invoice {
  width: 100%;
  max-width: 143px;
  display: block;
  margin: 20px auto 10px;
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  color: #070707;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px;
}
.order-items-wrapper .order-summary {
  border-top: 1px solid #e5e7eb;
  margin-top: 10px;
  padding-top: 20px;
}
.order-items-wrapper .order-summary p {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  color: var(--dark-blue);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.order-items-wrapper .order-summary p:last-child {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
  font-weight: 700;
}
.order-items-wrapper .order-summary p:last-child strong {
  font-weight: 700;
}
.order-items-wrapper .order-summary p strong {
  font-weight: 400;
  color: inherit;
}
.order-items-wrapper .order-summary hr {
  display: none;
}
.order-items-wrapper .addresses,
.order-items-wrapper .order-note {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
}
.order-items-wrapper .addresses p {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  color: var(--dark-blue);
  text-transform: capitalize;
}
.order-items-wrapper .addresses p strong {
  margin-bottom: -7px;
  display: block;
}
.order-items-wrapper .addresses p:not(:last-child) {
  margin-bottom: 20px;
}
.order-items-wrapper .order-note p {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0px;
  margin: 0;
}
.order-items-wrapper .order-note p strong {
  font-weight: 400;
}
.order-items-wrapper .order-note p a {
  color: #0088ff;
}
.order-items-wrapper .order-note p a:hover {
  color: var(--red);
}
#razorpay-checkout-btn p.payment-processing {
  margin: 0;
  text-align: center;
  width: 100%;
  font-family: var(--font-maison-neue);
  font-size: 16px;
  line-height: normal;
}
/* Home Page */
.creaply-works-container .steps-container {
  width: 100%;
  max-width: 1084px;
  margin: 0 auto;
}
.creaply-works-container .steps-container .progress-line {
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #2e2e2e;
  position: relative;
}
.creaply-works-container .steps-container .progress-line::before,
.creaply-works-container .steps-container .progress-line::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #2e2e2e;
  z-index: 4;
}
.creaply-works-container .steps-container .progress-line::before {
  left: -3px;
}
.creaply-works-container .steps-container .progress-line::after {
  right: -3px;
}
.creaply-works-container .steps-container .progress-bar {
  width: 20%;
  position: relative;
  border-bottom: 5px solid var(--red);
  z-index: 3;
  top: -3px;
}
.creaply-works-container .steps {
  display: flex;
  flex-wrap: wrap;
  gap: 110px;
  justify-content: space-between;
  margin: 15px 5px 30px;
}
.creaply-works-container .steps .step {
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #2e2e2e;
}
.creaply-works-container .steps .step.active {
  color: var(--red);
}
.creaply-works-container .creaplay-work-slider-nav-works {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.creaplay-work-slider-nav-works .nav-btn img {
  cursor: pointer;
}
.creaplay-work-slider-nav-works .nav-btn img.slick-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: none;
}
.creaply-works-container .creaplay-works-slider .content-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.creaply-works-container
  .creaplay-works-slider
  .content-flex-wrapper
  .creaplay-works-img-wrapper {
  flex: 0 0 49.5%;
}
.creaply-works-container
  .creaplay-works-slider
  .content-flex-wrapper
  .creaplay-works-img-wrapper
  img {
  width: 100%;
  height: 100%;
}
.creaply-works-container
  .creaplay-works-slider
  .content-flex-wrapper
  .creaplay-works-detail-wrapper {
  flex: 0 0 49%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}
.creaply-works-container
  .creaplay-works-slider
  .content-flex-wrapper
  .creaplay-works-detail-wrapper
  h3 {
  margin: 0;
  font-family: var(--font-merriweather);
  font-weight: 700;
  font-size: 42px;
  line-height: 62px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: var(--black-3);
}
.creaply-works-container
  .creaplay-works-slider
  .content-flex-wrapper
  .creaplay-works-detail-wrapper
  p {
  margin: 10px 0 0;
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #2e2e2e;
}
.creaplay-work-slider-nav-works .page {
  font-family: var(--font-merriweather);
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0px;
  text-align: center;
}
.creaply-works-container ul.slick-dots {
  display: none !important;
}
.creaplay-works-detail-wrapper .creaplay-works-btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0px;
  text-align: center;
}
.creaplay-works-detail-wrapper .creaplay-works-btn-wrapper a:first-child {
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
  font: inherit;
  line-height: inherit;
  border-radius: 110px;
  transition: 0.5s all;
  padding: 1px 67px;
}
.creaplay-works-detail-wrapper .creaplay-works-btn-wrapper a:last-child {
  background: var(--white);
  border: 1px solid var(--black-3);
  color: var(--black-3);
  font: inherit;
  line-height: inherit;
  border-radius: 110px;
  transition: 0.5s all;
  padding: 1px 19px;
}
.creaplay-works-detail-wrapper .creaplay-works-btn-wrapper a button {
  background: inherit;
  border: 0;
  color: inherit;
  border-radius: inherit;
  font: inherit;
  line-height: inherit;
  outline: 0;
}
.course-container .course-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.course-container .course-flex-wrapper .course-item {
  flex: 0 0 24%;
  background: var(--white);
  border-radius: 20px;
  padding: 10px 10px 25px;
}
.course-flex-wrapper .course-item .course-category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin: 0 5px 10px;
}
.course-flex-wrapper .course-item .course-category p {
  font-family: var(--font-merriweather);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: var(--black-3);
  margin: 0;
}
.course-flex-wrapper .course-item .img-wrapper img.cloud-bg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.course-flex-wrapper .course-item .img-wrapper {
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.course-flex-wrapper .course-item .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.course-flex-wrapper .course-item .course-details {
  background: #ffeec3;
  border-radius: 8px;
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0px;
  color: var(--black-3);
  padding: 10px;
  margin: 0 5px 10px;
}
.course-flex-wrapper .course-item .course-details .detail-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.course-flex-wrapper .course-item .course-details p {
  margin: 0;
  text-align: center;
}
.course-flex-wrapper .course-item .course-details p span {
  color: #4f5665;
  font: inherit;
  font-weight: 4;
  display: block;
  text-align: center;
  margin: 5px 0 0;
}
.course-item .course-duration {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #242424;
  margin: 15px 5px 15px;
}
.course-item .course-duration p {
  margin: 0;
  font: inherit;
}
.course-item .course-description .content {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-size: 16.34px;
  line-height: normal;
  letter-spacing: 0%;
  color: var(--black-3);
  margin: 0 5px 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 65px;
}
.course-item .download-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.course-item .download-btn a {
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--red);
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  transition: 0.5s all;
}
.course-item .download-btn a:hover {
  transition: 0.5s all;
  color: var(--black-3);
}
.course-item .download-btn a:hover img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(38%) saturate(5659%)
    hue-rotate(39deg) brightness(96%) contrast(95%);
}
.after-school-courses .tab-courses {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 25px;
}
.after-school-courses .tab-courses a.course-list {
  flex: 0 0 48%;
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  color: #242424;
  border: 1px solid var(--red);
  border-radius: 999px;
  padding: 8px 6px 4px;
  transition: 0.5s all;
}
.after-school-courses .tab-courses a.course-list.active,
.after-school-courses .tab-courses a.course-list:hover {
  transition: 0.5s all;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
}
.testimonial-tab-wrapper .tabs-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 35px;
}
.testimonial-tab-wrapper .tabs-wrapper .tab {
  border: 1px solid var(--black-3);
  border-radius: 110px;
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--black-3);
  padding: 8px 0px 4px;
  transition: 0.5s all;
  width: 237px;
}
.testimonial-tab-wrapper .tabs-wrapper .tab.active,
.testimonial-tab-wrapper .tabs-wrapper .tab:hover {
  transition: 0.5s all;
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  font-weight: 700;
}
.testimonial-slider-container {
  width: 100% !important;
}
body.page-id-7282 {
  overflow-y: hidden; 
}
.testimonial-slider-home {
  display: block;
  visibility: hidden;
  position: absolute;
  left: -9999999px;
}
.testimonial-slider-home.active {
  display: block;
  visibility: visible;
  left: 0;
  position: relative;
}
.elementor-element-6047875 {
  width: 100% !important;
}
.testimonial-mobile-navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.testimonial-mobile-navigation .testimonial-nav-btn {
  height: 56px;
  width: 56px;
}
.testimonial-mobile-navigation .testimonial-nav-btn img {
  display: block;
  cursor: pointer;
}
.testimonial-mobile-navigation .testimonial-page {
  font-family: var(--font-merriweather);
  font-weight: 900;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--black-3);
}
.testimonial-slider-item .testimonial-item {
  display: flex;
  flex-wrap: wrap;
  /* flex-direction: column; */
  background: #fff7e7;
  padding: 16px;
  border-radius: 24px;
  height: 441px;
  align-content: flex-start;
}
.testimonial-slider-container #parents-educators .slick-track .slick-slide,
.testimonial-slider-container #students .slick-track .slick-slide {
  margin-right: 13px;
}
.testimonial-slider-item .testimonial-item .testimonial-video-wrapper {
  position: relative;
  border-radius: 8.26px;
  overflow: hidden;
  height: 268px;
  flex: 1 0 100%;
}
.testimonial-slider-item .testimonial-item .testimonial-video-wrapper video {
  height: 268px;
  display: block;
  object-fit: cover;
}
.testimonial-slider-item .testimonial-item .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.testimonial-slider-item .testimonial-item .video-overlay img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  width: 52px;
  height: 52px;
}
.testimonial-slider-item .testimonial-item .testimonial-description {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #d7d7d7;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1 0 100%;
}
.testimonial-slider-item .testimonial-item .testimonial-description .icon {
  flex: 0 0 22%;
}
.testimonial-slider-item .testimonial-item .testimonial-description .details {
  flex: 0 0 73%;
}
.testimonial-description .details h3.name {
  font-family: var(--font-maison-neue);
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #323232;
  margin: 0 0 8px;
}
.testimonial-description .details p {
  font-family: var(--font-maison-neue);
  font-weight: 400;
  font-style: Book;
  font-size: 16px;
  line-height: 19px;
  color: #323232;
  margin: 5px 0 0;
}
.testimonial-description .details p:empty {
  display: none;
}
#parents-educators button.slick-arrow,
#students button.slick-arrow {
  padding: 0;
  border: 0;
  font-size: 0;
  width: 56px;
  height: 56px;
  top: 98% !important;
  background-color: transparent;
  z-index: 9;
}
.testimonial-slider-home #parents-educators .slick-dots,
.testimonial-slider-home #students .slick-dots {
  position: relative;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
}
.testimonial-slider-home #parents-educators .slick-dots li button::before,
.testimonial-slider-home #students .slick-dots li button::before {
  display: none;
}
.testimonial-slider-home #parents-educators .slick-dots li,
.testimonial-slider-home #students .slick-dots li {
  margin: 0;
  width: 19px;
  height: 19px;
}
.testimonial-slider-home #parents-educators .slick-dots li button,
.testimonial-slider-home #students .slick-dots li button {
  background: #4d4d4d;
  border-radius: 100%;
}
.testimonial-slider-home #parents-educators .slick-dots li.slick-active button,
.testimonial-slider-home #students .slick-dots li.slick-active button {
  background: var(--red);
}
#parents-educators .slick-track > .slick-prev,
#students .slick-track > .slick-prev,
#parents-educators .slick-track > .slick-next,
#students .slick-track > .slick-next {
  display: none;
}
#parents-educators button.slick-arrow.slick-prev,
#students button.slick-arrow.slick-prev {
  left: 43%;
}
#parents-educators button.slick-arrow.slick-next,
#students button.slick-arrow.slick-next {
  right: 43%;
}
#parents-educators button.slick-arrow.slick-prev::before,
#students button.slick-arrow.slick-prev::before,
#parents-educators button.slick-arrow.slick-next::before,
#students button.slick-arrow.slick-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
#parents-educators button.slick-arrow.slick-prev::before,
#students button.slick-arrow.slick-prev::before {
  background: url(/wp-content/uploads/2025/08/Button-Previous.svg) no-repeat;
}
#parents-educators button.slick-arrow.slick-next::before,
#students button.slick-arrow.slick-next::before {
  background: url(/wp-content/uploads/2025/08/Button-Next.svg) no-repeat;
}
.affiliates_slider {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  animation: scroll 23s linear infinite;
  --overflow: visible !important;
  will-change: transform;
  width: calc(260px * 13) !important;
  gap: 26px !important;
}
.affiliates_slider:hover {
  animation-play-state: paused !important;
}
.affiliates_slider .elementor-widget-image {
  flex: 0 0 auto;
  width: 260px;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-260px * 7));
  }
}
@-webkit-keyframes scroll {
  from {
    -webkit-transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-260px * 7));
  }
}
.testimonial-slider-container
  .testimonial-slider-item
  .testimonial-video-wrapper
  video::-webkit-media-controls {
  display: none;
}
.explore_btn .elementor-button:hover .elementor-button-icon svg path {
  stroke: var(--red);
}
.download_icon span.elementor-button-icon svg {
  width: 24px;
  height: 24px;
}
.download_icon .elementor-button:hover svg path {
  stroke: var(--white);
  fill: var(--white);
}
.crea-header-contact-button .elementor-button:hover svg path {
  stroke: var(--white);
  fill: var(--white);
}
.home_banner_carousel .elementor-swiper-button-prev {
  display: none !important;
}
.home_banner_carousel .elementor-swiper-button-next {
  right: 25% !important;
}
.elementor-element-10e10798 .swiper-pagination {
  width: 100% !important;
  margin: 7px 50px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.elementor-element-10e10798 .elementor-swiper-button {
  top: 99% !important;
  position: relative;
  width: 56px !important;
  height: 56px !important;
  z-index: 9 !important;
}
.elementor-element-10e10798 .elementor-swiper-button svg {
  display: none !important;
}
.elementor-element-10e10798 .elementor-swiper-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.elementor-element-10e10798
  .elementor-swiper-button.elementor-swiper-button-prev::before {
  background: url(/wp-content/uploads/2025/08/Button-Previous.svg) no-repeat;
}
.elementor-element-10e10798
  .elementor-swiper-button.elementor-swiper-button-next::before {
  background: url(/wp-content/uploads/2025/08/Button-Next.svg) no-repeat;
}
.elementor-element-10e10798
  .elementor-swiper-button.elementor-swiper-button-next {
  right: auto !important;
  left: 13% !important;
}
.why_theatre_slider .elementor-swiper-button svg {
  display: none !important;
}
.why_theatre_slider .elementor-swiper-button {
  top: 100% !important;
  position: relative;
  width: 56px !important;
  height: 56px !important;
  z-index: 9 !important;
}
.why_theatre_slider .elementor-swiper-button.elementor-swiper-button-prev {
  left: 43% !important;
}
.why_theatre_slider .elementor-swiper-button.elementor-swiper-button-next {
  right: 43% !important;
}
.why_theatre_slider .elementor-swiper-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.why_theatre_slider
  .elementor-swiper-button.elementor-swiper-button-prev::before {
  background: url(/wp-content/uploads/2025/08/Button-Previous.svg) no-repeat;
}
.why_theatre_slider
  .elementor-swiper-button.elementor-swiper-button-next::before {
  background: url(/wp-content/uploads/2025/08/Button-Next.svg) no-repeat;
}
.why_theatre_slider .swiper-pagination {
  margin-top: 7px !important;
}
.why_theatre_slider .swiper-pagination .swiper-pagination-bullet {
  width: 19px !important;
  height: 19px !important;
  border-radius: 100%;
  background: var(--white) !important;
  opacity: 1 !important;
}
.why_theatre_slider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--red) !important;
}
.hover-element {
  transition: 0.5s all;
  transform: translateY(0);
  cursor: pointer;
  height: 90px;
}
.hover-element:hover {
  transform: translateY(-40px);
  transition: 0.5s all;
  height: 90px;
}
.classroom_list li.elementor-icon-list-item {
  position: relative;
  background: #f8f8f8;
  border-radius: 5px;
  padding: 7px 0 7px 30px;
  font-size: 16px;
  line-height: 28px;
}
.classroom_list li.elementor-icon-list-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 11px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #dc143c;
  box-shadow: 0px 3.27px 6.53px 0px #dc143c66;
}
.classroom_list span.elementor-icon-list-icon {
  display: none;
}
.classroom_list li.elementor-icon-list-item:not(:last-child) {
  margin-bottom: 20px;
}
.school-counter-title .elementor-counter-title {
  text-align: center;
}
/* Home Page Banner */
.center-carousel .swiper-pagination {
  display: none !important;
}
.center-carousel .elementor-swiper-button-prev {
  display: none !important;
}
.center-carousel .elementor-swiper-button-next svg {
  display: none !important;
}
.center-carousel .elementor-swiper-button-next {
  width: 104px !important;
  height: 104px !important;
  border-radius: 100%;
  right: 22% !important;
  background-color: var(--white);
}
.center-carousel .elementor-swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33px;
  height: 33px;
  background: url(/wp-content/uploads/2025/09/arrow_forward-3.svg) no-repeat;
}
.center-carousel .swiper-wrapper .swiper-slide {
  overflow: hidden;
  border-radius: 30px;
}
.center-carousel .swiper-wrapper .swiper-slide video::-webkit-media-controls {
  display: none;
}
html:has(.crea-contact-popup) {
  overflow: hidden !important;
}
.video-overlay img.overlay-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
