@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

:root {
    --lavorgomma-primary-color: #C6C7C8;
    --lavorgomma-secondary-color: #000000;
    --lavorgomma-blue-color: #aed4e6;
    --lavorgomma-hero-color: #E6E6E6;
    --lavorgomma-light-background-color: #f8f9fa;
    --lavorgomma-logo-blue-color: #0073aa;
    --lavorgomma-group-color: #6d6d6d;
    --bs-font-sans-serif: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --lavorgomma-dark-background-color: #222222;
    --lavorgomma-text-color: #000;
    --border-top-right-radius-xs:1rem;
    --border-top-right-radius-sm:1.5rem;
    --border-top-right-radius-md:2.5rem;
    --border-top-right-radius-xl:5rem;
    --fragment-width: 15%;
    --scrollbar-width: calc(100vw - 100%);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.bg-hero-color {
    background-color: var(--lavorgomma-hero-color);
}

.bg-lavorgomma-blue-color {
    background-color: var(--lavorgomma-blue-color);
}

p {
    margin-bottom: 0.3rem;
}

/* ICONS */
.lgi {
    display: inline-block;
    vertical-align: -0.125em;
    width: 1em;
    height: 1em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Size variations */
.lgi-sm {
    font-size: 0.75rem;
}

.lgi-md {
    font-size: 1rem;
}

.lgi-lg {
    font-size: 1.25rem;
}

.lgi-xl {
    font-size: 1.5rem;
}

.lgi-xxl {
    font-size: 2rem;
}

.lgi-menu {
    background-image: url('../icon/fe/list.svg');
}

.lgi-user {
    background-image: url('../icon/fe/user.svg');
}
/* END ICONS */

/* GENERIC RULES */
@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1500px;
    }
}

.btn {
    --bs-btn-padding-x: 1rem;
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 700;
    --bs-btn-line-height: 1.5;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn:active {
    transform: scale(0.95);
}

.btn-lg {
    --bs-btn-padding-y: 0.625rem;
    --bs-btn-padding-x: 1.5rem;
    --bs-btn-font-size: 1.125rem;
    --bs-btn-border-radius: var(--border-top-right-radius-sm);
    padding-right: 3.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.btn-lg::after {
    content: "";
    position: absolute;
    top: 50%;
    right: .625rem;
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--bs-btn-color);
    mask-image: url('../icon/fe/arrow-right.svg');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    transform: translateY(-50%) translateX(-10px);
    transition: all 0.3s ease;
}

.btn-lg:hover::after {
    background-color: var(--bs-btn-hover-color);
    transform: translateY(-50%) translateX(-5px);
}

.arrow-right-menu {
    position: relative;
    padding-right: 2.5rem;
}

.arrow-right-menu::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0rem;
    width: 1.25rem;
    height: 1.25rem;
    background-color: currentColor; 
    mask-image: url(../icon/fe/arrow-right.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.4s ease;
    display: block;
}

.arrow-right-menu:hover::after {
    transform: translateY(-50%) translateX(5px);
}

.arrow-left-menu {
    position: relative;
    padding-left: 2rem;
}

.arrow-left-menu::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0rem;
    width: 1rem;
    height: 1rem;
    background-color: currentColor; 
    mask-image: url(../icon/fe/arrow-right.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    transform: translateY(-50%) rotate(180deg);
    opacity: 1;
    transition: all 0.4s ease;
    display: block;
}

.arrow-left-menu:hover::after {
    transform: translateY(-50%) translateX(5px) rotate(180deg);
}

/* [aria-expanded="true"].arrow-right-menu::after {
  transform: translateY(-50%) rotate(180deg);
}

[aria-expanded="true"].arrow-right-menu {
    font-weight: 600;
} */

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #000000;
    --bs-btn-border-color: #000000;
    --bs-btn-hover-color: #fff;
    --btn-hover-icon-after-color: #fff;
    --bs-btn-hover-bg: #5c636a;
    --bs-btn-hover-border-color: #565e64;
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #565e64;
    --bs-btn-active-border-color: #51585e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #6c757d;
    --bs-btn-disabled-border-color: #6c757d;
}

.btn-secondary {
    --bs-btn-color: #000000;
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-bg: #C6C7C8;
    --bs-btn-hover-color: #fff;
    --btn-hover-icon-after-color: #fff;
    --bs-btn-hover-border-color: #C6C7C8;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #C6C7C8;
    --bs-btn-active-border-color: #C6C7C8;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #949494;
    --bs-btn-disabled-border-color: #949494;
}

