:root {
    --primary-color:#02382F;
    --primary-darker: #FF6750;
    --global-font: "Montserrat", sans-serif;
    
}

html {
    font-size: 16px;
}

h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
    font-family:var(--global-font);
}

h3,
h4,
h5 {
    font-size:1.2rem;
}

p,
ul,
em,
ol {
    font-family:var(--global-font);
    font-weight:400;
    font-size:1rem;
    color: #1D3653;
}

span {
    font-family:var(--global-font);
    font-weight:400;
    font-size:16px;
}

a {
    font-family:var(--global-font);
    font-weight:400;
    font-size:16px;
}

img {
    max-width: 100%;
}

.spacer {
    height: 5vh;
}

.color-green {
    color: #4CA585;
}

.color-light-green {
    color:#B6DBD3;
}

.color-white {
    color: #fff;
}

.color-blue {
    color: #1D3653;
}

.hover-green:hover {
    color:#4CA585;
}

.uppercase {
    text-transform: uppercase;
}

.no-decoration {
    text-decoration: none;
}

.fs-08 {
    font-size:0.8rem;
}

.fs-09 {
    font-size:0.9rem;
}

.fs-11 {
    font-size:1.1rem;
}

.fs-12 {
    font-size:1.2rem;
}

.fw-500 {
    font-weight:500;
}

.fw-600 {
    font-weight:600;
}

.fw-700 {
    font-weight:700;
}

.title-h {
    font-size: 2rem;
    font-weight: 700;
}

@media only screen and (max-width: 600px) {
    .title-h {
        font-size: 1.5rem;
    }
  }

.w-80 {
    width: 80%;
}

.w-25-alt {
    width:25%;
}

@media (max-width: 600px) {
    .w-80 {
        width: 100%;
    }

    .w-25-alt {
        width:100% !important;
    }
}

.br-20 {
    border-radius: 20px;
}

.br-50 {
    border-radius: 50px;
}

.nav-mob {
    display: none;
}

@media (max-width: 767px) {
    .nav-desk {
        display: none;
    }
    
    .nav-mob {
        display: block;
    }
}

.top-bar {
    background-color: #DAF6DD;
}

.top-bar p {
    font-size:12px;
    margin:0;
}

.main-menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0;
    gap:2%;
    margin:0;
}

.submenu {
    list-style: none;
    position: absolute;
    left: 10%;
    width: 80%;
    background-color: #DAF6DD;
    padding:80px;
    margin-top:30px;
    z-index: 9999;    
    border-radius: 10px;
}

.submenu-head {
    color: #4CA585;
    font-family: Montserrat;
    font-size: 16px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 5px;
}

.submenu-head::before {
    content: ''; 
    display: inline-block; 
    width: 18px; 
    height: 18px; 
    background-image: url('https://www.benessence.it/wp-content/uploads/2024/02/menu-before.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    margin-right: 5px; 
    vertical-align: middle; 
}

.main-menu .submenu {
    display: none;
}

.main-menu li:hover > .submenu {
    display: block;
}

.menu-item {
    padding:10px 15px;
    border-radius: 20px;
    background-color: #E2F1ED;
    transition: 0.5s;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    gap:10px;
}

.menu-item:after {
    content: "\f347";
    font-family: "Dashicons";
}

.menu-item:hover::after {
    content: "\f343";
    font-family: "Dashicons";
    
}

.menu-item a {
    font-family:var(--global-font);
    font-weight:500;
    font-size:14px;
    text-decoration: none;
    color: #1D3653;
}

.menu-item:hover a {
    color: #1D3653;
}

.menu-item a:hover {
    color: #fff;
}


.menu-item-noc {
    padding:10px 15px;
    border-radius: 20px;
    background-color: #E2F1ED;
    transition: 0.5s;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    gap:10px;
}

.menu-item-noc a {
    font-family:var(--global-font);
    font-weight:500;
    font-size:14px;
    text-decoration: none;
    color: #1D3653;
}

.menu-item-noc:hover {
    background: #4CA685;
}

.menu-item-noc:hover a {
    color: #1D3653;
}

.menu-item-noc a:hover {
    color: #fff;
}

.submenu-item a {
    padding:0;
}

.submenu-item a:hover {
    background-color: #B6DBD3;
    border-radius: 3px;
}

.submenu-img {
    display: flex;
    flex-direction: column;
    flex-basis: 33%;
}

.submenu-img img {
    border-radius:20px;
    margin-bottom:10px;
}

.submenu-item-alt {
    margin-top:10px;
}

.submenu-item-alt a{
    color: #4CA585 !important;
    text-transform: uppercase !important;
    font-weight:700 !important;
}

.menu-item:hover {
    color:#fff;
    background-color: #4CA585;
    border-radius:20px 20px 0px 0px;
}

#offcanvasTop {
    height:90vh !important;
    z-index: 999999;
    background-color: #DAF6DD;
}

