@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* START TOOLTIP STYLES */
[tooltip] {
  position: relative;
  cursor: pointer;
  color: var(--primary-color);
}

/* Applies to all tooltips */

[data-tooltip]::before,
[data-tooltip]::after {
  text-transform: none;
  /* opinion 2 */
  font-size: 0.9em;
  /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}

[data-tooltip] {
  position: relative;
}

[data-tooltip]::before {
  content: "";
  border: 5px solid transparent;
  /* opinion 4 */
  z-index: 1001;
  /* absurdity 1 */
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
  color: #fff;
  z-index: 1000;
  background-color: #000000ed;
  opacity: 1 !important;
  padding: 6px 8px 9px 8px;
  text-align: left;
  line-height: 14px;
  min-width: 100px;
  border-radius: 5px;
  font-family: var(--primary-color);
}

/* Make the data-tooltips respond to hover */

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
  display: block;
}

/* don't show empty data-tooltips */

[data-tooltip=""]::before,
[data-tooltip=""]::after {
  display: none !important;
}

/* FLOW: UP */

[data-tooltip]:not([data-flow])::before,
[data-tooltip][data-flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: var(--primary-color) !important;
}

[data-tooltip]:not([data-flow])::after,
[data-tooltip][data-flow^="up"]::after {
  bottom: calc(100% + 5px);
}

[data-tooltip]:not([data-flow])::before,
[data-tooltip]:not([data-flow])::after,
[data-tooltip][data-flow^="up"]::before,
[data-tooltip][data-flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -0.5em);
}

/* data-flow: DOWN */

[data-tooltip][data-flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: var(--primary-color) !important;
}

[data-tooltip][data-flow^="down"]::after {
  top: calc(100% + 5px);
}

[data-tooltip][data-flow^="down"]::before,
[data-tooltip][data-flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, 0.5em);
}

/* data-flow: LEFT */

[data-tooltip][data-flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  /* border-left-color */
  left: calc(0em - 5px);
  transform: translate(-0.5em, -50%);
}

[data-tooltip][data-flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-0.5em, -50%);
}

/* data-flow: RIGHT */

[data-tooltip][data-flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: var(--primary-color) !important;
  right: calc(0em - 5px);
  transform: translate(0.5em, -50%);
}

[data-tooltip][data-flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(0.5em, -50%);
}

/* KEYFRAMES */

@keyframes data-tooltips-vert {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0);
  }
}

@keyframes data-tooltips-horz {
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */

[data-tooltip]:not([data-flow]):hover::before,
[data-tooltip]:not([data-flow]):hover::after,
[data-tooltip][data-flow^="up"]:hover::before,
[data-tooltip][data-flow^="up"]:hover::after,
[data-tooltip][data-flow^="down"]:hover::before,
[data-tooltip][data-flow^="down"]:hover::after {
  animation: data-tooltips-vert 300ms ease-out forwards;
}

[data-tooltip][data-flow^="left"]:hover::before,
[data-tooltip][data-flow^="left"]:hover::after,
[data-tooltip][data-flow^="right"]:hover::before,
[data-tooltip][data-flow^="right"]:hover::after {
  animation: data-tooltips-horz 300ms ease-out forwards;
}

/* woomen-blog-post */
html,
body {
  overflow-x: hidden;
}

.woomen-blogs-grid {
  position: relative;
  margin-bottom: 28px;
}

.woomen-blogs-grid-thumb {
  position: relative;
  overflow: hidden;
  height: auto;
}

.woomen-blogs-grid-thumb img {
  width: 100%;
  object-fit: cover;
  height: auto;
  transition: 0.3s;
  transform: scale(1) rotate(0deg);
}

.woomen-blogs-grid:hover .woomen-blogs-grid-thumb img {
  transform: scale(1.08);
}



.woomen-blogs-tags {
  position: absolute;
  left: 20px;
  top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.woomen-blogs-tags .style-cat {
  background: #fff;
  font-weight: 600;
  font-size: 12px;
  line-height: 28px;
  color: #1d1d1d;
  text-decoration: none;
  text-align: center;
  border-radius: 20px;
  padding: 1px 14px 0;
  z-index: 9;
  transition: 0.3s;
  text-transform: uppercase;
}

.woomen-blogs-tags .style-cat:hover {
  background: #1d1d1d;
  color: #ffffff;
}

.woomen-blogs-grid-content {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.woomen-author-details {
  display: flex;
  align-items: center;
  gap: 12px;
}

.woomen-author-details p,
.woomen-author-details span,
.woomen-author-details i {
  font-size: 12px;
  color: #1d1d1d;
  font-weight: 400;
  line-height: 15px;
  margin-bottom: 0;
  letter-spacing: 0px;
  transition: 0.3s;
  z-index: 9;
  position: relative;
}

.woomen-post-comments {
  display: flex;
  align-items: center;
  gap: 17px;
  flex-wrap: wrap;
}

.woomen-post-title .heading {
  font-weight: 600;
  line-height: 28px;
  font-size: 16px;
  color: #1d1d1d;
  margin-bottom: 0;
  transition: 0.3s;
}

.woomen-post-description p {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  color: #1d1d1d;
}

.woomen-post-read-more {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0px;
  color: #1d1d1d !important;
  width: fit-content;
  transition: 0.3s;
  z-index: 9;
}

.woomen-post-read-more i {
  rotate: 310deg;
}



.demo1-post-card-height .star-icon {
  top: 13px;
  right: 13px;
}

.style-vertical-mobile .slick-dots {
  display: none !important;
}


/* woomen-blog-post-end */

/* woomen-blogs-pagination */

.woomen-pagination {
  margin: 90px 0;
}

.woomen-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.woomen-pagination .nav-links .page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  color: #131836;
  border-bottom: 1px solid #e6e6e6;
  overflow: hidden;
}

.woomen-pagination .nav-links .page-numbers.current {
  border-bottom: 1px solid #1d1d1d;
  cursor: no-drop;
}

.woomen-pagination .nav-links .page-numbers.current:hover {
  border-color: #1d1d1d;
}

.woomen-pagination .nav-links .next,
.woomen-pagination .nav-links .prev {
  color: transparent;
  position: relative;
  font-size: 0px;
}

.woomen-pagination .nav-links .next:after,
.woomen-pagination .nav-links .prev:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #131836;
  font-size: 14px;
}

.woomen-pagination .nav-links .next:after {
  content: "\f105";
}

.woomen-pagination .nav-links .prev:after {
  content: "\f104";
}

@media (max-width: 1200px) {
  .woomen-pagination {
    margin: 60px 0;
  }

  .minus-variations,
  .plus-variations {
    padding: 0px !important;
    width: 23% !important;
  }

  .quantity .input-text {
    width: 54% !important;
  }
}

@media (max-width: 991px) {
  .woomen-pagination {
    margin: 40px 0;
  }

  .woomen-header-top-container .navbar-collapse li .children,
  .woomen-header-top-container .navbar-collapse li .sub-menu {
    padding: 0;
    margin: 0;
    gap: 30px;
    list-style: none;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }

  .woomen-header-top-container .navbar-collapse li {
    width: 100%;
    border-bottom: 1px solid #ddd;
  }

  .navigation.onepage,
  .navigation.onepage ul {
    gap: 10px;
  }

  .woomen-header-top-container .navbar-collapse li {
    flex-direction: column;
  }

  .woomen-header-top-container .navbar-collapse li a {
    margin-bottom: 0 !important;
    padding-bottom: 0;
    padding: 0 0;
    width: 100% !important;
  }

  .wc-woomen-card-quick-checkout-popup.style3-combine .attribute-label-item {
    width: calc(100% / 2);
  }
}

@media (max-width: 767px) {
  .woomen-pagination {
    margin: 30px 0;
  }

  .woocommerce-variation-add-to-cart {
    flex-direction: row !important;
  }

  .row.mobile-gallery-slider .col-md-6 {
    padding: 0px !important;
  }

  .woomen-product-gallery-as-navbar {
    display: none !important;
  }

  .woo-trending-main.loop-style8 .woo-add-to-cart-button-main.women-wc-quick-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    left: 9%;
  }

  .woo-style-19-title {
    display: block;
  }

  .woo-style-19-thumbnail {
    height: auto !important;
  }

  .slick-section .right-arrow,
  .slick-section .left-arrow {
    margin-left: 0px;
    margin-right: 50%;
  }

  .woo-style-22-thumbnail.position-relative.overflow-hidden {
    height: auto;
  }
}

/* woomen-blogs-pagination-end */

/* women-woocommerce-single-page */

.woocommerce img.pswp__img,
.woocommerce-page img.pswp__img {
  height: auto !important;
}

/* women-scroll-page */

.woomen-sidebar {
  position: relative !important;
}

.scroll-downs .mousey {
  width: 2px;
  height: 70px;
  background-color: #ddd;
  transform: rotate(90deg);
  position: absolute;
  left: -43px;
  top: -24px;
}

.scroll-downs {
  z-index: 99999;
  position: absolute;
  right: -46px;
  bottom: 111px;
  transform: rotate(270deg);
  display: flex;
  gap: 14px;
  flex-direction: row;
  font-weight: 500;
  font-size: 12px;
  line-height: 22px;
}

/* single scroll animator  */
.scroll-downs .mousey {
  width: 2px;
  height: 70px;
  background-color: #ddd;
  transform: rotate(90deg);
  position: absolute;
  left: -43px;
  top: -24px;
}

.scroll-downs {
  z-index: 99999;
  position: absolute;
  right: -46px;
  bottom: 111px;
  transform: rotate(270deg);
  display: flex;
  gap: 14px;
  flex-direction: row;
  font-weight: 500;
  font-size: 12px;
  line-height: 22px;
}

.scroll-downs .scroller {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000000;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15, .41, .69, .94);
  animation-iteration-count: infinite;
  margin-left: -4px;
}

@keyframes scroll {
  0% {
    transform: translateY(10);
    opacity: 0;
  }

  20% {
    transform: translateY(10);
    opacity: 1;
  }

  80% {
    transform: translateY(60px);
    opacity: 1;
  }

  100% {
    transform: translateY(60px);
    opacity: 0;
  }
}

/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
  z-index: 9999999999999;
  position: relative;
}

#nprogress .bar {
  background: #1d1d1d;
  position: fixed;
  z-index: 9999999999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 0 8px 8px 0;
  box-shadow: 2px 2px 12px 2px #1d1d1d5e;
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: none;
}


/* css for loader of checkout quick  */
.women-wc-quick-checkout i {
  margin-left: 8px;
}

/* style 1  */
.wc-woomen-card-quick-checkout-popup {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: #000000b0;
  z-index: 9999999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.wc-woomen-card-quick-checkout-popup.active {
  opacity: 1;
  visibility: visible;
}

.wc-woomen-card-quick-checkout-popup.style1 .wc-woomen-card-popup-details {
  width: 100%;
  max-width: 500px;
  background-color: #fff;
  padding: 34px 39px;
  height: 100vh;
  overflow: auto;
  scrollbar-width: thin;
}

.wc-woomen-card-quick-checkout-popup .wc-woomen-card-popup-details {
  transform: translatex(100%);
  transition: 0.3s;
}

.wc-woomen-card-quick-checkout-popup.active .wc-woomen-card-popup-details {
  transform: translatex(0);
}


.wc-woomen-card-quick-checkout-popup.style1 {
  display: flex;
  justify-content: end;
}

.wc-woomen-card-quick-checkout-popup.style1 .wc-woomen-card-popup-details-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
  align-items: center;
}

.wc-woomen-card-quick-checkout-popup.style1 .wc-woomen-card-popup-details-top h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  text-transform: uppercase;
}

.wc-woomen-card-quick-checkout-popup.style1 .wc-woomen-card-popup-close {
  outline: none;
  border: unset;
  box-shadow: unset;
  background: #fff0;
  color: rgb(8 8 8);
  font-size: 12px;
  transition: 0.3s;
  padding: 0;
  position: absolute;
  right: 42px;
  top: 30px;
  z-index: 1;
}

.wc-woomen-card-quick-checkout-popup.style1 .wc-woomen-card-popup-close:hover {
  transform: scale(1.05);
}

.wc-woomen-card-quick-checkout-popup.style1 .woocommerce-product-gallery {
  opacity: 1 !important;
}

.wc-woomen-card-quick-checkout-popup.style1 .product-gallery img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  background: #ddd;
  margin-right: 4px;
}

.wc-woomen-card-quick-checkout-popup.style1 .product-gallery a {
  display: inline;
}

.wc-woomen-card-quick-checkout-popup.style1 .product-gallery i {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 0px 15px 24px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  cursor: pointer;
  top: 44%;
  justify-content: center;
  position: absolute;
  z-index: 999;
}

.wc-woomen-card-quick-checkout-popup.style1 .product-gallery .wc-gallery-prev-action {
  left: -22px;
}

.wc-woomen-card-quick-checkout-popup.style1 .product-gallery .wc-gallery-next-action {
  right: 1px;
}

.wc-woomen-card-quick-checkout-popup .wm-product-attributes .attribute-container .color-attributes .active span::after {
  content: "\f00c";
  color: #000;
  font-family: 'Font Awesome 6 Free';
  font-weight: 700;
  color: #fff;
  font-size: 10px;
  position: absolute;
  margin-top: 4px;
  margin-left: 4px;
}

.wc-woomen-card-quick-checkout-popup .wm-product-attributes .attribute-container .label-attributes .active span {
  border: 1px solid rgb(0 0 0);
}

.wc-woomen-card-quick-checkout-popup .wm-product-attributes .attribute-container .color-attributes .active span {
  box-shadow: 0 0 0px 1px rgb(0 0 0);
}

.wc-woomen-card-quick-checkout-popup.style1 .product-gallery {
  margin-bottom: 30px;
}

.wc-woomen-card-quick-checkout-popup.style1 h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
  text-align: left;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 1);
  margin-bottom: 5px;
}

.wc-woomen-card-quick-checkout-popup.style2-combine .wm-product-attributes .attribute-container .label-attributes .active span {
  border: 1px solid !important;
}

.wc-woomen-card-quick-checkout-popup.style1.style2-combine .wm-product-attributes {
  padding-top: 28px;
  display: flex;
  flex-direction: column-reverse;
}

.wc-woomen-card-quick-checkout-popup.style2-combine .wm-product-attributes .attribute-container .label-attributes span {
  min-width: 50px;
  min-height: 50px;
}

.wc-woomen-card-quick-checkout-popup.style1.style2-combine h2 {
  margin-top: 25px !important;
  margin-bottom: 3px;
}

.wc-woomen-card-quick-checkout-popup.style1.style2-combine h2 {
  margin-top: 25px !important;
}

.wc-woomen-card-quick-checkout-popup.style1 .product-price .woocommerce-Price-amount.amount {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  color: rgba(29, 29, 29, 1);
}

/* variations  */

.wc-woomen-card-quick-checkout-popup .summary.entry-summary .price bdi {
  color: rgba(29, 29, 29, 1);
  font-size: 16px;
  font-weight: 600;
}

.wc-woomen-card-quick-checkout-popup .summary.entry-summary .price {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  color: #fff0;
}

.wc-woomen-card-quick-checkout-popup .woocommerce-product-details__short-description p {
  font-size: 30px;
  font-weight: 600;
  line-height: 37.8px;
  letter-spacing: 0.03em;
  text-align: left;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 1);
  margin-top: 10px;
}

.wc-woomen-card-quick-checkout-popup .wm-product-attributes {
  padding-top: 23px;
}

.wc-woomen-card-quick-checkout-popup .wm-product-attributes .attribute-container {
  margin-bottom: 32px;
}

.wc-woomen-card-quick-checkout-popup .wm-product-attributes .attribute-container h3 {
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0px;
  text-align: left;
  color: rgba(32, 32, 37, 1);
  margin-bottom: 8px;
}