.btn-outline-black,.btn-outline-black:hover {
    border: 1px solid #000;
}

.btn-outline-black:hover {
    background-color: #d7d7d7;
}

.btn-download-files {
    padding: 1rem;
    border: 1px solid #000000;
}

.btn-download-files i {
    font-size: 1.5rem;
    margin-right: .75rem;
}

.btn-download-files:hover {
    border: 1px solid #000;
    background-color: #d7d7d7;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    letter-spacing: -1px;
}

.pt-6 {
    padding-top: 6rem !important;
}
.pb-6 {
    padding-bottom: 6rem !important;
}
.ps-6 {
    padding-left: 6rem !important;
}
.pe-6 {
    padding-right: 6rem !important;
}
.px-6 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
}
.py-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.mt-negative-6 {
    margin-top: -6rem;
}

a {
    color: #000000;
    text-decoration: none;
}

a.lavorgomma-link {
    border-bottom: 1px solid #000000;
}
/* END GENERIC RULES */

/* HEADER */

.floating-header {
    top: 1.5rem; 
    left: calc(1.5rem * .5);
    z-index: 1030;
    padding: .75rem 1rem;
}

@media (min-width: 768px) {
    .floating-header {
        top: 1.5rem; 
        left: 1.5rem;
    }
}

.offcanvas {
    --bs-offcanvas-width: 100%;
}

@media (min-width: 576px) {
    .offcanvas {
        --bs-offcanvas-width: 400px;
    }
}

.offcanvas-header .btn-close {
    padding: 4px;
    margin: 0;
    box-shadow: none;
}

.offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {
    --bs-offcanvas-padding-x: 2.5rem;
    --bs-offcanvas-padding-y: 2.5rem;
}

h3.offcanvas-title-menu:first-child {
    font-size: 1.25rem;
}

.offcanvas-title-menu {
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.offcanvas-body .nav-link {
    padding: .5rem;
    font-weight: 400;
    font-size: 1.25rem;
    color: black;
    line-height: 1.875rem;
    width: 100%;
    text-align: left;
}

.offcanvas-body .nav-link:hover, .offcanvas-body .nav-link:active {
    opacity: 0.5;
}

.offcanvas-body .submenu .nav-link {
    font-size: .875rem;
}

.nav-link.active {
    font-weight: 600;
}

.nav-link[aria-expanded="true"] {
    font-weight: 600;
}

.offcanvas .btn-link {
    --bs-btn-color: #000000;
    --bs-btn-hover-color: #000000a5;
    --bs-btn-active-color: #000000a5;
    font-size: 1.875rem;
}

.lavorgomma-menu, .lavorgomma-menu-secondary {
    position: absolute;
    top: 0;
    background-color: var(--lavorgomma-blue-color);
    padding: 100px 40px;
    width: 100%;
    height: 100%;
    transition: all 0.1s ease;
    opacity: 0;
}

.lavorgomma-menu, .lavorgomma-menu-secondary {
    left: 0;
}

.collapse-close-button-mobile {
    position: absolute;
    top: 42px;
}

@media (min-width: 768px) {
    .lavorgomma-menu, .lavorgomma-menu-secondary {
        min-width: 100%;
        border-top-right-radius: 1.5rem;
        padding: 40px 60px;
    }

    .lavorgomma-menu {
        left: 399px;
    }

    .collapse-close-button-mobile {
        display: none;
    }
}

@media (min-width: 1100px) {
    .lavorgomma-menu, .lavorgomma-menu-secondary {
        width: 700px;
    }
}

.collapse.show .lavorgomma-menu,.collapse.show .lavorgomma-menu-secondary {
  opacity: 1;
}

.toggle-icon-btn {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-icon-btn i {
    position: absolute;
    transition: all 0.3s ease;
}

.icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.icon-dash {
    opacity: 0;
    transform: rotate(-90deg);
}

.toggle-icon-btn:not(.collapsed) .icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.toggle-icon-btn:not(.collapsed) .icon-dash {
    opacity: 1;
    transform: rotate(0deg);
}

.homepage-logo {
    margin-bottom: -80px;
}

.homepage-logo img {
    height: 32px;
    padding-right: 1.25rem;
}

.logo-header-link {
    padding-top: 24px;
}

@media (min-width: 768px) {
    .homepage-logo img {
        height: 40px;
        padding-right: 0;
    }
}

.nav-category-list span {
    display: none;
}

.nav-category-list:has(> button > img, > a > img) span {
    display: inline-block;
}

.other-bu {
    padding: .5rem;
    font-weight: 400;
    font-size: 1.25rem;
    color: black;
    line-height: 1.875rem;
    text-align: left;
    margin-bottom: 0rem;
    width: fit-content;
}

#accordion-bu .accordion-body {
    padding: 1rem .5rem;
}

#accordion-bu .accordion-item {
    border: 0;
}

