/*
Theme Name: Genesys
Theme URI: https://kotuko.it
Author: Koutko S.R.L
Author URI: https://kotuko.it/
Description:  Designed for Genesys By Kotuko S.R.L
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: genesys
Requires at least: 4.7
Requires PHP: 8.1
Tested up to: 8.3
Tags: blog, custom-menu, featured-images, threaded-comments, translation-ready, right-sidebar, custom-background, e-commerce, theme-options, sticky-post, full-width-template
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
# Woocommerce
# Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

:root {
  --content-width: 1440px;
  --inner-content-width: 1392px;
  --beta-banner: 0px;
  /* 0px for production 30px for beta */
  --top-margin: 113px;
  /* 143px for production 113px for beta */
}

@media (max-width: 1200px) {
  :root {
    --content-width: calc(100% - 50px);
    --inner-content-width: calc(100% - 50px);
  }
}

@media (max-width: 768px) {
  :root {
    --content-width: 100%;
    --inner-content-width: 100%;
  }
}

@media (max-width: 1440px) {
  .overalls-container {
    padding: 0px 25px;
  }
}

body {
  margin: 0;
  -webkit-font-smoothing: auto;
  font-family: 'DM Sans';
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

i,
span.fas,
span.far,
span.fal,
span.fad,
span.fab {
  font-weight: 900;
}

/*--------------------------------------------------------------
# Media Query
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Notebook
--------------------------------------------------------------*/
@media only screen and (max-width: 1280px) {
  html {
    font-size: 95%;
  }
}

@media screen and (max-width: 1199px) {
  .navbar-dark .dropdown-item {
    color: #fff;
  }

  .navbar-nav .dropdown-menu {
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .product .summary {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
}

/*--------------------------------------------------------------
## Netbook
--------------------------------------------------------------*/
@media only screen and (max-width: 1024px) {
  html {
    font-size: 90%;
  }
}

/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 960px) {
  html {
    font-size: 85%;
  }
}

/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  html {
    font-size: 80%;
  }
}

/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 480px) {
  html {
    font-size: 75%;
  }
}

svg path {
  color: var(--wp--preset--color--black);
}

div.banner {
  position: fixed;
  width: 100%;
  z-index: 20;
  top: 0;
  left: 0;
  height: var(--beta-banner);
  background: var(--wp--preset--gradient--sfuma-chiari);
  color: var(--wp--preset--color--black);
  line-height: 30px;
  font-size: 14px;
  text-align: center;
  font-family: 'DM Sans';
}