.wc-woomen-card-quick-checkout-popup .wm-product-attributes ul {
  list-style: none;
}

.wc-woomen-card-quick-checkout-popup .wm-product-attributes .attribute-container .color-attributes {
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wc-woomen-card-quick-checkout-popup .wm-product-attributes .attribute-container .color-attributes span {
  width: 28px;
  height: 28px;
  display: inline-block;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 0 0px 1px rgba(236, 237, 236, 1);
  cursor: pointer;
}

.wc-woomen-card-quick-checkout-popup .wm-product-attributes .attribute-container .image-attributes .attribute-image-item img {
  width: 60px;
  height: 80px;
  object-fit: contain;
  background-color: #ddddddba;
}

.wc-woomen-card-quick-checkout-popup .wm-product-attributes .attribute-container .image-attributes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wc-woomen-card-quick-checkout-popup .wm-product-attributes .attribute-container .label-attributes {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.wc-woomen-card-quick-checkout-popup .wm-product-attributes .attribute-container .label-attributes span {
  min-width: 30px;
  height: 40px;
  border: 1px solid rgba(236, 237, 236, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 13px;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: left;
  color: rgba(29, 29, 29, 1);
  text-transform: uppercase;
}

.wc-woomen-card-quick-checkout-popup .wm-product-attributes .attribute-container .label-attributes span:hover {
  background-color: rgba(236, 237, 236, 1);
}

.wc-woomen-card-quick-checkout-popup .cart .variations {
  display: none;
}

.wc-woomen-card-quick-checkout-popup .variations_form.cart .woocommerce-variation-add-to-cart {
  display: flex;
}

.wc-woomen-card-quick-checkout-popup .variations_form.cart .woocommerce-variation-add-to-cart .quantity {
  display: none;
}

.wc-quick-buyit,
.wc-woomen-card-quick-checkout-popup .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  width: 100%;
  background: #000;
  border: 1px solid #000;
  color: #fff;
  border-radius: 0px;
  height: 54px;
  font-size: 13px;
  font-weight: 600;
  line-height: 16.38px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
  padding: 19px 15px;
  transition: 0.3s;
  margin-top: 7px;
  position: relative;
}

.wc-quick-buyit,
.wc-woomen-card-quick-checkout-popup .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  color: #fff !important;
}

.wc-quick-buyit:hover,
.wc-woomen-card-quick-checkout-popup .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button:hover {
  background: #fff0;
  color: #000 !important;
}

.wc-woomen-card-quick-checkout-popup.style2-combine .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  background-color: #fff0;
  color: #000;
  margin-bottom: 3px;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  background-color: #fff0 !important;
  color: #000 ! IMPORTANT;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button:hover {
  background-color: #000000 !important;
  color: #ffffff ! IMPORTANT;
}

.wc-woomen-card-quick-checkout-popup .cart .buy-now-button,
.wc-woomen-card-quick-checkout-popup .cart .single_add_to_cart_button {
  width: 100%;
  background: #000 !important;
  border: 1px solid #000;
  color: #fff;
  border-radius: 0px;
  height: 54px;
  font-size: 13px;
  font-weight: 600;
  line-height: 16.38px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
  padding: 19px 15px;
  transition: 0.3s;
  margin-top: 7px;
  position: relative;
}

.wc-woomen-card-quick-checkout-popup .cart .buy-now-button:hover,
.wc-woomen-card-quick-checkout-popup .cart .single_add_to_cart_button:hover {
  background-color: #fff !important;
  color: #1d1d1d !important;
}

.wc-woomen-card-quick-checkout-popup.style1 .cart .quantity {
  display: none;
}


.wc-quick-checkout-accordion .wc-accordion-body p {
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: left;
  color: #1D1D1D;
}

.wc-quick-checkout-accordion {
  padding-top: 6px;
}

.wc-woomen-card-quick-checkout-popup.style2-combine .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button:hover {
  background: #000;
  color: #fff;
}

.wc-woomen-card-quick-checkout-popup .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button .woo-ajax-loader-dark circle {
  fill: none;
  stroke: #fff;
  stroke-width: 7px;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash4 1.3s ease-in-out infinite;
  max-height: 100% !important;
}

.wc-woomen-card-quick-checkout-popup .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button .woo-ajax-loader-dark {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -2px);
}

.wc-woomen-card-quick-checkout-popup .variations_form.cart .quantity input {
  background: #fff0;
  border: 1px solid #000;
  color: #000;
  border-radius: 0px;
  height: 54px;
  font-size: 13px;
  font-weight: 600;
  line-height: 16.38px;
  letter-spacing: 0px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}

.wc-woomen-card-quick-checkout-popup.style1 .wc-women-quick-view-all {
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0px;
  color: rgba(29, 29, 29, 1);
  margin-top: 37px;
  margin-left: -3px;
}

.wc-woomen-card-quick-checkout-popup.style1 .wc-women-quick-view-all i {
  transform: rotate(-45deg);
  margin-left: 8px;
  transition: 0.3s;
}

.wc-woomen-card-quick-checkout-popup.style1 .wc-women-quick-view-all:hover i {
  transform: rotate(0deg);
}

/* style 2 checkout  */
.wc-woomen-card-quick-checkout-popup.style2-combine .wc-woomen-card-popup-details {
  max-width: 900px;
  display: flex;
  padding: 0;
  flex-wrap: wrap;
}

.wc-woomen-card-quick-checkout-popup.style2-combine .wc-woomen-card-popup-details .wc-women-style2-checkout {
  width: 400px;
  padding: 20px;
  max-height: 100vh;
  overflow: auto;
  border-right: 1px solid rgba(230, 230, 230, 1);
  scrollbar-width: none;
}

.wc-woomen-card-quick-checkout-popup.style2-combine .wc-woomen-card-popup-details .wc-women-style2-checkout img {
  width: 360px;
  height: 360px;
  object-fit: contain;
  background-color: #f6f6f6;
  margin-bottom: 4px;
}

.wc-woomen-card-quick-checkout-popup.style2-combine.active .wc-woomen-card-popup-details-setup {
  width: calc(100% - 400px);
  padding: 30px 40px;
  max-height: 100vh;
  overflow: auto;
  scrollbar-width: none;
}

.wc-woomen-card-quick-checkout-popup.style2-combine.active .wc-woomen-card-popup-details-setup .wc-woomen-card-popup-details-top {
  margin-bottom: 20px;
}

.wc-woomen-card-quick-checkout-popup.style2-combine.active .wc-woomen-card-popup-details-setup .color-swatch {
  width: 30px;
  height: 30px;
  border-radius: 0px;
}

.wc-woomen-card-quick-checkout-popup.style2-combine.active .wc-woomen-card-popup-details-setup .color-swatch {
  width: 30px;
  height: 26px;
  border-radius: 0px;
  padding: 0;
  box-shadow: unset;
  margin: 0 !important;
  border: unset;
}

.wc-woomen-card-quick-checkout-popup.style2-combine .color-attributes {
  gap: 15px !important;
}

.wc-woomen-card-quick-checkout-popup.style2-combine .wm-product-attributes .attribute-container .label-attributes {
  gap: 0px;
}

.wc-woomen-card-quick-checkout-popup.style2-combine .wm-product-attributes .attribute-container .label-attributes li:not(:last-child) span {
  border-right: 0;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .wc-woomen-card-popup-details {
  max-width: 1300px;
}

.wc-woomen-card-quick-checkout-popup.style3-combine {
  justify-content: center;
  align-items: center;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .wc-woomen-card-popup-details.row {
  padding: 0;
  max-height: max-content;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: auto;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .wc-woomen-card-popup-details .col-lg-6 {
  padding: 0;
  margin: 0;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .wc-woomen-card-popup-details .wc-women-style2-checkout i {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #fff0;
  box-shadow: unset;
  display: flex;
  align-items: center;
  cursor: pointer;
  top: 45%;
  justify-content: center;
  position: absolute;
  z-index: 999;
  color: rgba(29, 29, 29, 1);
}

/* Main accordion styling */


/* Accordion item styling */
.wc-accordion-item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 25px;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .wc-woomen-card-popup-details-main p {
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: left;
  max-height: 44px;
  overflow: hidden;
  margin-top: 25px;
}

/* Header styling */
.wc-accordion-header {
  margin: 0;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .wm-product-attributes .attribute-container .label-attributes span {
  min-width: 142.5px;
  min-height: 50px;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .wm-product-attributes .attribute-container {
  margin-bottom: 29px;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .wm-product-attributes {
  padding-top: 8px;
}

.wc-accordion-button {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff0 !important;
  border: unset ! IMPORTANT;
  padding-bottom: 0;
  margin-bottom: 0;
}

.wc-accordion-button:not(.collapsed) .open-accordion,
.wc-accordion-button.collapsed .close-accordion {
  display: none;
}

.wc-accordion-button.collapsed .open-accordion,
.wc-accordion-button:not(.collapsed) .close-accordion {
  display: block;
}

.wc-accordion-button span {
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  color: #1D1D1D;
  letter-spacing: 0px;
  text-align: left;
  text-transform: uppercase;
}

.wc-accordion-collapse {
  transition: height 0.3s ease;
}

.wc-accordion-item .wc-accordion-body>h2 {
  display: none;
}


.wc-woomen-card-quick-checkout-popup.style3-combine .wc-woomen-card-popup-details .wc-women-style2-checkout .wc-gallery-prev-action {
  left: 30px;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .wc-woomen-card-popup-details .wc-women-style2-checkout .wc-gallery-next-action {
  right: 30px;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .wc-women-style2-checkout img {
  height: 650px;
  object-fit: contain;
  background-color: #f6f6f6;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .wc-woomen-card-popup-details-setup {
  max-height: 650px;
  overflow: auto;
  padding: 40px !important;
  scrollbar-width: thin;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .wc-woomen-card-popup-details .col-lg-6 .wc-woomen-card-popup-details-top {
  justify-content: end;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .attribute-label-item {
  width: calc(100% / 4);
}

.wc-woomen-card-quick-checkout-popup.style3-combine .label-attributes {
  gap: 0px !important;
  margin-top: 0 !important;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .label-attributes li:not(:last-child) .wm-variation-attr {
  border-right: 0px;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .wm-product-attributes .attribute-container .label-attributes .active span {
  border: 1px solid !important;
}

.woomen-single9-variations .label-attributes {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
  border-top: 1px #ECEDEC solid;
  border-left: 1px #ECEDEC solid;
}

.woomen-single9-variations .label-attributes .wm-variation-attr {
  border-top: 0 !important;
  border-left: 0 !IMPORTANT;
  width: 100% !important;
}

.woomen-single4-variations .label-attributes {
  border-top: 1px #ECEDEC solid;
  border-left: 1px #ECEDEC solid;
}

.woomen-single4-variations .label-attributes .wm-variation-attr {
  border-top: 0 !important;
  border-left: 0 !IMPORTANT;
  width: 100% !important;
}

.wc-women-single-attributes li.attribute-label-item.active span {
  border: 1px solid !important;
}

@media (max-width: 991px) {
  .wc-woomen-card-quick-checkout-popup.style3-combine .wc-woomen-card-popup-details.row {
    height: 100vh !important;
    overflow: auto;
  }

  .wc-woomen-card-quick-checkout-popup.style2-combine .wc-woomen-card-popup-details .wc-women-style2-checkout {
    display: none;
  }

  .wc-woomen-card-quick-checkout-popup.style2-combine.active .wc-woomen-card-popup-details-setup {
    width: 100%;
  }
}

.wm-product-attributes ul {
  padding: 0;
  margin: 0;
  line-height: normal;
}

@media (max-width: 550px) {
  .woomen-shop-loop-filters-parent-style1.archive-style1 .offcanvas {
    min-width: 100%;
  }

  .wc-woomen-shop-main-container {
    padding: 0 10px;
  }

  .woomen-shop-loop-filters-parent-style1.archive-style1 .woomen-shop-loop-filters-top-content {
    flex-direction: column;
  }

  .woomen-shop-loop-filters-parent-style1.archive-style1 .woomen-shop-loop-filters-top-content .woomen-shop-loop-filters-top-content {
    flex-direction: row;
    margin-top: 12px;
  }

  .woomen-shop-loop-filters-parent-style1 .woomen-shop-loop-filters-top-content {
    flex-wrap: wrap;
  }

  .woomen-shop-loop-filters-parent-style1 .woomen-shop-loop-filters-top-content .woomen-shop-loop-hide-filters {
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
    border: 1px solid #000;
    padding: 10px 10px;
  }
}

.newslatters-form label {
  display: none !important;
}

.newslatters-form form {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
  font-size: 12px;
  font-weight: 400;
}

.newslatters-form input::placeholder {
  color: #fff !important;
  padding: 0px;
}

.newslatters-form .cwp-custom-form .cwp-frontend-section-container {
  margin-bottom: 0;
}

.newslatters-form input {
  display: block !important;
  margin: 0;
  padding: 0;
  border: none;
  background-color: #fff0 !important;
  color: #fff;
  min-height: 45px;
}

.newslatters-form .form-control:focus {
  color: #fff;
  background-color: transparent;
  border-color: unset;
  outline: 0;
  box-shadow: none;
}

.newslatters-form .cwp-field-email.form-group {
  margin: 0;
  padding: 0;
}

.newslatters-form .cwp-frontend-form-container .cwp-custom-form input[type="submit"] {
  margin: 0px;
  background: transparent;
  border: unset;
  font-size: 13px;
  font-weight: 600;
}

#woomen-bridge-form .cwp-frontend-section-content-container {
  border: unset !important;
  background: none !important;
  padding: 8px 0 0 13px;
}

.cwp-frontend-form-container .cwp-custom-form .cwp-from-submit.position-center {
  margin: 8px 0 0 0;
}

body .woomen-bridge-foms .cwp-form-submit-container::after {
  top: 27px !important;
}

.woo-shop-essential-main {
  gap: 11px;
  display: flex;
  flex-direction: column;
}

.remove-spaces-border .cwp-row {
  margin: 0;
}

.remove-spaces-border .cwp-row .cwp-col-12 {
  padding: 0;
  border: 1px solid #e6e6e6;
}

.demo-11-slider.arrow-styles .slick-arrow {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
}

.demo-11-slider.arrow-styles .slick-prev.slick-arrow {
  left: 20px;
  right: unset;
}

/* demo 11 slider  */
.woomen-summer-collection-slider .slick-dots {
  position: absolute;
  right: 0px;
  top: 150px;
  width: auto;
  display: flex;
  flex-direction: column;
}

.woomen-summer-collection-slider .slick-dots li button {
  padding: 1px;
  font-size: 0;
  width: 4px;
  height: 4px;
  border-radius: 12px;
  background: #fff;
}

.demo-11-slider {
  position: relative;
}

.demo-11-slider .slick-arrow {
  position: absolute;
  top: -35px;
  right: 0;
  z-index: 999;
  border: none;
  background: none;
  color: #1d1d1d;
  padding: 0px;
}

.demo-11-slider .slick-prev {
  right: 45px;
}

.demo-11-slider .slick-slide {
  margin: 0px 2px;
}

#wc-cubewp-form-10 .cwp-frontend-section-content-container {
  background-color: #fff0 !important;
}

.variations_button button {
  background-color: #fff0;
}

a {
  text-decoration: unset;
}

body .cubewp-filters-style1.show-item3 .col-12 {
  width: 33.333% !important;
}

.woomen-demo8-this-look-slider .slick-arrow {
  width: 20px;
  height: 20px;
  border: unset;
  outline: none;
  font-size: 0 !important;
  color: #fff0 !important;
}

.woomen-demo8-this-look-slider .slick-arrow::after {
  content: "\f104";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 14px !important;
  color: #000 !important;
}

.woomen-demo8-this-look-slider .slick-next.slick-arrow {
  transform: rotate(180deg);
}

.woomen-blogs-sidebar .woomen-widget ul a {
  border-bottom: 1px solid #fff0;
}

.woomen-blogs-sidebar .woomen-widget ul a:hover {
  border-color: #000;
}

.woo-shop-look-card-content .woo-shop-look-action .wm-product-attributes {
  flex-wrap: nowrap;
  gap: 10px;
}

.woo-shop-look-card-content .woo-shop-look-action button {
  border: unset !important;
}

.woo-shop-look-card-content .woo-shop-look-action .single_add_to_cart_button {
  border-radius: 0 !important;
  background-color: #1d1d1d !important;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

/* murchent  */
.woomen-size-guide-canvas img {
  max-height: 100vh;
  object-fit: contain;
}

.newslatters-form .cwp-frontend-form-container .cwp-custom-form input[type="submit"]:hover {
  background-color: #ffff !important;
  color: #000 !important;
  border-radius: 0px;
}

.woomen-cart-may-also-like-item-heading:hover,
.woomen-cart-item-title:hover {
  text-decoration: underline;
}

.loop-grids-3 .type-product:nth-child(-n + 4) {
  padding: 0 0 20px 0;
  border-top: 1px solid #ddd;
}

body .cubewp-filters-style1.loop-grids-3 .type-product {
  border-right: 1px solid #ddd;
  padding: 0 0 20px 0;
  width: 20%;
  border-bottom: 1px solid #ddd;
}

.loop-grids-3 .cwp-grids-container {
  border-left: 1px solid #ddd;
  gap: 0px;
}

.cubewp-filters-style1 .cwp-pagination ul {
  display: flex;
  margin-top: 100px;
}

.cubewp-filters-style1 .cwp-pagination ul a {
  color: #131836;
}



.border-coll-v3-extra .cubewp-posts-shortcode {
  overflow: hidden;
  margin: 0;
  border-left: 1px solid #ddd;
}

.border-coll-v3-extra .cubewp-posts-shortcode .cwp-col-12:nth-child(-n + 4) {
  border-top: 1px solid #ddd;
}

.border-coll-v3-extra .cubewp-posts-shortcode .cwp-col-12 {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}



.border-coll-v3-extra .cubewp-posts-shortcode .cwp-col-12 .woo-item-slider-image-main.style-04 .woo-item-slider-content {
  padding-top: 9px;
  padding-bottom: 19px;
}

.woomen-collection-slider-5 .slick-dots li button {
  border: unset !important;
}

.woomen-top-collection .elementor-widget-container {
  transition: 1.3s cubic-bezier(0.13, 0.85, 0.74, 0.44) !important;
}

/* woomen-form-styling */

form#login-form .cwp-frontend-form-container .cwp-frontend-section-container,
.woomen-contact-form .cwp-frontend-form-container .cwp-frontend-section-container,
form#cwp-from-subscriber .cwp-frontend-form-container .cwp-frontend-section-container {
  margin-bottom: 30px !important;
}

.woomen-contact-form .cwp-frontend-form-container .cwp-frontend-section-container,
form#cwp-from-subscriber .cwp-frontend-form-container .cwp-frontend-section-container {
  margin-bottom: 11px !important;
}

form#login-form .cwp-frontend-form-container .cwp-frontend-section-heading-container,
.woomen-contact-form .cwp-frontend-form-container .cwp-frontend-section-heading-container,
form#cwp-from-subscriber .cwp-frontend-form-container .cwp-frontend-section-heading-container {
  display: none !important;
}

form#login-form .cwp-frontend-form-container .cwp-frontend-section-container .cwp-frontend-section-content-container,
.woomen-contact-form .cwp-frontend-form-container .cwp-frontend-section-container .cwp-frontend-section-content-container,
form#cwp-from-subscriber .cwp-frontend-form-container .cwp-frontend-section-container .cwp-frontend-section-content-container {
  padding: 0px !important;
  border: none !important;
}

form#login-form .cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container,
.woomen-contact-form .cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container,
form#cwp-from-subscriber .cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container {
  margin: 0 0 30px 0 !important;
}

form#login-form .cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container label,
.woomen-contact-form .cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container label,
form#cwp-from-subscriber .cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container label {
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 22px !important;
  letter-spacing: 0px !important;
  color: #767676 !important;
  margin-bottom: 0px !important;
}

form#login-form .cwp-frontend-form-container .cwp-field-container input[type=text],
form#login-form .cwp-frontend-form-container .cwp-field-container input[type=number],
form#login-form .cwp-frontend-form-container .cwp-field-container input[type=email],
form#login-form .cwp-frontend-form-container .cwp-field-container input[type=password],
form#login-form .cwp-frontend-form-container .cwp-field-container input[type=url],
form#login-form .cwp-frontend-form-container .cwp-field-container input[type=google_address],
form#login-form .cwp-frontend-form-container .cwp-field-container textarea,
form#login-form .cwp-frontend-form-container .cwp-field-container select {
  margin: 0px !important;
  padding: 1px 0 10px 0 !important;
  border-radius: 0px !important;
  border: none !important;
  border-bottom: 1px solid #E6E6E6 !important;
  height: 30px !important;
  color: #000 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 24px !important;
}

.woomen-contact-form .cwp-frontend-form-container .cwp-field-container input[type=text],
.woomen-contact-form .cwp-frontend-form-container .cwp-field-container input[type=number],
.woomen-contact-form .cwp-frontend-form-container .cwp-field-container input[type=email],
.woomen-contact-form .cwp-frontend-form-container .cwp-field-container input[type=password],
.woomen-contact-form .cwp-frontend-form-container .cwp-field-container input[type=url],
.woomen-contact-form .cwp-frontend-form-container .cwp-field-container input[type=google_address],
.woomen-contact-form .cwp-frontend-form-container .cwp-field-container textarea,
.woomen-contact-form .cwp-frontend-form-container .cwp-field-container select {
  margin: 0px !important;
  padding: 1px 0 10px 0 !important;
  border-radius: 0px !important;
  border: none !important;
  border-bottom: 1px solid #E6E6E6 !important;
  height: 30px !important;
  color: #000 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 24px !important;
}

form#cwp-from-subscriber .cwp-frontend-form-container .cwp-field-container input[type=text],
form#cwp-from-subscriber .cwp-frontend-form-container .cwp-field-container input[type=number],
form#cwp-from-subscriber .cwp-frontend-form-container .cwp-field-container input[type=email],
form#cwp-from-subscriber .cwp-frontend-form-container .cwp-field-container input[type=password],
form#cwp-from-subscriber .cwp-frontend-form-container .cwp-field-container input[type=url],
form#cwp-from-subscriber .cwp-frontend-form-container .cwp-field-container input[type=google_address],
form#cwp-from-subscriber .cwp-frontend-form-container .cwp-field-container textarea,
form#cwp-from-subscriber .cwp-frontend-form-container .cwp-field-container select {
  margin: 0px !important;
  padding: 1px 0 10px 0 !important;
  border-radius: 0px !important;
  border: none !important;
  border-bottom: 1px solid #E6E6E6 !important;
  height: 30px !important;
  color: #000 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 24px !important;
}

form#login-form .cwp-frontend-form-container .form-control::placeholder,
.woomen-contact-form .cwp-frontend-form-container .form-control::placeholder,
form#cwp-from-subscriber .cwp-frontend-form-container .form-control::placeholder {
  color: transparent !important;
}

form#login-form .cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container a,
.woomen-contact-form .cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container a,
form#cwp-from-subscriber .cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container a {
  margin-left: 5px !important;
  text-transform: capitalize !important;
}

form#login-form .cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container .form-control:focus,
.woomen-contact-form .cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container .form-control:focus,
form#cwp-from-subscriber .cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container .form-control:focus {
  box-shadow: none !important;
  border-bottom: 2px solid #1D1D1D !important;
}

form#login-form .cwp-frontend-form-container input[type=submit],
.woomen-contact-form .cwp-frontend-form-container input[type=submit],
form#cwp-from-subscriber .cwp-frontend-form-container input[type=submit] {
  background: #1D1D1D !important;
  border: 1px solid #1D1D1D !important;
  border-radius: 0px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 16px !important;
  letter-spacing: 0px !important;
  color: #FFFFFF !important;
  transition: .3s !important;
  padding: 19px 0px !important;
}