#accordion-bu .accordion-button {
    padding: 0;
}

/* END HEADER */

/* FOOTER */

footer {
    margin-top: auto
}

.bg-footer {
    background-color: var(--lavorgomma-dark-background-color);
}

.text-xs {
    font-size: .75rem;
    font-weight: 200;
}

.form-control {
    padding: .75rem 1rem;
}

.form-control:focus {
    border-color: unset;
}

.country-flag-size {
    width: 16px;
    min-height: 16px;
}

.country-flag-it {
    background: url('/bundles/pimcoreadmin/img/flags/countries/it.svg') center center/contain no-repeat;
}

.country-flag-en {
    background: url('/bundles/pimcoreadmin/img/flags/countries/gb.svg') center center/contain no-repeat;
}

.dropdown-menu {
    --bs-dropdown-link-active-bg: var(--lavorgomma-secondary-color);
    --bs-dropdown-link-hover-bg: var(--lavorgomma-secondary-color);
    --bs-dropdown-link-hover-color: #fff;
    --bs-dropdown-border-radius: 0;
    --bs-dropdown-min-width: 6.25rem
}

.footer-list li {
    margin-bottom: .5rem;
}

.logo-footer {
    width: 75%;
}

@media (min-width: 768px) {
    .logo-footer {
        width: 95%;
    }
}
/* END FOOTER */

/* FULLSCREEN SLIDER */

#fullscreen-slider .carousel-caption {
    bottom: 9rem;
    right: unset;
    left: unset;
}

#fullscreen-slider .carousel-indicators {
    justify-content: flex-start;
    right: unset;
    left: unset;
    margin: 0 0 2.5rem 0rem;
}

#fullscreen-slider .carousel-indicators [data-bs-target] {
    flex: unset;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background-color: transparent;
    background-clip: unset;
    border: 1px solid #fff;
    transition: opacity .6s ease;
}

#fullscreen-slider .carousel-indicators .active {
    opacity: 1;
    background-color: #fff;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0) 77%);
  z-index: 1;
  pointer-events: none;
}

#fullscreen-image .swiper {
    width: 100%;
    height: 100%;
}

#fullscreen-image .swiper-slide {
    background: #444;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#fullscreen-image .swiper-slide img {
    display: block;
    width: 100%;
    height: 800px;
    object-fit: cover;
}


/* END FULLSCREEN SLIDER */

/* BREADCRUMBS */
.breadcrumb {
    --bs-breadcrumb-margin-bottom: 0;
}

.breadcrumb-item {
    /* --bs-breadcrumb-divider: '•'; */
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: .75rem;
}

.breadcrumb-item:has(a) a{
    border-bottom: 1px solid var(--lavorgomma-text-color);
}

.breadcrumb-item a{
    color: var(--lavorgomma-text-color);
    font-weight: 600;
    text-decoration: none;
}
/* END BREADCRUMBS */

/* ACCORDION */
.accordion {
    --bs-accordion-border-radius: 0;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2'/%3E%3C/svg%3E");
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2'/%3E%3C/svg%3E");
    --bs-accordion-btn-not-collapsed: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8'/%3E%3C/svg%3E");
}