.btn-mob-menu::before {
    content: ''; 
    display: inline-block; 
    width: 18px; 
    height: 18px; 
    background-image: url('https://www.benessence.it/wp-content/uploads/2024/01/Menu.svg'); 
    background-size: contain; 
    background-repeat: no-repeat;
    margin-right: 5px; 
    vertical-align: middle; 
}

.cerca::before {
    content: ''; 
    display: inline-block; 
    width: 18px; 
    height: 18px; 
    background-image: url('https://www.benessence.it/wp-content/uploads/2024/01/search.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    margin-right: 5px; 
    vertical-align: middle; 
}

.nav-mob-head-men {
    font-size:1rem !important; 
    background-color: transparent !important;   
}

.nav-mob-head-men::before {
    content: ''; 
    display: inline-block; 
    width: 11px; 
    height: 11px; 
    background-image: url('https://www.benessence.it/wp-content/uploads/2024/01/mob-frame.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    margin-right: 5px; 
    vertical-align: middle; 
}

.accordion-item .d-block {
    text-decoration: none;
    font-weight: 600;
    color:#1D3653;
}

.custom-logo {
    height:60px;
}    

@media (max-width: 500px) {
    .custom-logo {
        height:auto;
    }    
}

#menuAccordion a{
    margin-bottom: 10px;
}

.btn-close {
    opacity: 1 !important;
}

#homeSlider {
    height:500px;
}

.carousel-item img {
    height:500px;
    object-fit: cover;
}

.carousel-indicators {
    justify-content: flex-start !important;
}

.carousel-caption {
    top:25%;
    width:50%;
    text-align: left !important;
}

@media only screen and (max-width: 600px) {
    .carousel-caption {
        top:5%;
        width:80%;
    }
}

.carousel-caption h1{
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
}

.carousel-caption p{
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1em;
}

@media only screen and (max-width: 600px) {
    .carousel-caption p{
        font-size: 1rem;
    }
}

.carousel-indicators button {
    width:10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    border:0px !important;
    margin-bottom: 5% !important;
}

.carousel-indicators button[aria-current="true"]    {
    width:25px !important;
    height: 10px !important;
    border-radius: 10px !important;
}

.be-button {
    font-family: var(--global-font);
    font-size:16px;
    font-weight:600;
    text-transform: uppercase;
    padding:8px 15px;    
    border-radius:25px;
    text-decoration: none;
}

.be-button:disabled {
    cursor: not-allowed !important;
    opacity: 0.6;
}

.be-button:hover {
    cursor: pointer;
}

.be-btn-green {
    background-color: #DAF6DD;
    color: #4CA585;
    border:1px solid #4CA585;
}

.be-btn-green-dark {
    background-color: #4CA585;
    color: #fff;
    border:1px solid #4CA585;
}

.be-btn-green:hover {
    background-color: #fff;
    color: #4CA585;
    border:1px solid #4CA585;
}

.be-btn-blue {
    background-color: #1D3653;
    color: #fff;
    border:1px solid #1D3653;
}