form#login-form .cwp-frontend-form-container input[type=submit]:hover,
.woomen-contact-form .cwp-frontend-form-container input[type=submit]:hover,
form#cwp-from-subscriber .cwp-frontend-form-container input[type=submit]:hover {
  background: #fff !important;
  color: #1D1D1D !important;
}

.elementor-widget-image img {
  width: auto;
}

.content-item img {
  height: auto;
  width: 100%;
}

.woomen-contact-form .cwp-forms-style8 {
  border-radius: 0px;
  padding: 0px !important;
  box-shadow: none;
}

.woomen-contact-form .cwp-frontend-form-container #woo-contact-form .cwp-field-container input[type=text],
.woomen-contact-form .cwp-frontend-form-container #woo-contact-form .cwp-field-container input[type=email] {
  padding: 5px 0 11px 0 !important;
  height: 34px !important;
}

.woomen-contact-form .cwp-frontend-form-container #woo-contact-form .cwp-field-container.cwp-field-textarea {
  margin: 0 0 19px 0 !important;
}

.woomen-contact-form .cwp-frontend-form-container #woo-contact-form .cwp-field-container.cwp-field-textarea textarea {
  min-height: 207px;
}

.woomen-contact-form .cwp-frontend-form-container #woo-contact-form .cwp-from-submit {
  margin-bottom: 0px !important;
  padding: 18px 0px !important;
}

.woomen-faq-border-none .elementor-accordion-item {
  border-left: none !important;
  border-right: none !important;
}

form.woocommerce-checkout .woocommerce-billing-fields__field-wrapper p label {
  position: relative !important;
}

.cwp-frontend-form-container .cwp-field-container::after,
form.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row::after {
  content: '';
  width: 0%;
  background: #1d1d1d;
  height: 2px;
  left: 0;
  bottom: 0px;
  transition: 0.3s;
  position: absolute;
}

.cwp-frontend-form-container .cwp-field-container.active::after,
form.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row.active::after {
  width: 100% !important;
}

.cwp-frontend-form-container label,
form.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row label {
  transition: .3s !important;
  transform: translateY(21px) !important;
  margin-bottom: 0px !important;
}

.cwp-frontend-form-container .cwp-field-container.value-filled label,
form.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row.value-filled label,
form.woocommerce-checkout .woocommerce-billing-fields__field-wrapper p.form-row#billing_country_field label {
  transform: translateY(0px) !important;
}

.woomen-top-collection .collection-button {
  opacity: 0;
}

.woomen-top-collection:hover .collection-button {
  opacity: 1;
}

.woomen-top-collection:hover .collection-button {
  opacity: 1;
}

.transform-top-hover {
  transition: 0.3s !important;
}

.woomen-top-collection:hover .transform-top-hover {
  bottom: 50px !important;
}

.woo-hover-button-dark:hover .elementor-button-icon svg {
  color: #fff;
  filter: #fff;
  stroke: #fff;
}

.cwp-pagination ul {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.hover-color .woomen-search-icon svg:hover path,
.hover-color .mini-cart-icon svg:hover path,
.hover-color .woomen-login-icon svg:hover path,
.hover-color svg:hover path {
  fill: #b83d37 !important;
}

.woomen-author-details p,
.woomen-author-details span,
.woomen-author-details i {
  font-size: 12px;
  color: #1d1d1d;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0px;
  transition: 0.3s;
  z-index: 9;
  position: relative;
  text-transform: uppercase;
}

#woomen-join-email {
  display: flex;
  align-items: center;
  border: 1px solid #1d1d1d;
}

#woomen-join-email .cwp-frontend-section-container {
  margin: 0px;
}

#woomen-join-email .tab-content {
  width: 65.28%;
  position: relative;
}

#woomen-join-email .cwp-required-field-notice {
  position: absolute;
  top: -40px;
  left: 0;
  height: 37px;
}

#woomen-join-email .cwp-form-submit-container {
  width: 34.73%;
}

#woomen-join-email .cwp-frontend-section-content-container {
  padding: 0;
  background: transparent;
  border: none;
}

#woomen-join-email .cwp-field-container {
  padding: 0;
  margin: 0px;
}

#woomen-join-email label {
  display: none;
}

#woomen-join-email .cwp-form-submit-container:after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 800;
  position: absolute;
  right: 15px;
  top: 50%;
  color: #fff;
  transform: translateY(-70%);
  font-size: 14px;
  rotate: -45deg;
  transition: 0.2s;
}

#woomen-join-email .cwp-form-submit-container:hover .join-btn {
  background: #fff;
  color: #1d1d1d;
}

#woomen-join-email .cwp-form-submit-container:hover::after {
  color: #1d1d1d;
}

.woomen-author-details p,
.woomen-author-details span,
.woomen-author-details i {
  text-transform: uppercase;
}

.cubewp-filters-style1 .cwp-pagination ul {
  margin: 0px;
  padding: 0px;
}

.woo-tab-product-star-list.woocommerce .star-rating {
  width: 96px !important;
}

.woo-tab-product-card-price-cut:empty {
  display: none;
}

.woo-tab-product-hover-main .woo-tab-product-quick-hover:hover,
.woo-tab-product-hover-main .woo-tab-product-hover:hover {
  background: #5c5c5c;
}

.left-right-border-zero .elementor-accordion-item {
  border-right: none !important;
  border-left: none !important;
}

.hover-color .woomen-search-icon svg:hover path,
.hover-color .mini-cart-icon svg:hover path,
.hover-color .woomen-login-icon svg:hover path,
.hover-color svg:hover path {
  fill: #b83d37 !important;
}

.single_add_to_cart_button:hover {
  border: 1px solid #000 !important;
}

.woo-hover-button-dark a::after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 0;
  z-index: 999;
  background-color: #000;
  left: 0;
  transition: 0.3s;
  z-index: 0;
}

.woo-hover-button-dark a {
  position: relative;
}

.woo-hover-button-dark a:hover::after {
  height: 100%;
}

.woo-hover-button-dark a span {
  z-index: 9999;
  position: relative;
}

.massmarket-home-marque-slider {
  min-width: 2700px !important;
}