.accordion-item {
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item:not(:first-of-type) {
    border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-button {
    font-weight: bold;
}

.accordion-button:not(.collapsed) {
    color: var(--lavorgomma-text-color);
    background-color: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-not-collapsed);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-images {
	position: relative;
}

.accordion-image {
	display: none;
	width: 100%;
	height: auto;
}

.accordion-image.active {
	display: block;
}
/* END ACCORDION */

/* BIG SLIDER */

/* END BIG SLIDER */

/* DIVISION */
.divisionSwiper .swiper-slide {
    width: 100%;
}

.divisionSwiper .swiper-slide:first-child {
    margin-left: 0;
}

.divisionSwiper .swiper-pagination {
    text-align: left;
    position: relative;
    padding: 1.5rem 0;
}

@media (min-width: 576px) {
    .divisionSwiper .swiper-slide {
        width: 50%;
    }
    
    .divisionSwiper .swiper-slide:first-child, .divisionSwiper .swiper-pagination {
        margin-left: calc(-270px + 50vw);
    }
}

@media (min-width: 768px) {
    .divisionSwiper .swiper-slide {
        width: 33.333%;
    }
    
    .divisionSwiper .swiper-slide:first-child, .divisionSwiper .swiper-pagination {
        margin-left: calc(-360px + 50vw);
    }
}

@media (min-width: 992px) {
    .divisionSwiper .swiper-slide {
        width: 25%;
    }
    
    .divisionSwiper .swiper-slide:first-child, .divisionSwiper .swiper-pagination {
        margin-left: calc(-480px + 50vw);
    }
}

@media (min-width: 1200px) {
    .divisionSwiper .swiper-slide:first-child, .divisionSwiper .swiper-pagination {
        margin-left: calc(-570px + 50vw);
    }
}

@media (min-width: 1400px) {
    .divisionSwiper .swiper-slide:first-child, .divisionSwiper .swiper-pagination {
        margin-left: calc(-660px + 50vw);
    }
}

@media (min-width: 1600px) {
    .divisionSwiper .swiper-slide:first-child, .divisionSwiper .swiper-pagination {
        margin-left: calc(-750px + 50vw);
    }
}

@media (min-width: 2000px) {
    .divisionSwiper .swiper-slide {
        width: 20%;
    }
}

.divisionSwiper .swiper-pagination-bullet {
    --swiper-pagination-bullet-inactive-color: #fff;
    --swiper-pagination-bullet-width: .625rem;
    --swiper-pagination-bullet-height: .625rem;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-color: #000;
    border: 1px solid #000;
}

.divisionSwiper .swiper-pagination-bullet:first-child {
    margin-left: 0;
}

.division-body {
    min-height: 170px;
}

.division-margin {
    margin-left: calc((-100vw + 100%) / 2 + 8px);
    margin-right: calc((-100vw + 100%) / 2 + 8px);
    padding-right: 0;
}


.fullscreen-image-division .swiper-slide img {
    height: 700px !important;
}

/* COMPANY INFO SLIDER */
#company-info-section {
    background-color: #f2f2f2;
}

@media (min-width: 768px) {
    #company-info-section {
        padding: 3.75rem 0;
    }
}

.companyInfoSlider .swiper-slide {
    width: 90%;
}

.companyInfoSlider .swiper-slide.swiper-slide-prev, .companyInfoSlider .swiper-slide.swiper-slide-next {
    opacity: .5;
}

.companyInfoSlider .swiper-pagination-bullet {
    width: 110px;
    height: unset;
    background: none;
    --swiper-pagination-bullet-inactive-opacity: .6;
}

.companyInfoSlider .swiper-pagination-bullet-active {
    width: 110px;
    height: unset;
    background: none;
}


@media (min-width: 768px) {
    .companyInfoSlider .swiper-slide {
        width: 70%;
    }

    .companyInfoSlider .swiper-pagination-bullet, .companyInfoSlider .swiper-pagination-bullet-active {
        width: unset;
    }
}

@media (min-width: 1400px) {
    .companyInfoSlider .stat-item {
        min-width: 11rem;
    }
}

.companyInfoSlider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.companyInfoSlider .swiper-pagination {
    position: relative;
    padding: 1.875rem 0;
}

.companyInfoSlider .swiper-pagination-bullets {
    --swiper-pagination-bottom: 0;
}

.stats-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background-color: #E6E6E6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 10px;
}

.stat-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.companyInfoSlider .swiper-pagination-bullet i {
    background-color: #000;
}

.companyInfoSlider .swiper-pagination-bullet-active i {
    background-color: #fff;
}

.companyInfoSlider .swiper-pagination-bullet-active .stat-icon {
    background-color: #000;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    100% { width: 100%; }
}

.companyInfoSlider .progress-bar.animate-progress {
    animation: progressAnimation 5000ms ease-in-out forwards;
}

/* END COMPANY INFO SLIDER */

/* PHOTO AND TEXT */

.text-block-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.text-block-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.icon-image {
    flex-shrink: 0;
}
/* END PHOTO AND TEXT */


/* GROUPED PRODUCTS */
.product-table {
    border: 1px solid var(--lavorgomma-hero-color);
}

.product-table thead th {
    border-right: 1px solid #fff;
    border-bottom: 0;
    background-color: var(--lavorgomma-hero-color);
}

.product-table thead th:last-child {
    border-right: 1px solid var(--lavorgomma-hero-color);
}