.be-btn-blue:hover {
    background-color: #4CA585;    
    border:1px solid #4CA585;
}

.be-btn-w-100 {
    width: 100%;
    display: flex;
    justify-content: center;
}

.be-btn-nav {
    font-family: var(--global-font);
    background-color: #fff;
    border: none;
    color: #313131;
    font-size:0.9rem;
    text-decoration: underline;
}

.preferiti::before {
    content: ''; 
    display: inline-block; 
    width: 18px; 
    height: 18px; 
    background-image: url('https://www.benessence.it/wp-content/uploads/2024/02/whishlist-1.svg'); 
    background-size: contain; 
    background-repeat: no-repeat;
    margin-right: 5px; 
    vertical-align: middle; 
}


.accedi::before {
    content: ''; 
    display: inline-block; 
    width: 18px; 
    height: 18px; 
    background-image: url('https://www.benessence.it/wp-content/uploads/2024/02/user.svg'); 
    background-size: contain; 
    background-repeat: no-repeat;
    margin-right: 5px; 
    vertical-align: middle; 
}

.carrello::before {
    content: ''; 
    display: inline-block; 
    width: 18px; 
    height: 18px; 
    background-image: url('https://www.benessence.it/wp-content/uploads/2024/01/cart.svg'); 
    background-size: contain; 
    background-repeat: no-repeat;
    margin-right: 5px; 
    vertical-align: middle; 
}

@media (max-width: 767px) {
    .preferiti::before,
     .accedi::before,
     .carrello::before
     {
        width:25px;
        height:25px;
     }    
}

.carrello-qty {
    position: absolute;
    top: -5px;
    left: 5px;
    background-color: #4CA585;
    border-radius: 50%;
    font-size: 12px;
    height: 20px;
    width: 20px;
    text-align: center;
    color:#fff;
    font-weight: 600;
}

@media (max-width: 767px) {
    .carrello-qty {
        top: 20px;
        right: 13px;
        left: auto;
    }    
}

.be-blocks {
    border-radius: 15px 15px 15px 0px;
    background: #DAF6DD;
    flex-grow: 1;
    align-items: center;
    text-align: center;
}

.be-blocks img {
    width:120px;
}

.be-blocks h4 {
    color: #1D3653;
    text-transform: uppercase;
    font-weight: 700;
}

.be-blocks p {
    text-transform: uppercase;
}

.tbl-custom-carousel {
    position: relative;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    overflow: hidden;
}

.tbl-carousel-items {
    display: flex;
    transition: transform 0.5s ease;
    margin-right: -15px; 
}

.tbl-carousel-item {
    flex: 0 0 calc(33.333% - 15px);;
    max-width: calc(33.333% - 15px); 
    margin-right: 15px;
    box-sizing: border-box;
    display: flex;
}

.tbl-carousel-control-prev, .tbl-carousel-control-next {
    position: absolute;
    transform: translateY(-700%);
    background-color: #DAF6DD;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 100;   
    display: flex;
    align-items: center;
    justify-content: center; 
    width: 40px;
    height: 40px;
    color: #fff;
}

.tbl-carousel-control-prev {
    left: 8%;
}

.tbl-carousel-control-next {
    right: 8%;
}

.wc-block-grid__product-add-to-cart {
    display: flex;
    flex-direction: column;
    gap:5px;
}

@media only screen and (max-width: 600px) {
    .tbl-carousel-control-prev {
        left: 0.5%;
    }

    .tbl-carousel-control-next {
        right: 3%;
    }
}

@media (min-width: 2000px) {
    .tbl-carousel-control-prev {
        left: 25%;
    }
    .tbl-carousel-control-next {
        right: 25%;
    }
}

@media (min-width: 1800px) {
    .tbl-carousel-control-prev {
        left: 16%;
    }
    .tbl-carousel-control-next {
        right: 16%;
    }
}