/* General Header Styles */
.site-header {
  background-color: var(--wp--preset--color--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 20;
  top: var(--beta-banner);
  left: 0;
}

.main-menu li a[aria-current="page"] {
  color: var(--wp--preset--color--violamain) !important;
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  padding: 0px;
  box-shadow: 0px 0px 8px 0px #00000014;
}

.header-container .row {
  max-width: var(--content-width);
  width: calc(100% - 50px);
  justify-content: space-between;
  align-items: center;
}

.border-line {
  width: 100%;
  margin: auto;
  border-bottom: 1px solid var(--wp--preset--color--lightgrey);
}

.header-container .logo-container {
  padding: 16px 0px;
  margin: auto;
}

.header-container .menu-container {
  height: 40px;
  max-width: 1440px;
  width: calc(100% - 50px);
  align-items: center;
}

/* Logo */
.logo img {
  width: 270px;
  /* Adjust as necessary */
}

/* Cart icon header */

.header-mini-cart {
  margin-right: 20px;
  position: relative;
}

.header-mini-cart button {
  background: transparent;
  border: none;
  height: 40px;
  width: 24px;
  padding: 0px;
}

.header-mini-cart button svg path {
  fill: var(--wp--preset--color--black);
}

.header-mini-cart .cart-count {
  position: absolute;
  top: -7px;
  right: -14px;
  height: 24px;
  width: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'DM Sans';
  font-weight: 700;
  line-height: 15.62px;
  font-size: 12px;
  background-color: var(--wp--preset--color--violamain);
  color: var(--wp--preset--color--alwayswhite);
  border-radius: 50%;
}

.shadow {
  box-shadow: 0 0 .4rem rgba(0, 0, 0, .1) !important
}

.mini-cart-dropdown {
  display: none;
  width: 300px;
  transition: 0.5s;
  position: absolute;
  z-index: 1000;
  background-color: var(--wp--preset--color--white);
  padding: 15px;
}

.mini-cart-dropdown.open {
  display: block;
  transform: translate3d(-260px, 5px, 0px);
  left: 0;
}

.mini-cart-dropdown ul {
  list-style: none;
  padding-left: 0px;
}

.mini-profile-container {
  position: relative;
}

.mini-profile {
  padding: 0px 8px;
  height: 40px;
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 99px;
  width: 68px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.mini-profile svg {
  position: absolute;
  right: 10px;
  transition: transform 0.3s ease-in-out;
}

.mini-profile svg path {
  color: var(--wp--preset--color--black);
}

.mini-profile.open svg {
  transform: rotate(180deg);
}

.mini-profile-container .mini-profile-content {
  display: none;
  position: absolute;
  right: 0px;
  top: 40px;
  z-index: 1000;
  background-color: var(--wp--preset--color--white);
  padding: 10px 20px;
  margin-bottom: 0px;
  list-style: none;
  width: 160px;
}

.mini-profile-container .mini-profile-content.open {
  display: block;
}

.mini-profile li {
  padding: 5px 0px;
  border-bottom: 1px solid var(--wp--preset--color--lightgrey);
}

.mini-profile li:last-child {
  border-bottom: none;
}

.mini-profile-container .mini-profile-content a {
  color: var(--wp--preset--color--black);
  font-size: 14px;
  line-height: 28px;
  font-family: 'DM Sans';
  text-wrap: wrap;
  word-wrap: break-word;
}

.mini-profile img {
  height: 24px;
  width: 24px;
  object-fit: cover;
  border-radius: 99px;
}

.empty-product {
  color: var(--wp--preset--color--darkgrey);
  font-size: 1em;
  text-align: center;
  padding: 1em;
}

.woocommerce-mini-cart-item.mini_cart_item {
  height: 47px;
  margin-bottom: 8px;
}

.woocommerce-mini-cart-item.mini_cart_item .remove.remove_from_cart_button {
  float: right;
  font-size: 14px;
  color: var(--wp--preset--color--black) !important;
  margin-top: 5px;
}

.woocommerce-mini-cart-item.mini_cart_item .remove.remove_from_cart_button:hover {
  color: var(--wc-red) !important;
  background: none !important;
}

.mini-cart-item-url {
  float: left;
  font-size: 13px;
  color: var(--wp--preset--color--black) !important;
  font-weight: 700;
  text-decoration: none;
  line-height: 17px;
  width: 90%;
  display: flex;
  gap: 10px
}

.mini-cart-item-url .quantity {
  font-size: 13px;
  font-weight: 400;
  color: var(--wp--preset--color--darkgrey);
}

.mini-cart-item-url:hover {
  text-decoration: none;
}

.mini-cart-item-url img {
  float: left !important;
  margin: 0px !important;
  width: 34px !important;
  height: 34px !important;
  object-fit: cover;
}

.mini-cart-item-url .quantity-section {
  width: calc(100% - 44px);
}

.mini-cart-item-url .quantity-section p.product-name {
  font-size: 14px;
  line-height: 19.2px;
  font-weight: 600;
  color: var(--wp--preset--color--black);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mini-cart-price {
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;
  color: var(--wp--preset--color--darkgrey);
}

.woocommerce-mini-cart__total.total {
  margin: 15px 0px;
  border-top: 1px solid var(--wp--preset--color--lightgrey);
  border-bottom: 1px solid var(--wp--preset--color--lightgrey);
  font-size: 14px;
  line-height: 32px;
  color: var(--wp--preset--color--darkgrey);
}

.woocommerce-mini-cart__buttons.buttons {
  text-align: right;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 0px;
  color: var(--wp--preset--color--black);
}

.woocommerce-mini-cart__buttons.buttons a {
  color: var(--wp--preset--color--black) !important;
  background: none !important;
  padding: 0px;
  border: none !important
}

.woocommerce-mini-cart__buttons.buttons a:hover {
  color: var(--wp--preset--color--violamain) !important;
  text-decoration: none !important;
}

.woocommerce-mini-cart__buttons.buttons a:first-child {
  margin-right: 10px;
}


/* Navigation Menu */
.main-menu {
  display: flex;
  list-style: none;
  padding: 0px;
  align-items: center;
  height: 40px;
  margin: 0px;
}

nav.primary-nav {
  display: flex;
  height: 40px;
  align-items: center;
}

.menu-icon {
  padding: 0px 16px;
  border-right: 1px solid var(--wp--preset--color--lightgrey);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-icon img {
  height: 24px;
  width: 24px;
}

.main-menu .menu-item {
  padding: 0px 24px;
  line-height: 14.4px;
  font-weight: 700;
  font-family: DM Sans;
  font-size: 12px;
  text-align: center;
}

.main-menu .menu-item:first-child {
  padding-left: 0px;
}

.main-menu li a {
  color: var(--wp--preset--color--black) !important;
  text-decoration: none;
}

.main-menu li a:hover {
  color: var(--wp--preset--color--violamain) !important;
}

/* Search Bar */
.header-search {
  display: flex;
  align-items: center;
  gap: 0px;
  position: relative;
  width: 480px;
  max-width: 40%;
  box-shadow: 0px 0px 8px 0px #00000014;
  border-radius: 99px;
}

.search-categories {
  padding: 8px 32px 8px 16px;
  border-radius: 99px;
  border: none;
  line-height: 18.23px;
  font-family: "DM Sans";
  font-size: 14px;
  background-color: var(--wp--preset--color--violamain);
  color: var(--wp--preset--color--alwayswhite);
  z-index: 1;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("assets/icons/caret.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) center;
  max-width: 180px;
}

.header-search input,
.search-box input {
  padding: 8px 12px 8px 38px;
  font-weight: 400px;
  margin-left: -30px;
  font-size: 14px;
  font-style: italic;
  line-height: 18.23px;
  border-radius: 99px;
  background: var(--wp--preset--color--darkwhite);
  color: var(--wp--preset--color--darkgrey);
  border: none;
  width: calc(100% - 102px);
  outline: 0;
}

.search-btn {
  color: var(--wp--preset--color--azzurro);
  /* Azzurro */
  border: none;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  background: none;
}

.search-btn .search-icon {
  font-size: 18px;
}

/* User Menu */
.user-menu {
  font-size: 16px;
  line-height: 20px;
  display: flex;
  gap: 16px;
  margin-right: 32px;
  align-items: center;
  color: var(--wp--preset--color--grey);
}

.user-menu a {
  color: var(--wp--preset--color--black);
  text-decoration: none;
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;

}

.user-menu a:hover {
  color: var(--wp--preset--color--violamain);
  /* Viola Main Color */
}

.dark-mode-toggle {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 50px;
  margin-left: 10px;
  color: var(--wp--preset--color--black);
  cursor: pointer;
}

.account-buttons {
  display: flex;
  align-items: center;
  justify-content: end;
}

/* Dark Mode Toggle */
.dark-mode-toggle button {
  background-color: transparent;
  border: none;
  font-size: 24px;
}

body.dark-mode {
  background-color: #121212 !important;
  color: #ffffff !important;
}

.dark-mode a {
  color: #bb86fc !important;
}

.dark-mode .header,
.dark-mode .footer {
  background-color: #1f1f1f !important;
}

.slider-container,
.main-content-container,
.shop-container,
.subscriptions-container,
.news-container {
  margin-top: var(--top-margin) !important;
  overflow: hidden;
}

.only-mobile {
  display: none;
}

.mobile-search {
  display: none;
}

#open-category {
  display: none;
}

.content-area,
.single-post-container {
  margin-top: var(--top-margin) !important;
  padding-top: 25px !important;
  min-height: calc(100vh - 697px);
}


/* Login Page CSS */
.login-container,
.register-container {
  text-align: center;
  max-width: 1460px;
  width: 100%;
  margin: auto;
  padding: 80px 230px;
  color: #FFFFFF;
  font-family: 'DM Sans';
  margin-top: var(--top-margin) !important;
}

.logo h1 {
  font-size: 2rem;
  background: linear-gradient(116.12deg, #00BFFF 16.45%, #FF6EFF 83.55%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.login-title,
.register-title {
  font-size: 32px;
  font-weight: 400px;
  line-height: 38.4px;
  background: var(--wp--preset--gradient--sfuma);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.login-subtitle,
.register-subtitle {
  font-size: 14px;
  line-height: 22.4px;
  color: var(--wp--preset--color--darkgrey);
  margin-bottom: 32px;
}

.login-form,
.register-form {
  font-family: 'DM Sans';
}

.login-form label,
.register-form label {
  display: block;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  line-height: 15.62px;
  text-transform: uppercase;
  color: var(--wp--preset--color--darkgrey);
  margin-top: 0px;
}

.login-form input,
.register-form input {
  width: 100%;
  padding: 2px 8px;
  border: 1px solid var(--wp--preset--color--lightgrey);
  color: var(--wp--preset--color--black);
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  line-height: 18.23px;
  margin-bottom: 15px;
  outline: none;
  border-radius: 4px;
}

.login-form input.error,
.register-form input.error {
  border: 1px solid #D32F2F;
}

.forgot-password {
  text-align: right;
  display: block;
  font-size: 14px;
  font-family: 'DM Sans';
  line-height: 18.23px;
  text-decoration: none;
  color: var(--wp--preset--color--violamain);
  margin-bottom: 20px;
}

.login-button,
.signup-button {
  background-color: var(--wp--preset--color--violamain);
  color: var(--wp--preset--color--white);
  padding: 0px 24px;
  height: 40px;
  width: 100%;
  border: none;
  border-radius: 99px;
  font-size: 14px;
  line-height: 18.23px;
  cursor: pointer;
  transition: 0.3s ease;
}

.login-button span,
.signup-button span {
  margin-left: 8px;
  font-weight: 700;
}

.social-login-title {
  font-family: DM Sans;
  color: var(--wp--preset--color--black);
  font-size: 14px;
  font-weight: 700;
  line-height: 18.23px;
  text-align: center;
  margin: 16px 0px 8px 0px;

}

.social-login button {
  font-family: DM Sans;
  font-weight: 700;
  width: 100%;
  padding: 0px 24px;
  border: 1px solid #11001C;
  height: 40px;
  line-height: 39px;
  border-radius: 99px;
  color: #11001C;
  background: transparent;
  cursor: pointer;
  margin: 8px 0px;
}

.social-login button img {
  height: 24px;
  width: 24px;
  object-fit: contain;
  margin-right: 5px;
}

.register-link,
.login-link {
  width: calc(50% - 8px);
  height: 40px;
  padding: 0px 24px 0px 24px;
  border-radius: 99px;
  border: 1px solid var(--wp--preset--color--black);
  color: var(--wp--preset--color--black);
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 38px;
  margin: 0px;
}

.register-link a,
.login-link a {
  color: var(--wp--preset--color--black);
  text-decoration: none;
  text-align: left;
}

.register-link:hover{
  border: 1px solid var(--wp--preset--color--violamain);
  color: var(--wp--preset--color--violamain);
}

.creator-button {
  background: var(--wp--preset--color--violamain);
  color: var(--wp--preset--color--white);
  border: none;
  width: calc(50% - 8px);
  height: 40px;
  border-radius: 99px;
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

.creator-button:hover {
  color: var(--wp--preset--color--white);
}

hr {
  border: none;
  border-bottom: 1px solid var(--wp--preset--color--lightgrey);
  margin: 16px 0px 16px 0px;
}

.double-botton-holder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.field-group {
  display: flex;
  gap: 16px;
}

.field-group.image-field {
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.field-group .image-selector {
  width: 120px;
  height: 120px;
  display: flex;
  position: relative;
  background: #00000033;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
}

.image-selector img {
  height: 120px;
  width: 120px;
  border-radius: 99px;
  object-fit: cover;
  z-index: 1;
}

.image-selector input {
  height: 32px;
  width: 32px;
  opacity: 0;
  right: 0;
  bottom: 0;
  border-radius: 99px;
  position: absolute;
  z-index: 3;
  margin: 0px;
  padding: 0px;
  cursor: pointer;
}

.image-selector button {
  height: 32px;
  width: 32px;
  right: 0;
  bottom: 0;
  border-radius: 99px;
  position: absolute;
  z-index: 2;
  margin: 0px;
  font-size: 16px;
  line-height: 16px;
  padding: 0px;
  border: 1px solid var(--wp--preset--color--lightgrey);
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--black);
  cursor: pointer;
}

.input-field {
  flex-basis: 100%;
}

.privacy-field,
.terms-field {
  margin-bottom: 10px;
}

.terms-field,
.privacy-field {
  display: flex;
}

.terms-field label,
.privacy-field label {
  display: flex;
  font-family: 'DM Sans';
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}

.terms-field label a,
.privacy-field label a {
  margin-left: 5px;
}

.terms-field input,
.privacy-field input {
  display: inline;
  height: 16px;
  width: 16px;
  margin: 0px 16px 0px 0px;
}

.message-box {
  position: absolute;
  right: 20px;
  top: 170px;
  border-radius: 99px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  line-height: 24px;
  font-family: DM Sans;
  padding: 8px 24px;
  height: 40px;
  text-align: center;
  transition: 0.3s ease;
}

.message-box p {
  margin: 0px;
}

.message-box.success {
  background-color: #DFF2BF;
  color: var(--wp--preset--color--violamain);
}

.message-box.error {
  background-color: #FFEBEE;
  color: #D32F2F;
}

/* Single product page */

.woocommerce div.product {
  display: flex;
}

#main-carousel .splide__slide img {
  max-height: 350px !important;
  cursor: zoom-in !important;
  border-radius: 16px;
  border: 1px solid var(--wp--preset--color--lightgrey);
}

#thumbnail-carousel {
  margin-top: 10px;
}

#thumbnail-carousel .splide__slide img {
  border-radius: 16px;
  border: 1px solid #F3F3F3;
}

.splide__arrow--prev {
  left: -1rem !important;
  background: #fff;
  box-shadow: 0px 0px 8px 0px #00000014;
}

.promo-video {
  width: 100%;
  height: 300px;
  margin-top: 20px;
}

.promo-video video {
  border-radius: 16px;
  border: 1px solid var(--wp--preset--color--lightgrey);
}


.splide__arrow--next {
  right: -1rem !important;
  background: #fff;
  box-shadow: 0px 0px 8px 0px #00000014;
}

.related.products {
  margin-top: 100px;
}

.related.products h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 33.6px;
}

.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splide__slide {
  opacity: 0.6;
}


.splide__slide.is-active {
  opacity: 1;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: none !important;
}

.woocommerce-product-gallery {
  width: calc(30% - 25px) !important;
  float: left;
}

.woocommerce-product-gallery .flex-viewport {
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 16px;
  height: 300px !important;
}

.woocommerce-review-link {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  color: var(--wp--preset--color--black);
}

.woocommerce .star-rating {
  font-size: 20px;
  margin-top: 5px !important;
  margin-right: 5px !important;
}

.woocommerce .star-rating span::before {
  color: #FFD600;
}

.woocommerce-product-rating {
  margin-bottom: 10px !important;
}

.product .summary {
  width: calc(50% - 25px);
  float: left !important;
  margin-left: 50px;
  margin-right: 25px;
  margin-top: 0px !important;
}

.summary .top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.hide {
  display: none;
}

.summary .product-categories {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 700;
  line-height: 14.4px;
  text-align: left;
  color: var(--wp--preset--color--black);
}

.product_title {
  font-family: DM Sans;
  font-size: 28px;
  font-weight: 700;
  line-height: 33.6px;
  text-align: left;
  margin: 0px 0px 10px 0px;
  border: none !important;
  color: var(--wp--preset--color--black);
}

.product-id {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 500;
  line-height: 19.2px;
  text-align: left;
  color: var(--wp--preset--color--darkgrey);
  margin-bottom: 5px;
}

.visitor-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.visit-office {
  background: var(--wp--preset--color--violamain);
  color: var(--wp--preset--color--white);
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 700;
  line-height: 19.2px;
  text-align: left;
  border-radius: 8px;
  padding: 4px 8px;
  text-decoration: none;
}

.visit-office:hover {
  text-decoration: none;
  color: var(--wp--preset--color--white);
}

.visit-office img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.latest-comment {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
  color: var(--wp--preset--color--darkgrey);
}

.woocommerce div.product form.cart .variations {
  margin-top: 10px;
}

.variations label {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 500 !important;
  line-height: 15.62px;
  text-align: left;
  color: var(--wp--preset--color--darkgrey);
  text-transform: uppercase;
}

.variant-card {
  border: 1px solid #F3F3F3;
  border-radius: 8px;
}

.variant-card .variant-card-header {
  border-bottom: 1px solid #F3F3F3;
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 18.23px;
  padding: 10px 20px;
  color: var(--wp--preset--color--darkgrey);
}

.variant-card .variant-content-container {
  padding: 0px;
}

.variant-card .variant-content-container .read-more-container {
  position: relative;
  width: 100%;
  margin: 0px;
  margin-bottom: 10px;
}

.variant-content-container p.read-more-header {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.23px;
  padding-left: 15px;
  margin-bottom: 5px;
}

.variant-card .variant-content-container .content,
.view-nft-details .content {
  position: relative;
  max-height: 80px;
  min-height: 80px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.variant-card .variant-content-container .blur-overlay,
.view-nft-details .content .blur-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
}

.variant-card .variant-content-container .read-more-btn,
.view-nft-details .read-more-btn {
  color: var(--wp--preset--color--violamain);
  border: none;
  cursor: pointer;
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 700;
  line-height: 19.2px;
  text-align: left;
  text-decoration: none;
  padding: 20px;
}

.variant-card .variant-content-container .read-more-btn {
  text-decoration: none;
  color: var(--wp--preset--color--violamain);
}

.view-nft-details .read-more-btn {
  padding: 0px !important;
}

.value.d-flex.flex-wrap {
  gap: 8px;
}

.desc-tabs {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
  padding: 0px 15px;
  margin: 10px 0px 0px;
}

.variation-detail {
  padding: 15px;
}

.variation-image-container {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 8px;
  padding: 10px !important;
}

.variation-detail p {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  margin: 0px;
  color: #0F0F10;
}

.dimensions-div {
  border-left: 1px solid var(--wp--preset--color--lightgrey);
  padding: 10px 10px;
  margin-left: 10px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
}

.variation-detail p span {
  font-weight: 600;
}

.variation-image-container img {
  height: 120px;
  width: 160px;
  object-fit: cover;
}

.product-tab.tab-2 {
  width: 50%;
}

.home-card-title {
  color: unset;
}

.home-card-title:hover {
  color: unset;
}

.part-button {
  padding: 10px 8px;
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.23px;
  color: #0F0F10;
  background: var(--wp--preset--color--white);
  border-radius: 4px;
  width: calc(25% - 6px);
  border: 1px solid var(--wp--preset--color--lightgrey);
  word-wrap: break-word;
  overflow: hidden;
}

.part-button.selected,
.part-button.hover {
  border: 1px solid #2A2A2A;
}

.variations select.hide {
  display: none !important;
}

.variations tr {
  display: flex;
  flex-direction: column;
}

.variations select {
  height: 40px;
  width: 100%;
  padding: 2px 8px 2px 8px;
  gap: 0px;
  border-radius: 4px;
  border: 1px solid var(--wp--preset--color--lightgrey);
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.23px;
}

.price-card {
  margin: 10px 0px;
  padding: 10px;
}

.price-card form.cart {
  margin-bottom: 0px !important;
}

.single-price {
  font-family: DM Sans;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 10px;
}

span.price-title {
  font-weight: 400;
}

.accordion {
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 8px;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 5px;
}

.accordion-content {
  display: none;
  padding: 15px 0px 0px 0px;
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.accordion-item.active .accordion-content {
  display: block;
}

.parts {
  gap: 10px;
}

.part {
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 8px;
  width: calc(33.33% - 7px);
}

.part img {
  height: 120px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0px 0px;
}

.woocommerce-product-rating {
  display: flex !important;
  align-items: center;
}

.woocommerce-product-rating .woocommerce-product-rating .star-rating {
  margin-right: 10px !important;
}

.part p {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-align: center;
  padding: 0px 10px;
  margin: 15px 0px 50px 0px;
}

.arrow {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
  margin-right: -13px;
  height: 17px !important;
}

.accordion-header.active .arrow {
  transform: rotate(360deg);
}

.parts {
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}

.total-price .bold-price {
  font-weight: 700;
}

.total-price .total-price-title {
  font-weight: 400 !important;
}

.flex-control-nav-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.single-product .flex-control-nav {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  white-space: nowrap;
  gap: 15px;
}

.single-product .flex-control-nav li {
  flex: 0 0 auto;
  /* Prevents thumbnails from shrinking */
}

/* .woocommerce-product-gallery{
  height: 500px;
} */

.woocommerce-product-gallery .flex-control-nav {
  margin-top: 15px !important;
}

.woocommerce-product-gallery .flex-direction-nav {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0px;
  margin-left: -14px;
  margin-right: -14px;
  position: absolute;
  width: calc(100% + 28px);
  bottom: 36px;
  margin-bottom: 0px;
}

.woocommerce-product-gallery .flex-direction-nav li {
  box-shadow: 0px 0px 8px 0px #00000014;
  width: 28px;
  height: 28px;
  background: var(--wp--preset--color--white);
  padding: 10px;
  border-radius: 99px;
  position: relative;
}

/* Style the custom chevron icons */
.woocommerce-product-gallery .flex-direction-nav a {
  position: absolute;
  left: -6px;
  top: -12px;
  font-weight: 700;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  text-decoration: none;
  border: 15px solid transparent;
}

.single-product .woocommerce-breadcrumb {
  display: none;
}


.content-area {
  max-width: var(--content-width);
  width: calc(100% - 50px);
  margin: 50px auto;
  min-height: calc(100vh - 565px);
}

#page {
  background: var(--wp--preset--color--white);
  padding-bottom: 50px;
}

footer {
  position: static;
  width: 100%;
  bottom: 0px;
  overflow: hidden;
}

.entry-footer {
  display: none;
}


/* Sidebar styles*/
.shop-container {
  display: flex;
  max-width: var(--content-width);
  align-items: flex-start;
  margin: 0px auto;
  gap: 20px;
  position: relative;
}

.custom-sidebar {
  width: 270px;
  padding: 20px !important;
  box-shadow: 0px 8px 8px 0px #00000014;
  padding: 16px;
  gap: 0px;
  border-radius: 0px 0px 16px 0px;
}

.shop-main-content {
  width: calc(100% - 290px);
  min-height: 650px;
}

.filter-item {
  margin-bottom: 20px;
}

.checkbox-filter {
  display: flex;
  flex-direction: column;
  align-self: start;
  justify-content: center;
}

.checkbox-filter label {
  display: flex;
  align-items: center;
}

.checkbox-filter label input {
  margin-right: 5px;
}

.filter-item label {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 500;
  line-height: 15.62px;
  text-align: left;
  color: var(--wp--preset--color--black);
}

label.bold {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 700;
}

.filter-item select,
.filter-item input[type="range"] {
  background: var(--wp--preset--color--darkwhite);
  width: 100%;
  margin-bottom: 8px;
  border: 1px solid var(--wp--preset--color--lightgrey);
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.23px;
  text-align: left;
  color: var(--wp--preset--color--black);
}

.filter-item select {
  height: 40px;
  padding: 2px 8px 2px 8px;
  gap: 0px;
  border-radius: 4px 0px 0px 0px;
  border: 1px solid var(--wp--preset--color--lightgrey);
}

.filter-button {
  display: block;
  padding: 6px 10px;
  background: transparent;
  color: var(--wp--preset--color--darkgrey);
  text-align: center;
  border: none;
  border-radius: 99px;
  cursor: pointer;
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.23px;
}

.filter-new-button {
  background: var(--wp--preset--color--white);
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 18.23px;
  color: var(--wp--preset--color--darkgrey);
  border: none;
}

.filter-new-button.selected {
  color: var(--wp--preset--color--white);
  background: var(--wp--preset--color--violamain);
  border-radius: 99px;
  padding: 4px 10px;
}

.range-slider {
  position: relative;
  margin-top: 10px;
  width: 100%;
  height: 30px;
}

.range-slider input[type="range"] {
  z-index: 11;
  position: absolute;
  width: 100%;
  height: 8px;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
}

input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  width: 16px;
  height: 16px;
  background: var(--wp--preset--color--violamain);
  border-radius: 50%;
  cursor: pointer;
  z-index: 12;
  -webkit-appearance: none;
  appearance: none;
}

.range-slider .slider-track {
  position: absolute;
  height: 8px;
  background: var(--wp--preset--color--lightgrey);
  border: 1px solid var(--wp--preset--color--darkgrey);
  border-radius: 4px;
  width: 100%;
  z-index: 1;
}

.range-slider .slider-progress {
  position: absolute;
  height: 8px;
  background: var(--wp--preset--color--violamain);
  border-radius: 3px;
  width: 100%;
  z-index: 2;
}

.price-display {
  display: flex;
  justify-content: space-between;
  font-family: DM Sans;
  font-size: 10px;
  font-weight: 500;
  line-height: 15.62px;
  text-align: center;
  color: var(--wp--preset--color--darkgrey);
}

.price-display span {
  font-size: 1.2em;
}

.products {
  transition: opacity 0.3s ease;
}


.filter-button.selected {
  background-color: #0073aa;
  color: white;
}

.filter-button:hover {
  background-color: #005a87;
  color: white;
}

#copies-value,
#price-value {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 500;
  line-height: 15.62px;
  text-align: center;
  color: var(--wp--preset--color--darkgrey);
}

.shop-main-content {
  padding-top: 20px;
  padding-right: 60px;
}

.favorite-page .shop-main-content {
  margin: 0px 130px;
}

.woocommerce-result-count {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.83px;
  text-align: left;
  color: var(--wp--preset--color--black);
  margin-bottom: 0px !important;
  margin-top: 15px !important;
}

.order-label {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 500;
  line-height: 40px;
  margin: 0px 10px 0px 0px;
  text-align: left;
  color: var(--wp--preset--color--darkgrey);
}

.woocommerce-ordering {
  margin-bottom: 20px !important;
}

#orderby-custom {
  height: 40px;
  padding: 2px 8px 2px 8px;
  gap: 0px;
  border-radius: 4px 0px 0px 0px;
  border: 1px solid var(--wp--preset--color--lightgrey);
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.23px;
  text-align: left;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--black);
}