.woo-have-marqueue {
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.woo-have-marqueue-reverse {
  animation: marquee-reverse 15s linear infinite;
}

@keyframes marquee-reverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

.woo-item-slider-image-main.style-17 .star-icon {
  right: 12px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woomen-about-reviews-slider .slick-arrow {
  position: absolute;
}

.woomen-about-reviews-slider .slick-arrow::before {
  font-weight: 700;
}

.newslatters-form .cwp-frontend-form-container .cwp-custom-form input[type="submit"]:hover {
  background-color: #ffff !important;
  color: #000 !important;
  border-radius: 0px;
}

.woomen-cart-may-also-like-item-heading:hover,
.woomen-cart-item-title:hover {
  text-decoration: underline;
}


.woomen-blogs-style-2 .woomen-blogs-grid .woomen-post-title .heading {
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
  text-align: left;
}

.woomen-blogs-style-2 .woomen-blogs-grid .woomen-blogs-grid-content {
  gap: 12px;
}

.woo-hover-button-dark a::after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 999;
  background-color: #000;
  left: 0;
  top: 100%;
  z-index: 0;
  transition: 0.3s !important;
}

.woo-hover-button-dark a:hover::after {
  top: 0;
}

.woo-hover-button-dark a {
  position: relative;
}

.woo-hover-button-dark a span {
  z-index: 9999;
  position: relative;
}

.woo-hover-button-dark a:hover span svg path {
  fill: #ffffff;
}

/* search form demo 10 */
.women_home_10_search .cwp-frontend-form-container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.women_home_10_search .cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container label {
  display: none !important;
}

.women_home_10_search .cwp-field-container label {
  display: none !important;
}

.women_home_10_search .cwp-field-container.cwp-field-email.form-group {
  width: 100% !important;
  margin: 0px !important;
  padding: 0px !important;
}

.women_home_10_search form {
  justify-content: space-between !important;
  display: flex !important;
  align-items: center !important;
  width: 600px !important;
  border: solid 1px #1d1d1d !important;
  gap: 10px !important;
  height: 54px !important;
}

.women_home_10_search .cwp-frontend-section-container {
  margin-bottom: 0px !important;
}

.women_home_10_search .cwp-field-container input {
  border: none !important;
  outline: none !important;
  height: 50px !important;
  border-radius: 0px !important;
  margin: 0px !important;
  font-size: 14px !important;
  color: #1D1D1D !important;
  line-height: 28px !important;
  padding: 5px 10px 8px 19px;
  font-weight: 400;
}

.women_home_10_search .cwp-field-container input::placeholder {
  font-size: 14px !important;
  font-weight: 400;
  line-height: 28px;
  color: #1D1D1D !important;
}

.women_home_10_search .form-control:focus {
  box-shadow: none !important;
}

.women_home_10_search .cwp-frontend-form-container input[type="submit"] {
  background: #ffffff;
  border: none !important;
  border-radius: 0px !important;
  color: #1d1d1d !important;
  cursor: pointer !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px !important;
  margin: 0px !important;
  padding: 16px 2px 16px 2px !important;
  text-decoration: none !important;
  height: 52px !important;
  letter-spacing: 0.3px;
}

.women_home_10_search .cwp-frontend-form-container input[type="submit"]:hover,
form .women_home_10_search .cwp-frontend-form-container input[type="submit"] {
  background: none;
}

.women_home_10_search .cwp-frontend-form-container input[type="submit"] {
  background: #ffffff00 !important;
}

.women_home_10_search .cwp-form-submit-container {
  position: relative !important;
  padding-right: 12px !important;
  width: 18%;
}

.women_home_10_search .cwp-form-submit-container::after {
  content: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6725 0.500977H2.57656C2.46052 0.500977 2.34924 0.54707 2.2672 0.629117C2.18515 0.711164 2.13906 0.822444 2.13906 0.938477C2.13906 1.05451 2.18515 1.16579 2.2672 1.24784C2.34924 1.32988 2.46052 1.37598 2.57656 1.37598H9.81456L0.837493 10.3535C0.794097 10.3934 0.759225 10.4417 0.734973 10.4955C0.710721 10.5492 0.697589 10.6074 0.696368 10.6663C0.695146 10.7253 0.705859 10.7839 0.727864 10.8386C0.749869 10.8933 0.78271 10.943 0.824415 10.9847C0.866119 11.0264 0.915825 11.0593 0.970545 11.0813C1.02527 11.1033 1.08387 11.114 1.14284 11.1128C1.2018 11.1116 1.25991 11.0984 1.31367 11.0742C1.36744 11.0499 1.41574 11.0151 1.45568 10.9717L10.4332 1.99416V9.2326C10.4332 9.34863 10.4793 9.45991 10.5613 9.54196C10.6434 9.62401 10.7546 9.6701 10.8707 9.6701C10.9867 9.6701 11.098 9.62401 11.18 9.54196C11.2621 9.45991 11.3082 9.34863 11.3082 9.2326V1.1371C11.3079 0.968537 11.2409 0.806937 11.1218 0.687703C11.0026 0.568469 10.8411 0.501324 10.6725 0.500977Z' fill='%231D1D1D'/%3E%3C/svg%3E");
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 700 !important;
  position: absolute !important;
  right: 10px !important;
  top: 17px !important;
  font-size: 17px;
  color: #1d1d1d;
  line-height: normal;
  transition: 0.3s;
}

.women_home_10_search .cwp-form-submit-container:hover::after {
  transform: rotate(42deg);
}

.women_home_10_search form .tab-content {
  width: 100%;
}

.women_home_10_search.watches-newsletter-form .cwp-form-submit-container {
  padding-right: 37px !important;
}

.women_home_10_search.watches-newsletter-form .cwp-form-submit-container::after {
  right: 20px !important;
}

.woocommerce .cart-collaterals .cross-sells,
.woocommerce-page .cart-collaterals .cross-sells.cubewp-woo-sells {
  width: 100%;
  float: unset;
  max-width: 1400px;
  margin: auto;
  margin-top: 70px;
  text-align: center;
  margin-bottom: 80px;
}

.woocommerce-page .cart-collaterals .cross-sells.cubewp-woo-sells .products.columns-2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 4px;
  margin-top: 50px;
}

.woocommerce-page .cart-collaterals .cross-sells.cubewp-woo-sells h2 {
  list-style-type: none;
  padding-bottom: 10px;
  font-size: 30px;
  font-weight: 600;
  line-height: 34px;
  color: #1d1d1d;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.9px;
}

.woocommerce-page .cart-collaterals .cross-sells.cubewp-woo-sells+.cart_totals {
  display: none;
}

.woomen-shop-this-look-slider-4 i {
  border-radius: 100%;
}

.woomen-shop-this-look-slider-4 i:hover {
  background: #fff;
}

.sustainbility-slider-arrow-disabled .slick-arrow.slick-disabled {
  border: none !important;
  cursor: no-drop;
}

.woomen-author-details p,
.woomen-author-details span,
.woomen-author-details i {
  text-transform: uppercase;
}

.wo-women-archive-list-grids {
  gap: 20px;
}

.wo-women-archive-list-grids .wc-shop-results-views {
  cursor: pointer;
  padding: 0px 5px;
}

.wo-women-archive-list-grids .wc-shop-results-views:hover {
  background: #dddddd;
}

#woomen-join-email {
  display: flex;
  align-items: center;
  border: 1px solid #1d1d1d;
}

#woomen-join-email .cwp-frontend-section-container {
  margin: 0px;
}

#woomen-join-email .tab-content {
  width: 65.28%;
}

#woomen-join-email .cwp-form-submit-container {
  width: 34.73%;
}

#woomen-join-email .cwp-frontend-section-content-container {
  padding: 0;
  background: transparent;
  border: none;
}

#woomen-join-email .cwp-field-container {
  padding: 0;
  margin: 0px;
}

#woomen-join-email label {
  display: none;
}

#woomen-join-email input[type="email"] {
  height: 52px;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #1d1d1d;
  border-radius: 0px;
}

#woomen-join-email input[type="email"]:focus {
  box-shadow: none;
}

#woomen-join-email input[type="email"]::placeholder {
  color: #1d1d1d !important;
  font-size: 14px;
  font-weight: 400 !important;
}

#woomen-join-email .join-btn {
  margin: 0px;
  text-align: center;
  background: #1d1d1d;
  border-radius: 0;
  border: 0;
  height: 52px;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0px;
  transition: 0.2s;
  border-left: 1px solid #1d1d1d;
  padding: 0px 26px 0px 0px !important;
}

#woomen-join-email .cwp-form-submit-container:after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 800;
  position: absolute;
  right: 26px !important;
  top: 50%;
  color: #fff;
  transform: translateY(-70%);
  rotate: -45deg;
  transition: 0.2s;
  font-size: 16px;
}

#woomen-join-email .cwp-form-submit-container:hover .join-btn {
  background: #fff;
  color: #1d1d1d;
}

#woomen-join-email .cwp-form-submit-container:hover::after {
  color: #1d1d1d;
}

.cwp-total-results h5 {
  font-weight: 600 !important;
}

.remove-asc select#cwp-sorting-filter {
  font-weight: 600 !important;
}

#bridge-subscribe {
  display: flex;
  align-items: center;
  gap: 20px;
}

#bridge-subscribe .cwp-frontend-section-container {
  margin: 0px;
}

#bridge-subscribe .tab-content {
  width: calc(100% - 190px);
}

#bridge-subscribe .cwp-form-submit-container {
  width: 170px;
}

#bridge-subscribe .cwp-frontend-section-content-container {
  padding: 0;
  background: transparent;
  border: none;
}

#bridge-subscribe .cwp-field-container {
  padding: 0;
  margin: 0px;
}

#bridge-subscribe label {
  display: none;
}

#bridge-subscribe input[type="email"] {
  height: 55px;
  padding: 10px 20px;
  border-radius: 0px;
  border: 1px solid #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: #ffffff;
}

#bridge-subscribe input[type="email"]::placeholder {
  color: #ffffff !important;
}

#bridge-subscribe input[type="email"]:focus {
  box-shadow: none;
  background: none;
}

#bridge-subscribe .sub-btn {
  margin: 0px;
  background: #ffffff;
  border-radius: 0;
  height: 55px;
  transition: 0.6s;
  color: #1d1d1d;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0px;
  border: 1px solid #1d1d1d;
}

#bridge-subscribe .sub-btn:hover {
  background: #1d1d1d !important;
  color: #fff !important;
  border-color: #fff !important;
}

#bridge-subscribe .cwp-form-submit-container:after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 800;
  position: absolute;
  right: 10px;
  top: 50%;
  color: #1d1d1d;
  transform: translateY(-70%);
  font-size: 14px;
  rotate: -45deg;
  transition: 0.6s;
}

#bridge-subscribe .cwp-form-submit-container:hover::after {
  color: #fff !important;
}

#bridge-subscribe .cwp-form-submit-container:hover .sub-btn {
  background: #fff;
  color: #1d1d1d;
}

#bridge-subscribe .cwp-form-submit-container:hover::after {
  color: #1d1d1d;
}


.woo-shop-look-card-content .woo-shop-look-action .single_add_to_cart_button:hover {
  box-shadow: 0 0 1px 0 #000;
  background-color: #fff0;
}

#woomen-join-email .cwp-form-submit-container:after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 800;
  position: absolute;
  right: 0px;
  top: 50%;
  color: #fff;
  transform: translateY(-70%);
  font-size: 14px;
  rotate: -45deg;
  transition: 0.2s;
}

.slick-arrow>.elementor-widget-container {
  cursor: pointer;
}

.slick-arrow:hover>.elementor-widget-container {
  background: #1d1d1d;
}

.slick-arrow:hover>.elementor-widget-container path {
  fill: #fff;
}

/* search form demo 8 */
#woomen-join-email-demo8 {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  padding-bottom: 11px;
  border-bottom: 1px solid #E6E6E6;
}

#woomen-join-email-demo8 .cwp-frontend-section-container {
  margin: 0;
}

#woomen-join-email-demo8 .cwp-frontend-section-content-container {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

#woomen-join-email-demo8 .cwp-frontend-section-content-container .cwp-field-email {
  padding: 0px;
  margin: 0px;
}

#woomen-join-email-demo8 .cwp-frontend-section-content-container .cwp-field-email label {
  display: none;
}

#woomen-join-email-demo8 .cwp-frontend-section-content-container .cwp-field-email input {
  border: none;
  box-shadow: none;
  padding: 0;
  color: #fff;
  font-size: 12px;
  line-height: 30px;
  font-weight: 400;
}

#woomen-join-email-demo8 .cwp-frontend-section-content-container .cwp-field-email input::placeholder {
  color: #ffffff8f !important;
}

#woomen-join-email-demo8 .cwp-frontend-section-content-container .cwp-field-email input:focus {
  background: transparent;
  box-shadow: none;
}

#woomen-join-email-demo8 .tab-content {
  width: calc(76% - 20px);
}

#woomen-join-email-demo8 .cwp-form-submit-container {
  width: 24%;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  margin-right: 9px;
}

#woomen-join-email-demo8 .cwp-form-submit-container .cwp-from-submit {
  border: none;
  margin: 0 !important;
  padding: 0;
  background: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 1px;
  width: auto;
}

#woomen-join-email-demo8 .cwp-form-submit-container::after {
  content: "\f061" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 700 !important;
  font-size: 15px;
  color: #fff;
  line-height: normal;
  rotate: 319deg;
  transition: 0.3s;
}

#woomen-join-email-demo8 .cwp-form-submit-container:hover::after {
  rotate: 356deg;
}

.demo1-post-card-height .woo-card-main.style-1 .woo-card-image-main img {
  height: 484px !important;
}

.demo1-post-card-height .woo-card-main.style-1 .woo-card-image-main {
  height: 484px !important;
}

/* search form demo 7 */
#woo-demo7-footer-search {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px solid #1d1d1d;
}

#woo-demo7-footer-search .cwp-frontend-section-container {
  margin: 0;
}

#woo-demo7-footer-search .cwp-frontend-section-content-container {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

#woo-demo7-footer-search .cwp-frontend-section-content-container .cwp-field-email {
  padding: 0px;
  margin: 0px;
}

#woo-demo7-footer-search .cwp-frontend-section-content-container .cwp-field-email label {
  display: none;
}

#woo-demo7-footer-search .cwp-frontend-section-content-container .cwp-field-email input {
  border: none;
  box-shadow: none;
  padding: 0;
  color: #1d1d1d;
  font-size: 12px;
  line-height: 30px;
  font-weight: 400;
}

#woo-demo7-footer-search .cwp-frontend-section-content-container .cwp-field-email input::placeholder {
  color: #1d1d1d !important;
  letter-spacing: -0.5px;
}

#woo-demo7-footer-search .cwp-frontend-section-content-container .cwp-field-email input:focus {
  background: transparent;
  box-shadow: none;
}

#woo-demo7-footer-search .tab-content {
  width: calc(70% - 10px);
}

#woo-demo7-footer-search .cwp-form-submit-container {
  width: 25%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 8px;
  min-height: 30px;
}

#woo-demo7-footer-search .cwp-form-submit-container .cwp-from-submit {
  border: none;
  margin: 0 !important;
  padding: 0;
  background: none;
  color: #1d1d1d;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 1px;
  width: auto;
}

#woo-demo7-footer-search .cwp-form-submit-container::after {
  content: "\f061" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 700 !important;
  font-size: 15px;
  color: #1d1d1d;
  line-height: normal;
  rotate: 319deg;
  transition: 0.3s;
}

#woo-demo7-footer-search .cwp-form-submit-container:hover::after {
  rotate: 356deg;
}

.slick-section .slick-slide img {
  transition: 0.3s;
}

.slick-section .slick-slide.prev-slide img,
.slick-section .slick-slide.next-slide img {
  transform: scale(1.01);
}

.slick-section .slick-slide img {
  opacity: 0.6;
  transform: scale(0.8);
}

.slick-section .slick-slide.slick-center img {
  opacity: 1;
  transform: scale(1.2);
}

.slick-section .slick-slide {
  padding: 57px 0;
}

.slick-section>.slick-slider {
  align-items: center !important;
}

.slick-section .slick-slide img {
  opacity: 0.6;
}

.slick-section .slick-slide.slick-center img {
  opacity: 1;
  transform: scale(1.2);
}

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

.slick-section>.slick-slider {
  align-items: center !important;
}

.slick-initialized.slick-slider {
  max-width: 100%;
}

.woo-demo-9-search .woomen-search-main-title {
  text-transform: none;
}

.woo-demo-9-search .woomen-search-widget {
  display: flex;
  align-items: end;
  justify-content: center;
}

/* search form demo 9 */
#woo-demo9-footer-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
}

#woo-demo9-footer-search .cwp-frontend-section-container {
  margin: 0;
}

#woo-demo9-footer-search .cwp-frontend-section-content-container {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

#woo-demo9-footer-search .cwp-frontend-section-content-container .cwp-field-email {
  padding: 0px;
  margin: 0px;
}

#woo-demo9-footer-search .cwp-frontend-section-content-container .cwp-field-email label {
  display: none;
}

#woo-demo9-footer-search .cwp-frontend-section-content-container .cwp-field-email input {
  border: none;
  box-shadow: none;
  padding: 0;
  color: #1d1d1d;
  font-size: 12px;
  line-height: 30px;
  font-weight: 400;
}

#woo-demo9-footer-search .cwp-frontend-section-content-container .cwp-field-email input::placeholder {
  color: #1d1d1d !important;
  letter-spacing: -0.3px;
}