@media (max-width: 767px) {
    .tbl-carousel-item {
        flex: 0 0 calc(100% - 15px); /* Full width minus gap for mobile */
        max-width: calc(100% - 15px); /* Same as above */
    }
    .tbl-carousel-items {
        margin-right: 0; /* Remove the right margin on mobile */
    }
}


.card {
    border-radius: 15px;
    background-color: #DAF6DD !important;
    flex-grow: 0;
    padding:0px !important;
    margin-bottom:10px;
}

.card-31 {
    width:31% !important;
}

.card-48 {
    width:48%;
}

@media (max-width: 767px) {
    .card-31 {
        width: 90% !important;
    }
    .card-48 {
        width: 90%;
    }
}

@media (max-width: 767px) {
    .card-pag-content {
        justify-content: center;
    }
}

.card-img-top {
    border-radius: 15px 15px 99.5px 0px;
}

.card-title {
    color: #1D3653;
    font-family: var(--global-font);
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.2rem;
    margin-bottom: 15px;
}

.card-text {
    color: #1D3653;
    font-family: var(--global-font);
}

.tbl-carousel-control-prev {
    border-radius: 50%;
    background-color: #4CA585;
}

.tbl-carousel-control-next {
    border-radius: 50%;
    background-color: #4CA585;
}

@media only screen and (max-width: 600px) {
    .tbl-carousel-control-prev {
        border-radius: 50%;
        background-color: #4CA585;
    }
    
    .tbl-carousel-control-next {
        border-radius: 50%;
        background-color: #4CA585;
    }
}

.card-price-cont {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom:15px;
    gap:5px;
}

@media only screen and (max-width: 600px) {
    .card-price-cont {
        flex-wrap: wrap;
    }
}

.card-price-regular {
    color: #4CA585;
        font-family: var(--global-font);
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
}

.card-price-sale {
    color: rgba(36, 155, 62, 0.43);
    font-family: var(--global-font);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px; /* 120% */
    text-decoration-line: strikethrough;
}