.product-card {
  border-radius: 8px;
  border: 1px solid var(--wp--preset--color--lightgrey);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 10px;
  position: relative;
  width: calc(17.5% - 20px);
  padding-bottom: 40px;
  background: var(--wp--preset--color--white);
}

.product.product-card .onsale,
.woocommerce span.onsale {
  right: auto !important;
  left: 10px !important;
  position: absolute !important;
  top: 15px !important;
  background-color: var(--wp--preset--color--violamain);
  color: var(--wp--preset--color--white);
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 700;
  line-height: 14.4px;
  border-radius: 4px;
  padding: 4px 8px;
  text-align: left;
  min-height: unset;
  min-width: unset;
}


.product-card.slider-card {
  padding: 0px;
}

.product-card-inner {
  display: flex;
  flex-direction: column;
}

.add-to-favorites {
  position: absolute;
  top: 210px;
  right: 10px;
  border: none;
  background: none;
  cursor: pointer;
  outline: 0;
  font-size: 24px;
  color: var(--wp--preset--color--violamain);
}

.add-to-favorites:focus {
  outline: 0;
}

.slider-card .product-image img {
  width: 100%;
  object-fit: cover;
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #cce1ff;
  color: #0044cc;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 20px;
}

.product-image img {
  max-width: 100%;
  height: 200px !important;
  margin: 0px !important;
  object-fit: cover;
}

.product-info {
  display: flex;
  flex-direction: column;
  padding: 18px 12px 50px 12px;
}

.creator-name {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0px;
}

.creator-name img {
  height: 20px !important;
  width: 20px !important;
  border-radius: 10px;
  margin-left: 0px !important;
}

.printable-product ul.variable-items-wrapper,
.printable-product span.woo-selected-variation-item-name {
  display: none !important;
}

.tablepress {
  font-size: 12px;
  font-family: 'DM Sans';
  font-weight: 400;
}

.tablepress strong {
  font-weight: 600;
}

.creator-name a {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 700;
  line-height: 19.2px;
  text-align: left;
  color: var(--wp--preset--color--black);
}

.product-title {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  margin: 10px 0px 15px 0px;
  text-align: left;
  color: var(--wp--preset--color--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-title a,
.product-title a:hover {
  color: var(--wp--preset--color--black);
  text-decoration: none;
}

.product-meta {
  display: flex;
  justify-content: left;
  align-items: center;
}

span.meta-parts {
  margin-right: 10px;
  color: var(--wp--preset--color--darkgrey);
}

span.meta-copies {
  background: rgba(158, 86, 0, 0.08);
  color: rgba(158, 86, 0, 1);
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-align: left;
  padding: 4px 8px;
  border-radius: 4px;
}

.product-meta span {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 700;
  line-height: 14.4px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 3px;
}

.product-price {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.add-to-cart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  background-color: var(--wp--preset--color--violamain);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px;
  font-size: 0.8rem;
}

.add-to-cart a {
  color: #fff;
  background: transparent;
  text-decoration: none;
}

.add-to-cart img {
  height: 24px !important;
  width: 24px !important;
  object-fit: contain;
  margin: 0px !important;
}

.total-price {
  font-family: DM Sans;
  font-size: 20px !important;
  line-height: 24px;
  color: var(--wp--preset--color--black);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 24px;
  margin: 0px 0px 20px 0px;
  display: none;
}

.visible {
  display: block;
}

.total-price .discount {
  color: var(--wp--preset--color--violamain);
}

.total-price .price-main {
  color: var(--wp--preset--color--black) !important;
}

ins {
  text-decoration: none !important;
}

.woocommerce-variation-add-to-cart {
  min-height: 40px;
}

.custom-cart-button {
  height: 40px !important;
  padding: 0px 24px 0px 24px !important;
  gap: 8px;
  border-radius: 99px !important;
  width: calc(100% - 158px);
  margin-left: 10px;
  border: 1px solid var(--wp--preset--color--black) !important;
  font-family: DM Sans !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 18.23px !important;
  background: var(--wp--preset--color--white) !important;
  color: var(--wp--preset--color--black) !important;
}

.nav-tabs {
  border-bottom: none !important;
}

.variations_form.cart {
  margin-bottom: 10px !important;
}

.product-tabbed-layout {
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 8px;
  color: var(--wp--preset--color--darkgrey);
  margin-top: 20px;
}

.product-tab {
  width: 33.3333%;
  background: none !important;
  border: none;
  border-radius: 0 !important;
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 18.23px;
  color: var(--wp--preset--color--darkgrey);
  border-bottom: 1px solid var(--wp--preset--color--lightgrey) !important;
}

.product-tab:first-child {
  border-top-left-radius: 8px !important;
}

.product-tab:hover {
  border: none;
  border-bottom: 3px solid var(--wp--preset--color--violamain) !important;
}

.nav .nav-link.product-tab:focus {
  outline: 0 !important;
}

.product-tab.active {
  font-weight: 700;
  color: var(--wp--preset--color--black);
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 3px solid var(--wp--preset--color--violamain) !important;
}

#nav-description ul,
#nav-safety ul {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  margin: 15px 0px;
  padding-left: 30px;
}

#nav-description ul li::marker,
#nav-safety ul li::marker {
  color: var(--wp--preset--color--violamain);
}

.pdf-container {
  display: flex;
  height: 60px;
  justify-content: space-between;
  align-items: center;
  margin: 40px
}

.pdf-container a {
  color: var(--wp--preset--color--darkgrey);
  font-size: 50px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
}

.pdf-container a:hover {
  color: var(--wp--preset--color--darkgrey);
}

.pdf-container a i {
  font-size: 40px;
  color: #232323;
}

.pdf-container .download-icon i {
  font-size: 24px !important;
}

/* home page css */

.slider-container {
  background: var(--wp--preset--gradient--sfuma-chiari);
}

.slider-overlay {
  padding: 70px 0px 50px 0px;
}

.product-slider .swiper-wrapper {
  max-width: 920px;
  height: 280px;
  margin: auto;
}

.product-slider {
  display: flex;
  overflow: hidden;
  max-height: 280px;
  position: relative;
}

.swiper-slide img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  float: left;
}

.swiper.popularSwiper {
  margin-top: 50px;
}

.swiper.popularSwiper .swiper-wrapper {
  height: auto;
}

.pills-content {
  display: none;
  margin-top: 50px;
}

.pills-content.active {
  display: block;
}

.slide-content {
  float: left;
  height: calc(100% - 80px);
  margin: 40px auto 40px 40px;
  width: calc(100% - 320px);
  color: var(--wp--preset--color--white);
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}

.slide-content .best-seller {
  background: var(--wp--preset--color--darkgrey);
  padding: 4px 8px 4px 8px;
  border-radius: 4px;
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 700;
  line-height: 14.4px;
  text-transform: uppercase;
}