#woo-demo9-footer-search .cwp-frontend-section-content-container .cwp-field-email input:focus {
  background: transparent;
  box-shadow: none;
}

#woo-demo9-footer-search .tab-content {
  width: calc(70% - 10px);
}

#woo-demo9-footer-search .cwp-form-submit-container {
  width: 28%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 3px;
}

#woo-demo9-footer-search .cwp-form-submit-container .cwp-from-submit {
  border: none;
  margin: 0 !important;
  padding: 0;
  background: none;
  color: #1d1d1d;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.3px;
  width: auto;
}

#woo-demo9-footer-search .cwp-form-submit-container::after {
  content: "\f061" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 700 !important;
  font-size: 15px;
  color: #1d1d1d;
  line-height: normal;
  rotate: 319deg;
  transition: 0.3s;
}

#woo-demo9-footer-search .cwp-form-submit-container:hover::after {
  rotate: 356deg;
}

.demo-20-form form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px !important;
  border-radius: unset;
  border: 1px solid #e6e6e6;
  font-family: "Open Sans";
  padding: 3px 20px !important;
  border: 1px solid #060606 !important;
  border-radius: 8px !important;
}

.demo-20-form .cwp-frontend-form-container .cwp-custom-form input[type="submit"] {
  margin: 0px;
  background: transparent;
  border: unset;
  font-size: 13px !important;
  font-weight: 600;
  color: #1d1d1d !important;
  background-color: transparent !important;
  color: #000 !important;
  border-radius: 0px;
}

.demo-20 form .cwp-form-submit-container {
  position: relative !important;
  min-width: 75px;
}

.demo-20 form .cwp-form-submit-container {
  min-width: 75px;
}

.demo-20-form .cwp-form-submit-container::after {
  content: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6725 0.500977H2.57656C2.46052 0.500977 2.34924 0.54707 2.2672 0.629117C2.18515 0.711164 2.13906 0.822444 2.13906 0.938477C2.13906 1.05451 2.18515 1.16579 2.2672 1.24784C2.34924 1.32988 2.46052 1.37598 2.57656 1.37598H9.81456L0.837493 10.3535C0.794097 10.3934 0.759225 10.4417 0.734973 10.4955C0.710721 10.5492 0.697589 10.6074 0.696368 10.6663C0.695146 10.7253 0.705859 10.7839 0.727864 10.8386C0.749869 10.8933 0.78271 10.943 0.824415 10.9847C0.866119 11.0264 0.915825 11.0593 0.970545 11.0813C1.02527 11.1033 1.08387 11.114 1.14284 11.1128C1.2018 11.1116 1.25991 11.0984 1.31367 11.0742C1.36744 11.0499 1.41574 11.0151 1.45568 10.9717L10.4332 1.99416V9.2326C10.4332 9.34863 10.4793 9.45991 10.5613 9.54196C10.6434 9.62401 10.7546 9.6701 10.8707 9.6701C10.9867 9.6701 11.098 9.62401 11.18 9.54196C11.2621 9.45991 11.3082 9.34863 11.3082 9.2326V1.1371C11.3079 0.968537 11.2409 0.806937 11.1218 0.687703C11.0026 0.568469 10.8411 0.501324 10.6725 0.500977Z' fill='%231D1D1D'/%3E%3C/svg%3E");
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 700 !important;
  position: absolute !important;
  right: -6px !important;
  top: 13px !important;
  font-size: 17px;
  color: #000;
  line-height: normal;
  transition: 0.3s;
}

.demo-20-form .cwp-form-submit-container:hover::after {
  transform: rotate(42deg);
}

.lingerie-footer-form input::placeholder {
  color: #000 !important;
}

.lingerie-footer-form form#wc-cubewp-form-10 {
  display: flex;
  align-items: center;
  padding: 22px 20px;
  height: 54px;
  width: 400px;
}

.lingerie-footer-form label {
  display: none !important;
}

.lingerie-footer-form input.cwp-from-submit {
  margin: 0px !important;
  width: 55px;
}

.lingerie-footer-form .cwp-frontend-form-container {
  height: 54px !important;
  width: 400px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
}

.lingerie-footer-form form#wc-cubewp-form-10,
.lingerie-footer-form .cwp-frontend-form-container {
  max-width: 100%;
}

.lingerie-footer-form input.cwp-from-submit {
  padding: 0px !important;
  margin: 0px;
  background: transparent !important;
  border: transparent !important;
  color: #3b3738 !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  line-height: 16px;
}

.lingerie-footer-form input#cwp_field_255752765363 {
  border: unset;
}

.lingerie-footer-form .cwp-frontend-section-container .cwp-field-container {
  margin: 0px !important;
  padding: 0px;
}

.lingerie-footer-form .tab-content {
  height: 54px !important;
  width: 400px;
}

.lingerie-footer-form .cwp-frontend-section-container {
  margin: 0px !important;
}

.lingerie-footer-form input#cwp_field_255752765363 {
  border: unset;
  padding: 14px 0px;
}

.lingerie-footer-form .cwp-form-submit-container {
  position: relative !important;
  padding: 0 20px 0 0px !important;
}

.lingerie-footer-form .cwp-form-submit-container::after {
  content: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6725 0.500977H2.57656C2.46052 0.500977 2.34924 0.54707 2.2672 0.629117C2.18515 0.711164 2.13906 0.822444 2.13906 0.938477C2.13906 1.05451 2.18515 1.16579 2.2672 1.24784C2.34924 1.32988 2.46052 1.37598 2.57656 1.37598H9.81456L0.837493 10.3535C0.794097 10.3934 0.759225 10.4417 0.734973 10.4955C0.710721 10.5492 0.697589 10.6074 0.696368 10.6663C0.695146 10.7253 0.705859 10.7839 0.727864 10.8386C0.749869 10.8933 0.78271 10.943 0.824415 10.9847C0.866119 11.0264 0.915825 11.0593 0.970545 11.0813C1.02527 11.1033 1.08387 11.114 1.14284 11.1128C1.2018 11.1116 1.25991 11.0984 1.31367 11.0742C1.36744 11.0499 1.41574 11.0151 1.45568 10.9717L10.4332 1.99416V9.2326C10.4332 9.34863 10.4793 9.45991 10.5613 9.54196C10.6434 9.62401 10.7546 9.6701 10.8707 9.6701C10.9867 9.6701 11.098 9.62401 11.18 9.54196C11.2621 9.45991 11.3082 9.34863 11.3082 9.2326V1.1371C11.3079 0.968537 11.2409 0.806937 11.1218 0.687703C11.0026 0.568469 10.8411 0.501324 10.6725 0.500977Z' fill='%231D1D1D'/%3E%3C/svg%3E");
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 700 !important;
  position: absolute !important;
  right: 0px !important;
  top: 1px !important;
  font-size: 17px;
  color: #000;
  line-height: normal;
  transition: 0.3s;
}

.lingerie-footer-form .cwp-form-submit-container:hover::after {
  transform: rotate(42deg);
}


.modest-fashion-newsletter-form form .cwp-frontend-section-content-container .cwp-field-email input {
  width: 446px;
  border: 1px solid #ffffff;
  border-radius: 1px;
  padding: 20px;
  height: 50px;
  background: none;
}

.modest-fashion-newsletter-form form .cwp-form-submit-container input {
  width: 100%;
  height: 50px;
  margin: 0px !important;
  background-color: #fff;
  color: #1d1d1d;
  border: #1d1d1d;
  border-radius: 0px;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0px;
}

.modest-fashion-newsletter-form input#cwp_field_43319178734::placeholder {
  color: #ffffff !important;
}

.modest-fashion-newsletter-form form .cwp-form-submit-container {
  display: flex;
  justify-content: center;
}

/* Bridge Newsletter Form style */

#woomen-bridge-form {
  display: flex !important;
  gap: 20px !important;
  padding-top: 0px !important;
}


.bridge-newslertter-form form label {
  display: none ! IMPORTANT;
}

.bridge-newslertter-form form input.cwp-from-submit {
  margin: 0 !important;
}

.bridge-newslertter-form form .cwp-field-container.cwp-field-email {
  margin: 0 !important;
  padding: 0 !important;
}

.bridge-newslertter-form form .cwp-frontend-section-container {
  margin: 0 !important;
}

.bridge-newslertter-form form .cwp-form-submit-container input {
  width: 100%;
  height: 54px;
  margin: 0px !important;
  background-color: #fff;
  color: #1d1d1d;
  border: none !important;
  border-radius: 0px;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0px;
  padding: 0 60px 0 35px !important;
  text-transform: uppercase;
}

.bridge-newslertter-form form .cwp-form-submit-container input:hover {
  background-color: #1D1D1D !important;
  border-color: #1D1D1D;
}

.bridge-newslertter-form form .cwp-frontend-section-content-container .cwp-field-email input {
  width: 446px !important;
  color: #fff;
  border: 1px solid #ffffff;
  border-radius: 1px;
  padding: 20px;
  height: 54px;
  background: none;
}

.bridge-newslertter-form form .cwp-frontend-section-content-container .cwp-field-email input:focus {
  border-color: #fff !important;
}

.bridge-newslertter-form form .cwp-frontend-section-content-container .cwp-field-email input::placeholder {
  color: #fff !important;
  font-size: 14px;
  font-weight: 400;
}

.bridge-newslertter-form form .cwp-form-submit-container::after {
  position: absolute;
  content: '\f061';
  top: 17px;
  right: 34px;
  font-family: 'Font Awesome 6 Free';
  font-weight: 800;
  rotate: -42deg;
  transition: 0.8s;
  font-size: 18px;
}

.bridge-newslertter-form form .cwp-form-submit-container:hover::after {
  rotate: 0deg !important;
  color: #FFF !important;
  fill: #FFF !important;
}


.bridge-newslertter-form form .cwp-form-submit-container:hover {
  background: transparent;
  color: #fff;
}

.bridge-newslertter-form input#cwp_field_43319178734::placeholder {
  color: #ffffff !important;
}

.bridge-newslertter-form form .cwp-form-submit-container {
  display: flex;
  justify-content: center;
}

#woomen-bridge-form .cwp-frontend-section-content-container {
  border: unset !important;
  background: none !important;
  padding: 0 !important;
}

.demo-16-form .cwp-frontend-form-container .cwp-custom-form input[type="submit"]:hover {
  background-color: #ffffff00 !important;
}

@media (max-width: 1024px) {

  #woomen-bridge-form {
    display: flex !important;
    gap: 15px !important;
    padding-top: 0px !important;
    justify-content: center !important;
  }

  #woomen-join-email .cwp-form-submit-container:after {
    right: 12px !important;
  }
}

@media (max-width: 767px) {

  .bridge-newslertter-form form .cwp-frontend-section-content-container .cwp-field-email input {
    width: 100% !important;
  }
}


/* modest-fashion-newsletter-form  start*/
.modest-fashion-newsletter-form form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  padding-top: 0 !important;
}

.modest-fashion-newsletter-form form .tab-content .cwp-frontend-section-container {
  margin-bottom: 0px;
}

.modest-fashion-newsletter-form form .cwp-frontend-section-content-container {
  padding: 0px !important;
}

.modest-fashion-newsletter-form form .cwp-frontend-section-content-container .cwp-field-email {
  padding: 0;
  margin: 0;
}

.modest-fashion-newsletter-form form .cwp-frontend-section-content-container .cwp-field-email label {
  display: none;
}

.modest-fashion-newsletter-form form .cwp-frontend-section-content-container .cwp-field-email input {
  width: 446px;
  border: 1px solid #ffffff;
  border-radius: 1px;
  padding: 10px 20px;
  height: 50px;
  background: none;
}


.woo-modestfashion-button {
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 16.38px;
  padding: 0px 60px 0px 35px !important;
  letter-spacing: 0.4px;
}


.modest-fashion-newsletter-form form .cwp-form-submit-container input {
  width: 100%;
  height: 54px;
  margin: 0px !important;
  background-color: #fff;
  color: #1d1d1d;
  border: unset;
  border-radius: 0px;
  padding: 10px 20px;
}

.modest-fashion-newsletter-form form .cwp-form-submit-container input:hover {
  background: #000;
  color: #fff;
}

#woomen-modestfashion-form .cwp-frontend-section-content-container {
  border: unset !important;
  background: none !important;
  padding: 8px 0 0 13px;
}

.modest-fashion-newsletter-form form .cwp-frontend-section-content-container .cwp-field-email input::placeholder {
  color: #fff !important;
}



.modest-fashion-newsletter-form .cwp-form-submit-container:hover::after {
  transform: rotate(42deg);
}

.modest-fashion-newsletter-form form .cwp-form-submit-container input:hover {
  background: #1d1d1d;
  color: #fff;
}

.modest-fashion-newsletter-form .cwp-form-submit-container {
  position: relative !important;
  padding: 0 0px 0 0px !important;
}

.modest-fashion-newsletter-form .cwp-form-submit-container::after {
  content: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6725 0.500977H2.57656C2.46052 0.500977 2.34924 0.54707 2.2672 0.629117C2.18515 0.711164 2.13906 0.822444 2.13906 0.938477C2.13906 1.05451 2.18515 1.16579 2.2672 1.24784C2.34924 1.32988 2.46052 1.37598 2.57656 1.37598H9.81456L0.837493 10.3535C0.794097 10.3934 0.759225 10.4417 0.734973 10.4955C0.710721 10.5492 0.697589 10.6074 0.696368 10.6663C0.695146 10.7253 0.705859 10.7839 0.727864 10.8386C0.749869 10.8933 0.78271 10.943 0.824415 10.9847C0.866119 11.0264 0.915825 11.0593 0.970545 11.0813C1.02527 11.1033 1.08387 11.114 1.14284 11.1128C1.2018 11.1116 1.25991 11.0984 1.31367 11.0742C1.36744 11.0499 1.41574 11.0151 1.45568 10.9717L10.4332 1.99416V9.2326C10.4332 9.34863 10.4793 9.45991 10.5613 9.54196C10.6434 9.62401 10.7546 9.6701 10.8707 9.6701C10.9867 9.6701 11.098 9.62401 11.18 9.54196C11.2621 9.45991 11.3082 9.34863 11.3082 9.2326V1.1371C11.3079 0.968537 11.2409 0.806937 11.1218 0.687703C11.0026 0.568469 10.8411 0.501324 10.6725 0.500977Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 700 !important;
  position: absolute !important;
  right: 37px !important;
  top: 18px !important;
  font-size: 17px !important;
  color: #000 !important;
  line-height: normal !important;
  transition: 0.3s !important;
}

@media (max-width: 1024px) {
  .modest-fashion-newsletter-form form {
    justify-content: center !important;
  }
}

@media (max-width: 767px) {
  .modest-fashion-newsletter-form form {
    flex-wrap: wrap !important;
  }

  .modest-fashion-newsletter-form form .cwp-frontend-section-content-container .cwp-field-email input {
    width: 100% !important;
  }

  .modest-fashion-newsletter-form form .cwp-form-submit-container {
    width: 100% !important;
  }

  .modest-fashion-newsletter-form form .tab-content {
    width: 100% !important;
  }
}

/* modest-fashion-newsletter-form  end*/

/* leather-newsletter-form */
.leather-footer-form form {
  padding-bottom: 10px !important;
}

.leather-footer-form .cwp-form-submit-container {
  position: relative !important;
  padding: 0 28px 0 0px !important;
}

.leather-footer-form .cwp-frontend-form-container .cwp-custom-form input {
  padding: 0;
}

.leather-footer-form .cwp-frontend-form-container .cwp-custom-form input[type="submit"]:hover {
  background-color: transparent !important;
  color: #FFFFFF !important;
}