.product-table thead tr:first-child th[rowspan="2"] {
    vertical-align: middle;
}

.product-table thead tr:first-child th[rowspan="2"] .no-filter-control {
    height: 0;
}

.product-table thead tr:nth-child(2) th .th-inner {
    display: none;
}

.product-table thead tr:nth-child(2) th .filer-control {
    margin: 0;
}

.product-table thead tr:nth-child(2) th .form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    border: 0;
    background-color: unset;
    font-weight: 600;
    background-position: right .5rem center;
    font-size: .75rem;
    padding: .125rem 1.25rem .375rem .75rem;
    background-size: 12px;
    text-align: center;
    text-align-last: center;
}

.product-table thead tr:nth-child(2) th .form-select:focus{
    box-shadow: none;
    border-color: transparent;
}

.filter-control {
    margin: 0;
}

.product-table thead tr:nth-child(2) th .form-select option {
    color: #000000 !important;
    background-color: #ffffff !important;
    border-radius: 0;
    font-size: 1rem;
    text-align: left !important; /* Force left alignment for options */
    direction: ltr;
}

.product-table thead tr:nth-child(1) th:not(:first-child) {
    min-width: 70px;
}

.bootstrap-table .fixed-table-container .fixed-table-body {
    height: unset !important;
}

.bootstrap-table .fixed-table-container .table thead th:first-child .th-inner {
    padding: .25rem !important;
}

.bootstrap-table .fixed-table-container .table thead th:not(:first-child) .th-inner {
    padding: .25rem .25rem 0 !important;
}

.product-table tbody>tr>td:first-child {
    font-weight: 700;
}

.product-table tbody>tr>td:first-child a {
    border-bottom: 1px solid #000000;
}

.label-varianti {
    margin-bottom: -45px;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-link-underline {
    background: none;
    border: none;
    border-bottom: 1px solid black;
    color: black;
    text-decoration: none;
    padding: 2px 0;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    display: inline;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-striped-bg: #ffffff00;
    background-color: #ffffff00 !important  ;
}

.table-striped>tbody>tr:nth-of-type(even)>* {
    background-color: var(--lavorgomma-blue-color);
}

/* END GROUPED PRODUCTS */

/* PRODUCT DETAILS */
#prodotto .list-group {
    --bs-list-group-border-color: #ffffff00;
    --bs-list-group-border-width: 0;
    --bs-list-group-border-radius: 0;
}

#prodotto .list-group-item {
    background-color: transparent;
    border-bottom: 1px solid #fff;
}

#prodotto .list-group-item:last-child {
    border-bottom: unset;
}

@media (min-width: 992px) {
    #prodotto .list-group-item:first-child {
        border-left: 2px solid #fff;
    }

    #prodotto .list-group-item {
        width: 100%;
        background-color: transparent;
        border-right: 2px solid #fff;
        border-bottom: none;
    }
}

#title .breadcrumb-item {
    margin: 0!important;
}
#title .breadcrumb-item a {
    border-bottom: none;
    margin: 0!important;
}

.background-pdf-download:nth-child(even) {
    background-color: var(--lavorgomma-light-background-color);
}

.product-gallery .swiper-pagination {
    position: relative;
    padding: 2rem 0;
}

.product-gallery .swiper-pagination-bullet {
    --swiper-pagination-bullet-inactive-color: #fff;
    --swiper-pagination-bullet-width: .625rem;
    --swiper-pagination-bullet-height: .625rem;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-color: #000;
    border: 1px solid #000;
}

.product-gallery .swiper-slide {
    width: 90%;
}

@media (min-width: 576px) {
    .product-gallery .swiper-slide {
        width: 80%;
    }
}