.card-discount-box {
    position: absolute;
    width: 85px;
    height: 60px;
    left:0;
    top:0;
    border-radius: 15px 0px;
    background: #4CA585;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--global-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.wishlist::before,
.wishlist-btn-rem::before
{
    content: ''; 
    display: inline-block; 
    width: 20px; 
    height: 20px; 
    background-image: url('https://www.benessence.it/wp-content/uploads/2025/05/heart-vuoto.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    margin-right: 8px; 
    vertical-align: middle; 
}

.wishlist-button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 35px;
    height: 35px;
    background-image: url('https://www.benessence.it/wp-content/uploads/2025/05/heart-vuoto.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: center;
}

.wishlist-button:hover {
    cursor: pointer;
}

.wishlist-button-remove {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 35px;
    height: 35px;
    background-image: url('https://www.benessence.it/wp-content/uploads/2025/05/heart-pieno.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: center;
}

.wishlist-button-remove:hover {
    cursor: pointer;
}

#wishlist-page {
    min-height: 500px;
}

.product-categories {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

@media only screen and (max-width: 600px) {
    .product-categories {
        overflow-x: scroll;
        padding-bottom: 15px;
    }
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 20%;
}

@media only screen and (max-width: 600px) {
    .category {
        display: flex;
        flex: 0 0 auto;
        flex-shrink: 0;
    }
}

@media only screen and (max-width: 600px) {
    .product-categories {
        overflow-x: scroll;
    }
}

.add-to-cart::before {
    content: ''; 
    display: inline-block; 
    width: 20px; 
    height: 20px; 
    background-image: url('https://www.benessence.it/wp-content/uploads/2024/01/Bag.svg'); 
    background-size: contain; 
    background-repeat: no-repeat;
    margin-right: 8px; 
    vertical-align: middle; 
}

.bkg-green {
    background-color: #DAF6DD;
}

.bkg-d-green {
    background-color: #4CA585;
}

.foot-news-img {
    border-radius: 10px 130px;
    margin-top: -15%;
}

.foot-news-img-2 {
    border-radius: 130px 10px;
    margin-top: -15%;
}

@media only screen and (max-width: 600px) {
    .foot-news-img {
      margin-top:10%;
      border-radius: 10px 80px;
    }
    .foot-news-img-2 {
        margin-top:10%;
        border-radius: 80px 10px;
      }
}

.above-footer {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 12px 22.9px 2px rgba(0, 0, 0, 0.11);
    margin-bottom: -5%;
    padding: 15px;
    margin-top: -5%;
    position: absolute;
    left: 5%;
    width: 90%;
}

@media only screen and (max-width: 600px) {
    .above-footer {
        border-radius: 10px;
        background: #FFF;
        box-shadow: 0px 12px 22.9px 2px rgba(0, 0, 0, 0.11);
        margin-bottom: -5%;
        padding: 15px;
        margin-top: -5%;
        position: relative;
        left: 0;
        width: 100%;
    }

    .p-above-footer {
        font-size:0.9rem;
    }
}

.img-above-footer {
    width:80px;
}

.p-above-footer {
    font-size:1.2rem;
    margin:0;
    color: #4CA585;
    text-transform: uppercase;
}

#loader-cont {
    display: flex;
    justify-content: center;
    padding: 2%;
}

.loader {
    border: 2px solid transparent; 
    border-top: 2px solid #1D3653;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 0.5s linear infinite;
}

.loader-white {
    border: 2px solid transparent; 
    border-top: 2px solid #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.accordion-body {
    font-family: var(--global-font);
}

.accordion-button {
    font-size: 1.5rem;
    color: #4CA585;
    font-weight:700;
}

.accordion-button:focus {
    border-color: #fff !important;
    outline: 0;
    box-shadow: none  !important;
}

.accordion-button:not(.collapsed) {
    color: #1D3653;
    background-color: #fff;
    box-shadow: none;
}

.accordion-button.no-child::after {
    display: none !important;
}

#offcanvasCart {
    z-index: 999999;    
}

.ajax-remove-cart-item {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background-color: red;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.ajax-remove-cart-item:hover {
    background-color: white;
    color: red;
}

.product-name a {
    text-decoration: none;
    color: #1D3653;
    font-weight: 600;
}

#cart-quantity {
    font-family: var(--global-font);
}

#quantity {
    font-family: var(--global-font);
}

.attachment-woocommerce_thumbnail {
    width:100%;
    height:100%
}

.woocommerce-product-gallery__trigger {
    position: absolute;
    background-color: #B6DBD3;
    padding:5px;
}

.woo-gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.woocommerce-product-gallery__image img {
    width: 150px;
    height: 150px;
}

.product-des {
    font-size: 1.2rem;
    width:auto;
}

.dettaglio-list {
    padding-left: 0px;
}

.dettaglio-list li {
    list-style-type: none;
    padding-left: 5px;
}

.dettaglio-list li:before {
    font-family: "Dashicons";
    content: "\f12a";
    color: green;
    margin-right: 5px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.product-ct-clm-cont {
    margin-top: -25%;
}

.product-ct-clm {
    border-radius: 20px 90px 90px 90px;
    background: #DAF6DD;
    padding:90px 40px;
}

.product-ct-clm img{
    width:85px;
}

@media (max-width: 600px) {
    .product-ct-clm {
        padding: 50px 40px;
        margin-bottom:20px;
    }

    .product-ct-clm-cont {
        margin-top: -80%;
    }
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--global-font);
    color: #1D3653;
}

.custom-table td {
    background-color: #fff;
    border-bottom: 1px solid #DAF6DD;
    padding: 8px;
    text-align: left;
    width: 50%;
}

.custom-table-td-1 {
    font-size:1.2rem;
}

@media (max-width: 600px) {
    .custom-table td {
        display: block;
        width: 100%;
    }

    .custom-table td:first-child {
        background-color: #f0f0f0;
    }
}

.wc-block-components-quantity-selector__input-2 {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: currentColor;
    flex: 1 1 auto;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    min-width: 40px;
    order: 2;
    padding: 0.4em 0;
    text-align: center;
    vertical-align: middle;
}