.slide-content h3 {
  font-size: 28px;
  max-width: 600px;
  line-height: 33.6px;
  margin: 0px;
  color: transparent;
  background: var(--wp--preset--gradient--sfuma);
  background-clip: text;
  -webkit-background-clip: text;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slide-content div.content-holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slide-content p {
  font-family: DM Sans;
  max-width: 600px;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin: 0px;
  color: var(--wp--preset--color--black);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.buy-now {
  background-color: var(--wp--preset--color--violamain);
  color: var(--wp--preset--color--alwayswhite);
  border: none;
  padding: 10px 24px;
  cursor: pointer;
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.23px;
  border-radius: 99px;
  margin: 0px;
}

span.meta-parts img {
  height: 16px;
  width: 16px;
  object-fit: contain;
}

.buy-now:hover {
  text-decoration: none;
  color: var(--wp--preset--color--white);
}

.buy-now img {
  width: 24px;
  height: 20px;
  object-fit: contain;
  float: none !important;
  margin-left: 10px;
  margin-top: -5px;
}

.swiper-button-next,
.swiper-button-prev {
  background-image: linear-gradient(135deg, #00BFFF 0%, #FF6EFF 100%);
  background-position: center;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  width: 48px !important;
  height: 48px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px !important;
}

.overalls-container {
  max-width: var(--content-width);
  display: flex;
  margin: 70px auto 0px auto;
  gap: 20px;
}

.overalls-container .card {
  width: 25%;
  padding: 16px;
  gap: 8px;
  border-radius: 16px;
  background: var(--wp--preset--color--white);
}

.overalls-container .card h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  color: var(--wp--preset--color--black);
  text-transform: uppercase;
  margin: 0px 0px 10px 0px;
}

.overalls-container .promotion-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.overalls-container .card.waiting-card {
  background-image: url('assets/image/pro1.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 16px !important;
  border: none !important;
}

.overalls-container .card.waiting-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, white 35%, rgb(255, 255, 255, 0.6) 40%, transparent 70%);
  z-index: 2;
  border-radius: 16px;
}

.overalls-container .card.waiting-card .content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.overalls-container .card.waiting-card a {
  background-color: var(--wp--preset--color--white) !important;
}

.overalls-container .promotion-card h2,
.waiting-card h2 {
  font-family: 'Good Times';
  background-image: var(--wp--preset--gradient--sfuma);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 26px;
  text-align: center;
  margin: 0px;
}

.overalls-container .promotion-card img {
  width: 100%;
  height: auto;
}

.overalls-container .promotion-card p {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  margin-bottom: 0px;
  color: var(--wp--preset--color--darkgrey);
}

.waiting-card p {
  color: var(--wp--preset--color--black) !important;
  margin-top: 5px;
}

.card .recommended-products {
  display: grid;
  grid-template-columns: calc(50% - 5px) calc(50% - 5px);
  grid-row: auto auto;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.card .recommended-products img {
  height: 100px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.card .on-sale-product a {
  display: flex;
  height: 168px;
  gap: 10px;
  text-decoration: none;
  align-items: center;
}

.card .on-sale-product a:hover {
  text-decoration: none;
}

.card .on-sale-product a img {
  height: 168px;
  width: 55%;
  object-fit: cover;
  border-radius: 8px;
}

.card .content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.card .content h4 {
  font-family: DM Sans;
  font-size: 18px;
  line-height: 22px;
  color: var(--wp--preset--color--black);
  font-weight: 700;
  margin-bottom: 10px;
}

.card .content p {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 500;
  line-height: 16.8px;
  margin: 0px;
  color: var(--wp--preset--color--darkgrey);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card .buy-now {
  height: 40px !important;
  margin-top: 10px;
  justify-content: space-between;
}

.card .buy-now img {
  height: 24px !important;
  width: 24px !important;
  object-fit: contain;
}

.hub-container {
  max-width: var(--content-width) !important;
  width: calc(100% - 50px);
  margin: 0px auto;
  padding: 50px 0px;
  border-radius: 16px;
  background: var(--wp--preset--color--white);
}

.info-card {
  background-size: cover;
  background-position: left -100px top -50px;
  ;
  border-radius: 16px;
  border: 1px solid var(--wp--preset--color--lightgrey);
  overflow: hidden;
  position: relative;
  padding: 40px 60px 40px 0px !important;
}

.info-card.first-card {
  background-image: url('assets/image/first_banner.jpeg');
  ;
}

.info-card.second-card {
  background-image: url('assets/image/second_banner.jpeg');
  ;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--gradient--backdrop);
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.5s ease;
}

.info-card-content .buy-now {
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  font-weight: 700;
  height: 60px !important;
}

.info-card .info-card-content {
  position: relative;
  padding-left: 45%;
  /* Push content to the right */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
  box-sizing: border-box;
}

.info-card-content h4 {
  font-weight: 700;
  font-size: 17px;
  line-height: 22.5px;
  color: var(--wp--preset--color--black);
}

.info-card-content p {
  text-align: left !important;
  font-weight: 500;
  color: var(--wp--preset--color--black);
}

.info-card-list {
  padding: 0px;
  list-style: none;
}

.info-card-list span {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 13px;
  line-height: 22.4px;
  color: var(--wp--preset--color--black);
  margin-left: 10px;
}

.info-card-list i {
  font-size: 14px;
  width: 16px;
  color: var(--wp--preset--color--violamain);
}

.info-card-list svg {
  color: var(--wp--preset--color--violamain);
  height: 14px;
  width: 16px;
}

.hub-container .content {
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.hub-container .image img {
  height: 320px;
  width: 100%;
  object-fit: contain;
}

.hub-container h1 {
  font-size: 32px;
  font-weight: 400;
  line-height: 44.8px;
  background-image: var(--wp--preset--gradient--sfuma);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin: 0px 0px 10px 0px;
  padding: 0px;
  text-align: center;
}

.hub-container p {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  color: var(--wp--preset--color--black);
  text-align: center;
  margin-bottom: 40px;
}

.hub-container .content .button {
  height: 40px;
  padding: 10px 24px;
  gap: 8px;
  border-radius: 99px;
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.23px;

}

a:hover {
  text-decoration: none !important;
}

.hub-container .content .button img {
  height: 20px;
}

.button.how {
  border: 1px solid var(--wp--preset--color--black);
  color: var(--wp--preset--color--black);
  margin-right: 20px;
}

.button.buy {
  background: var(--wp--preset--color--violamain);
  color: var(--wp--preset--color--white);
}

.flex-div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.ajax-add-to-cart {
  border: none;
}

.ajax-add-to-cart img {
  margin-left: 10px;
  margin-top: -5px;
}

.printer-container,
.filament-container {
  margin: auto;
  max-width: var(--content-width);
  width: calc(100% - 50px);
}

.filament-container {
  margin-top: 50px;
}

.printer-card {
  position: relative;
  background-image: url('assets/image/printer-background.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  min-height: 308px;
  width: 30%;
  border-radius: 16px;
  border: none;
}

.printer-card .printer-content {
  background: #141920A3;
  border-radius: 16px;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 40px;
  color: var(--wp--preset--color--white) !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.printer-content h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
  margin: 0px;
}

.printer-content p {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: center;
  margin: 0px;
}

.printer-content a {
  height: 40px;
  color: var(--wp--preset--color--white) !important;
  background: transparent;
  border: 1px solid var(--wp--preset--color--white);
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 37px;
  padding: 0px 24px;
  border-radius: 99px;
}

a i {
  margin-left: 5px;
}

.featured-filament-card {
  padding: 30px 20px;
  border-radius: 16px;
  background: var(--wp--preset--gradient--sfuma-chiari);
  border: none;
  height: 100%;
}

.featured-filament-card .product-image img {
  width: 100% !important;
  height: 160px !important;
  object-fit: contain !important;
  height: 100%;
}

.filament-card-inner.row {
  height: 100%;
}

.featured-filament-card .filament-content a {
  font-family: Good Times;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  background: var(--wp--preset--gradient--sfuma);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.filament-card-inner.row .col-lg-6 {
  justify-content: center;
  align-self: center;
}

.filament-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.filament-content .product-title {
  margin-top: 0px;
  margin-bottom: 10px;
}

.filament-content .product-description {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  color: var(--wp--preset--color--darkgrey);
  margin-bottom: 30px;
}

.filament-content a.button {
  color: var(--wp--preset--color--black);
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  height: 40px;
  padding: 10px 20px;
  -webkit-text-fill-color: var(--wp--preset--color--black);
  border-radius: 99px;
}

.filament-products-list h3 {
  display: flex;
  justify-content: space-between;
  font-family: Good Times;
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  color: var(--wp--preset--color--black);
  margin-bottom: 20px;
}

.filament-products-list .flex-div.main-div {
  margin: 0px !important;
  gap: 20px;
}

.filament-products-list .filament-card {
  width: calc(50% - 10px);
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--lightgrey);
}

.filament-card {
  border-radius: 8px;
  padding: 10px 20px;
}

.filament-card .flex-div {
  align-items: center;
  padding-bottom: 45px;
}

.filament-card .product-image img {
  min-width: 160px !important;
  min-height: 100% !important;
  max-width: 160px !important;
  max-height: 100% !important;
  object-fit: cover;
}

.filament-content .product-title {
  white-space: unset !important;
}

.filament-card .product-title {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  width: calc(100% - 180px);
  white-space: unset !important;
}

.filament-card .add-to-cart {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

@media (max-width: 767.98px) {
  .subscriptions{
    margin: 50px 10px 10px !important;
  }


  .selections .col-sm-12.col-lg-4 {
    flex: 0 0 100%;
    max-width: calc(100% - 20px) !important;
  }

  .why-subs-container{
    flex-direction: column;
  }

  .why-subs-container .subscription-title,
  .why-subs-container .why-list{
    width: calc(100% - 10px) !important;
  }

  div.number{
    width: 22px !important;
    height: 22px !important;
    font-size: 12px !important;
  }

  .printer-card {
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .product .summary {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  form[name="checkout"] .woocommerce .col2-set .col-1,
  .woocommerce-page .col2-set .col-1,
  .woocommerce .col2-set .col-1,
  .woocommerce-page .col2-set .col-2 {
    float: left;
    max-width: 100% !important;
    width: 100%;
  }
}

label.checkbox {
  position: relative !important;
  display: block !important;
}

label.checkbox label {
  position: relative !important;
  left: unset !important;
  top: unset !important;
}

label span.optional {
  display: none !important;
}

.new-products-container {
  width: 100%;
  margin: 50px 0px 0px 0px;
  padding: 50px;
  background: var(--wp--preset--gradient--sfuma-chiari);
}

.new-products-content {
  max-width: var(--inner-content-width);
  margin: auto;
}

.new-products-content .title-section {
  display: flex;
  justify-content: space-between;
}

.title-section h3 {
  font-family: Good Times;
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
  margin: 0px;
  color: var(--wp--preset--color--black);
}

.title-section .button {
  border-radius: 99px;
  padding: 0px 24px;
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 38px;
}

.product-slider-content {
  gap: 20px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin-top: 50px;
  position: relative;
  display: flex;
}

.offers-container .product-slider-content {
  opacity: 0;
  display: none;
}

.product-slider-content.active {
  transition: 1s;
  opacity: 1;
  display: flex;
}

.product-slider-content .card {
  min-width: 240px !important;
}

.product-slider-container {
  position: relative;
}

.product-slider-container .slider-nav {
  position: absolute;
  top: 49%;
  border: 2px solid var(--wp--preset--color--violamain);
  border-radius: 50%;
  font-size: 14px;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--violamain);
  padding: 10px 14px;
  z-index: 1;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.slider-nav.left {
  left: -20px;
}

.slider-nav.right {
  right: -20px;
}

.offers-container {
  overflow: hidden;
  margin: 0px;
  background: var(--wp--preset--color--white);
}

.navigation-bar {
  display: flex;
  background-color: transparent;
  border: 1px solid var(--wp--preset--color--lightgrey);
  height: 40px;
  gap: 10px;
  border-radius: 99px;
}

.pills-tab {
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16.8px;
  color: var(--wp--preset--color--darkgrey);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.pills-tab.active {
  background: var(--wp--preset--gradient--sfuma);
  color: var(--wp--preset--color--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pills-tab:not(.active):hover {
  background: var(--wp--preset--gradient--sfuma);
  color: var(--wp--preset--color--white);
}

.pills-tab:not(.active):nth-child(2) {
  text-align: center;
}

.pills-tab:not(.active):nth-child(3) {
  text-align: right;
}

/* Footer Styles */

footer {
  background: var(--wp--preset--color--alwaysblack);
  color: var(--wp--preset--color--alwayswhite);
}

.footer-container,
.social-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: var(--content-width);
  width: calc(100% - 50px);
  margin: auto;
}

.footer-container {
  padding-top: 50px;
}

.social-container {
  padding-bottom: 50px;
}

.social-container p {
  margin-bottom: 0px !important;
}

.footer-container .row {
  padding-bottom: 50px;
  border-bottom: 1px solid rgb(255, 255, 255, 0.4);
}

.front-footer {
  display: flex;
  width: calc(65% - 40px);
  gap: 50px;
}

.footer-menus {
  display: flex;
}

.footer-address {
  display: flex;
  flex-direction: column;
  min-width: 210px;
  gap: 20px;
}

.footer-address a h4 {
  font-family: 'Good Times';
  color: var(--wp--preset--color--alwayswhite);
  font-size: 24px;
  font-weight: 400;
  line-height: 28.8px;
  margin-top: 0px;
}

.footer-address p {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 400;
  line-height: 19.2px;
  margin-bottom: 0px;
}

.footer-address a:hover {
  color: var(--wp--preset--color--white);
  text-decoration: none;
}

.footer-menu ul {
  padding-left: 40px;
  list-style: none;
  margin-bottom: 0px;
}

.footer-menu a {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.83px;
  color: var(--wp--preset--color--alwayswhite);
}

.newsletter-signup {
  padding-left: 40px;
  width: 35%;
  border-left: 1px solid var(--wp--preset--color--alwayswhite);
}

.newsletter-signup h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  color: var(--wp--preset--color--alwayswhite);
  margin: 0px 0px 10px 0px;
}

.newsletter-signup p {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.83px;
  color: var(--wp--preset--color--alwayswhite);
  margin: 0px;
}

.newsletter-signup form {
  width: 100%;
  position: relative;
  margin-top: 20px;
}

.newsletter-signup form ._form-title {
  font-size: 18px !important;
}

.newsletter-signup input[type="email"] {
  width: 100%;
  height: 40px;
  padding: 12px 150px 12px 16px;
  border-radius: 99px;
  border: 1px solid #FFFFFF29;
  background: #FFFFFF29;
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 18.23px;
  color: rgb(255, 255, 255, 0.4);
}

.newsletter-signup input[type="checkbox"] {
  border: 2px solid #FFFFFFCC;
  accent-color: var(--wp--preset--color--black);
  color: var(--wp--preset--color--white);
  width: 16px;
  height: 16px;
}

.newsletter-signup button {
  height: 40px;
  padding: 8px 24px 8px 24px;
  border-radius: 16px;
  border: 1px solid var(--wp--preset--color--alwayswhite);
  background: #FFFFFF29;
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.23px;
  color: var(--wp--preset--color--alwayswhite);
}

.newsletter-signup ._form_8 form {
  margin-top: 0px !important;
}

.newsletter-signup .aggreement {
  margin-top: 20px;
  display: flex;
}

.newsletter-signup .aggreement label {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #FFFFFFCC;
  margin: 0px 0px 0px 10px;
}

.social-container .row {
  margin: 20px 0px 0px 0px !important;
}

.social-icon {
  padding-right: 24px;
}

.social-icon:last-child {
  padding-right: 0px;
}

.privacy-links {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 500;
  line-height: 19.2px;
  color: var(--wp--preset--color--alwayswhite);
}

.cart-message {
  position: fixed;
  top: 90vh;
  right: 20px;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
  z-index: 9999;
}

.cart-message.success {
  background-color: #28a745;
  /* Green */
}

.cart-message.error {
  background-color: #dc3545;
  /* Red */
}

.cart-message.show {
  display: block;
  animation: fadeIn 0.5s, fadeOut 0.5s 2.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* Checkout page styles */

.woocommerce form .form-row {
  position: relative;
  padding: 0px;
}

.woocommerce-terms-and-conditions-wrapper .form-row {
  min-height: 30px;
}

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

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  padding: 25px 15px 5px 15px;
  font-size: 14px;
  font-family: DM Sans;
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 8px;
  color: var(--wp--preset--color--black);
}

.woocommerce form .col-1 .form-row label {
  line-height: 1;
  font-family: DM Sans;
  position: absolute;
  left: 15px;
  top: 10px;
  font-size: 11px;
  color: var(--wp--preset--color--darkgrey);
  margin: 0px;
  z-index: 99;
}

.woocommerce form .col-1 .form-row label.screen-reader-text {
  clip-path: inset(0%);
  width: 100%;
  height: 11px;
  clip: unset;
  left: 17px;
}

.select2-container--default .select2-selection--single {
  font-family: DM Sans;
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 8px;
  height: 45px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 15px 15px 5px 15px;
  font-size: 14px;
  color: var(--wp--preset--color--black);
}

.select2-dropdown {
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 8px;
}

.select2.select2-container.select2-container--default {
  height: 45px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'DM Sans';
  padding: 5px 10px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
  background-color: var(--wp--preset--color--violamain);
  font-size: 14px;
}

.select2-results__option {
  font-size: 14px;
  padding: 5px 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 10px;
}

.select2-search--dropdown {
  padding: 5px 15px;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-2 {
  padding: 0px;
}

.entry-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 32.4px;
  background: var(--wp--preset--gradient--sfuma);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.woocommerce div.product .product_title.entry-title {
  margin-bottom: 0px;
  background: #0F0F10;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  margin-right: 150px;
}

.woocommerce-billing-fields h3,
.col-2 h3,
.woocommerce-additional-fields h3 {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 20px;
}

.woocommerce-additional-fields h3 {
  margin-top: 20px;
}

.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
  font-size: 14px;
  font-family: 'DM Sans';
  display: flex;
  justify-content: start;
  align-items: center;
}

.woocommerce-form__input.woocommerce-form__input-checkbox.input-checkbox {
  margin-right: 10px;
}

#ship-to-different-address {
  margin: 20px 0px;
}

#place_order {
  background: var(--wp--preset--color--violamain);
}

.p-Input input {
  padding: 5px 10px;
}

/* Blog Listing Page */
.main-post {
  width: 100%;
  position: relative;
  border-radius: 16px;
}

.main-post img {
  width: 100%;
  max-height: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

.main-post .content-section {
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  padding: 20px 30px;
  border-radius: 0px;
  background: #0000001A;
  backdrop-filter: blur(35px);
  border-bottom-left-radius: 16px;
  width: 80%;
}

.category-pill {
  border-radius: 20px;
  height: 28px;
  padding: 4px 8px;
  background: #F1ECFF;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-pill .circle {
  height: 16px;
  width: 16px;
  background: var(--wp--preset--color--violamain);
  border-radius: 8px;
}

.content-section h2 {
  font-family: DM Sans;
  font-size: 27px;
  font-weight: 700;
  line-height: 35.15px;
  color: var(--wp--preset--color--white);
  margin: 0px;
}

.content-section .category-pill p {
  font-size: 14px;
  margin-left: 8px;
  margin-bottom: 0px;
  color: var(--wp--preset--color--violamain);
}

.content-section p {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.23px;
  margin: 0px;
  color: var(--wp--preset--color--white);
}

.latest-posts {
  margin: 50px 0px;
}

.latest-posts h1 {
  font-size: 32px;
  font-weight: 400px;
  line-height: 38.4px;
  text-align: center;
  margin: 0px;
  background: var(--wp--preset--gradient--sfuma);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-listing {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.col-lg-3 {
  max-width: calc(25% - 15px) !important;
}

.blog-card {
  border-radius: 10px;
  border: none !important;
  background: var(--wp--preset--color--white);
}

.blog-card .content {
  padding: 10px;
  align-items: start;
  gap: 10px;
}

.blog-card h3 {
  font-family: DM Sans;
  font-size: 18px;
  font-weight: 600;
  line-height: 23.44px;
  text-align: left;
  margin: 0px;
  font-weight: 600;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 100%;
  height: auto;
  white-space: normal;
}

.blog-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog-card .image-holder {
  position: relative;
}

.content .category-pill {
  background: var(--wp--preset--color--white);
}

.content .category-pill p {
  margin: 0px;
  font-size: 14px;
  margin-left: 5px;
  color: var(--wp--preset--color--violamain);
}

.image-holder .category-pill .circle {
  height: 14px;
  width: 14px;
}

.blog-card p {
  font-size: 14px;
  line-height: 18px;
  color: #1B1B1F;
}

.blog-card .content p.description {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 100%;
  height: auto;
  white-space: normal;
}

.blog-small-card {
  display: flex !important;
  gap: 0px !important;
  flex-direction: row !important;
}

.blog-small-card img {
  width: 160px !important;
  height: 100% !important;
  border-top-right-radius: 0px !important;
  border-bottom-left-radius: 10px !important;
}


/* Single Post Page */

.single-post-container {
  width: 1280px;
  margin: 0px auto;
  padding: 0px;
}

.single-post-container .col-lg-9 {
  max-width: calc(75% - 20px);
}

.post-content {
  font-family: 'DM Sans';
  padding-right: 100px;
}

.post-content .has-large-font-size {
  margin: 24px 0px;
}

.post-content p {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
  color: var(--wp-preset-color--dark);
}


.post-content .has-large-font-size a {
  font-size: 27px;
  font-weight: 700;
  line-height: 35.15px;
  text-align: left;
  color: var(--wp-preset-color--dark) !important;
}

.author-box {
  border-radius: 10px;
  padding: 20px;
  background: linear-gradient(99.43deg, #D7F5FF 0%, #FFE9FF 100%);
  margin-bottom: 20px;
}

.author-image-box {
  display: flex;
  align-items: baseline;
}

.author-image-box img {
  border-radius: 10px;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 1px solid #FFFFFF80;
}

.author-image-box a {
  margin-left: 10px;
  bottom: 3px;
  position: relative;
  font-size: 30px !important;
  color: var(--wp--preset--color--violamain) !important;
}

.author-box h5 {
  font-family: DM Sans;
  font-size: 20px;
  font-weight: 600;
  line-height: 26.04px;
  text-align: left;
  color: var(--wp-preset-color--dark);
}

.author-box h6 {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.83px;
  text-align: left;
  color: var(--wp-preset-color--dark);
}

.author-box h4 {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 600;
  line-height: 20.83px;
  text-align: left;
  margin-bottom: 5px;
}

.author-box p {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: var(--wp-preset-color--dark);
  margin-bottom: 0px;
}

.author-box .social-icons {
  display: flex;
  gap: 15px;
  font-size: 30px !important;
  height: 35px;
}

.author-box .social-icons a {
  color: var(--wp--preset--color--black) !important;
}

.social-icons a i {
  margin: 0px !important;
}

.social-icons img {
  position: relative;
  height: 30px;
  width: auto;
  bottom: 3px;
}

.anchor-box {
  display: flex;
  flex-direction: column;
}

.anchor-box h1 {
  font-family: DM Sans;
  font-size: 20px;
  font-weight: 600;
  line-height: 26.04px;
  text-align: left;
  margin-bottom: 10px;
}

.anchor-box a {
  padding: 10px 10px 10px 20px;
  margin-bottom: 10px;
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.83px;
  color: #1B1B1F;
}

.anchor-box a.active {
  border-left: 3px solid var(--wp--preset--color--violamain);
  color: var(--wp--preset--color--violamain);
  padding-left: 17px;
}

.anchor-box a:hover {
  border-left: 3px solid var(--wp--preset--color--violamain);
  color: var(--wp--preset--color--violamain);
  padding-left: 17px;
}

.related-posts {
  margin-top: 0px;
}

.related-posts h2 {
  font-family: DM Sans;
  font-size: 27px;
  font-weight: 700;
  line-height: 35.15px;
  text-align: left;
  margin-bottom: 30px;
  color: #1B1B1F;
}

.related-posts .related-item {
  display: inline-block;
  width: 22%;
  margin-right: 3%;
  vertical-align: top;
}

.related-posts .related-item img {
  max-width: 100%;
  height: auto;
}

.related-posts .related-item h3 {
  margin-top: 10px;
  font-size: 16px;
}

.related-posts .blog-listing {
  margin-top: 0px;
}

.comments-container {
  width: 1280px;
  margin: 50px auto;
}

.comments-title {
  color: #1B1B1F;
  font-size: 27px;
  line-height: 35px;
  font-family: 'DM Sans';
  font-weight: 700;
}

.comment-list {
  list-style: none;
  padding-left: 0px;
  font-family: 'DM Sans';
}

.comment-list .children {
  list-style: none;
}

.comment-list .comment {
  background: var(--wp--preset--color--lightgrey);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

.comment-author.vcard a {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 700;
  line-height: 19.2px;
  text-align: left;
  display: inline;
  color: #11001C;
  font-style: normal;
}

.says {
  display: none;
}

.comment-meta.commentmetadata a {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  color: var(--wp--preset--color--darkgrey);
  margin: 0px;
}

.comment-body p {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  text-align: left;
  color: var(--wp--preset--color--black);
  margin-bottom: 10px;
}

.reply a {
  color: var(--wp--preset--color--violamain);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.children li:nth-child(odd) {
  background: var(--wp--preset--color--white) !important;
}

.comment-reply-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #1B1B1F;
  margin-bottom: 15px;
  font-family: 'DM Sans';
}

.logged-in-as {
  display: none;
}

.comment-form-comment label {
  display: none;
}

.comment-form-comment textarea {
  border: 1px solid var(--wp--preset--color--darkgrey);
  border-radius: 8px;
  width: 400px;
  padding: 20px;
  font-size: 12px;
  line-height: 15px;
  color: var(--wp--preset--color--black);
}

.form-submit input[type="submit"] {
  background: var(--wp--preset--color--violamain);
  color: #fff;
  border: none;
  border-radius: 99px;
  line-height: 18.23px;
  font-family: "DM Sans";
  font-size: 14px;
  padding: 8px 16px;
}

.comment-reply-title small {
  margin-left: 165px;
}

.comment-reply-title small a {
  color: var(--wp--preset--color--violamain);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.children .comment-reply-title {
  font-size: 14px;
  margin: 10px 0px;
}

.about-section {
  padding: 100px 40px 100px 40px;
  background: var(--wp--preset--gradient--sfuma-chiari);
}

.about-us .col-lg-5,
.policy-page .col-lg-5 {
  max-width: calc(41.66% - 10px);
}

.about-us .col-lg-7,
.policy-page .col-lg-7 {
  max-width: calc(58.34% - 10px);
}

.about-us .col-lg-6 {
  max-width: calc(50% - 10px);
  width: calc(50% - 10px);
}

.col-sm-12 {
  width: calc(100% - 20px);
  max-width: calc(100% - 20px);
}

.col-lg-8 {
  width: calc(66.667% - 10px);
  max-width: calc(66.667% - 10px) !important;
}

.about-section h1,
.objective-section h1,
.final-section h1 {
  font-family: Good Times;
  font-size: 34px;
  font-weight: 700;
  line-height: 40.8px;
  background: linear-gradient(135deg, #00BFFF 0%, #FF6EFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-section p,
.objective-section p,
.final-section p {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: justify;
  color: var(--wp--preset--color--dark);
  margin-bottom: 50px;
}

.about-section p:last-child,
.objective-section p:last-child,
.final-section p:last-child {
  margin-bottom: 0px;
}

.objective-section {
  padding: 40px;
}

.final-section {
  padding: 20px 40px;
}

.objective-section img {
  max-width: 90%;
  height: 470px;
  object-fit: cover;
}

.about-us .about-card {
  padding: 28px 39px !important;
  border: 1px solid #F3F3F3;
}

.about-us .about-card img {
  height: 50px;
  width: auto;
  margin-bottom: 28px;
}

.objective-section ul {
  padding-left: 0px !important;
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 28.8px;
  color: var(--wp--preset--color--black);
}

.creator-container,
.vendor-section {
  max-width: var(--content-width);
  margin: 0px auto;
  background: var(--wp--preset--color--white);
}

.creator-bio-section {
  background: linear-gradient(99.43deg, #D7F5FF 0%, #FFE9FF 100%);
  background-size: cover;
  /* Ensures the image covers the entire container */
  background-position: center center;
  /* Centers the image */
  background-repeat: no-repeat;
  padding: 55px 80px;
}

.creator-bio-section img {
  height: 120px;
  width: 120px;
  max-width: 120px;
  object-fit: cover;
  border-radius: 50%;
}

.creator-bio-section .creator-content {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 140px);
}

.creator-content h1 {
  font-family: DM Sans;
  font-size: 28px;
  font-weight: 700;
  line-height: 33.6px;
  text-align: left;
  color: var(--wp-preset-color--dark);
  margin-bottom: 20px;
  text-shadow:
    1px 1px 0px white,
    /* top-left */
    -1px 1px 0px white,
    /* top-right */
    1px -1px 0px white,
    /* bottom-left */
    -1px -1px 0px white;
  /* bottom-right */
}

.creator-content p {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-align: left;
  margin-bottom: 0px;
}

.creator-products-section {
  margin-top: 40px;
  flex-wrap: wrap;
}

.creator-products-section .product-card {
  width: calc(20% - 16px) !important;
  padding: 0px !important;
}

.creator-products-section .product-card .product-image img {
  width: 100%;
}

.search-content {
  display: none;
  position: absolute;
  top: 37px;
  width: calc(100% - 20px);
  left: 10px;
  padding: 15px;
  border-radius: 5px;
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--lightgrey);
  z-index: 9999;
}

.search-content.open {
  display: block;
}

.product-search-container {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--wp--preset--color--lightgrey);
}

.product-search-container:last-child {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.search-content img {
  height: 80px;
  width: 80px;
  object-fit: contain;
}

.product-search-content {
  width: calc(100% - 100px);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.product-search-container a {
  display: flex;
  width: 100%;
  gap: 20px;
}

.product-search-content h1 {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 10px;
  font-family: DM Sans;
  font-weight: 700;
  color: var(--wp--preset--color--black);
  width: 100%;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.product-search-content p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 14px;
  font-family: 'DM Sans';
  color: var(--wp--preset--color--darkgrey);
  width: 100%;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.product-search-content h2 {
  font-family: 'DM Sans';
  font-size: 14px;
  font-weight: 700;
  color: var(--wp--preset--color--azzurro);
  margin-bottom: 0px;
}

.accordion {
  margin-top: 20px;
}

.dropdown {
  width: 100%;
  position: relative;
}

.search-icon-part {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 16px;
  color: #A2A2A2;
}

.dropdown-label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.dropdown-search {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  padding-left: 30px;
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 4px;
  outline: none;
}

.dropdown-search:focus {
  border-color: var(--wp--preset--color--violamain);
  box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
}

.dropdown-list li:first-child {
  background: #F7F7F7;
  border-radius: 4px;
}

.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  border-radius: 4px;
  background-color: #fff;
  max-height: 150px;
  overflow-y: auto;
  display: none;
}

.dropdown-list.show {
  display: block;
}

.dropdown-item {
  padding: 10px 12px;
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 18.23px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: #0F0F10;
}

.dropdown-item:hover {
  background-color: #f0f0f0;
}


.part-details {
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 8px;
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.part-general-info {
  padding: 10px;
  justify-content: left;
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
}

.part-general-info img {
  height: 120px;
  width: 160px;
  object-fit: cover;
}

.part-details .general-info {
  border-left: 1px solid var(--wp--preset--color--lightgrey);
  padding: 10px 10px;
  margin-left: 10px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
}

.part-settings {
  display: flex;
  min-width: 90px;
  align-items: center;
}

.part-settings img {
  height: 21px !important;
  width: 21px !important;
  object-fit: contain;
  display: inline;
}

.part-settings span {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
  text-align: left;
  margin-right: 10px;
}

.dimensions-div .flex-div,
.general-info .flex-div {
  gap: 10px;
}

span.title {
  font-weight: 700;
}

.part-desc p.title {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.8px;
  text-align: left;
  color: #0F0F10;
  margin: 10px 0px;
}

.part-desc p {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: justify;
  color: #7D7D7D;
  margin: 0px;
}

.rating-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  text-align: center;
}

.popup-content p {
  margin: 0px;
}

.popup-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--wp--preset--color--violamain);
}

.popup-heading-support {
  font-size: 14px;
  margin-bottom: 0px;
  color: var(--wp--preset--color--darkgrey);
}

.popup-line {
  border-bottom: 3px solid var(--wp--preset--color--violamain);
  margin: 20px 0px;
  width: 150px;
}

.close-popup {
  position: absolute;
  top: 4px;
  right: 17px;
  font-size: 26px;
  cursor: pointer;
  color: var(--wp--preset--color--black);
}

.open-popup-button {
  background-color: #0073aa;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

p.stars {
  font-size: 25px;
  margin-bottom: 15px;
}

.stars a:before,
.stars a::before,
.stars a:hover:after,
.stars a:after {
  color: #FFD600;
  letter-spacing: 1px;
}

.popup-content textarea {
  font-size: 14px;
  width: 100%;
  border: 1px solid var(--wp--preset--color--lightgrey);
  color: var(--wp--preset--color--darkgrey);
  border-radius: 8px;
  padding: 10px;
}

.popup-content button {
  border-radius: 8px;
  background: var(--wp--preset--color--violamain);
  color: var(--wp--preset--color--white);
  font-size: 14px;
  padding: 8px 20px;
  margin-top: 15px;
  border: none;
}

.star-rating:first-child {
  cursor: pointer;
}

.comment-box {
  margin-bottom: 25px;
}

.comment-author img {
  width: 20px !important;
  height: 20px !important;
  object-fit: contain;
  border-radius: 10px;
  display: inline;
  margin-right: 10px;
}

.comment-author .author-title {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 700;
  line-height: 19.2px;
  text-align: left;
  display: inline;
  color: #11001C;
}

.woocommerce .star-rating {
  float: none;
  margin: 10px 0px !important;
}

.comment-content p {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  text-align: left;
  color: var(--wp--preset--color--darkgrey);
  margin-bottom: 10px;
}

.product-rating h2 {
  font-family: DM Sans;
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
  background: linear-gradient(135deg, #00BFFF 0%, #FF6EFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 50px 0px 25px 0px;
}

.related.products ul li.product-card {
  margin-bottom: 0px;
}

.related.products ul {
  margin-bottom: 0px;
}

.comment-footer {
  align-items: center;
}

.comment-footer p {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  color: var(--wp--preset--color--darkgrey);
  margin: 0px;
}

.report-button {
  border: 1px solid var(--wp--preset--color--darkgrey);
  border-radius: 8px;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--darkgrey);
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
}

.tab-content ul {
  min-height: 110px;
}

span.subtotal {
  font-weight: 600;
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  background-color: var(--wp--preset--color--violamain);
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--wp--preset--gradient--sfuma);
}

.loading-nft {
  background-color: var(--wp--preset--color--lightgrey);
  height: 250px;
  border-radius: 8px;
  animation: shimmer 1.5s infinite linear;
}

.creator-section {
  width: 100%;
  gap: 0px !important;
  position: relative;
  margin: auto;
}

.creator-box {
  position: relative;
  width: 20%;
}

.creator-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.creator-overlay {
  background: linear-gradient(180deg, rgba(15, 15, 16, 0) 50%, rgba(15, 15, 16, 0.06) 50%, #0F0F10 100%);
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.creator-box .badge {
  font-family: DM Sans;
  z-index: 2;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  padding: 5px 10px;
  top: 50px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--wp--preset--color--violamain);
  color: var(--wp--preset--color--white);
  border-radius: 99px;
}

.creator-box .count {
  font-family: DM Sans;
  font-size: 160px;
  font-weight: 400;
  text-align: left;
  background-image: linear-gradient(180deg, #00BFFF 0%, rgba(0, 191, 255, 0) 100%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  position: absolute;
  z-index: 3;
  line-height: 160px;
  bottom: -65px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.creator-box .name {
  position: absolute;
  font-family: DM Sans;
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  text-align: center;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  color: var(--wp--preset--color--alwayswhite);
}

.new-products-container.blog-container {
  margin-top: 0px;
}

@keyframes shimmer {
  0% {
    background-color: #f0f0f0;
  }

  50% {
    background-color: #D4F6FF;
  }

  100% {
    background-color: #f0f0f0;
  }
}

.no-content {
  margin-top: 50px;
  font-size: 28px;
  color: rgb(0, 0, 0, 0.3);
}

.home-blog-container {
  margin-top: 50px;
}

.vendor-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(1.2);
}

input {
  background-color: var(--wp--preset--color--darkwhite) !important;
  color: var(--wp--preset--color--black) !important;
  ;
}

.vendor-title {
  margin-bottom: 20px;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(135deg, #00BFFF 0%, #FF6EFF 100%);
  color: transparent;
  font-family: Good Times;
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
}

.vendor-content-section {
  padding: 50px !important;
}

.vendor-content {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  text-align: left;
  color: var(--wp--preset--color--darkgrey);
  margin-bottom: 30px;
}

.button-link {
  border: 1px solid var(--wp--preset--color--black);
  color: var(--wp--preset--color--black);
  border-radius: 99px;
  padding: 8px 24px;
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 36px;
}

.button-link:hover {
  color: var(--wp--preset--color--black);
}



@media (max-width: 1200px) {
  .logo img {
    width: 180px;
  }

  nav.primary-nav {
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .main-menu .menu-item {
    padding: 0px 12px;
  }

  .main-menu .menu-item a {
    white-space: nowrap;
  }

  .swiper-slide img {
    width: 30%;
    max-width: 280px;
    object-fit: contain;

  }

  .slide-content {
    margin-left: 20px;
    width: calc(70% - 40px);
  }

  .slide-content a {
    text-wrap: nowrap;
  }

  .slide-content h3 {
    width: 90%;
  }

  .slide-content p {
    width: 90%;
  }

  .scrollable-div {
    width: auto;
    padding-left: 25px;
    display: flex;
  }

  .overalls-container {
    overflow: scroll !important;
    width: 1400px !important;
    max-width: 1400px !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-top: 20px !important;
    padding-right: 25px;
  }

  .overalls-container .card {
    min-width: 350px;
  }

  .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .printer-container .printer-card {
    width: 100%;
  }

  .printer-container .product-card {
    width: calc(25% - 15px);
  }

  .filament-content {
    align-items: center;
  }

  .new-products-container {
    padding: 25px 0px;
  }

  .slider-card .product-image img {
    max-width: 100%;
  }

  .home-blog-container .col-lg-8 {
    min-width: calc(66.667% - 20px) !important;
  }

  .col-lg-6,
  .col-md-6 {
    width: calc(50% - 20px);
    max-width: calc(50% - 20px);
  }

  .col-md-12 {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
  }

  .filament-card {
    min-height: 250px;
    background: var(--wp--preset--color--white);
  }

  .filament-card .product-image img {
    min-height: 145px !important;
    object-fit: contain;
  }

  .shop-main-content {
    padding-right: 0px !important;
  }

  .woocommerce ul.products[class*=columns-] li.product,
  .woocommerce-page ul.products[class*=columns-] li.product {
    width: calc(33.33% - 10px);
    margin: 0 5px 20px !important;
  }

  .woocommerce ul.products li.first,
  .woocommerce-page ul.products li.first {
    clear: unset;
  }

  .main-content-container {
    width: 100%;
  }

  .main-content-container .col-md-6 {
    width: calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
    flex: 0 0 50%;
  }

  .main-content-container .col-md-3 {
    width: calc(25% - 10px);
    max-width: calc(25% - 10px);
  }

  .login-container,
  .register-container {
    padding: 50px 120px;
  }

  .meta-parts img {
    margin-left: unset !important;
  }

  .single-post-container {
    width: calc(100% - 50px);
    margin-left: 25px;
    margin-right: 25px;
  }

  .col-md-4 {
    max-width: calc(33.333333% - 20px) !important;
  }

  .creator-products-section .product-card {
    width: calc(33.333333% - 14px) !important;
  }

  .product.type-product {
    flex-wrap: wrap;
  }

  .woocommerce-product-gallery {
    width: 100% !important;
    margin-bottom: 20px;
  }

  .product .summary {
    width: calc(60% - 25px) !important;
  }

  .product.type-product>*:last-child {
    flex-basis: 100%;
    /* Forces it to a new row */
  }

  .sponsored-products {
    flex-direction: row !important;
    flex-wrap: wrap;
    border: none !important;
    padding-left: 0px !important;
  }

  .sponsored-products>*:last-child {
    flex-basis: 100%;
    /* Forces it to a new row */
  }

  .sponsored-button {
    width: fit-content;
  }

  .front-footer {
    gap: 20px;
  }

}

.blog-card a {
  color: var(--wp--preset--color--black);
}

.creator-container.add-margin {
  margin-top: 141px !important;
}

.creator-container {
  max-width: var(--content-width);
  margin: 0px auto;
}

@media (max-width: 1400px) {
  .creator-container {
    margin: 0px 25px;
  }

  .comments-container {
    margin-left: 25px;
    margin-right: 25px;
    width: calc(100% - 50px);
  }
}

@media (max-width: 1000px) {
  .swiper-slide img {
    width: calc(30% - 60px);
    margin-left: var(--swiper-navigation-sides-offset, 60px);
  }

  .woocommerce ul.products[class*=columns-] li.product,
  .woocommerce-page ul.products[class*=columns-] li.product {
    width: calc(50% - 20px);
    margin: 0 10px 20px !important;
  }

  .front-footer {
    width: 50%;
    flex-direction: column;
  }

  .front-footer .footer-address {
    min-width: unset;
  }

  .footer-menus {
    gap: 20px;
  }

  .footer-menu ul {
    padding-left: 0px !important;
  }

  .newsletter-signup {
    width: calc(50% - 50px);
  }



}

@media (max-width: 670px) {

  .part-general-info,
  .variation-image-container {
    flex-direction: column;
    gap: 10px;
  }

  .dimensions-div,
  .part-general-info .general-info {
    margin-left: 0px;
  }

}

@media (max-width: 820px) {

  .printer-name-container {
    display: none !important;
  }

  .search-categories {
    padding: 8px 20px 8px 8px;
  }

  .user-menu {
    gap: 8px;
  }
}

@media (max-width: 767.98px) {
  .logo img {
    width: 137px;
  }

  .header-container .logo-container {
    padding: 10px;
  }

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

  .header-search #search-category,
  .header-search #search-input {
    display: none;
  }

  nav.primary-nav {
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  nav.primary-nav::-webkit-scrollbar {
    display: none;
  }

  .single-post-container {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }

  .pills-tab {
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 28.8px !important;
    padding: 5px 15px !important;
  }

  .slider-container,
  .main-content-container,
  .shop-container,
  .news-container {
    margin-top: 131px !important;
  }

  .user-menu {
    margin-right: 10px;
    font-size: 12px;
    gap: 3px;
  }

  .user-menu a {
    font-size: 12px;
    line-height: 40px;
  }

  .main-menu {
    padding-left: 10px;
  }

  .main-menu .menu-item {
    padding: 0px 10px;
    line-height: 40px;
    border-right: 1px solid var(--wp--preset--color--lightgrey);
  }

  .main-menu .menu-item:last-child {
    border-right: none;
  }

  .main-menu .menu-item a {
    white-space: nowrap;
  }

  .slider-container {
    margin-top: 131px !important;
  }

  .logo {
    display: flex;
    gap: 5px;
  }

  .woocommerce-mini-cart__buttons.buttons {
    flex-direction: row !important;
  }

  .mini-cart-dropdown.open {
    transform: translate3d(-220px, 5px, 0px);
  }

  #open-category {
    border: none;
    background: none;
    padding: 0px;
    font-size: 18px;
    line-height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .header-search {
    display: none !important;
  }

  .mobile-search .search-btn {
    position: unset;
    color: var(--wp--preset--color--black);
    font-size: 20px;
    margin-right: 5px;
    padding: 0px;
  }

  .mobile-search {
    display: unset !important;
    width: auto;
  }

  .mobile-search button {
    border-radius: unset;
  }

  .header-mini-cart {
    margin-right: 20px;
  }

  .slider-container .product-slider .swiper-slide {
    display: flex;
    flex-direction: column;
  }

  .product-slider {
    height: 390px !important;
    max-height: 390px !important;
  }

  .product-slider .swiper-wrapper {
    height: 390px !important;
    padding: 0px;
  }

  .product-slider .swiper-slide img {
    width: 275px;
    height: 160px;
    object-fit: cover;
    float: unset;
    margin: 0px auto 35px;
  }

  .product-slider .swiper-slide .slide-content {
    width: 100%;
    margin: 0px auto;
    float: none;
    align-items: center;
    display: block;
    text-align: center;
    padding: 0px 20px 0px 20px;
  }

  .slide-content h3 {
    font-size: 20px !important;
    max-width: 100%;
    width: 100%;
    line-height: 24px !important;
    margin: 10px 0px 10px 0px !important;
  }

  .slide-content p {
    width: 100% !important;
    max-width: 100% !important;
    -webkit-line-clamp: 2 !important;
    margin-bottom: 10px !important;
  }

  .slide-content a.buy-now {
    position: relative;
    top: 10px;
  }

  .buy-now img {
    height: 20px !important;
    width: 24px !important;
    object-fit: contain !important;
    margin-bottom: 0px !important;
  }

  .scrollable-div {
    width: auto;
    padding-left: 10px;
    display: flex;
  }

  .overalls-container {
    overflow: scroll !important;
    width: 860px !important;
    max-width: 860px !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-top: 20px !important;
  }

  .info-card {
    padding: 20px !important;
  }

  .info-card-content {
    padding-right: 0px !important;
    padding-left: 30% !important;
  }

  .hub-container {
    padding-bottom: 0px !important;
  }

  .hub-container h1 {
    font-size: 21px;
    line-height: 26px;
  }

  .overalls-container .card {
    min-width: 200px !important;
  }

  .overalls-container::-webkit-scrollbar {
    display: none;
  }

  .recommended-products {
    grid-template-columns: 100% !important;
  }

  .recommended-products .product {
    display: none;
  }

  .recommended-products .product:first-child {
    display: block;
  }

  .overalls-container .buy-now {
    display: none !important;
  }

  .card .on-sale-product a {
    flex-direction: column;
    height: auto !important;
  }

  .card .on-sale-product a img {
    width: 100% !important;
    height: 113px !important;
  }

  .overalls-container .on-sale-product .content p {
    display: none;
  }

  .card .content {
    overflow: unset !important;
  }

  .card .content h4,
  .overalls-container .card h3 {
    overflow: hidden;
    text-overflow: "" !important;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }

  .overalls-container .card h3 {
    font-size: 12px !important;
  }

  .card .recommended-products img {
    height: 140px !important;
  }

  .card .content h4 {
    margin-bottom: 0px !important;
  }

  .card .content h4 {
    font-size: 14px;
  }

  .hub-container {
    margin: 0px 10px 10px !important;
    width: calc(100% - 20px);
  }

  .creator-box {
    width: 100%;
  }

  .hub-container .image img {
    margin-left: 10px !important;
    height: 120px !important;
    transform: unset !important;
  }

  .hub-container .content h1,
  .printer-content h3,
  .featured-filament-card .filament-content a,
  .filament-products-list h3 {
    font-size: 20px !important;
    line-height: 24px !important;
    text-align: center;
  }

  .hub-container .content p,
  .printer-content p,
  .filament-content .product-description {
    font-size: 12px !important;
    line-height: 16.8px !important;
    text-align: center;
  }

  .filament-content .product-title {
    text-align: center;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .filament-content {
    align-items: center !important;
  }

  .buttons a,
  .buttons button {
    width: 100%;
    text-align: center;
  }

  .buttons a {
    margin-right: 0px !important;
  }

  .col-sm-12 {
    width: 100% !important;
    max-width: 100% !important;
  }

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

  .printer-container,
  .filament-container {
    margin: 10px !important;
    width: calc(100% - 20px);
  }

  .post-content {
    padding-right: 0px !important;
  }

  .content-area {
    width: 100%;
  }

  .comments-container {
    margin-left: 10px;
    margin-right: 10px;
    width: calc(100% - 20px);
  }

  .flex-div {
    gap: 10px !important;
    width: 100% !important;
  }

  .vendor-image {
    transform: unset;
  }

  .vendor-content-section {
    padding: 10px !important;
  }

  .creator-section {
    width: 100%;
  }

  .printer-container .product-card,
  .filament-card {
    width: calc(50% - 5px) !important;
    height: 225px;
  }

  .printer-container .product-card .product-image img {
    height: 126px !important;
  }

  .add-to-cart {
    font-size: 1rem !important;
  }

  .button.buy {
    font-size: 1rem !important;
  }

  .buy-now {
    font-size: 1rem !important;
  }

  .featured-filament-card .product-image img {
    height: 120px !important;
  }

  .filament-content a.button {
    font-size: 14px !important;
    line-height: 18px !important;
  }

  .vendor-title {
    font-size: 20px !important;
    line-height: 24px !important;
  }

  .filament-card .product-image img {
    min-width: 100% !important;
    max-width: 100% !important;
    height: 120px !important;
    transform: translateX(-10px);
  }

  .product-image,
  .product-image a,
  .filament-card .product-title {
    width: 100% !important;
  }

  .product-title {
    font-size: 14px !important;
    line-height: 18.8px !important;
    overflow: hidden;
    text-overflow: "" !important;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }

  .row-gap-2 {
    gap: 10px !important;
  }

  .filament-products-list h3 {
    margin-bottom: 10px !important;
  }

  .new-products-container {
    margin: 0px !important;
    padding: 50px 10px !important;
  }

  .title-section h3 {
    font-size: 20px !important;
    line-height: 24px !important;
  }

  .new-products-content .title-section {
    align-items: center;
  }

  .title-section .button {
    margin-right: 0px !important;
  }

  .navigation-bar {
    width: 100%;
    justify-content: space-between;
  }

  .title-section .button {
    display: none;
  }

  .only-mobile {
    display: block !important;
    margin-top: 20px;
  }

  .only-mobile a {
    border-radius: 99px;
    padding: 8px 16px !important;
    font-family: DM Sans;
    font-size: 14px;
    font-weight: 700;
    line-height: 36px;
    border: 1px solid #0F0F10;
    color: var(--wp--preset--color--black);
  }

  footer {
    padding: 25px 10px !important;
  }

  .front-footer {
    flex-direction: column;
    align-items: center;
  }

  .footer-address {
    align-items: center;
    margin-bottom: 25px !important;
  }

  .footer-address p {
    text-align: center;
  }

  .footer-container,
  .social-container {
    width: 100% !important;
    max-width: 100% !important;
    align-items: center;
  }

  .footer-container .flex-div {
    justify-content: unset !important;
    flex-direction: column;
  }

  .footer-menus {
    padding: 25px 0px !important;
    border-top: 1px solid var(--wp--preset--color--white);
    border-bottom: 1px solid var(--wp--preset--color--white);
    width: 100%;
  }

  .footer-menu ul {
    padding-left: 0px !important;
  }

  .footer-menu {
    width: 100%;
  }

  .footer-menu a {
    font-size: 14px !important;
  }

  .newsletter-signup {
    padding-left: 0px !important;
    border-left: none !important;
  }

  .newsletter-signup h3,
  .newsletter-signup p {
    text-align: center;
  }

  .social-container .row {
    padding-top: 0px !important;
    flex-direction: column;
    align-items: center;
  }

  .social-container .social-icons {
    margin-bottom: 10px !important;
  }

  .login-container,
  .register-container {
    margin-top: 131px !important;
    padding: 50px 10px 0px !important;
  }

  .login-title,
  .register-title {
    font-size: 1.7rem !important;
  }

  .double-botton-holder {
    flex-direction: column;
  }

  .register-link,
  .login-link,
  .creator-button {
    width: 100% !important;
  }

  .field-group {
    flex-direction: column;
  }

  .woocommerce div.product {
    flex-direction: column !important;
    padding: 50px 10px !important;
  }

  .woocommerce-product-gallery {
    width: 100% !important;
  }

  .content-area,
  .single-post-container {
    margin-top: 131px !important;
  }

  .summary.entry-summary {
    margin: 10px 0px !important;
  }

  .woocommerce div.product .product_title.entry-title {
    margin-right: 50px !important;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .part-button {
    width: calc(50% - 4px);
  }

  .total-price {
    font-size: 16px !important;
  }

  .related.products {
    margin: 0px 10px !important;
  }

  .woocommerce ul.products[class*=columns-] li.product,
  .woocommerce-page ul.products[class*=columns-] li.product {
    width: 49% !important;
    margin: 0 0 10px !important;
  }

  .product-meta {
    flex-direction: column;
    gap: 10px;
    align-items: baseline;
  }

  .product-rating {
    margin: 0px 10px !important;
  }

  .product-rating h2 {
    margin: 30px 0px 20px 0px !important;
    font-size: 18px !important;
  }

  .splide__track--nav>.splide__list>.splide__slide {
    width: 70px !important;
    height: 70px !important;
  }

  .splide__arrow--next {
    right: 0rem !important;
  }

  .splide__arrow--prev {
    left: 0rem !important;
  }

  .content-area {
    padding: 50px 10px !important;
  }

  .single.single-product .content-area {
    padding-top: 0px !important;
  }

  .custom-sidebar {
    position: absolute;
    left: -270px;
    top: 0;
    z-index: 10;
    background: #fff;
    transition: 0.5s left;
  }

  .custom-sidebar.open {
    transform: translate(270px);
    width: 100%;
    height: 100%;
    transition: 0.5s transform;
  }

  .shop-main-content {
    width: 100% !important;
    padding: 10px !important;
    min-height: 700px !important;
  }

  .woocommerce-result-count {
    margin: 1em 0 2em !important;
    font-size: 12px;
  }

  .woocommerce-ordering {
    display: none;
  }

  .filter-button.only-mobile {
    margin-top: 0px;
    display: block !important;
  }

  button.close {
    margin: 0px !important;
    color: var(--wp--preset--color--black) !important;
    opacity: 1;
  }

  .favorite-page .shop-main-content {
    margin: 0px !important;
  }

  .search-box .search-categories {
    position: relative;
    z-index: 10;
    width: 145px !important;
  }

  .search-box input {
    margin-left: -53px !important;
    padding-left: 60px !important;
  }

  .search-box .search-btn {
    right: 20px;
    top: 45px;
    font-size: 18px;
  }

  .search-box .search-content {
    width: 100%;
    left: 0px;
    top: 80px;
    border-top: none !important;
    border-radius: 8px;
  }

  .close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .main-content-container {
    width: 100%;
    margin-top: 131px !important;
  }

  .view-nft-button-1 {
    margin-bottom: 10px;
  }

  .main-content-header {
    font-size: 12px !important;
  }

  .content-area.about-us {
    padding-top: 10px !important;
  }

  .about-section {
    padding: 10px !important;
  }

  .about-section h1,
  .objective-section h1,
  .final-section h1 {
    font-size: 1.6rem;
    margin-bottom: 0px;
  }

  .objective-section {
    padding: 10px 0px !important;
  }

  .objective-section img {
    max-width: 100%;
  }

  .final-section {
    padding: 0px !important;
  }

  .about-us .about-card {
    padding: 10px !important;
  }

  .about-section p,
  .objective-section p,
  .final-section p {
    margin-bottom: 10px;
  }

  .creator-products-section .product-card {
    width: calc(50% - 7px) !important;
  }

  .creator-container.add-margin {
    margin-top: 131px !important;
  }

  .creator-container {
    margin: 0px 10px !important;
  }

  .creator-bio-section {
    padding: 30px;
  }

  .creator-content h1 {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }

  .woocommerce div.product div.summary {
    width: 100% !important;
  }

  .front-footer,
  .newsletter-signup {
    width: 100%;
  }
}

.woocommerce div.product div.summary {
  flex-grow: 1;
}

.filter-button {
  border: 1px solid var(--wp--preset--color--black);
  color: var(--wp--preset--color--black);
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.23px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  border-radius: 99px;
  float: right;
  display: none !important;
}

.search-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 9999;
  background: rgb(0, 0, 0, 0.5);
  width: 100%;
}

.search-modal.open {
  display: block;
}

.search-box {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 40px 10px 20px;
  width: 95%;
  max-width: 700px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.view-all-arrow {
  color: var(--wp--preset--color--black);
}

.view-all-arrow:hover {
  color: var(--wp--preset--color--violamain);
}

.info-text {
  color: var(--wp--preset--color--darkgrey);
  font-family: 'DM Sans';
  font-size: 0.8rem;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}


#custom-forgot-password-form {
  max-width: 500px;
  width: 100%;
  margin: 100px auto;
  border: 1px solid var(--wp--preset--color--lightgrey);
  padding: 30px;
  border-radius: 16px;
}

#custom-forgot-password-form h1 {
  font-family: 'DM Sans';
  font-size: 22px;
  margin-bottom: 0px;
  text-align: center;
  color: var(--wp--preset--color--violamain);
  text-transform: uppercase;
  font-weight: 600;
}

#custom-forgot-password-form p {
  margin: 0px !important;
}

.modal {
  background: rgb(0, 0, 0, 0.3);
}

.mini-cart-custom-product-detail a img {
  margin-right: 10px !important;
}

.comment-form-file input {
  opacity: 0;
  width: 30px;
  height: 30px;
  position: absolute;
  cursor: pointer;
  left: 0;
  top: 0;
}

.comment-form-file {
  position: absolute;
  cursor: pointer;
  right: 0px;
  width: 30px;
  height: 30px;
  top: 3px;
  font-size: 18px;
  line-height: 30px;
  color: var(--wp--preset--color--darkgrey);
}

.comment-text {
  position: relative;
}

.comment-form-file label {
  cursor: pointer;
}

#file-preview {
  list-style: none;
  padding: 0px;
  font-size: 12px;
  font-family: 'DM Sans';
}

.comment-images {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 0px;
}

.comment-images .review-file {
  width: 160px;
  height: 112px;
  border-radius: 8px;
  border: 1px solid var(--wp--preset--color--lightgrey);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.review-file {
  overflow: hidden;
}

.review-file img {
  height: 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  object-fit: cover;
  border-radius: 8px;
}

.comment-images .review-file i {
  color: var(--wp--preset--color--black);
  font-size: 40px;
}

.review-file a {
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  color: var(--wp--preset--color--violamain);
}

#changePasswordModal .modal-content {
  padding: 30px;
}

.change-password label {
  font-family: 'DM Sans';
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.blockUI {
  display: none !important;
}

.form-control.error {
  border: 1px solid red;
}

.error-text {
  font-size: 11px;
  font-family: 'DM Sans';
  color: red;
}

.change-password .col-sm-12 {
  width: 100%;
  max-width: 100%;
}

.printer-name-container {
  display: none;
  flex-direction: column;
  border-left: 1px solid var(--wp--preset--color--lightgrey);
  padding-left: 10px;
  padding-right: 20px;
  cursor: pointer;
}

.printer-name-container .printer-name {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.23px;
  margin-bottom: 0px;
  width: 100px;
  overflow: hidden;
  max-height: 20px;
  text-overflow: ellipsis;
}

.hub-status,
.printer-status {
  display: flex;
  align-items: center;
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 500;
  line-height: 15.62px;
  gap: 10px;
  color: var(--wp--preset--color--darkgrey);
}

.hub-status.active i,
.printer-status.active i {
  color: #00C420;
}

.hub-status i,
.printer-status i {
  color: var(--wp--preset--color--darkgrey);
  font-size: 8px;
}

.tab-pane {
  padding: 10px;
  font-family: 'DM Sans' !important;
  white-space: pre-line;
}

.hub-card {
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 16px;
  padding: 16px;
  min-width: 339px;
  max-width: 500px;
}


.hub-card h3 {
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  margin: 0px;
}

.hub-box {
  gap: 20px;
  align-items: center;
}

.hub-box img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.printer-texts {
  gap: 10px;
  flex-direction: column;
}

.printer-texts p {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  margin: 0px;
  color: var(--wp--preset--color--darkgrey);
}

.printer-image {
  height: 40px !important;
}

.update-text {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 500;
  line-height: 19.2px;
  text-align: center;
  margin: 25px 0px 0px 0px;
  color: var(--wp--preset--color--darkgrey);
}

@media (max-width: 650px) {
  .main-content-container .col-sm-12 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}

.loader {
  display: none;
  ;
  width: 15px;
  height: 15px;
  border: 2px solid var(--wp--preset--color--darkgrey);
  border-bottom-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loading .loader {
  display: inline-block;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#start-print:disabled {
  background: var(--wp--preset--color--darkgrey);
  color: var(--wp--preset--color--white);
}

/* Custom Language Dropdown */
.custom-language-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-right: 10px;
}

.selected-language {
  display: flex;
  align-items: center;
}

.selected-language img {
  width: 20px;
  height: auto;
}

.language-options {
  display: none;
  position: absolute;
  top: calc(100% + 7px);
  left: -9px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 8px;
  background-color: #fff;
  z-index: 1000;
}

.language-options li {
  padding: 8px;
  display: flex;
  align-items: center;
}

.language-options li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  width: 20px;
}

.language-options li img {
  width: 20px;
  height: auto;
}

.language-options li.active {
  background-color: var(--wp--preset--color--lightgrey);
}

.language-options li:first-child {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.language-options li:last-child {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.custom-language-dropdown:hover .language-options {
  display: block;
}

.password-field {
  position: relative;
}

.view-password {
  color: var(--wp--preset--color--darkgrey);
  position: absolute;
  right: 10px;
  top: 32px;
}

@media (max-width: 1270px) {

  .part-general-info,
  .variation-image-container {
    flex-direction: column;
    gap: 10px;
  }

  .dimensions-div,
  .general-info {
    padding-left: 0px !important;
    margin-left: 0px !important;
    border-left: none !important;
  }
}

/* Overlay Background */
.printer-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

/* Modal Box */
.printer-modal-box {
  width: 350px;
  background: var(--wp--preset--color--darkwhite);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}


.printer-modal-box h2 {
  font-family: 'DM Sans';
  font-size: 22px;
  line-height: 50px;
  border-bottom: 1px solid var(--wp--preset--color--lightgrey);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

.printer-modal-box select {
  width: 100%;
  padding: 5px 10px;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 22px;
  border: 1px solid var(--wp--preset--color--darkgrey);
  border-radius: 8px;
}

#warning-text span {
  font-weight: 700;
}

.printer-modal-box p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}

/* Buttons */
.printer-modal-buttons {
  margin-top: 15px;
}

.printer-modal-buttons button {
  padding: 10px 15px;
  margin: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.printer-btn-continue {
  background-color: #28a745;
  color: white;
}

.printer-btn-cancel {
  background-color: #dc3545;
  color: white;
}

.buy-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  background: #fff;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  border-radius: 10px;
}

.buy-modal-content h2 {
  font-family: 'DM Sans';
  margin-bottom: 10px;
}

.buy-package-button {
  display: inline-block;
  background: #0073aa;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
}

.buy-close-modal {
  display: block;
  margin-top: 10px;
  background: #ccc;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.sponsored-products {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 25px;
  border-left: 1px solid var(--wp--preset--color--lightgrey);
}

.sponsored-product {
  width: auto;
  padding: 0px;
  border: none !important;
}

.sponsored-button {
  border: 1px solid var(--wp--preset--color--darkgrey);
  border-radius: 8px;
  padding: 4px 8px;
  color: var(--wp--preset--color--darkgrey);
  font-weight: 500;
  font-size: 12px;
  word-spacing: 5px;
  width: fit-content;
  ;
}

.sponsored-button:hover {
  color: var(--wp--preset--color--darkgrey);
}

.sponsored-product .product-image img {
  width: 100%;
}

.review-pages:has(a.active) {
  background: var(--wp--preset--color--black);
  color: #FFFFFF !important;
}

.rating-pagination {
  justify-content: center;
}

.review-pages a.active {
  color: var(--wp--preset--color--white) !important;
}

.privacy-field p,
.terms-field p {
  margin-bottom: 0px !important;
}

.hidden {
  display: none;
}

.creator-gestione-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: row;
}

.printer-select {
  border: none;
  background: var(--wp--preset--color--violamain);
  color: var(--wp--preset--color--white);
  padding: 0px 10px 0px 30px;
  border-top-left-radius: 99px;
  border-bottom-left-radius: 99px;
  border-right: 1px solid var(--wp--preset--color--white);
  height: 40px;
}

.print-button {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

#warning-text {
  display: none;
}

.news-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.news-card-container .card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.news-card-container .blog-card.card {
  border: 1px solid #F3F3F3 !important;
}

.news-card-container .blog-card .date {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 11px;
  line-height: 100%;
  color: #27282D;
}

.news-card-container .title {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--wp--preset--color--black)
}

.news-card-container .desc {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 12px;
  line-height: 180%;
  text-align: justify;
  color: var(--wp--preset--color--black);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .news-card-container .col-sm-6 {
    max-width: calc(50% - 10px) !important;
    width: calc(50% - 10px) !important;
  }
}


@media (min-width: 992px) {
  .news-card-container .col-md-4 {
    max-width: calc(25% - 15px) !important;
    width: calc(25% - 15px) !important;
  }
}

@media (min-width: 1200px) {
  .news-card-container .col-lg-3 {
    max-width: calc(25% - 15px) !important;
    width: calc(25% - 15px) !important;
  }
}

.news-container {
  margin-top: var(--top-margin);
  max-width: 1320px;
  width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
  display: flex;
  flex-wrap: wrap;
}

.news-container .image-section {
  width: 100%;
  border-radius: 16px;
}

.news-container .image-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

.news-container .image-section img {
  width: 100%;
  max-height: 400px;
  height: auto;
  object-fit: cover;
}

.news-container .date {
  font-family: DM Sans;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  color: var(--wp--preset--color--black);
  width: 100%;
  margin-bottom: 25px;
}

.news-container .title-section {
  width: 100%;
}

.news-container .description-section {
  font-family: 'DM Sans';
  width: 100%;
  font-weight: 600;
  font-style: italic;
  font-size: 1.1rem;
  text-align: center;
  color: var(--wp--preset--color--black);
  background: var(--wp--preset--color--lightgrey);
  margin-bottom: 25px;
  border-radius: 16px;
  padding: 20px;
}

.news-container h1 {
  font-family: 'Good Times';
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 120%;
  color: transparent;
  background: var(--wp--preset--gradient--sfuma);
  background-clip: text;
  -webkit-background-clip: text;
  margin-bottom: 25px;
  margin-top: 25px;
  text-align: left;
}




@media (max-width: 1300px) {
  .news-container {
    margin-left: 25px;
    margin-right: 25px;
  }
}

.news-container .content {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 180%;
  text-align: justify;
  color: var(--wp--preset--color--black);
}

.content h2 {
  font-family: 'DM Sans';
  font-size: 1.5rem;
}

.inline-message.error {
  font-size: 11px;
  text-align: left;
  color: #DC3545;
  margin-bottom: 10px !important;
}

.register-container .inline-message.error {
  display: block !important;
  margin-bottom: 15px !important;
}

#startSlicing {
  width: 100%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-radius: 50px;
  font-size: 1rem;
  margin: 0px;
  margin-right: 10px;
}

#startSlicing select {
  padding: 10px 20px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  width: calc(50% - 5px);
  border: none;
}

#startSlicing button {
  width: 100%;
  border-radius: 50px;
  border: none;
  background: var(--wp--preset--color--violamain);
  color: var(--wp--preset--color--white);
}

#startSlicing button:hover {
  background: none;
  color: var(--wp--preset--color--violamain);
  border: 1px solid var(--wp--preset--color--violamain);
}

#startSlicing button:disabled {
  background: var(--wp--preset--color--darkgrey);
  color: var(--wp--preset--color--white);
}

#startSlicing button:hover:disabled {
  cursor: not-allowed;
}

.view-nft-details .accordion {
  padding: 10px;
}

.printer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.printer-list .printer-box.selected {
  border: 2px solid var(--wp--preset--color--violamain) !important;
}

.printer-list .printer-box {
  border: 1px solid var(--wp--preset--color--lightgrey);
  border-radius: 16px;
  padding: 12px;
  cursor: pointer;
}

.printer-box .brand {
  font-family: DM Sans;
  color: var(--wp--preset--color--black);
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  margin-bottom: 5px;
}

.printer-box .model {
  font-family: DM Sans;
  color: var(--wp--preset--color--darkgrey);
  font-weight: 400;
  font-size: 10px;
  line-height: 120%;
  margin-bottom: 0px;
}

.printer-box .status {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 10px;
  line-height: 160%;
  margin-top: 5px;
  margin-bottom: 0px;
}

.printer-box.disabled {
  background: #F3F3F3;
  cursor: not-allowed;
}

.printer-box.disabled .status.ready {
  color: var(--wp--preset--color--darkgrey);
}

.printer-box .status.error {
  color: #EA4335;
}

.printer-box .status.inProgress {
  color: #6276DD;
}

.printer-box .status.ready,
.printer-box .status.completed {
  color: #00C420;
}

.printer-box .status i {
  margin-right: 5px;
}

#printerSearch.error {
  border: 1px solid #dc3545;
}

#printerError {
  text-align: left;
  color: #dc3545;
  display: none;
  margin-bottom: 5px;
  margin-top: -15px;
}


.login-error-message {
  color: #dc3545;
  font-size: 12px;
  font-family: DM Sans;
  font-weight: 400;
  line-height: 180%;
  text-align: left;
  margin-bottom: 10px;
  margin-top: -10px;
}

.login-error-message a {
  color: var(--wp--preset--color--violamain);
  text-decoration: underline;
}

.delete-image-button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #dc3545;
  font-size: 14px;
  padding: 5px;
  border-radius: 99px;
  background: #FFFFFF;
  border: 1px solid #F3F3F3;
  display: none;
}

.delete-image-button.show {
  display: block;
}

.tooltip-arrow {
  display: none !important;
}

.shop-container.favorite-page {
  width: calc(100% - 50px);
  max-width: var(--content-width);
}

.shop-container.favorite-page .shop-main-content {
  margin: auto;
  padding-right: 0px;
}

.shop-container.no-margin,
.shop-info-container.no-margin,
.content-area.no-margin{
  margin-top: 0px !important
}

.shop-info-container {
  margin-top: var(--top-margin) !important;
  text-align: center;
  background: linear-gradient(99.43deg, #D7F5FF 0%, #FFE9FF 100%);
  padding: 16px 8px;
}

.info-container-holder{
  background: var(--wp--preset--color--white);
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 20px;
  padding: 40px 20px;
  justify-content: center;
  max-width: var(--content-width);
  width: 100%;
  align-items: center;
}

.shop-info-container h1 {
  font-family: Good Times;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.75rem;
  line-height: 120%;
  color: transparent;
  background-image: var(--wp--preset--gradient--sfuma);
  background-clip: text;
  -webkit-background-clip: text;
}

.shop-info-container h2 {
  font-family: DM Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 1.25rem;
  line-height: 120%;
}

.shop-info-container.no-margin h2{
  font-weight: 600;
}

.shop-info-container p {
  font-family: DM Sans;
  font-weight: 500;
  font-style: Medium;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 0px !important;
}

.twofa-button {
  border: 1px solid var(--wp--preset--color--black);
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
  padding: 0px 16px;
  background: transparent;
  color: var(--wp--preset--color--black);
}

#toast {
  visibility: hidden;
  min-width: 200px;
  background-color: #4caf50;
  color: white;
  text-align: center;
  border-radius: 8px;
  padding: 10px 16px;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.5s ease, bottom 0.5s ease;
}

#toast.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

#twofaModal .modal-content {
  padding: 25px;
}

#twofaModal .modal-content .modal-title {
  font-family: 'DM Sans';
  font-size: 1.5rem;
  color: var(--wp--preset--color--black);
  line-height: 140%;
  margin-bottom: 10px;
  font-weight: 600;
}

#twofaModal .modal-content .modal-body p {
  font-family: 'DM Sans';
  font-size: 1rem;
  color: var(--wp--preset--color--darkgrey);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

#twofaModal .modal-content ol {
  padding-left: 0px;
  font-size: 1rem;
  color: var(--wp--preset--color--black);
}

#twofaModal .modal-ul-container {
  border: none;
  box-shadow: none;
  padding: 0px;
  padding-left: 10px;
}

.modal-ul-container ol li .title {
  color: var(--wp--preset--color--black) !important;
}

.modal-ul-container ol li .desc {
  color: var(--wp--preset--color--black) !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
}

.barcode {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.barcode img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

#copy-token {
  border: none;
  background: transparent;
  font-size: 0.8rem;
  color: var(--wp--preset--color--black);
}

#copy-token i {
  margin-left: 5px;
}