@media (min-width: 768px) {
    .product-gallery .swiper-slide {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .product-gallery .swiper-slide {
        width: 45%;
    }
}

@media (min-width: 1200px) {
    .product-gallery .swiper-slide {
        width: 40%;
    }
}

@media (min-width: 2000px) {
    .product-gallery .swiper-slide {
        width: 30%;
    }
}

@media (min-width: 3000px) {
    .product-gallery .swiper-slide {
        width: 20%;
    }
}

.product-gallery .swiper-slide.swiper-slide-prev, .product-gallery .swiper-slide.swiper-slide-next {
    opacity: .5;
}
/* END PRODUCT DETAILS */

/* FORMS PAGES */
.add-margin-top {
    margin-top: 1.5rem;
}

.relative-links {
    padding: 1.5rem 0;
}

.badge {
    vertical-align: middle;
}

.badge-danger {
    color: #fff !important;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

.invalid-feedback {
    margin: .35rem 0
}

.form-control:focus {
    box-shadow: 0 0 0 .15rem rgba(13,110,253,.25);
}
/* END REGISTATION PAGE*/

/* CONTACTS PAGE*/
#contact-section {
    padding-top: 7rem;
    padding-bottom: 10rem;
}

@media (min-width: 768px) {
    /* #contact-section {
        padding-top: 5rem;
        padding-bottom: 10rem;
    } */
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--lavorgomma-dark-background-color);
    border-radius: var(--bs-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 18px;
}

.contact-details h5 {
    margin: 0 0 5px 0;
    font-weight: 600;
    color: #333;
}

.contact-details span {
    color: #666;
    font-size: 14px;
}

.social-links {
    margin-top: 30px;
}

.social-links h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--lavorgomma-dark-background-color);
    border-radius: var(--bs-border-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--lavorgomma-blue-color);
    transform: translateY(-2px);
}

.social-icon i {
    color: white;
    font-size: 1.25rem;
}

.contact-form {
    padding: 3rem 2rem;
    background-color: white;
    border-radius: var(--bs-border-radius);
    box-shadow: 0 0 20px 5px #eeeeee;
}

.alert {
    --bs-alert-padding-y: .5rem;
}

.map-placeholder iframe {
    border-radius: var(--bs-border-radius);
}

#map-section {
    margin-top: -8rem;
    margin-bottom: 5rem;
}

/* END CONTACTS PAGE*/

/* CERTIFICATIONS PAGE*/
#certifications-section .card-img-top {    
    height: 250px;
    object-fit: cover;
    object-position: top;
}

/* END CERTIFICATIONS PAGE*/

/* WORK WITH US PAGE*/

#workwithus-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.main-card {
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 600px;
    border-radius: var(--bs-border-radius);
}

.form-section {
    padding: 4rem 3.5rem;
}

.file-upload-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload input[type=file] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1.5px dashed var(--bs-border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    border-color: #5a6fd8;
    background: #f0f4ff;
}

.file-upload-label i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.file-name {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 500;
}

.image-section {
    min-height: 500px;
    background: #D1E1E9;
    background: linear-gradient(135deg, #d1e1e9 0%, #a8c8d8 100%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.image-section img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* END WORK WITH US PAGE*/

/* PROFILE PAGE */
#profile-section {
    padding: 7rem 0;
}

@media (min-width: 992px) {
    #profile-section {
        padding: 8rem 0;
    }
}

#profile-section .card-img-top {
    height: 250px;
    object-fit: cover;
}

.card {
    --bs-card-height: 100%;
}

.card-title {
    --bs-card-title-spacer-y: 1rem;
}

#profile-section .list-group {
    --bs-list-group-border-color: var(--lavorgomma-blue-color);
}

#profile-section .list-group-item:nth-of-type(odd) {
    --bs-list-group-bg: var(--lavorgomma-blue-color);
}

#profile-section .list-group-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* END PROFILE PAGE */

/* HERO SECTION */
.hero-section {
    background-color: var(--lavorgomma-light-background-color);
    padding: 60px 0;
}

.hero-description {
    color: #6c757d;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
        text-align: center;
    }
}

/* END HERO SECTION */

/* TIMELINE SECTION */
.timeline-container {
    position: relative;
    padding: 50px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e0e0e0;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 16px;
    height: 16px;
    background-color: #e0e0e0;
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 2px #e0e0e0;
}

.timeline-content {
    background-color: var(--lavorgomma-light-background-color);
    padding: 24px;
}

.timeline-badge {
  color: #fff !important;
  background-color: var(--lavorgomma-logo-blue-color) !important;
}

.timeline-badge-group {
  color: #fff !important;
  background-color: var(--lavorgomma-group-color) !important;
}

.timeline-title {
    color: var(--lavorgomma-blue-color);;
    font-weight: 700;
}

.timeline-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

.timeline-item.left .timeline-content {
    margin-right: 52%;
}

.timeline-item.right .timeline-content {
    margin-left: 52%;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        margin-left: 50px;
        margin-right: 20px;
    }
}


.timeline-item-hidden {
    display: none;
    opacity: 0;
    transform: translateY(-20px);
}

.timeline-item {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#timelineToggle {
    transition: all 0.3s ease;
}
/* END TIMELINE SECTION */