.wc-block-components-quantity-selector__button--minus-2 {
    border-radius: 4px 0 0 4px;
    order: 1;
}

.wc-block-components-quantity-selector__button--plus-2 {
    border-radius: 0 4px 4px 0;
    order: 3;
}

#product_variations {
    margin: 0 0 0.25em;
    padding: 0.33em 0;
    border-radius: 4px;
    border-color: #9b9d9e;
    font-family: var(--global-font);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding-right: 25px;
}

.pagination a {
    text-decoration: none;
    color:#B6DBD3;
    font-size:18px;
}

.current {
    font-size:18px;
}

@media (max-width: 500px) {
    .pagination a {
        font-size:18px;
    }    

    .pagination {
        gap:15px;
    }

    .current {
        font-size:18px;
    }    
}

.page-numbers.current {
    font-weight: bold;
    color: #4CA585;
}

.page-numbers.prev, .page-numbers.next {
    font-weight: bold;
    color: #4CA585;
}

.archive-product-categories {
    list-style-type: none;
    padding:0;
}

.archive-product-category {
    list-style-type: none;    
}

.archive-subcategory-list {
    list-style-type: none;
    padding:20px 0 5px 25px;
}

.archive-subcategory {
    padding:5px 0;
    list-style-type: '\2192';
    padding-inline-start: 1ch;
}

.archive-subcategory-list-2 {
    list-style-type: none;
    padding:5px 0 5px 5px;
}

.archive-subcategory-2 a:hover {
    background-color: #DAF6DD;
    padding:5px;
}

.category-divider {
    border:1px solid #4CA585;
}

.home-sez5-img {
    width: 100px;
    border-radius: 50%;
}

.home-other-cat {
    height:400px;
    border-radius: 10px 10px 150px 10px;
    width:32%;
}

.home-other-cat2 {
    height:400px;
}

@media (max-width: 767px) {
    .home-other-cat {
        height:250px;
        border-radius: 10px 10px 10px 10px;
        width:100%;
        margin-bottom:10px;
    }
    
    .home-other-cat h3 {
        font-size: 1.6rem;
    }
}

#product-order {
    width: 100%;
    padding: 10px 5px;
    font-family: var(--global-font);
}

.product-points {
    font-family: var(--global-font);
    font-size: 14px;
    margin-bottom: 5px;
}

.cat-bal-hold {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:10px;
}

.cat-bal-cont {
    padding: 8px 15px;
    background: #DAF6DD;
    border-radius: 20px;
}

.cat-active {
    background-color: #4CA585 !important;    
}

.cat-active a {
    color:#fff;
}

.home-cat-img {
    width:120px !important;
    height:120px !important;
    border-radius:50%;
}

.modal-content {
    font-family: var(--global-font);
    top:25px;
}

@media (min-width: 600px) {
    .modal-content {
        width:90% !important;
    }
}

.post-abt {
    height:400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 0 130px 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    position: relative;
    z-index:1;
}

.post-background-image {    
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 0 0 130px 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}  