#twofaModal .modal-footer button {
  border: 1px solid var(--wp--preset--color--black);
  font-size: 14px;
  padding: 4px 30px;
  border-radius: 99px;
  background: none;
}

#twofaModal .modal-footer button i {
  margin-left: 5px;
}

#twofaModal .modal-ul-container {
  display: none;
}

.modal-ul-container.token-step {
  padding: 0px !important;
  color: var(--wp--preset--color--black) !important;
}

.modal-ul-container.token-step .title {
  font-size: 1.3rem !important;
  color: var(--wp--preset--color--black) !important;
}

.modal-ul-container.token-step .desc {
  font-size: 0.8rem !important;
  color: var(--wp--preset--color--black) !important;
}

.modal-ul-container.token-step input {
  width: 100%;
  padding: 5px 15px;
  border-radius: 99px;
  border: 1px solid var(--wp--preset--color--black);
  color: var(--wp--preset--color--black);
  font-size: 1rem;
}

p.error {
  display: none;
  color: #dc3545 !important;
  font-size: 9px !important;
  margin-top: 5px !important;
  margin-bottom: 0px !important;
}

.step-button i.loader {
  box-shadow: none;
  border: none;
  display: none;
}

.token-step h1 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 140%;
  background-image: var(--wp--preset--gradient--sfuma);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin: 0px 0px 10px 0px;
  padding: 0px;
  text-align: left;
}