.leather-footer-form .cwp-form-submit-container::after {
  content: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6725 0.500977H2.57656C2.46052 0.500977 2.34924 0.54707 2.2672 0.629117C2.18515 0.711164 2.13906 0.822444 2.13906 0.938477C2.13906 1.05451 2.18515 1.16579 2.2672 1.24784C2.34924 1.32988 2.46052 1.37598 2.57656 1.37598H9.81456L0.837493 10.3535C0.794097 10.3934 0.759225 10.4417 0.734973 10.4955C0.710721 10.5492 0.697589 10.6074 0.696368 10.6663C0.695146 10.7253 0.705859 10.7839 0.727864 10.8386C0.749869 10.8933 0.78271 10.943 0.824415 10.9847C0.866119 11.0264 0.915825 11.0593 0.970545 11.0813C1.02527 11.1033 1.08387 11.114 1.14284 11.1128C1.2018 11.1116 1.25991 11.0984 1.31367 11.0742C1.36744 11.0499 1.41574 11.0151 1.45568 10.9717L10.4332 1.99416V9.2326C10.4332 9.34863 10.4793 9.45991 10.5613 9.54196C10.6434 9.62401 10.7546 9.6701 10.8707 9.6701C10.9867 9.6701 11.098 9.62401 11.18 9.54196C11.2621 9.45991 11.3082 9.34863 11.3082 9.2326V1.1371C11.3079 0.968537 11.2409 0.806937 11.1218 0.687703C11.0026 0.568469 10.8411 0.501324 10.6725 0.500977Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 700 !important;
  position: absolute !important;
  right: 4px !important;
  top: 13px !important;
  font-size: 17px;
  color: #ffff !important;
  line-height: normal;
  transition: 0.3s;
}

.leather-footer-form .cwp-form-submit-container:hover::after {
  transform: rotate(42deg);
}

/* search form demo 1 */
#woo-demo1-footer-search {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

#woo-demo1-footer-search .cwp-frontend-section-container {
  margin: 0;
}

#woo-demo1-footer-search .cwp-frontend-section-content-container {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

#woo-demo1-footer-search .cwp-frontend-section-content-container .cwp-field-email {
  padding: 0px;
  margin: 0px;
}

#woo-demo1-footer-search .cwp-frontend-section-content-container .cwp-field-email label {
  display: none;
}

#woo-demo1-footer-search .cwp-frontend-section-content-container .cwp-field-email input {
  border: none;
  box-shadow: none;
  padding: 0;
  color: #fff;
  font-size: 12px;
  line-height: 30px;
  font-weight: 400;
}

#woo-demo1-footer-search .cwp-frontend-section-content-container .cwp-field-email input::placeholder {
  color: #fff !important;
}

#woo-demo1-footer-search .cwp-frontend-section-content-container .cwp-field-email input:focus {
  background: transparent;
  box-shadow: none;
}

#woo-demo1-footer-search .tab-content {
  width: calc(76% - 20px);
}

#woo-demo1-footer-search .cwp-form-submit-container {
  width: 24%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 15px;
  min-height: 30px;
}

#woo-demo1-footer-search .cwp-form-submit-container .cwp-from-submit {
  border: none;
  margin: 0 !important;
  padding: 0;
  background: none;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.3px;
  width: auto;
}

#woo-demo1-footer-search .cwp-form-submit-container::after {
  content: "\f061" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 700 !important;
  font-size: 15px;
  color: #fff;
  line-height: normal;
  rotate: 319deg;
  transition: 0.3s;
}

#woo-demo1-footer-search .cwp-form-submit-container:hover::after {
  rotate: 356deg;
}

/* modest-fashion-newsletter-form */
.modest-fashion-newsletter-form form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  padding-top: 0 !important;
}

.modest-fashion-newsletter-form form .tab-content .cwp-frontend-section-container {
  margin-bottom: 0px;
}

.modest-fashion-newsletter-form form .cwp-frontend-section-content-container {
  padding: 0px !important;
}

.modest-fashion-newsletter-form form .cwp-frontend-section-content-container .cwp-field-email {
  padding: 0;
  margin: 0;
}

.modest-fashion-newsletter-form form .cwp-frontend-section-content-container .cwp-field-email label {
  display: none;
}

.modest-fashion-newsletter-form form .cwp-frontend-section-content-container .cwp-field-email input {
  width: 100%;
  border: 1px solid #ffffff;
  border-radius: 1px;
  padding: 20px;
  height: 54px;
  background: none;
}

.modest-fashion-newsletter-form form .tab-content {
  width: calc(100% - 191px);
}

.modest-fashion-newsletter-form form .cwp-form-submit-container {
  width: 171px;
}


.modest-fashion-newsletter-form form .cwp-form-submit-container input {
  width: 100%;
  height: 54px;
  margin: 0px !important;
  background-color: #fff;
  color: #1d1d1d;
  border: navajowhite;
  border-radius: 0px;
}

.modest-fashion-newsletter-form form .cwp-form-submit-container input:hover {
  background: #000;
  color: #fff;
}

form#woomen-bridge-form {
  display: flex;
  gap: 20px;
  padding-top: 6px;
}

.modest-fashion-newsletter-form form .cwp-frontend-section-content-container .cwp-field-email input::placeholder {
  color: #fff !important;
}

.modest-fashion-newsletter-form form .cwp-form-submit-container input:hover {
  background: #ffffff;
  color: #1d1d1d;
}

.modest-fashion-newsletter-form .cwp-form-submit-container {
  position: relative !important;
  padding: 0 0px 0 0px !important;
}

.modest-fashion-newsletter-form .cwp-form-submit-container::after {
  content: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6725 0.500977H2.57656C2.46052 0.500977 2.34924 0.54707 2.2672 0.629117C2.18515 0.711164 2.13906 0.822444 2.13906 0.938477C2.13906 1.05451 2.18515 1.16579 2.2672 1.24784C2.34924 1.32988 2.46052 1.37598 2.57656 1.37598H9.81456L0.837493 10.3535C0.794097 10.3934 0.759225 10.4417 0.734973 10.4955C0.710721 10.5492 0.697589 10.6074 0.696368 10.6663C0.695146 10.7253 0.705859 10.7839 0.727864 10.8386C0.749869 10.8933 0.78271 10.943 0.824415 10.9847C0.866119 11.0264 0.915825 11.0593 0.970545 11.0813C1.02527 11.1033 1.08387 11.114 1.14284 11.1128C1.2018 11.1116 1.25991 11.0984 1.31367 11.0742C1.36744 11.0499 1.41574 11.0151 1.45568 10.9717L10.4332 1.99416V9.2326C10.4332 9.34863 10.4793 9.45991 10.5613 9.54196C10.6434 9.62401 10.7546 9.6701 10.8707 9.6701C10.9867 9.6701 11.098 9.62401 11.18 9.54196C11.2621 9.45991 11.3082 9.34863 11.3082 9.2326V1.1371C11.3079 0.968537 11.2409 0.806937 11.1218 0.687703C11.0026 0.568469 10.8411 0.501324 10.6725 0.500977Z' fill='%231D1D1D'/%3E%3C/svg%3E");
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 700 !important;
  position: absolute !important;
  right: 37px !important;
  top: 18px !important;
  font-size: 17px;
  color: #000;
  line-height: normal;
  transition: 0.3s;
}

.modest-fashion-newsletter-form .cwp-form-submit-container:hover::after {
  transform: rotate(42deg);
  color: #ffff;
}


.woo-review-content {
  display: flex !important;
}

.slick-section .right-arrow {
  margin-right: 100px;
  margin-left: -100px;
}

.slick-section .left-arrow {
  margin-left: 13px;
  margin-right: -13px;
}

.footer-form-demo label {
  display: none !important;
}

.footer-form-demo form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  font-family: "DM Sans";
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.02px;
  text-align: center;
}

.footer-form-demo .cwp-frontend-form-container .cwp-custom-form {
  margin: 0px;
  background: transparent;
  border: unset;
  font-size: 13px;
  font-weight: 600;
  line-height: 30px;
}

.footer-form-demo .cwp-custom-form .cwp-frontend-section-container {
  margin-bottom: 0px;
  padding: 0px;
}

.footer-form-demo .cwp-frontend-section-container .cwp-field-container {
  margin: 0 0 0px 0;
  width: 100%;
  border: none;
  padding: 0px;
}

.footer-form-demo input {
  border: none;
  color: #ffff;
  font-size: 12px;
  line-height: 30px;
  font-weight: 400;
  padding: 0px;
}

.footer-form-demo input::placeholder {
  color: #ffff !important;
}

.footer-form-demo .cwp-form-submit-container::after {
  content: "\f061" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 700 !important;
  font-size: 15px;
  color: #fff;
  line-height: normal;
  rotate: 319deg;
  transition: 0.3s;
}

.footer-form-demo .cwp-form-submit-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-form-demo .cwp-form-submit-container .cwp-from-submit {
  border: none;
  margin: 0 !important;
  padding: 0;
  background: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 1px;
  width: auto;
}

.footer-form-demo .cwp-form-submit-container .cwp-from-submit:hover {
  background: transparent;
}

.footer-form-demo .cwp-form-submit-container:hover::after {
  rotate: 356deg;
}

#women-footer-search-form {
  justify-content: space-between !important;
  display: flex !important;
  align-items: center !important;
  width: 600px !important;
  border: solid 1px #ffffff !important;
  gap: 10px !important;
  height: 54px !important;
}

#women-footer-search-form .cwp-field-container.cwp-field-email.form-group {
  width: 470px !important;
  margin: 0px !important;
  padding: 0px !important;
}

#women-footer-search-form .cwp-field-container input {
  border: none !important;
  outline: none !important;
  height: 50px !important;
  border-radius: 0px !important;
  margin: 0px !important;
  font-size: 15px !important;
  color: #ffffff !important;
  line-height: 30px !important;
  font-family: "Bebas Neue" !important;
  background: transparent;
}

#women-footer-search-form .cwp-field-container input::placeholder {
  color: white !important;
  font-size: 15px !important;
  line-height: 30px !important;
  font-family: "Bebas Neue";
}

#women-footer-search-form .cwp-frontend-form-container input[type="submit"] {
  background: transparent !important;
  border: none !important;
  border-radius: 0px !important;
  color: #ffffff !important;
  cursor: pointer !important;
  font-size: 15px;
  font-weight: 400;
  margin: 0px !important;
  padding: 16px !important;
  text-decoration: none !important;
  height: 51px !important;
  /* text-shadow: none; */
}

#women-footer-search-form .cwp-form-submit-container::after {
  content: "\f061" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 700 !important;
  position: absolute !important;
  right: 10px !important;
  top: 18px !important;
  font-size: 16px;
  color: #ffffff;
  line-height: normal;
  rotate: 319deg;
}

#women-footer-search-form .cwp-form-submit-container:hover {
  background: white;
  height: 49px;
}

#women-footer-search-form .cwp-form-submit-container:hover::after {
  color: #1d1d1d;
}

#women-footer-search-form .cwp-frontend-form-container input:hover {
  color: #1d1d1d !important;
}

@media (max-width: 768px) {
  #women-footer-search-form {
    width: 600px !important;
    max-width: 100% !important;
  }

  .women_home_10_search .cwp-form-submit-container {
    width: 24%;
  }

  #woo-demo9-footer-search .cwp-form-submit-container .cwp-from-submit {
    font-size: 10px;
    font-weight: 500;
  }

  #woo-demo9-footer-search {
    max-width: 78%;
  }

  #woo-demo9-footer-search .cwp-form-submit-container .cwp-from-submit {
    font-size: 10px;
    font-weight: 500;
  }

  body #women-footer-search-form .cwp-field-container.cwp-field-email.form-group {
    width: 100% !important;
    max-width: 100% !important;
  }

  .slick-section .slick-slide {
    padding: 40px 0;
  }

  .content-part .slick-dots {
    padding: 0;
    margin: 10px 0 0 0;
    justify-content: center;
    gap: 5px;
  }

  .content-part .slick-dots li {
    list-style: none;
  }

  .content-part .slick-dots li button {
    padding: 0px;
    font-size: 0px;
    width: 5px !important;
    height: 5px;
    border: none;
    border-radius: 20px;
    background: #D1D1D1 !important;
  }

  .content-part .slick-dots .slick-active button {
    background: #1d1d1d !important;
    width: 16px !important;
  }

}

.new-arrivals-women-style .cubewp-website-promotion-card p {
  font-family: "DM Sans", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 2px;
  color: #ffffff;
  text-align: center;
}

.woomen-collection-slider-5.loved-style .slick-dots {
  position: absolute !important;
  left: 46% !important;
  bottom: 1px !important;
  top: 92%;
  display: flex !important;
  gap: 20px !important;
  flex-direction: row;
}

.woomen-collection-slider-5.loved-style .slick-dots li.slick-active {
  list-style: none;
  border: 1px solid #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
}

.woomen-collection-slider-5.loved-style .slick-dots li.slick-active button {
  width: 0px;
  height: 0px;
}

.exceptional-tabs .woo-trending-main {
  gap: 0px !important;
  display: flex;
  flex-direction: column;
}

.essentials-collection .woo-trending-main {
  gap: 14px !important;
  display: flex;
  flex-direction: column;
}

.essentials-collection .woo-trending-content {
  gap: 0px;
  display: flex;
  flex-direction: column;
  margin: 0px !important;
  padding: 0px !important;
  padding-bottom: 0px !important;

}

.essentials-collection .woo-trending-product-price {
  font-family: "Marcellus";
  color: #7b7369;
  font-size: 13px;
  font-weight: 400;
  line-height: 45px;
  text-align: left;
  margin-bottom: 0;
}

.footer_form form#wc-cubewp-form-10 {
  justify-content: space-between !important;
  display: flex !important;
  align-items: center !important;
  width: 500px !important;
  border: solid 1px #e6e6e6 !important;
  gap: 10px !important;
  height: 54px !important;
}

.footer_form .cwp-field-container input {
  border: none !important;
  outline: none !important;
  height: 50px !important;
  border-radius: 0px !important;
  margin: 0px !important;
  font-size: 20px !important;
  color: #1d1d1d !important;
  line-height: 29px !important;
}

.woo-hover-button-dark a::after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 999;
  background-color: #000;
  left: 0;
  top: 100%;
  z-index: 0;
  transition: 0.3s !important;
}

.woo-hover-button-dark a {
  position: relative;
}

.woo-hover-button-dark a:hover::after {
  top: 0;
}

.woo-hover-button-dark a span {
  z-index: 9999;
  position: relative;
}



.women-wc-grid-style1-section .woo-trending-main {
  gap: 16px;
  margin-right: 7px;
}

.women_home_19_search form {
  border-radius: 4px;
}

.demo-20 form {
  border: solid 1px #ddd !important;
  gap: 0px !important;
  justify-content: start !important;
  border-radius: 4px;
}

.demo-20 form .tab-content {
  width: calc(100% - 75px);
}

.demo-20 form input[type="submit"] {
  padding: 16px 16px 16px 0px !important;
}

.demo-20 form .cwp-field-email input {
  padding: 10px 0px 12px 19px;
}

.demo-20 form .cwp-form-submit-container {
  padding-right: 0px !important;
}

.demo-20 form .cwp-form-submit-container::after {
  right: 6px !important;
}