@media (max-width: 850px) {
    .post-background-image {
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 500px) {
    .post-abt{
        height: 250px;
    }    
}

.abt-date::before {
    content: '\f508';
    font-family: 'Dashicons';
}

.cat-baloon {
    background-color: #DAF6DD;
    padding:8px 15px;
    border-radius:50px;
    margin:auto;
    font-size:0.9rem;
    display: inline-block;
}

@media only screen and (max-width: 600px) {
    .cat-scroll {
      overflow-x: scroll;
      white-space: nowrap;
    }
}

.post-loop {
   padding:25px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   gap: 10px;
}

.post-loop-img {
    border-radius: 10px 10px 130px 10px;
    height: 150px;
    object-fit: cover;
    width:100%;
}

.post-loop p {
    margin-bottom:5px;
}

.post-template-btm p,a {
    font-size:1rem;
}

.post-template-btm a:hover {
    text-decoration: underline;
    text-decoration-color: #4CA585;
}

.img_full {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-content: flex-end;
    height: 425px;    
}

.foot-button-style {
    display: inline-block;
    background: hsla(155, 33%, 84%, 1);
    border-radius: 20px;
    border: 1px solid #DAF6DD;
    text-decoration: none;
    padding: 10px 20px; 
    color: inherit; 
    margin-top:8px;
}

.foot-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.foot-icon {
    max-width: 30px; 
    margin-right: 10px;
}

.email-text-foot {
    color: #4CA585;
    font-size: 0.8rem;
}

.cat-archive-clm {
    position: fixed;
    right: 0;
    bottom:50px;
}

@media (max-width: 767px) {
    .cat-archive-clm  {
        position: relative;
    }
}

.mt-custom-cat {
    margin-top:30px;
    margin-bottom: 50px;
}

#scrollTopButton {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed position */
    bottom: 150px; /* Place it 20px from the bottom */
    right: 35px; /* Place it 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    color: white; /* White text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 10px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

@media (max-width: 600px) {
    #scrollTopButton {
        right: 5%;
    }
}

#scrollTopButton:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}

#breadcrumbs {
    margin:0 !important;
}

#breadcrumbs a{
    color: #fff;
    text-decoration: none;
}

#breadcrumbs span{
    color: #fff;
}

.breadcrumb_last {
    color:#4CA585 !important;
    background-color: #DAF6DD;
    padding:5px;
    border-radius: 5px;
    font-size: 14px;
}

#activecampaign-form {
    font-family: var(--global-font);
    width:100%;
}

@media (max-width: 600px) {
    #archive-products {
        justify-content: center;
    }
}

.woocommerce-pagination {
    text-align: center;
}

.woocommerce-pagination ul {
    list-style-type: none;
    padding: 0;
}

.woocommerce-pagination ul li {
    display: inline-block;
    margin: 0 3px;
}

.woocommerce-pagination ul li span{
    font-size: 1.2rem;
    text-decoration: none;
    color:#4CA585;
}

.woocommerce-pagination ul li a{
    font-size: 1.2rem;
    text-decoration: none;
    color:#4CA585;
}

.custom-social-icons a {
    text-decoration: none;
    color: #ffffff;
}

.custom-social-icons .dashicons {
    font-size: 24px;
    margin-right: 8px;
}

/************************/
/* Layout Pagine Interne /
/************************/

.cs-card {
    border-radius: 20px 60px 60px 60px;
    border:0 !important;
}

.cs-card h4::before {
    content: ''; 
    display: inline-block; 
    width: 30px; 
    height: 30px; 
    background-image: url('https://www.benessence.it/wp-content/uploads/2024/02/check-1.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    margin-right: 5px; 
    vertical-align: middle; 
}

#contact-form label {
    width:100%;
}

#contact-form input {
    width:100%;
    padding: 12px 10px;
    border-radius: 5px;
    border:1px solid #4CA585;
}

#contact-form textarea {
    width:100%;
    padding: 12px 10px;
    border-radius: 5px;
    border:1px solid #4CA585;
}

.head-img-round {
    border-radius: 0 0 150px 0;
}

.green-cont-holder {
    background-color: #DAF6DD;
    border-radius: 20px 60px 60px 60px;
}

form[role="search"] input[type="search"] {
    padding: 10px;
    margin: 0;
    border: 1px solid #ccc;
    font-family: var(--global-font);
}

.search-form .search-box {
    position: relative;
    display: inline-block;
}

.search-form input[type="search"] {
    padding-right: 30px; /* Adjust based on the size of your icon */
    width: 100%;
}

.search-form .search-box::after {
    content: '\f179'; /* This is the Unicode for the search Dashicon */
    font-family: 'Dashicons';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 20px; /* Adjust size as needed */
    color: #333; /* Adjust color as needed */
}



/************************/
/* Feedaty plugin        /
/************************/

.fdt_merchantStriscia-2_widget_merchant {
    background-color: transparent !important;
}