#step3 p {
  font-size: 0.9rem !important;
  text-align: left !important;
}

.login-button:disabled {
  cursor: not-allowed;
  background: var(--wp--preset--color--lightgrey);
  color: var(--wp--preset--color--black);
}

.hub-response {
  text-align: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wp--preset--color--black);
  opacity: 0.6;
}

.add-payment-method {
  background: none;
  border: none;
  padding: 10px 16px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--wp--preset--color--violamain);
}

.add-payment-method:hover {
  background: var(--wp--preset--color--violamain);
  color: var(--wp--preset--color--white);
}

.add-payment-method i {
  margin-left: 10px;
}

div.line {
  margin: 15px 0px;
  border-bottom: 1.5px solid var(--wp--preset--color--lightgrey);
  width: 100%;
}


#addCardModal .modal-content {
  padding: 25px !important;
}

#addCardModal .modal-content .close-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  position: absolute;
  right: 5px;
  top: 5px;
}

#addCardModal .modal-content .payment-box-label img {
  width: 50px;
  margin-left: 5px;
}

#add-card-form {
  background: #dcd7e3;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 16px;
}

#add-card-form::before {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  margin: 1em 0;
  font-size: .92em;
  border-radius: 2px;
  line-height: 1.5;
  background-color: #dcd7e3;
  color: #515151;
}