.woo-ready-to-wear-tag p {
  margin-bottom: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.cart-empty.woocommerce-info {
  margin-top: 50px;
}

.return-to-shop {
  margin-bottom: 50px;
}

/*---------------- Cart Checkout-----------------*/
.woocommerce .woocommerce-cart-form .cart_totals h2 {
  text-transform: uppercase !important;
}

.woocommerce-orders-breadcrumbs {
  padding-top: 81px !important;
}

.woocommerce .woocommerce-cart-form .cart_totals .wc-proceed-to-checkout .checkout-button {
  padding: 17px 35px;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.shop_table.woocommerce-cart-form__contents tbody tr .product-price bdi {
  letter-spacing: 0 !important;

}

.shop_table.woocommerce-cart-form__contents tbody tr .product-subtotal bdi {

  letter-spacing: 0 !important;

}

.woocommerce .woocommerce-cart-form .cart_totals .shop_table tbody tr td bdi {
  letter-spacing: 0 !important;

}

.woocommerce .woocommerce-cart-form .cart_totals .shop_table tbody tr th {
  letter-spacing: 0 !important;

}

.woocommerce-cart-form .cart_totals.calculated_shipping h2 {
  text-transform: uppercase;
  font-weight: 600 !important;
  line-height: 34px !important;
}

.shop_table.woocommerce-cart-form__contents tbody .update-cart-button .actions .coupon .button {
  text-transform: uppercase;
  letter-spacing: 0.18px;
}

.woocommerce .woocommerce-cart-form .cart_totals .shop_table {
  margin: 0 0 14px 0;
}

.woocommerce .woocommerce-cart-form .cart_totals .wc-proceed-to-checkout .checkout-button {
  padding: 18px 27px 16px 27px;
  letter-spacing: 0.3px;
  gap: 11px;
}


.demo14 form {
  border: 1px solid #1d1d1d !important;
  width: 100% !important;
  padding: 0 9px 0 0px !important;
  border-radius: 8px !important;
}

.demo14 .cwp-form-submit-container {
  position: relative !important;
  padding-right: 25px !important;
  width: fit-content !important;
}

.demo14 .cwp-field-container input {
  border: none !important;
  outline: none !important;
  height: 51px !important;
  border-radius: 0px !important;
  margin: 0px !important;
  font-size: 16px !important;
  color: #1d1d1d !important;
  line-height: 28px !important;
}

.demo14 .cwp-field-container input::placeholder {
  font-size: 12px !important;
  letter-spacing: 0.5px !important;
}

.bridal-wear-15-slick .slick-track {
  display: flex;
  align-items: center;
}

.active-wear-footer-form .cwp-field-container label {
  display: none !important;
}

.active-wear-footer-form .cwp-frontend-section-container {
  margin-bottom: 0px !important;
}

.active-wear-footer-form form {
  justify-content: space-between !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  border: solid 1px #FFFFFF33 !important;
  gap: 10px !important;
  max-width: 100% !important;
}

.active-wear-footer-form .cwp-field-email.form-group {
  width: 100% !important;
  margin: 0px !important;
  padding: 0px !important;
  max-width: 100%;
}

.active-wear-footer-form .cwp-field-container input {
  border: none !important;
  outline: none !important;
  border-radius: 0px !important;
  margin: 0px !important;
  font-size: 15px !important;
  color: #ffffff !important;
  line-height: 30px !important;
  font-family: 'Bebas Neue' !important;
  background: transparent;
  padding: 12px 20px 8px 19px;
  letter-spacing: 0.75px;
}

.active-wear-footer-form .tab-content {
  width: calc(100% - 200px) !important;
}

.active-wear-footer-form .cwp-field-container input::placeholder {
  color: white !important;
  font-size: 15px !important;
  line-height: 30px !important;
  font-family: 'Bebas Neue'
}

.active-wear-footer-form .cwp-frontend-form-container input[type=submit] {
  background: transparent !important;
  border: none !important;
  border-radius: 0px !important;
  color: #ffffff !important;
  cursor: pointer !important;
  font-size: 15px;
  font-weight: 400;
  font-family: 'bebas Neue';
  margin: 0px !important;
  padding: 16px 47px 11px 16px !important;
  text-decoration: none !important;
  letter-spacing: 0.4px;
}

.active-wear-footer-form .form-control:focus {
  outline: 0px;
  box-shadow: none
}

.active-wear-footer-form .cwp-form-submit-container::after {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAPCAYAAADUFP50AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAB7SURBVHgBxc1hDYAgEAVgjhmACNjAJs4GmkSbaAUbGMUINMDnhhuCcMwfetvbwY2PE+LrIv9irZ3RNGMGItpDqNBUAkxIi3SAW3VbT2TQTCjw4eiO6zWTgimHanza+3P5BmVhDiUhhx5hCYpgKYo2IQvzRp/xBw2H/q8DZ588QNxUuUkAAAAASUVORK5CYII=);
  position: absolute !important;
  right: 20px !important;
  top: 21px !important;
  rotate: 1deg;
  transition: 0.3s;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
}

.active-wear-footer-form .cwp-form-submit-container:hover::after {
  color: #ffff !important;
  rotate: 44deg;
}

.active-wear-footer-form .cwp-frontend-form-container input:hover {
  color: #ffff !important;
}


.casual-footer-form .tab-content {
  width: 65%;
  background: transparent;
  outline: none;
}

.casual-footer-form .form-control:focus {
  color: #FFFFFF;
  background-color: transparent;
  border-color: none;
  outline: 0;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .woo-store-archive-display form .cwp-search-field label::after {
    right: 0px !important;
    top: 10px !important;
  }
}

@media (max-width: 991px) {
  .woomen-des-post-wrapper {
    flex-direction: column;
  }

  .woomen-des-post-wrapper .woomen-des-post-content {
    padding: 0 !important;
    width: 100% !important;
  }
}

@media (max-width: 767px) {

  .active-wear-footer-form .cwp-frontend-form-container input[type=submit] {
    padding: 0px 50px 0px 0px !important;
  }

  .active-wear-footer-form .cwp-form-submit-container::after {
    width: 12px;
    height: 12px;
    top: 8px !important;
  }

  .active-wear-footer-form .cwp-field-container input {
    font-size: 14px !important;
  }

  .active-wear-footer-form .cwp-field-container input::placeholder {
    font-size: 14px !important;
  }

  .woomen-store-filters .cwp-search-result-output {
    padding: 0 0px !important;
  }

  .woomen-single-post-content-container .woomen-single-content-images .woomen-images-combine p img {
    width: calc(100% / 2 - 5px);
    height: auto;
  }
}

@media (max-width: 481px) {
  .active-wear-footer-form .cwp-frontend-form-container input[type=submit] {
    padding: 0px 43px 0px 0px !important;
  }

  .active-wear-footer-form .cwp-form-submit-container::after {
    top: 8px !important;
    right: 20px !important;
  }
}

/* newslater  style 1 light mode  */
.newsletter-lightmode #woo-demo1-footer-search {
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 10px;
  margin: 0 9px !important;
}

.newsletter-lightmode #woo-demo1-footer-search .cwp-frontend-section-content-container .cwp-field-email input,
.newsletter-lightmode #woo-demo1-footer-search .cwp-frontend-section-content-container .cwp-field-email input::placeholder {
  color: #000 !important;
  padding-top: 6px;
  letter-spacing: 0.2px;
  word-spacing: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}

.newsletter-lightmode #woo-demo1-footer-search .cwp-form-submit-container .cwp-from-submit {
  color: rgb(29, 29, 29);
  padding: 0 5px;
}

.newsletter-lightmode #woo-demo1-footer-search .cwp-form-submit-container::after {
  color: #1D1D1D ! IMPORTANT;
  margin-left: -5px;
  margin-top: -3px;
}

/* darkmode   */


.newsletter-darkmode #woo-demo1-footer-search .cwp-frontend-section-content-container .cwp-field-email input,
.newsletter-darkmode #woo-demo1-footer-search .cwp-frontend-section-content-container .cwp-field-email input::placeholder {
  padding-top: 1px;
  letter-spacing: 0.2px;
  word-spacing: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 30px;
  padding-bottom: 8px;
  text-align: left;
  margin: 0 0 33px 0 !important;
  border-radius: 0 !important;
}

.newsletter-darkmode #woo-demo1-footer-search .cwp-frontend-section-content-container .cwp-field-email input {
  border-bottom: 1px solid #dddddd6b;
}

.newsletter-darkmode #woo-demo1-footer-search {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  border-bottom: 0 !important;
}

.newsletter-darkmode #woo-demo1-footer-search .tab-content {
  width: 100% !important;
  padding-top: 2px;
}

.newsletter-darkmode #woo-demo1-footer-search .cwp-form-submit-container {
  width: 100%;
  margin: 0;
}

.newsletter-darkmode #woo-demo1-footer-search .cwp-form-submit-container .cwp-from-submit {
  background-color: #fff !important;
  color: #1D1D1D;
  text-align: center;
  border-radius: 0;
  padding: 19px 26px 19px 0;
  margin-top: 6px !important;
  width: 100%;
}

.newsletter-darkmode.light #woo-demo1-footer-search .cwp-frontend-section-content-container .cwp-field-email input,
.newsletter-darkmode.light #woo-demo1-footer-search .cwp-frontend-section-content-container .cwp-field-email input::placeholder {
  color: #1D1D1D !important;
}

.newsletter-darkmode.light #woo-demo1-footer-search .cwp-form-submit-container .cwp-from-submit {
  background-color: #1D1D1D !important;
  color: #fff;
}

.newsletter-darkmode.light #woo-demo1-footer-search .cwp-form-submit-container .cwp-from-submit:hover {
  background-color: #5555558d !important;
}

.light #woo-demo1-footer-search .cwp-form-submit-container::after {
  color: #fff !important;
}

.newsletter-darkmode #woo-demo1-footer-search .cwp-form-submit-container::after {
  position: absolute;
  color: #000;
  right: 36%;
  margin-top: 5px;
}

.newsletter-darkmode #woo-demo1-footer-search .cwp-form-submit-container .cwp-from-submit:hover {
  background-color: rgba(255, 255, 255, 0.656);
}

.cwp-field-container {
  position: relative;
}

.cwp-required-field-notice {
  position: absolute;
  bottom: 0;
  margin-bottom: 0 !important;
  top: unset !important;
  height: auto !important;
  border-bottom: #d12626 solid 3px;
}

.cwp-required-field-notice p {
  display: none;
}

.demo-25-footer-form form {
  padding: 5px 20px;
  background: #fff;
}

.demo-25-footer-form form input::placeholder {
  color: #1d1d1d ! IMPORTANT;
}

.demo-25-footer-form form .cwp-frontend-form-container .cwp-custom-form input[type="submit"] {
  color: #1d1d1d;
}

.woo-card-title:hover {
  text-decoration: unset !important;
}

.elementor-cubewp-nav-menu--dropdown .elementor-cubewp-item {
  white-space: nowrap;
}



.wc-women-best-section-slider-left,
.wc-women-best-section-slider-right {
  cursor: pointer;
}

.woo-trending-main.loop-style8 .woo-add-to-cart-button-main.women-wc-quick-checkout .woo-ajax-loader circle {
  stroke: #fff;
}

.wc-woomen-card-quick-checkout-popup .wm-product-attributes .attribute-container h3 .slug-display {
  margin-left: 3px;
  opacity: 0.7;
}

.wc-col-5 {
  width: 20%;
  flex: 0 0 auto;
}

.newslatters-form .demo-20-form input,
.newslatters-form .demo-20-form input::placeholder {
  color: #00000091 !important;
}

.wc-woomen-card-popup-details-main .image-attributes .active .wm-variation-attr {
  border: 1px solid #1d1d1d;
}

.wc-woomen-card-popup-details-main .image-attributes .wm-variation-attr {
  border: 1px solid #ddd;
  cursor: pointer;
}

.woomen-des-post-content ul>li {
  gap: 11px !important;
  margin-bottom: 12px !important;
}

.woomen-des-post-content ul>li p {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
}

/* CSS for loader */
.woomen-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 6px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: rotate-spin 1s linear infinite;
  z-index: 10;
}

.elementor-button-content-wrapper {
  width: 100%;
}

.e-n-tab-title.active {
  pointer-events: none;
}

.cwp-row.active-loader {
  max-height: 500px ! IMPORTANT;
  overflow: hidden;
}

.wc-woo-products-countdown.wc-wo-countdown.style4 .wrapper span {
  font-size: 13px;
  font-weight: 600 !important;
}

.fatured-products .cwp-row {
  margin: 5px -22px 0 -11px;
  max-width: calc(100% + 15px) !important;
}

.woo-trending-main.loop-style13 .cwp-single-save-btns.cwp-single-widget span.cwp-main,
.woo-trending-main.loop-style13 .cwp-single-share-btn.cwp-single-widget span.cwp-main {
  padding: 0;
  margin-top: -4px;
}

.demo-20-form.newslatters-form input::placeholder,
.demo-20-form.newslatters-form input {
  color: #000 !important;
}

.bridge-collection-arrows-disabled .e-n-tab-title .e-n-tab-icon {
  opacity: 0;
}

.bridge-collection-arrows-disabled .e-n-tab-title.e-active .e-n-tab-icon {
  opacity: 1;
}

.demo5-post-spacing>.elementor-element>.elementor-widget-container {
  display: flex;
  justify-content: center;
}

.font-jost-set-icons .elementor-icon-box-description {
  font-family: 'Jost' !important;
  padding-top: 5px ! IMPORTANT;
  font-size: 14px;
  font-weight: 400 !important;
  line-height: 23px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.casual-countdown .wc-woo-products-countdown.wc-wo-countdown.style4 {
  gap: 12px;
}

.casual-countdown .wc-wo-countdown.style4 .wrapper {
  display: flex;
  gap: 5px;
}

.shop-our-tops-card .woo-trending-main {
  gap: 15px !important;
  margin-right: 0px !important;
}

.shop-our-tops-card .woo-trending-content {
  gap: 0px;
  padding-bottom: 8px !important;
}

.jewelry-countdown .wc-wo-countdown.style4 {
  gap: 9px;
}

.jewelry-news-letter-form form.cwp-custom-form {
  height: 60px !important;
  padding-bottom: 5px !important;
}

.post-cards-flex>.elementor-widget-container {
  display: flex;
  justify-content: center;
}

.new-arrivals-women-style .woo-trending-main {
  gap: 15px !important;
  display: flex;
  flex-direction: column;
}

.exceptional-tabs .woo-trending-main {
  gap: 16px !important;
  display: flex;
  flex-direction: column;
}

.essentials-collection .woo-trending-main {
  gap: 30px !important;
  display: flex;
  flex-direction: column;
}

.jewelry-news-letter-form form {
  border: solid 0px #E6E6E6 !important;
  border-bottom-width: 1px;

}

.jewelry-news-letter-form .form-control {
  padding: 0px !important;
}

.jewelry-news-letter-form .cwp-frontend-form-container input[type="submit"] {
  font-size: 14px;
  line-height: 14px !important;
  padding: 0px;
  letter-spacing: 0.2px;
}

.jewelry-news-letter-form .cwp-form-submit-container::after {
  right: 0px !important;
  top: 17px !important;
}

.featured-waches-card .woo-style-15-content {
  padding-bottom: 35px;
}

.trending-watches .woo-style-15-price {
  margin-bottom: 0px;
}

.trending-watches .woo-style-15-card {
  gap: 30px;
}

.trending-watches .woo-style-15-content {
  gap: 9px;
  padding-bottom: 5px;
}

.her-selection-image .woo-style-15-card {
  padding: 10px;
  border: 1px solid #e6e6e600;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: .3s;
  overflow: hidden;
  margin-bottom: 0px;
}

.her-selection-image .woo-style-15-content {
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  gap: 5px;
  padding-bottom: 10px;
}

.her-selection-image .women-wc-quick-checkout {
  display: none;
}

.font-jost-set-icons .elementor-icon-box-description {
  font-family: 'Jost' !important;
  padding-top: 8px ! IMPORTANT;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

a {
  text-decoration: unset !important;
}

#woomen-blogs .woomen-blogs-categories .slick-arrow {
  border: unset;
  width: 35px;
  font-size: 12px;
  height: 35px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #ddd;
  position: absolute;
  transition: 0.3s;
  left: -16px;
  z-index: 9999999;
}


#woomen-blogs .woomen-blogs-categories .slick-arrow:hover {
  border: 1px solid #a4a4a4;
}

#woomen-blogs .woomen-blogs-categories .blog-next-icon {
  right: -16px ! IMPORTANT;
  left: unset;
}