.fdt_merchantStriscia-2_widget_merchant a{
    justify-content: flex-start !important;
    gap:5px;
}

.fdt_merchantStriscia-2_vote {
    display: none !important;
}

.fdt_merchantStriscia-2_stars {
    min-width: 80px !important;
    width:80px !important;
}

.fdt_merchantStriscia-2_logo img {
    width:80px !important;
}

.fdt_productStriscia-full_widget_product {
    background-color: transparent !important;
}

.fdt_productStriscia-full_ratx {
    display: none;
}

.fdt_productStriscia-full_widget_row {
    display: none !important;
}

.fdt_productStriscia-full_logo {
    display: none;
}

.feedaty_fwr_product_badge {
    margin-bottom:10px;
}

#feedaty-archive {
    margin-bottom: 15px;
}

#feedaty-archive .fdt_productStriscia-full-nologo_widget_product {
    background-color: transparent !important;
    max-width: 100% !important;
}

#feedaty-archive .fdt_productStriscia-full-nologo_ratx {
    display: none !important;
}

#feedaty-archive .fdt_productStriscia-full-nologo_widget_row {
    display: none !important;
}

#feedaty-single-product {
    width:70%;
}

@media (max-width: 600px) {
    #feedaty-single-product {
        width:100%;
    }
}


/* Slick Slider */

.loading-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.slick-track {
    display: flex;
}
  
.slick-slide {
    height: auto;
    display: flex !important;
    flex-direction: column;
}

.slick-arrow {
    background-color: #4CA585;
    color:#fff;
    border:none;
    border-radius: 50%;
    width: 40px;
    height:40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.slick-prev, .slick-next {
  z-index: 1;
}

.slick-prev {
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  cursor: pointer;
}

.slick-next {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  cursor: pointer;
}

@media (max-width: 600px) {
    .slick-prev {
        left:0;
    }
    .slick-next{
        right:0;
    }
}

.pll-switcher-select {
    font-family: var(--global-font);
    font-size:0.9rem;
}

.lang-item {
    list-style: none;
}
  

  /*Fix mobile card height*/
    @media (max-width: 767px) {
       .card.m-1.flex-grow-1.fixHeightMobile{
            min-height:570px!important; 
        }
    }


.yith-par-message {
    padding: 15px;
    border-radius: 15px;
}

.yith-par-message h4 {
    font-size:1rem !important;
    margin:0;
}

.product_point {
    font-weight: 700;
}

.news-ticker-bar {
    background-color: #4ca685;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    z-index: 999;
}

.ticker-container {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.ticker-text {
    display: inline-block;
    padding-left: 100%;
    animation: ticker-scroll 40s linear infinite;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.card-body .fdt_productStriscia-full-nologo_txt_reviews {
    display: none;
}

.card-body .fdt_productStriscia-full-nologo_widget_product {
    background: #daf6dd !important;
    max-width: 150px !important;
    width: 150px !important;
    min-width: 150px !important;
}

.card-body .fdt_productStriscia-full-nologo_ratx {
    display: none;
}

.card-body .fdt_productStriscia-full-nologo_txt_opinions {
    display: none;
}

@media (max-width: 600px) {

    .cat-bal-hold {
        overflow: scroll;
        flex-wrap: nowrap;
    }
    .cat-bal-cont {
        white-space: nowrap;
    }

    .cat-bal-cont a {
        font-size: 14px;
    }
}

.password-hint {
    display: none;
    font-size: 12px;
    color: #666;
    margin-top: -8px;
    margin-bottom: 10px;
}

.pw-rules {
    list-style: none;
    padding-left: 0;
    margin: 5px 0 10px;
    font-size: 12px;
}

.pw-rules li {
    margin-bottom: 2px;
    opacity: 0.6;
}

.pw-rules li.ok {
    font-weight: 600;
    opacity: 1;
}

.woocommerce-password-strength,
.woocommerce-password-hint {
    display: none !important;
}