.InputElement {
  border: 1px solid var(--wp--preset--color--black);
}

.stripe-card label {
  font-size: 14px;
  color: #30313d;
}

.info-holder div {
  padding: 10px;
  border-radius: 5px;
  background: var(--wp--preset--color--white);
}

.info-holder.col-sm-12 {
  width: 100%;
  max-width: 100%;
}

.button-holder button {
  border: none;
  border-radius: 16px;
  background: var(--wp--preset--color--violamain);
  color: var(--wp--preset--color--white);
  font-size: 14px;
  font-family: 'DM Sans';
  padding: 5px 30px;
}

.button-holder button:disabled {
  background: var(--wp--preset--color--darkgrey);
  cursor: not-allowed;
}

.payment-box-label {
  font-size: 1rem;
  font-weight: 600;
}

.cards-row {
  gap: 30px;
  flex-wrap: wrap;
}

.card.visa-card {
  padding: 20px !important;
  font-family: 'DM Sans';
  display: flex;
  gap: 20px;
  flex-direction: row;
  align-items: flex-start;
  box-shadow: 0px 0px 7px 0px #00000008;
  border: 1px solid #F1F1F1;
  border-radius: 9px;
  height: fit-content !important;
}

.card.visa-card h3 {
  font-family: 'DM Sans';
  font-size: 1rem !important;
  line-height: 1rem !important;
  font-weight: 700;
  color: var(--wp--preset--color--black);
}

