@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: "woodmart-font";
	src: url("//www.piazzasanmarino.com/wp-content/themes/woodmart/fonts/woodmart-font-1-400.woff2?v=7.6.0") format("woff2");
}

:root {
	--wd-header-banner-h: 40px;
	--wd-text-font: "Lato", Arial, Helvetica, sans-serif;
	--wd-text-font-weight: 400;
	--wd-text-color: rgb(76,76,76);
	--wd-text-font-size: 16px;
	--wd-title-font: "Roboto", Arial, Helvetica, sans-serif;
	--wd-title-font-weight: 500;
	--wd-title-color: #242424;
	--wd-entities-title-font: "Roboto", Arial, Helvetica, sans-serif;
	--wd-entities-title-font-weight: 400;
	--wd-entities-title-color: #333333;
	--wd-entities-title-color-hover: rgb(51 51 51 / 65%);
	--wd-alternative-font: "Playfair Display", Arial, Helvetica, sans-serif;
	--wd-widget-title-font: "Roboto", Arial, Helvetica, sans-serif;
	--wd-widget-title-font-weight: 500;
	--wd-widget-title-transform: uppercase;
	--wd-widget-title-color: #333;
	--wd-widget-title-font-size: 16px;
	--wd-header-el-font: "Lato", Arial, Helvetica, sans-serif;
	--wd-header-el-font-weight: 400;
	--wd-header-el-transform: uppercase;
	--wd-header-el-font-size: 18px;
	--wd-primary-color: rgb(190,161,99);
	--wd-alternative-color: #fbbc34;
	--wd-link-color: rgb(251,188,52);
	--wd-link-color-hover: #242424;
	--btn-default-bgcolor: #f7f7f7;
	--btn-default-bgcolor-hover: #efefef;
	--btn-accented-bgcolor: rgb(190,161,99);
	--btn-accented-bgcolor-hover: rgb(173,141,74);
	--wd-form-brd-width: 2px;
	--notices-success-bg: #459647;
	--notices-success-color: #fff;
	--notices-warning-bg: #E0B252;
	--notices-warning-color: #fff;
}
.woodmart-woocommerce-layered-nav .wd-scroll-content {
	max-height: 223px;
}
.wd-popup.wd-age-verify {
	--wd-popup-width: 500px;
}
.wd-popup.wd-promo-popup {
	background-color: #111111;
	background-image: url(https://www.piazzasanmarino.com/wp-content/uploads/2021/07/promo-popup.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	--wd-popup-width: 800px;
}
.header-banner {
	background-color: rgb(190,161,99);
	background-image: none;
}
.page-title-default {
	background-color: #0a0a0a;
	background-image: none;
	background-size: cover;
	background-position: center center;
}
.footer-container {
	background-color: #ffffff;
	background-image: none;
}
.wd-popup.popup-quick-view {
	--wd-popup-width: 920px;
}

@media (max-width: 1024px) {
	:root {
		--wd-header-banner-h: 40px;
	}

}
:root{
--wd-container-w: 1600px;
--wd-form-brd-radius: 0px;
--btn-default-color: #333;
--btn-default-color-hover: #333;
--btn-accented-color: #fff;
--btn-accented-color-hover: #fff;
--btn-default-brd-radius: 0px;
--btn-default-box-shadow: none;
--btn-default-box-shadow-hover: none;
--btn-default-box-shadow-active: none;
--btn-default-bottom: 0px;
--btn-accented-bottom-active: -1px;
--btn-accented-brd-radius: 0px;
--btn-accented-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .15);
--btn-accented-box-shadow-hover: inset 0 -2px 0 rgba(0, 0, 0, .15);
--wd-brd-radius: 0px;
}

@media (min-width: 1600px) {
[data-vc-full-width]:not([data-vc-stretch-content]),
:is(.vc_section, .vc_row).wd-section-stretch {
padding-left: calc((100vw - 1600px - var(--wd-sticky-nav-w) - var(--wd-scroll-w)) / 2);
padding-right: calc((100vw - 1600px - var(--wd-sticky-nav-w) - var(--wd-scroll-w)) / 2);
}
}


p {
    text-align: justify;
}
html {
  scroll-padding-top: 96px;
}
#custom_html-2 {
  border-bottom: medium none !important;
	margin-bottom: 20px !important;
	padding-bottom: 0px !important;
}
.wd-nav>li>a {
    text-transform: none !important;
}
span.wd-tools-text {
    text-transform: none !important;
}
.wd-dropdown-menu.wd-design-default {
    --wd-dropdown-width: 290px !important;
}
.wd-close-side {
    z-index: 499 !important;
}
.woocommerce-product-gallery .product-labels[class*="labels-rounded"] {
     inset-inline-end: unset !important;
     left: 15px !important
}

/* Limita descrizione categoria */

.term-description {
    /* Set initial fixed height */
    max-height: 200px; /* Adjust this value as needed */
    
    /* Hide overflowing content */
    overflow: hidden;
    
    /* Add a smooth transition effect */
    transition: max-height 0.5s ease;
    
    /* Optional: Add a subtle shadow to indicate more content */
    position: relative;
    margin-bottom: 2em;
}

.term-description::after {
    /* Create a gradient overlay at the bottom to indicate more content */
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px; /* Height of the gradient */
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
    pointer-events: none; /* Allow clicks to pass through */
    transition: opacity 0.5s ease;
}

.term-description:hover {
    /* Expand to show full content */
    max-height: none; /* Set to none to show full content. Set to a value larger than the content height */
}

.term-description:hover::after {
    /* Hide the gradient overlay when expanded */
    opacity: 0;
}
/* PRENOTA IN NEGOZIO - OUT OF STOCK */
span.out-of-stock.product-label {
    display: none !important;
}
.prenota {
    background-color: #bea163;
    padding: 16px;
    color: white;
    width: 300px;
    border-radius: 5px;
    font-size: 120%;
}
p.stock.out-of-stock {
    color: #bea163 !important;
    font-weight: bold !important;
}
.page-title.page-title-default.title-size-small.title-design-centered.color-scheme-light.without-title.wd-nav-accordion-mb-on.title-shop {
    display: none !important;
}
li.meta-author {
    display: none !important;
}
@media (min-width: 768px) and (max-width: 1024px) {
	.wrapp-buttons {
    display: none !important;
}
}

@media (min-width: 577px) and (max-width: 767px) {
	.wrapp-buttons {
    display: none !important;
}
}

@media (max-width: 576px) {
	.wrapp-buttons {
    display: none !important;
}
}