.woomen-product-gallery-slider .slick-list.draggable {
  padding: 0;
}

.demo-25-footer-form form .cwp-form-submit-container::after {
  content: "\f061" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 600 !important;
  font-size: 15px;
  color: #000;
  line-height: normal;
  rotate: 319deg;
  transition: 0.3s;
  position: absolute;
  top: 15px;
  right: -7px;
  cursor: pointer;
}

.demo-25-footer-form form .cwp-form-submit-container:hover::after {
  rotate: 356deg;
}

.demo-25-footer-form form input {
  color: #000 !important;
}

.newslatters-form .cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container label,
.newslatters-form .cwp-frontend-form-container .cwp-frontend-section-container .cwp-field-container {
  margin-bottom: 0 !important;
}

.overlay-bg-slider-light::before {
  width: 50000px;
  position: absolute;
  content: '' !important;
  background-color: #fff;
  height: 100%;
  left: -50000px;
}

.store-locator-cards-animate .cwp-processing-post-grid .cwp-processing-post-thumbnail {
  height: 32px;
  border-radius: 0;
}

.store-locator-cards-animate .cwp-processing-post-grid .cwp-processing-post-content {
  border: unset;
  padding: 55px 0 0 0;
  gap: 17px;
  display: flex;
  flex-wrap: wrap;
}

.products-cards-animat .cwp-processing-post-thumbnail {
  height: 350px;
  border-radius: 0 !important;
}

.products-cards-animat .cwp-processing-post-content {
  border: unset;
  padding: 0;
  margin-top: 20px;
}

.products-cards-animat .cwp-processing-post-content p {
  height: 20px;
}

/* post cads css  */
.woo-trending-main.loop-style13 .woo-trending-content-title-whishlist a {
  width: calc(100% - 24px);
}

.woo-trending-main.loop-style13 .woo-trending-content-title-whishlist .woo-trending-product-title {
  max-width: 100%;
  white-space: normal;
}

.shop-this-look-card .woo-trending-product-title,
.shop-this-look-card .woo-trending-product-price {
  text-align: left !important;
  margin-bottom: 0px !important;
  color: #fff !important;
}

.shop-this-look-card svg {
  color: #fff;
}

.shop-this-look-card .woo-trending-main {
  gap: 10px !important;
  display: flex;
  flex-direction: column;
}

.casual-shirt-card .woo-trending-main {
  gap: 15px !important;
  display: flex;
  flex-direction: column;
}

#top-sale-picks .woo-trending-main {
  gap: 3px !important;
  display: flex;
  flex-direction: column;
}

#top-sale-picks .woo-trending-product-price {
  margin-bottom: 5px !important;
}


.shop-this-look-card .color-attributes {
  margin-top: 5px;
}

.shop-this-look-card .woo-trending-main {
  gap: 10px !important;
  display: flex;
  flex-direction: column;
}


.new-arrivals-edit-style .woo-shop-essential-heart-icon {
  background: transparent !important;
}

.new-arrivals-edit-style .woo-shop-essential-main {
  gap: 15px;
  display: flex;
  flex-direction: column;
}


.new-arrivals-edit-style .woo-shop-essential-card-title {
  font-family: Bebas Neue, sans-serif;
  color: #1D1D1D;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  margin: 0px;
  color: #1D1D1D;
  letter-spacing: 1.1px;
  word-spacing: 1px;
}

.new-arrivals-edit-style .woo-shop-essential-card-price {
  font-family: 'Bebas Neue';
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
  margin: 0px;
  letter-spacing: 1.1px;
  word-spacing: 1px;
}

.new-arrivals-edit-style .wc-woo-wmen-item-image img {
  width: 100% !important;
  object-fit: cover;
  background-color: #f6f6f6;
}

.new-arrivals-edit-style .cwp-col-12 {
  padding: 0px 6px;
}


.new-arrivals-edit-style .product-hover-cards-content a {
  font-size: 18px !important;
  line-height: 21px;
  font-family: 'Bebas Neue';
  text-transform: capitalize;
  color: #000;
  font-weight: 400 !important;
  color: #1D1D1D !important;
  display: inline-block;
}

.new-arrivals-edit-style .product-rating.woocommerce {
  display: none !important;
}

.new-arrivals-edit-style .woocommerce-Price-amount .amount {
  font-size: 16px;
  color: #000;
  font-family: 'Bebas Neue';
  font-weight: 400;
  line-height: 19px;
}

.new-arrivals-edit-style .vp-shop-this-look-slider-4 i:hover {
  background: #000000;
  color: white;
}

.new-arrivals-women-style .woo-trending-card-image {
  width: 100%;
  height: auto !important;
  object-fit: cover !important;
  background: transparent;
}

.new-arrivals-women-style .cwp-row.grid-view .cwp-col-12 {
  margin-bottom: 0px !important;
  padding: 0px 4px;
}

.new-arrivals-women-style .color-attributes {
  display: none !important;
}

.new-arrivals-women-style .cwp-row.grid-view .cwp-col-12 {
  margin-bottom: 0px !important;
  padding: 0px 4px;
}

.new-arrivals-women-style .color-attributes {
  display: none !important;
}

.new-arrivals-women-style .woo-trending-main {
  gap: 14px;
  display: flex;
  flex-direction: column;
}


.new-arrivals-women-style .woo-trending-product-title {
  font-family: 'Marcellus';
  color: #1D1D1D;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  margin: 0px;
  display: block;
  letter-spacing: 0.26px;
  text-transform: capitalize !important;
}

.necklace-content .woo-trending-product-title,
.necklace-content .woo-trending-product-price {
  color: #fff !important;
}

.new-arrivals-women-style .woo-trending-product-price {
  font-family: 'DM Sans';
  color: #7B7369;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  margin-bottom: 0px;
  letter-spacing: 0.24px;
  margin-top: 8px;
}

#fine-diamond .woo-trending-main {
  gap: 0px;
  display: flex;
  flex-direction: column;
}

.wc-woo-products-countdown.wc-wo-countdown.style4 {
  display: flex;
  width: max-content;
  gap: 10px;
}


.blog-section .post-date {
  margin-top: 15px !important;
}

.vp-product-gallery-slider,
.slick-list.draggable {
  max-width: 100%;
}

.cwp-row.grid-view.vp-product-slider,
.vp-product-gallery-slider.slick-slider {
  margin: 0px;
}



@media (max-width: 767px) {
  .woomen-blogs-grid-content {
    gap: 15px;
  }

  .woo-item-slider-image-main.style-17 .woo-item-image {
    height: auto;
  }

  .watches-newsletter-form .cwp-form-submit-container {
    padding-right: 12px !important;
    width: 20%;
  }

  .jewelry-card .cwp-row .cwp-col-12 {
    width: 100% !important;
  }

  .new-arrivals-women-style .woo-trending-product-price {
    margin-bottom: 0px;
  }

  .jewelry-news-letter-form .cwp-form-submit-container {
    position: relative !important;
    padding-right: 12px !important;
    width: 18%;

  }

  .jewelry-news-letter-form .cwp-form-submit-container {
    position: relative !important;
    padding-right: 10px !important;
    width: 31%;
  }

  .jewelry-news-letter-form form .tab-content {
    width: 60%;
  }

  .style-vertical-mobile .slick-dots {
    display: flex !important;
  }

  .woomen-product-gallery .slick-arrow {
    width: 40px !important;
    border-radius: 50%;
    height: 40px !important;
    padding: 14px;
    font-size: 13px;
    background-color: #000;
    color: #fff;
    top: 50%;
    transform: translatey(-50%);
    left: 25px;
  }


  .cwp-grids-container .col-12.product {
    width: 50% !important;
  }



  .cwp-archive-container {
    padding: 0 !important;
  }

  .cwp-row.grid-view {
    margin: 0;
    padding: 10px;
  }

  .woomen-product-gallery .slick-next {
    right: 25px;
    left: unset;
  }

  .woomen-product-gallery .gallery-item {
    background-color: #f6f6f6;
    height: 300px;
  }

  body #woomen-bridge-form {
    width: 100% !important;
    flex-direction: column;
    padding: 0;
  }

  body #woomen-bridge-form .form-text-box {
    width: 100% !important;
  }

  #woomen-bridge-form .cwp-frontend-section-content-container {
    padding: 0;
    margin: 0 !important;
  }

  #woomen-bridge-form .cwp-field-container.cwp-field-email.form-group {
    padding: 0 !important;
  }

  .cwp-custom-form .cwp-frontend-section-container {
    margin-bottom: 0;
  }

  /* blogs  */
  .woo-blog-style-3 .woo-blog-style-3-tuhmb img {
    height: auto !important;
  }

  .woo-blog-style-3-title {
    line-height: 17px;
    margin-bottom: 13px;
    font-size: 11px;
  }

  .demo-20 form .cwp-form-submit-container::after {
    right: 23px !important;
  }


}

@media (max-width: 500px) {
  .woomen-blogs-grid-content {
    gap: 10px;
  }

  .woomen-replace-colls1 .cwp-row .col-12 {
    width: 100%;
  }

  body .wc-woo-img-comp-responsive img,
  body .wc-woo-img-comp-slider,
  body .wc-woo-img-comp-container {
    height: 350px !important;
    min-height: 350px !important;
  }

  .wc-woo-products-countdown {
    flex-wrap: wrap !important;
    width: 100% !important;
  }

  .wc-woo-icon-products .product-hover-cards {
    left: -50%;
    right: 0;
  }

  .demo-20 form .cwp-form-submit-container::after {
    right: 12px !important;
  }
}

/* woocommerce starts fonts  */
.woocommerce .star-rating::before,
.woocommerce .star-rating span::before {
  font-family: WooCommerce;
}

/*------------------- About History --------------*/
.aboutUs-history-slider-content .slick-list.draggable {
  overflow: visible !important;
}

.aboutUs-history-slider-content .slick-slide {
  margin-right: 30px;
}

.aboutUs-history-slider-numbers .slick-list.draggable,
.aboutUs-history-slider-numbers .slick-track {
  width: 100% !important;
}

.aboutUs-history-slider-numbers .slick-slide {
  width: 25% !important;
  cursor: pointer;
  padding-top: 27px;
  position: relative;
}

.aboutUs-history-slider-numbers .slick-slide:before {
  content: '';
  background: #F7F7F7;
  height: 3px;
  width: 100%;
  display: block;
  transition: .3s;
  position: absolute;
  top: 0;
  left: 0;
}

.aboutUs-history-slider-numbers .slick-slide.slick-active.active:before {
  background: #1D1D1D;
}

/*---- Quick Checkout (All Styles)----------*/
.wc-woomen-card-quick-checkout-popup .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button,
.wc-woomen-card-quick-checkout-popup .variations_form.cart .woocommerce-variation-add-to-cart .WM-buy-now-button-container {
  width: calc(100% / 2 - 5px);
  margin-top: 8px !important;
}

.wc-woomen-card-quick-checkout-popup .variations_form.cart .woocommerce-variation-add-to-cart .WM-buy-now-button-container .buy-now-button {
  width: 100%;
  background: #000;
  border: 1px solid #000;
  border-radius: 0px;
  height: 54px;
  font-size: 13px;
  font-weight: 600;
  line-height: 16.38px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
  padding: 19px 15px;
  transition: 0.3s;
  position: relative;
  color: #fff !important;
}

.wc-woomen-card-quick-checkout-popup .variations_form.cart .woocommerce-variation-add-to-cart .WM-buy-now-button-container .buy-now-button:hover {
  background-color: #fff !IMPORTANT;
  color: #1d1d1d !important;
}

.wc-woomen-card-quick-checkout-popup .woocommerce-variation-add-to-cart {
  gap: 10px;
}

.wc-woomen-card-quick-checkout-popup .woocommerce-variation-add-to-cart .quantity {
  display: none !important;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .wc-woomen-card-popup-details-main p {
  margin-bottom: 10px;
  color: #1d1d1d;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .color-swatch::after {
  margin: 0 !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.wc-woomen-card-quick-checkout-popup.style3-combine .color-swatch {
  position: relative;
}

.wc-woomen-card-quick-checkout-popup.style3-combine .wc-woomen-card-popup-details-main .wc-woomen-size-guide-link {
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #767676;
  margin-top: 0 !important;
  cursor: pointer;
  position: absolute;
  top: 9px;
  right: 0;
}

.single_variation_wrap {
  position: relative;
}

.wm-product-attributes {
  position: relative;
}

.attribute-heading {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.wc-woomen-card-quick-checkout-popup .price {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: rgba(29, 29, 29, 1);
  display: flex;
}

.wc-woomen-card-quick-checkout-popup .price bdi {
  font-weight: 500;
}

.wc-woomen-card-quick-checkout-popup .price {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: rgba(29, 29, 29, 1);
  display: flex;
}

.wc-woomen-card-quick-checkout-popup .price bdi {
  font-weight: 500;
}

.wc-woomen-card-quick-checkout-popup.style2-combine.active .wc-woomen-card-popup-details-setup .color-swatch {
  position: relative;
}

.wc-woomen-card-quick-checkout-popup.style2-combine.active .wc-woomen-card-popup-details-setup .color-swatch::after {
  margin: 0 !important;
  left: 48%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.wc-woomen-size-guide-link2 {
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1D1D1D;
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: 0;
  margin-top: 22px;
  cursor: pointer;
  z-index: 999999;
}

.wc-woomen-card-quick-checkout-popup.style2-combine .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  color: #1d1d1d !important;
}

.wc-woomen-card-quick-checkout-popup.style2-combine .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button:hover {
  color: #fff !important;
}

.wc-woomen-card-quick-checkout-popup.style1 .variations_form.cart .woocommerce-variation-add-to-cart,
.wc-woomen-card-quick-checkout-popup.style1 .variations_form.cart .woocommerce-variation-add-to-cart {
  flex-direction: column !important;
  gap: 0;
}

.wc-woomen-card-quick-checkout-popup.style1 .variations_form.cart .woocommerce-variation-add-to-cart .WM-buy-now-button-container,
.wc-woomen-card-quick-checkout-popup.style1 .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button,
.wc-woomen-card-quick-checkout-popup.style2-combine .variations_form.cart .woocommerce-variation-add-to-cart .WM-buy-now-button-container,
.wc-woomen-card-quick-checkout-popup.style2-combine .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  width: 100%;
}

.wc-woomen-card-quick-checkout-popup.style2-combine tr,
.wc-woomen-card-quick-checkout-popup.style2-combine td,
.wc-woomen-card-quick-checkout-popup.style2-combine th {
  border: unset !important;
  border-bottom: 1px solid #ddd !important;
}

.wc-woomen-card-quick-checkout-popup.style2-combine tbody {
  border: unset !important;
}

.wc-woomen-card-popup-details-main {
  position: relative;
}

.wc-woomen-card-quick-checkout-popup .variations_form.cart .woocommerce-variation-add-to-cart .buy-now-button.disabled,
.wc-woomen-card-quick-checkout-popup .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button.disabled {
  background-color: #ddd ! IMPORTANT;
  pointer-events: none !important;
  border-color: #ddd ! IMPORTANT;
  cursor: not-allowed;
  color: #000 !important;
}

.woo-shop-look-main .woocommerce-variation-add-to-cart {
  flex-wrap: wrap;
}

.woo-shop-look-card-content .woo-shop-look-action .buy-now-button {
  color: #fff !important;
}

.woocommerce .cart-collaterals .cross-sells,
.woocommerce-page .cart-collaterals .cross-sells.cubewp-woo-sells .col-6 {
  padding: 2px;
}

.woocommerce .cart-collaterals .cross-sells,
.woocommerce-page .cart-collaterals .cross-sells.cubewp-woo-sells .products.columns-2 {
  gap: 0;
}

.single-vp-sidebar-top-sticky {
  position: sticky !important;
  top: 50px;
}