.card.visa-card p {
  font-size: 0.8rem;
  color: var(--wp--preset--color--darkgrey);
}

.card.visa-card img {
  width: 40px;
  margin-top: 2px;
  height: auto;
}

.cards-row .card.col-lg-4 {
  max-width: calc(33.3333% - 20px) !important;
  width: calc(33.3333% - 20px) !important;
}


@media (max-width: 1200px) {
  .cards-row .card.col-md-6 {
    max-width: calc(50% - 15px) !important;
    flex: 0 0 50% !important;
    width: calc(50% - 15px) !important;
  }
}

@media (max-width: 786px) {
  .cards-row .card.col-sm-12 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
    width: 100% !important;
  }
}

.card.visa-card button {
  background: transparent;
  color: var(--wp--preset--color--black);
  border: none;
  font-family: DM Sans;
  font-weight: 600;
  font-size: 12px;
  line-height: 160%;
  padding: 5px 0px;
  margin-right: 5px;
}

.card.visa-card button.remove {
  color: #EB001B;
}

.visa-desc p:last-child {
  margin-bottom: 0px !important;
}

.card.visa-card.removed {
  opacity: 0.5;
  cursor: not-allowed;
}

.card.visa-card.removed button {
  cursor: not-allowed;
}

.pill {
  position: absolute;
  right: 20px;
  top: 10px;
  background: #6276DD1C;
  padding: 5px 10px;
  border-radius: 8px;
  font-family: DM Sans;
  font-weight: 500;
  font-size: 12px !important;
  line-height: 160%;
  color: var(--wp--preset--color--violamain) !important;
}

.payment-title {
  font-family: DM Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 160%;
  color: var(--wp--preset--color--black);
}

#customer_details .col-1 {
  z-index: 0;
}

p.error.show {
  display: block;
}

.hr{
  width: 100%;
  border-bottom: 1px solid var(--wp--preset--color--violamain);
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-address a{
  color: var(--wp--preset--color--white);
}