.hide {
    display: none !important;
    z-index: -1;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  --color: #1BAB30;
  --animation: 2s ease-in-out infinite;
}

.loader .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 20px;
  height: 20px;
  border: solid 2px rgb(1, 1, 26);
  border-radius: 50%;
  margin: 0 10px;
  background-color: transparent;
  animation: circle-keys var(--animation);
}

.loader .circle .dot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--color);
  animation: dot-keys var(--animation);
}

.loader .circle .outline {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  animation: outline-keys var(--animation);
}

.circle:nth-child(2) {
  animation-delay: 0.3s;
}

.circle:nth-child(3) {
  animation-delay: 0.6s;
}

.circle:nth-child(4) {
  animation-delay: 0.9s;
}

.circle:nth-child(5) {
  animation-delay: 1.2s;
}

.circle:nth-child(2) .dot {
  animation-delay: 0.3s;
}

.circle:nth-child(3) .dot {
  animation-delay: 0.6s;
}

.circle:nth-child(4) .dot {
  animation-delay: 0.9s;
}

.circle:nth-child(5) .dot {
  animation-delay: 1.2s;
}

.circle:nth-child(1) .outline {
  animation-delay: 0.9s;
}

.circle:nth-child(2) .outline {
  animation-delay: 1.2s;
}

.circle:nth-child(3) .outline {
  animation-delay: 1.5s;
}

.circle:nth-child(4) .outline {
  animation-delay: 1.8s;
}

.circle:nth-child(5) .outline {
  animation-delay: 2.1s;
}

@keyframes circle-keys {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes dot-keys {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes outline-keys {
  0% {
    transform: scale(0);
    outline: solid 20px var(--color);
    outline-offset: 0;
    opacity: 1;
  }

  100% {
    transform: scale(1);
    outline: solid 0 transparent;
    outline-offset: 20px;
    opacity: 0;
  }
}

.page-overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    background: #0000004d;
    z-index: 999;
    display: grid;
    place-content: center;
}
.product-tab-section table {
    border-style: double;
    border-width: 1px;
    width: 100%;

    tbody,
    th,
    td {
        border-width: 1px;
        border-style: solid;
        padding: 1rem;
    }
}

.row.child-listing:has(.no-title) {
    display: none;
}

#loading-spinner-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: #000000d1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999999999;
    /* opacity: 0;  */
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.loading-spinner,
.loading-spinner div {
    box-sizing: border-box;
}

.loading-spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loading-spinner div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #1BAB30;
    border-radius: 50%;
    animation: loading-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #1BAB30 transparent transparent transparent;
}

.loading-spinner div:nth-child(1) {
    animation-delay: -0.45s;
}

.loading-spinner div:nth-child(2) {
    animation-delay: -0.3s;
}

.loading-spinner div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes loading-spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#loading-spinner-wrapper.visible {
    opacity: 1;
    pointer-events: auto;
}

.img-overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #00000059;
    z-index: 999;
}


/* -------------------Header---------------------- */
.header-top-wrapper {
    font-size: 13px;
    background: #8B96A8;
    padding: 5px 0;
}

.phone-and-email {
    display: flex;
    align-items: center;
    gap: 35px;
}

.phone-and-email a {
    text-decoration: none;
    font-size: 13px;
    line-height: 20.31px;
    color: #ffffff;
    position: relative;
}

.phone-and-email a.phone {
    padding-left: 20px;
}

.phone-and-email a.email {
    padding-left: 30px;
}

.phone-and-email a.phone::before {
    position: absolute;
    content: '';
    background: url('../images/phone-icon.png') no-repeat;
    height: 16px;
    width: 12px;
    left: 0;
}

.phone-and-email a.email::before {
    position: absolute;
    content: '';
    background: url('../images/email-icon.png') no-repeat;
    height: 16px;
    width: 19px;
    left: 0;
}

.phone-and-email-mobile a.phone {
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    border: 1px solid #FFFFFF;
    border-radius: 25px;
    padding: 6px 15px;
    display: inline-block;
}

.phone-and-email-mobile a.phone::after {
    content: '';
    display: inline-block;
    height: 8px;
    width: 15px;
    background: url(../images/arrow-right-white.png) center/contain no-repeat;
    margin-left: 11px;
}

.header-bottom-wrapper {
    background: #fff;
    box-shadow: 0px 2px 3px 0px #C5C5C5E5;
    padding-top: 30px;
    padding-bottom: 5px;
}

.header-bottom-wrapper #header-bottom-left {
    width: 25%;
}

.header-bottom-wrapper #header-bottom-middle {
    width: 55%;
}

.header-bottom-wrapper #header-bottom-right {
    width: 20%;
}

.navbar-brand {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px;
}

.navbar-brand img {
    height: unset;
}

.navbar-brand .site-slogan {
    color: #111111;
}

#header-bottom-middle .region-header-bottom-middle {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#header-bottom-middle .region-header-bottom-middle #superfish-categories {
    display: none !important;
}

#header-bottom-middle .region-header-bottom-middle #block-nebel-categories {
    display: none;
}

#block-nebel-categories #superfish-categories-toggle {
    display: block;
    background: url('../images/menu-icon-green.png') center/contain no-repeat;
    height: 30px;
    width: 30px;
}

#block-nebel-categories #superfish-categories-toggle span {
    display: none;
}

#header-bottom-middle #block-nebel-searchform {
    width: calc(100% - 50px);
}

#header-bottom-middle .form-type-search {
    width: 100%;
}

#header-bottom-middle form {
    display: flex;
}

#header-bottom-middle form .form-item-title input {
    height: 35px;
    border-radius: 10px;
    border: 1px solid #8B96A8;
    font-size: 12px;
    line-height: 14.14px;
    color: #717171;
    padding: 10px 18px;
    padding-right: 31px;
    width: 100%;
}

#header-bottom-middle input[type=search]:focus {
    box-shadow: none;
}

#header-bottom-middle .form-actions,
#header-bottom-middle .form-item {
    margin: 0;
}

#header-bottom-middle input[type=submit] {
    font-size: 0;
    padding: 13px;
    border-radius: 50%;
    background: #8B96A8 url('../images/search-icon-white.png') no-repeat;
    background-size: 13px;
    background-position: center;
    border: none;
    margin-left: -31px;
    margin-top: 4px;
}

#header-bottom-middle input[name="reset"] {
    display: none;
}

#header-bottom-middle ul.navbar-nav,
#header-bottom-right ul.navbar-nav {
    flex-direction: row;
    justify-content: center !important;
}

#header-bottom-right #block-nebel-account-menu {
    position: relative;
}

#header-bottom-right #block-nebel-account-menu h5#block-nebel-account-menu-menu {
    font-size: 0px;
    margin: 0;
    background: url('../images/user-icon.png') no-repeat;
    background-size: 26px 26px;
    height: 26px;
    width: 26px;
    margin-top: 5px;
    cursor: pointer;
}

#header-bottom-right #block-nebel-account-menu ul.navbar-nav {
    display: none;
    position: absolute;
    top: 31px;
    background: #fff;
    min-width: 150px;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #8B96A8;
}

#header-bottom-right #block-nebel-account-menu h5#block-nebel-account-menu-menu:hover~ul.navbar-nav,
#header-bottom-right #block-nebel-account-menu ul.navbar-nav:hover {
    display: flex !important;
}

/* ------- Header Cart Block -----> */

#block-nebel-cart .cart-block--link__expand {
    display: inline-block;
    height: 28px;
    width: 28px;
    background: url('../images/cart-icon.png') no-repeat;
    margin-top: 5px;
    cursor: pointer;
    position: relative;
}

#block-nebel-cart .cart-block--summary__icon {
    display: none;
}

#block-nebel-cart .cart-block--summary__count {
    position: absolute;
    bottom: -7px;
    right: -3px;
    background: #8B96A8;
    min-height: 20px;
    min-width: 20px;
    aspect-ratio: 1/1;
    font-size: 12px;
    line-height: 1;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header-bottom-right .region-header-bottom-right {
    display: flex;
    gap: 18px;
}

#header-bottom-right .region-header-bottom-right #block-nebel-headerbottomrightimage {
    margin-left: auto;
}

#header-bottom-right #block-nebel-headerbottomrightimage img {
    margin-top: -10px;
}


/* ------------Homepage Category Menu------------------------- */


.categories-menu #block-nebel-categories-2 h2.block-title {
    padding: 9px 18px;
    background: #53A447;
    color: #fff;
    font-size: 14px;
    line-height: 21.87px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.categories-menu #block-nebel-categories-2 h2.block-title::after {
    content: '';
    padding: 4px;
    background: url('../images/arrow-down.png') no-repeat;
    background-position: center;
}

/* .categories-menu #block-nebel-categories-2 .tbm.tbm-categories{
    z-index: 500;
} */
.categories-menu #block-nebel-categories-2 ul.tbm-nav {
    flex-direction: column !important;
    padding-top: 13px;
    padding-bottom: 17px;
    background: #fff;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1 {
    padding: 0px 16px 0px 13px;
    border-left: 3px solid black;
    margin-bottom: 1px;
    transition: background 0.3s ease-out;
    border-right: none;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1:hover {
    background: #C5F2BF;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1.menu-color1 {
    border-left-color: #FD7F01;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1.menu-color2 {
    border-left-color: #FEC81A;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1.menu-color3 {
    border-left-color: #FFFF03;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1.menu-color4 {
    border-left-color: #D1D103;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1.menu-color5 {
    border-left-color: #C2F950;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1.menu-color6 {
    border-left-color: #71E727;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1.menu-color7 {
    border-left-color: #73CEFE;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1.menu-color8 {
    border-left-color: #0385E7;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1.menu-color9 {
    border-left-color: #4147FF;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1.menu-color10 {
    border-left-color: #8603FF;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1.menu-color11 {
    border-left-color: #EA15FF;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1.menu-color12 {
    border-left-color: #DF0303;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1.menu-color13 {
    border-left-color: #8B96A8;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1.menu-color14 {
    border-left-color: #000000;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1>.tbm-link-container {
    border-bottom: 1px solid #1111114D;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1 .tbm-link.level-1 {
    padding: 12px 0px 6px 0px !important;
    font-size: 16px;
    line-height: 21.86px;
    justify-content: space-between;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1:last-child .tbm-link.level-1 {
    border-bottom: none;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1>.tbm-link-container .tbm-submenu-toggle {
    background: none !important;
    width: auto !important;
    padding: 0 !important;

}

.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1 .tbm-submenu-toggle::before {
    display: none !important;
}

/* .categories-menu #block-nebel-categories-2 ul.tbm-nav > li.tbm-item.level-1 .tbm-submenu-toggle::after{
    content: '';
    padding: 8px 10px;
    background: url('../images/angle-arrow-right-green.png') no-repeat;
    background-position: right;
} */
.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1 .tbm-link.level-1:hover,
.categories-menu #block-nebel-categories-2 ul.tbm-nav>li.tbm-item.level-1 .tbm-link.level-1:focus {
    background-color: unset !important;
}

.categories-menu #block-nebel-categories ul.navbar-nav>li.nav-item:last-child a.nav-link {
    border-bottom: none;
}

.categories-menu #block-nebel-categories ul.navbar-nav li.dropdown {
    position: unset !important;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav .tbm-item.level-1>.tbm-submenu {
    top: 5px;
    left: 100% !important;
    height: calc(100% - 10px);
    border: none;
    box-shadow: none;
    padding: 10px;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav .tbm-item.level-1>.tbm-submenu .tbm-subnav.level-1 {
    padding: 0 17px;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav .tbm-item.level-1>.tbm-submenu .tbm-group-title {
    font-size: 14px;
    line-height: 21.87px;
    text-transform: unset;
    color: #53A447 !important;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav .tbm-item.level-1>.tbm-submenu .tbm-link.level-3 {
    font-size: 14px;
    line-height: 19.13px;
    color: #111111 !important;
    padding: 0;
    padding-bottom: 10px;
}

.categories-menu #block-nebel-categories-2 ul.tbm-nav ul.tbm-subnav.level-2 li.tbm-item.level-3:first-child .tbm-link.level-3 {
    padding-top: 10px !important;
}

.categories-menu #block-nebel-categories ul.navbar-nav li.dropdown ul.dropdown-menu.nav-level-1 {
    inset: unset !important;
    transform: unset !important;
    right: -100% !important;
    top: 0 !important;
    width: 100%;
    height: 100%;
}

/* ==================Homepage Featured Categories================= */

#categories-wrapper {
    background: #8B96A81A;
    padding: 30px 0;
}

.categories-menu {
    width: 20%;
}

.featured-categories {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 78%;
    min-height: 598px;
}

.featured-categories .featured-categories-left {
    width: 30%;
}

.featured-categories .featured-categories-right {
    width: 70%;
}

.featured-categories .featured-categories-left .region-homepage-featured-category-top-left {
    height: 30%;
    margin-bottom: 20px;
}

.featured-categories .featured-categories-left .region-homepage-featured-category-bottom-left {
    height: calc(70% - 20px);
}

.featured-categories .featured-categories-right .region-homepage-featured-category-top-right {
    height: 60%;
    margin-bottom: 20px;
}

.featured-categories .featured-categories-right .region-homepage-featured-category-bottom-right {
    height: calc(40% - 20px);
}

.featured-categories .featured-category {
    height: 100%;
    padding: 30px;
}

.featured-categories .featured-category .category-title {
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #000000;
    max-width: 60%;
    text-transform: uppercase;
}

.region-homepage-featured-category-top-left .featured-category .category-title {
    font-size: 16px;
    line-height: 24.99px;
    color: #fff;
}

.region-homepage-featured-category-top-right .featured-category .category-title {
    font-size: 24px;
    line-height: 37.49px;
}

.region-homepage-featured-category-bottom-left .featured-category .category-title {
    font-size: 22px;
    line-height: 34.36px;
}

.region-homepage-featured-category-bottom-right .featured-category .category-title {
    font-size: 24px;
    line-height: 37.49px;
    color: #fff;
}

/* =================Main Content Starts==================== */

#main-content {
    /* padding: 120px 0; */
    padding: 12px 0;
}

footer#footer-area {
    padding-top: 80px;
}

.path-frontpage {
    #main-content {
        padding: 118px 0;
    }

    footer#footer-area {
        padding-top: 0;
    }
}

/* -------------------SLide Show----------------- */

.featured-product-slideshow {
    margin-top: 25px;
}

#block-nebel-views-block-homepage-product-slideshow-block-1 .slideshow-product {
    position: relative;
    box-shadow: 0px 2px 3px 0px #C5C5C5E5;
    border-radius: 10px;
}

#block-nebel-views-block-homepage-product-slideshow-block-1 .slideshow-product .content {
    position: absolute;
    top: 32%;
    left: 3.67%;
    width: 100%;
}

#block-nebel-views-block-homepage-product-slideshow-block-1 .slideshow-product .content .slideshow-title {
    font-size: 35px;
    line-height: 45px;
    text-transform: uppercase;
    /* margin-bottom: 20px; */
    max-width: 50%;
}

#block-nebel-views-block-homepage-product-slideshow-block-1 .slideshow-product .image img {
    width: 100%;
    aspect-ratio: 10/3;
    object-fit: cover;
}

#block-nebel-views-block-homepage-product-slideshow-block-1 .owl-dots {
    position: absolute;
    bottom: 21px;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: center;
}

#block-nebel-views-block-homepage-product-slideshow-block-1 .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    background: #fff;
}

#block-nebel-views-block-homepage-product-slideshow-block-1 .owl-dots .owl-dot.active span {
    width: 50px;
    background: #53A447;
}

/* ----------------Companies-------------------------- */

#block-nebel-views-block-homepage-companies-block-1 {
    margin-bottom: 120px;
}

#block-nebel-views-block-homepage-companies-block-1 h4.block-title {
    margin-bottom: 40px;
}

#block-nebel-views-block-homepage-companies-block-1 .views-view-responsive-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

#block-nebel-views-block-homepage-companies-block-1 .views-view-responsive-grid .views-view-responsive-grid__item {
    width: 16.66%;
}

#block-nebel-views-block-homepage-companies-block-1 .views-view-responsive-grid .views-view-responsive-grid__item .views-view-responsive-grid__item-inner {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}


/* -----------------Our Categories----------------- */

#block-nebel-views-block-our-categories-block-1 {
    margin-bottom: 120px;
}

#block-nebel-views-block-our-categories-block-1 .category {
    position: relative;
    box-shadow: 0px 2px 3px 0px #C5C5C5E5;
    border-radius: 10px;
}

#block-nebel-views-block-our-categories-block-1 .category .category-title {
    position: absolute;
    top: 30%;
    left: 18px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28.12px;
    max-width: 60%;
    color: #fff;
    text-transform: capitalize;
}

#block-nebel-views-block-our-categories-block-1 .category img {
    width: 100%;
    aspect-ratio: 4/2;
    object-fit: cover;
    object-position: right;
}

/* ----------------About Nebel Block-------------------- */

.about-nebel-wrapper {
    padding: 70px 40px;
    background: #8B96A826;
    box-shadow: 0px 2px 3px 0px #C5C5C5E5;
}

.about-nebel-wrapper h4.block-title {
    text-align: left;
}

.about-nebel-wrapper .cta-button {
    margin-top: 35px;
}

/* -------------- Footer ------------------ */

footer {
    padding: 0;
}

.footer-contact-us .footer-contact-banner {
    padding: 20px;
    border: 0.6px solid #8B96A880;
    box-shadow: 0px 2px 3px 0px #C5C5C5E5;
}

.footer-contact-us .footer-contact-banner .col-lg-4 {
    display: flex;
    justify-content: center;
}

.footer-contact-us .footer-contact-banner .col-lg-4.border-separated {
    border-right: 1px solid #8b96a880;
    border-left: 1px solid #8b96a880;
}

.footer-contact-us .footer-contact-banner p {
    margin: 0;
    font-weight: 350;
    line-height: 21.86px;
    text-align: left;
}

.footer-contact-us .footer-contact-banner .title {
    font-size: 18px;
    font-weight: 600;
    line-height: 28.12px;
    letter-spacing: 0.05em;
    text-align: left;
    position: relative;
}

.footer-contact-us .footer-contact-banner .email a {
    color: #000000;
    text-decoration: none;
}

.footer-contact-us .footer-contact-banner .phone .title::before {
    position: absolute;
    content: '';
    background: url('../images/phone-icon-green.png') no-repeat;
    width: 18px;
    height: 23px;
    left: -30px;
    top: 6px;
}

.footer-contact-us .footer-contact-banner .email .title::before {
    position: absolute;
    content: '';
    background: url('../images/email-icon-green.png') no-repeat;
    width: 28px;
    height: 23px;
    left: -40px;
    top: 6px;
}

.footer-contact-us .footer-contact-banner .fax .title::before {
    position: absolute;
    content: '';
    background: url('../images/fax-icon-green.png') no-repeat;
    width: 23px;
    height: 23px;
    left: -35px;
    top: 6px;
}

.footer-middle {
    background: linear-gradient(0deg, rgba(139, 150, 168, 0.3) 0%, rgba(139, 150, 168, 0) 100%);
    padding-top: 100px;
    padding-bottom: 20px;
}

.footer-middle .col-sm-2 {
    width: 18.5%;
}

.footer-middle .col-sm-4 {
    width: 26%;
}

.region-footer-middle-column-first h5,
.region-footer-middle-column-second h5,
.region-footer-middle-column-third h5,
.region-footer-middle-column-fourth h5,
.region-footer-middle-column-fifth h5 {
    font-size: 18px;
    line-height: 28.12px;
    letter-spacing: 0.05em;
    text-align: left;
    margin-bottom: 10px;
}

.region-footer-middle-column-first ul li a,
.region-footer-middle-column-second p,
.region-footer-middle-column-third p {
    padding: 0 !important;
    margin: 0;
    font-size: 16px;
    font-weight: 350;
    line-height: 28px;
    text-align: left;
}

.region-footer-middle-column-fourth p a {
    color: unset;
}

.footer-bottom {
    background: #53A447;
    font-size: 13px;
    color: #fff;
    line-height: 20.31px;
    padding-top: 19px;
    padding-bottom: 16px;
}

.footer-bottom .region-footer-bottom-second ul.navbar-nav {
    flex-direction: row !important;
    gap: 20px;
}

.footer-bottom .region-footer-bottom-second ul li a {
    padding: 0;
}


/* =============Media Queries================= */

@media screen and (min-width: 1200px) and (max-width: 1400px) {
    .categories-menu #block-nebel-categories-2 ul.tbm-nav .tbm-item.level-1>.tbm-submenu {
        width: 894px !important;
    }
}


/****************** Front-page ************************/

.form-item-purchased-entity-0-attributes-attribute-color:has(input.out-of-stock-item) label {
    cursor: default !important;
    cursor: default !important;
    opacity: .4 !important;
    cursor: not-allowed !important;
}

.product-detail-color-palette-disable fieldset[data-drupal-selector="edit-price-quantity-wrapper"] {
    opacity: .6 !important;
    cursor: not-allowed !important;
}

.price-quantity-wrapper.out-of-stock-item,
.form-item-purchased-entity-0-attributes-attribute-select-format.out-of-stock-item {
    opacity: .4 !important;
}

:is(.price-quantity-wrapper.out-of-stock-item, .form-item-purchased-entity-0-attributes-attribute-select-format.out-of-stock-item) label {
    cursor: not-allowed !important;
}

.parent-banner {
    position: relative;
}

.parent-title {
    font-size: 35px;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111111;
}

.parent-banner:has(img) .parent-title {
    position: absolute;
    top: 72px;
    left: 36px;
    max-width: 500px;
}

.parent-title.term-10699 {
    color: #fff;
}

.child-listing img {
    width: 100%;
    max-width: 300px;
}

.child-listing h3.title {
    font-size: 24px;
    color: #111111;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.child-listing .product-list a {
    color: #111111;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    font-weight: 350;
}

.child-listing hr.listing-separator {
    border: 1px solid #8B96A8;
    box-shadow: 0px 4px 4px 0px #00000040;
    margin: 36px 0 40px 0;
}



/*---------product detail page--------*/

.product-icon-origin {
    height: 20px;
    width: 26px;
}

.product-image-top img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 11px;
    /* border-radius: 15px; */
}

.product-image-bottom .field--name-field-upload-product-image {
    display: flex;
    gap: 11px;
}

.product-image-bottom .field--name-field-upload-product-image .field__item {
    flex-shrink: 0;
}

.product-image-bottom-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.product-image-bottom {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    max-width: 600px;
    /* Adjust width to show 6 images */
}

.product-image-bottom img {
    width: 90px;
    height: 85px;
    padding: 3px;
    cursor: pointer;
    border-radius: 3px;
    border: 1px solid #cccccc;
}

button.prev,
button.next {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    padding: 5px 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

button.prev {
    left: -17px;
}

button.next {
    right: 0;
}

.product-image-bottom::-webkit-scrollbar {
    display: none;
}

.product-image-bottom img.active {
    border: 1px solid #000000;
}

small .field--name-field-product-disclaimer-text {
    display: flex;
    align-items: center;
}

small .field--name-field-product-disclaimer-text::before {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    margin-right: 10px;
    background: url(../images/caption.png) no-repeat left;
    flex-shrink: 0;
}

.product-detail-right span.mb-3 {
    display: block;
}

.product-detail-right span.mb-3 img {
    max-width: 110px;
}

.product-detail-right h2 {
    text-transform: uppercase;
}

.stock-available::before,
.stock-unavailable::before,
.less-stock-available::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #53A447;
    border-radius: 25px;
    display: inline-block;
    margin-right: 10px;
}

.stock-unavailable::before {
    background: red !important;
}

.less-stock-available::before {
    background: orange !important;
}

.less-stock-available {
    color: orange !important;
}

.stock-available {
    color: green;
}

.stock-unavailable {
    color: red;
}

.price-list-data .row .product-detail-page {
    display: flex;
    align-items: center;
}

.price-list-data .file--application-pdf {
    background-image: none;
}

.price-list-data .file--application-pdf a {
    background: url(../images/Pdf.png) no-repeat center;
    width: 55px;
    height: 65px;
    display: block;
    font-size: 0;
}

#tab-contents .tab-content table tr td {
    width: auto;
}

.product-quantity-price .field__item .field__label {
    display: none;
}

.product-quantity-price .field__item:first-child .field__label {
    display: block;
    margin-bottom: 27px;
}

.commerce-order-item-add-to-cart-form {
    position: relative;
}

.plus_button,
.minus_button {
    font-size: 27px;
}

.product-price {
    margin-top: 25px;
}

#quantity_button_area {
    display: inline-flex;
    align-items: center;
    border: 1px solid #8B96A8;
    padding: 14px;
    border-radius: 7px;
    height: 40px;
    cursor: pointer;
    margin-top: 25px;
}

#quantity_button_area .js-form-type-number label {
    display: none;
}

#quantity_button_area .js-form-item-quantity-0-value .form-control {
    text-align: center;
    max-width: 100px;
    border: 0px;
}

.button--add-to-cart {
    background: #111111 url(../images/cart-btn-arrow.png) no-repeat right;
    border-radius: 25px;
    height: 40px;
    border: 0px;
    width: calc(100% - 192px);
    position: absolute;
    bottom: 0;
    right: 0;
    background-position-x: 99%;
    text-align: start;
    padding-left: 25px;
    padding-right: 35px;
}

.button--add-to-cart:hover {
    background: #111111 url(../images/cart-btn-arrow.png) no-repeat right;
    background-position-x: 99%;
}

.product-detail-right {
    position: relative;
}

.product-detail-page .field--type-commerce-price {
    display: flex;
    gap: 15px;
    align-items: center;
}

.product-detail-page .field--type-commerce-price .field__label {
    font-size: 25px;
    font-weight: 500;
}

.product-detail-page .field--type-commerce-price .field__item {
    color: #53A447;
    font-size: 25px;
    font-weight: 500;
}

.product-quantity-price {
    border: 1px solid #8B96A8;
    border-radius: 7px;
    width: 95.5%;
}

.price-table-data .row {
    border-bottom: 1px solid #8B96A8;
    margin-left: 0px;
    margin-right: 0px;
    padding: 6px;
}

.product-quantity-price .field__item:last-child .row {
    border-bottom: 0px;
}

.price-table-data .price {
    text-align: right;
}

.price-table-data {
    position: relative;
    overflow: hidden;
    padding-top: 7px;
    padding-bottom: 7px;
    cursor: pointer;
}

.product-quantity-price .field__item:first-child .field__label::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #8B96A8;
    display: block;
    position: absolute;
    left: 0px;
    bottom: 45px;
}

.price-table-data .field--name-field-price .field__item {
    font-weight: bold;
}

.price-table-quantity {
    float: left;
}

.price-table-price {
    float: right;
}

.price-quantity-wrapper {

    fieldset[data-drupal-selector="edit-price-quantity-wrapper"]>.fieldset-wrapper {
        display: flex;
        justify-content: end;
        position: relative;
        border: 1px solid #8B96A8;
        border-radius: 10px 10px 0 0;

        fieldset[data-drupal-selector="edit-default-quantity"] {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            margin: 0;

            legend,
            .form-item label {
                margin: 0;
                padding: 10px 20px;
                border-bottom: 1px solid #8B96A8;
            }

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

            .form-item {
                margin: 0;
            }

            input[type="radio"] {
                display: none;
            }

            label {
                display: block;
                cursor: pointer;
            }

            input[type="radio"]:checked+label {
                background: #C5F2BF;
            }

            /* label:hover{
                background: #C5F2BF;
            } */
        }

        fieldset[data-drupal-selector="edit-default-price"] {
            z-index: 1;
            margin: 0;

            legend,
            .form-item label {
                margin: 0;
                padding: 10px 20px;
                border-bottom: 1px solid transparent;
            }

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

            .form-item {
                margin: 0;
            }

            label {
                display: block;
            }

            input[type="radio"] {
                display: none;
            }
        }
    }
}

.product-detail-right {
    .commerce-order-item-add-to-cart-form {

        .product--rendered-attribute .form-radios {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            transition: all 1s ease;

            .form-item {
                margin: 0;
                flex: 0 0 115px;

                label.option {
                    display: inline-block;
                    width: 100%;
                    font-size: 13px;
                    text-align: center;
                    border: 1px solid #8B96A8;
                    padding: 10px;
                    border-radius: 7px;
                    cursor: pointer;
                    height: 10rem;
                    display: grid;
                    align-items: end;
                    justify-content: center;

                    div {}

                    &:has(img) {
                        align-items: baseline !important;
                    }

                    img {
                        height: 100%;
                    }
                }

                .product--rendered-attribute__selected~label.option {
                    border: 1px solid #53A447 !important;
                }

                .field--name-field-upload-color-palette-image {
                    margin-bottom: 7px;
                    height: 5.5rem;
                }
            }
        }

        .product--rendered-attribute .show-all-btn {
            font-size: 14px;
            font-weight: 600;
            padding: 14px 0;
            text-decoration: underline;
            cursor: pointer;
            position: relative;
            text-align: center;
            color: #111111;
            transition: color 0.3s ease;
        }

        .product--rendered-attribute .show-all-btn::before {
            content: '';
            display: block;
            height: 20px;
            width: 100%;
            position: absolute;
            left: 0;
            right: 0;
            top: -20px;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
        }

        .product--rendered-attribute .show-all-btn:hover {
            color: #53A447;
        }

        .product--rendered-attribute .show-all-btn.expand-colors {
            display: none;

            &::before {
                content: unset !important;
            }
        }

        .product--rendered-attribute .form-radios.expand {
            max-height: unset;
            overflow: auto;
            transition: all 1s ease;
        }

        .form-item-purchased-entity-0-attributes-attribute-select-materials,
        .form-item-purchased-entity-0-attributes-attribute-select-format,
        .price-quantity-wrapper,
        .form-item-purchased-entity-0-attributes-attribute-type,
        .form-item-purchased-entity-0-attributes-attribute-material-thickness,
        .form-item-purchased-entity-0-attributes-attribute-guise,
        .form-actions {
            max-width: 500px;

            label {
                display: none;
            }
        }

        .form-item-purchased-entity-0-attributes-attribute-type {
            margin: 25px 0;

            label {
                display: none;
            }

            .chosen-container .chosen-single::before {
                content: 'Type';
                font-size: 16px;
                font-weight: 600;
            }
        }

        .form-item-purchased-entity-0-attributes-attribute-guise {
            margin: 25px 0;

            label {
                display: none;
            }

            .chosen-container .chosen-single::before {
                content: 'Gestalt';
                font-size: 16px;
                font-weight: 600;
            }
        }

        .form-item-purchased-entity-0-attributes-attribute-select-format {
            margin: 25px 0;

            label {
                display: none;
            }

            .chosen-container .chosen-single::before {
                content: 'Formate';
                font-size: 16px;
                font-weight: 600;
            }
        }

        .form-item-purchased-entity-0-attributes-attribute-material-thickness {
            margin: 25px 0;

            label {
                display: none;
            }

            .chosen-container .chosen-single::before {
                content: 'Material Thickness';
                font-size: 16px;
                font-weight: 600;
            }
        }


        .form-item-purchased-entity-0-attributes-attribute-select-materials {
            margin: 25px 0;

            label {
                display: none;
            }

            .chosen-container .chosen-single::before {
                content: 'Materialstärke (in mm)';
                font-size: 16px;
                font-weight: 600;
            }
        }

        .chosen-container .chosen-single span,
        .chosen-container ul.chosen-results li {
            text-transform: uppercase;
        }


        #price-wrapper {
            margin-bottom: 30px;
        }

        #quantity-wrapper {
            width: 28%;

            .form-item {
                margin: 0;

                label {
                    display: none;
                }

                input {
                    height: 40px;
                    width: 160px;
                    text-align: center;
                }

                input::-webkit-outer-spin-button,
                input::-webkit-inner-spin-button {
                    -webkit-appearance: none;
                    margin: 0;
                }

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

        .form-actions {
            margin: 0;
            position: relative;
        }

        .quantity-minus,
        .quantity-plus {
            position: absolute;
            bottom: 0;
            background: transparent;
            border: none;
            outline: none;
            border-radius: 0;
            height: 40px;
            width: 40px;
            margin: 0;
            font-size: 0;
        }

        .quantity-minus {
            left: 0;
            background: url(../images/icon-minus.png) center no-repeat;
        }

        .quantity-plus {
            left: 120px;
            background: url(../images/icon-plus.png) center no-repeat;
        }
    }

    .product-add-to-cart-button {
        margin-bottom: 20px;
        margin-bottom: 20px;
        position: relative;
    }

    .product-add-to-cart-button.request-a-quote {
        .button--add-to-cart {
            display: none;
        }

        .request-a-quote-button {
            position: absolute;
            bottom: 0;
            left: 180px;
            height: 40px;
            width: calc(100% - 180px);
            max-width: calc(500px - 180px);
        }
    }

    .product-detail {
        ul {
            margin: 0;
            padding: 0;
            list-style-type: none;

            li {
                display: flex;
                align-items: center;
                gap: 10px;
            }

            li::before {
                content: '';
                display: inline-block;
                width: 5px;
                height: 5px;
                background: #8B96A8;
                transform: rotate(45deg);
            }
        }
    }
}

#commerce-product-add-to-cart-form .form-item-purchased-entity-0-attributes-attribute-weight {
    display: grid;
}

#commerce-product-add-to-cart-form #edit_purchased_entity_0_attributes_attribute_weight_chosen {
    max-width: 500px;
}

.header-top-right a.chosen-single {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #fff !important;
    width: max-content;

    span {
        margin-right: 0;
        font-size: 13px;
    }
}

.header-top-right .form-select {
    background: transparent !important;
    border: none !important;
    width: max-content !important;
    color: #fff !important;
    font-size: 13px;

    option {
        color: #000;
    }
}

.header-top-right .chosen-container .chosen-drop {
    border-radius: 0;

    .chosen-search {
        display: none;
    }
}

/* Style for tab buttons */
.product-tab-section {

    #tabs {
        display: flex;
        flex-wrap: wrap;

        .tab {
            padding: 15px;
            cursor: pointer;
            border-radius: 5px 5px 0 0;

            span {
                border: 1px solid #8B96A8;
                padding: 7px 15px;
                border-radius: 10px;
                display: block;
            }
        }

        .tab.active {
            background-color: #eeeff2;

            span {
                background-color: #53a447;
                color: #fff;
            }
        }
    }

    #tab-contents {
        .tab-content {
            display: none;
            padding: 40px 20px;
            background-color: #eeeff2;
            border-radius: 0 10px 10px 10px;
            box-shadow: 0px 2px 3px 0px #C5C5C5E5;

            :is(p, span) {
                font-family: unset !important;
            }
        }

        .tab-content:first-of-type {
            display: block;
        }
    }
}

.product-tab-section:not(:has(.tab-content-header)) {
    display: none;
}

/* Styles for tabs in smaller screen */

@media screen and (max-width: 991px) {
    .product-tab-section {

        padding: 0 !important;

        #tabs {
            flex-direction: column;

            .tab {
                padding: 15px 10px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                border-bottom: 1px solid #ededed;
                border-radius: 0;

                span {
                    padding: 0;
                    border: none;
                    background-color: transparent !important;
                    color: #111111 !important;
                    font-weight: bold;
                }
            }

            .tab::after {
                content: '';
                display: inline-block;
                height: 16px;
                width: 16px;
                background: url(../images/arrow-right-green-lg.png) center/contain no-repeat;
            }

            .tab:first-of-type {
                border-top: 1px solid #ededed;
            }

            .tab.active {
                background-color: #C5F2BF;
            }
        }

        #tab-contents {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100%;
            width: 85%;
            z-index: 1010;
            transition: right 0.5s ease;
            display: flex;
            flex-direction: column-reverse;

            .tab-content-header {
                background: #53A447;
                padding: 15px 20px;
                color: #fff;
                font-size: 16px;
                line-height: 1;
                display: flex;
                align-items: center;
                gap: 6px;

                span.close {
                    height: 25px;
                    width: 25px;
                    background: url(../images/close-icon-white.png) center/cover no-repeat;
                }
            }

            .tab-content {
                height: 100%;
                padding: 0;
                box-shadow: 0px 2px 10px 0px #00000040;
                border-radius: 0;
            }

            .tab-content>div.field {
                padding: 20px;
                height: 100%;
                overflow-y: auto;
            }
        }

        #tab-contents.open {
            right: 0 !important;
        }
    }

    body.offcanvas-backdrop-active {
        overflow: hidden;

        #offcanvas-backdrop-layer {
            opacity: 1;
            z-index: 1001;
        }
    }
}



.product-detail-page .ajax-progress {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: transparent;
    z-index: 999;

    div {
        display: none;
    }
}


.breadcrumb {
    align-items: center;

    li {
        display: flex;

        a,
        div {
            color: #111111;
        }
    }

    li:first-child {
        a {
            font-size: 0px;
            display: inline-block;
            height: 15px;
            width: 15px;
            background: url(../images/home-icon-dark.png) center/contain no-repeat;
            margin-bottom: 4px;
        }
    }

    li:last-child {

        a,
        div {
            font-weight: 600;
        }
    }
}

/* Style for search form */
.region-header-bottom-middle .form--inline .form-item,
.region-header-bottom-middle input#edit-reset--2,
.region-header-bottom-middle .form-type-textfield label {
    display: none;
}

.region-header-bottom-middle .form--inline .form-item:first-child {
    display: block;
    width: 100%;
    margin: 0;
}

.views-exposed-form .form-type-textfield {
    display: flex;
}

.views-exposed-form .fieldgroup {
    width: 100%;
}

.region-header-bottom-middle .block-views-exposed-filter-blockproduct-search-page-1 .form--inline {
    display: flex;
    width: 100%;
}

.sidebar-left .block-views-exposed-filter-blockproduct-search-page-1 {
    max-width: 242px;
}

.sidebar-left .views-exposed-form #edit-field-product-category-target-id--3--wrapper .fieldset-wrapper,
.sidebar-left .views-exposed-form #edit-attribute-color-target-id--3--wrapper .fieldset-wrapper,
.sidebar-left .views-exposed-form #edit-attribute-select-format-target-id--3--wrapper .fieldset-wrapper,
.sidebar-left .views-exposed-form #edit-attribute-select-materials-target-id--3--wrapper .fieldset-wrapper,
.sidebar-left .views-exposed-form #edit-attribute-weight-target-id--3--wrapper .fieldset-wrapper,
.sidebar-left .views-exposed-form #edit-attribute-material-thickness-target-id--3--wrapper .fieldset-wrapper,
.sidebar-left .views-exposed-form #edit-field-guise-value--3--wrapper .fieldset-wrapper,
.sidebar-left #views-exposed-form-product-search-page-1 .fieldset-wrapper {
    max-height: 240px;
    overflow: hidden;
    transition: all 1s ease;
    margin-bottom: 5px;
}

.sidebar-left .views-exposed-form #edit-attribute-color-target-id--3--wrapper .fieldset-wrapper,
.sidebar-left .views-exposed-form #edit-attribute-select-format-target-id--3--wrapper .fieldset-wrapper,
.sidebar-left .views-exposed-form #edit-attribute-select-materials-target-id--3--wrapper .fieldset-wrapper,
.sidebar-left .views-exposed-form #edit-attribute-weight-target-id--3--wrapper .fieldset-wrapper,
.sidebar-left .views-exposed-form #edit-attribute-material-thickness-target-id--3--wrapper .fieldset-wrapper,
.sidebar-left .views-exposed-form #edit-field-guise-value--3--wrapper .fieldset-wrapper,
.sidebar-left #views-exposed-form-product-search-page-1 fieldset:not([data-drupal-selector="edit-field-product-category-target-id"]) .fieldset-wrapper {
    height: 125px !important;
}

.sidebar-left #views-exposed-form-product-search-page-1 fieldset[data-drupal-selector="edit-field-product-category-target-id"] {
    .form-item-field-product-category-target-id {
        margin: 0;
        margin-bottom: 5px;

        input[type="radio"] {
            display: none;
        }

        label {
            cursor: pointer;
            font-size: 16px;
            line-height: 25px;
        }

        input[type="radio"]:checked+label {
            color: #53A447;
        }
    }
}

.fieldset-wrapper.expanded {
    overflow: auto !important;
}

.show-more-btn,
.show-less-btn {
    cursor: pointer;
    color: #1252B1;
    font-size: 16px;
    font-weight: 300;
    text-align: end;
    display: block;
    width: max-content;
    /* margin-left: auto; */
}

.search-keyword-text {
    margin: 0;
    margin-top: 1rem;
    font-weight: 600;
}

#main-content .block-views-exposed-filter-blockproduct-search-page-1 form {
    .fieldgroup {
        margin: 0;
        padding: 24px 0;
        border-bottom: 1px solid #ccc;
    }

    legend {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .fieldgroup:last-of-type {
        border-bottom: none !important;
    }

    .form-item-sort-by,
    .form-item-title {
        display: none;
    }

    .form-actions {
        display: flex;
        flex-wrap: wrap;
        column-gap: 6px;
        row-gap: 8px;
        .btn-primary {
            background: #53A447;
            border-color: #53A447;
            color: #ffffff;
        }

        .btn-primary:hover,
        .btn-primary:active,
        .btn-primary:focus-visible {
            background: #4e9b42 !important;
            border-color: #4e9b42 !important;
        }

        input[name='reset'] {
            background: #ffffff;
            color: #53A447;
            border-color: #53A447;
            margin: 1px;
        }

        input[name='reset']:hover {
            color: #ffffff;
        }
    }
}



/* ============= Contact Page ============= */

.contact-page {
    padding-top: 30px !important;

    .banner {
        min-height: 304px;
        background: url(../images/contact\ banner.jpg) no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        /* height: 400px; */
        color: #111111;
        padding: 72px 34px;
        margin-bottom: 40px;
    }

    .map-section {
        iframe {
            width: 100% !important;
            height: 100% !important;
        }
    }

    .contact-field-wrapper {
        padding: 70px 0;

        .contact-field {
            display: flex;

            .field-left {
                flex: 0 0 40%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 6px;
                padding-right: 33px;
                border-right: 1px solid #3C3C3C;
                color: #3C3C3C;
                font-size: 18px;
                font-weight: 600;
                text-transform: capitalize;
            }

            .field-left::before {
                content: '';
                display: inline-block;
                height: 31px;
                width: 31px;
                /* background: url(../images/Vector.svg) center/contain no-repeat; */
            }

            .field-right {
                padding: 12px 0 12px 33px;
                color: #3C3C3C;

                p:last-child {
                    margin-bottom: 0;
                }
            }
        }

        .contact-field:not(:last-child) {
            margin-bottom: 48px;
        }

        .contact-field:first-child {
            .field-left::before {
                background: url(../images/location-theme.svg) center/contain no-repeat;
            }
        }

        .contact-field:nth-child(2) {
            .field-left::before {
                background: url(../images/note-icon-theme.svg) center/contain no-repeat;
            }
        }

        .contact-field:nth-child(3) {
            .field-left::before {
                background: url(../images/boxicon-theme.svg) center/contain no-repeat;
            }
        }

        .contact-field:nth-child(4) {
            .field-left::before {
                background: url(../images/Vector.svg) center/contain no-repeat;
            }
        }
    }

}


/************** Login-page ****************/

.path-user .block-page-title-block h1 {
    text-align: center;
}

.user-login-form,
.user-register-form,
.user-pass {
    max-width: 450px;
    margin: 40px auto;


}

.user-login-form input,
.user-register-form input,
.user-pass input {
    height: 50px;
}

.user-login-form input#edit-submit,
.user-register-form input#edit-submit,
.user-pass input#edit-submit {
    width: 100%;
    background: #53A447;
    border: 0;
}

.user-login-form label,
.user-register-form .description,
.user-pass label {
    display: none;
}

.user-login-form a.forgot-password-link {
    display: none;
}

.user-login-form .custom-links-wrapper,
.user-register-form .custom-links-wrapper {
    text-align: center;
    padding: 15px 0;
}

.user-login-form .custom-links-wrapper a {
    color: #000;
}

.user-login-form .custom-links-wrapper a:hover {
    color: #53A447;
}

.user-register-form .custom-links-wrapper a {
    color: #53A447;
}

.user-register-form .custom-links-wrapper a:hover {
    color: #000;
}

.user-register-form .form-actions {
    display: flex;
    flex-direction: column-reverse;
}

.user-pass p {
    text-align: center;
    font-size: 12px;
}

.user-pass .custom-links-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;

    a {
        color: #000;
        font-size: 12px;
        line-height: 1;
        transition: all 0.3s ease;
    }

    a:not(:last-child) {
        padding-right: 10px;
        border-right: 1px solid #184d65a2;
    }

    a:not(:first-child) {
        padding-left: 10px;
    }

    a:hover {
        color: #53A447;
    }
}


/*********** X-film Page**************/

.path-manufacture .block-page-title-block {
    display: none;
}

.product-listing-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #E1F4D8;
    padding: 115px 50px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.product-listing-banner .text {
    font-size: 35px;
    font-weight: 300;
}

.product-listing-banner img {
    mix-blend-mode: multiply;
}

.item-in-grid {
    padding-left: unset !important;
}

/*********** product-search page ***********/
.product-search-data .view-header {
    display: flex;
    justify-content: end;
    padding: 15px 0;
    padding-bottom: 20px;
    align-items: center;
}

/* ======== Custom sorting element made using js ========= */
#custom-sorting-element {
    width: max-content;
    position: relative;
    margin-left: 18px;

    a#selected-option {
        display: inline-block;
        position: relative;
        min-width: 200px;
        padding: 6px 12px;
        padding-right: 25px;
        border: 1px solid #8B96A8;
        cursor: pointer;
    }

    a#selected-option::after {
        content: '';
        display: inline-block;
        position: absolute;
        height: 10px;
        width: 12px;
        background: url(../images/arrow-down-dark.svg) center/contain no-repeat;
        transform: translateY(-50%);
        right: 10px;
        top: 50%;
    }

    ul {
        display: none;
        width: 100%;
        position: absolute;
        background: #fff;
        padding: 0;
        margin: 0;
        box-shadow: 0 0 10px #00000042;
        border: 1px solid #ababab;
        border-top: 0;

        li {
            list-style: none;
            cursor: pointer;
            padding: 10px;
            color: #111111;
            font-size: 13px;
        }

        li:hover,
        li.selected {
            background: #C5F2BF;
        }
    }

    ul.expanded {
        display: block;
    }
}

#custom-sorting-element:has(ul.expanded) {
    a#selected-option {
        box-shadow: 0 0 4px black;
        background: #fff;
    }
}

.product-search-data .view-content {
    margin-bottom: 40px;
}

.product-search-data .views-row {
    margin-bottom: 25px;
}

.product-search-data .views-col {
    width: 31.5% !important;
    background: #fff;
    box-shadow: 0px 0px 2px 3px lightgray;
    text-align: center;
    padding: 35px 50px 80px 50px;
}

/* For responsive grid */
.product-search-data .views-view-responsive-grid__item-inner {
    background: #fff;
    box-shadow: 0px 0px 2px 3px lightgray;
    text-align: center;
    padding: 35px 50px 80px 50px;
    height: 100%;
}

.product-search-data .views-col.col-2 {
    margin-left: 25px;
    margin-right: 25px;
}

.product-search-data .views-field-title {
    padding: 25px 0;
}

.product-search-data .views-field-title a {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
}

.product-search-data .field-content {
    color: #53A447;
}




.product-search-data .pagination .active a {
    background: #53A447;
    border: 0;
    color: #ffffff;
}

.product-search-data .pagination a {
    color: #8F8F8F;
}


.product-search-data .pagination .pager__item--first,
.product-search-data .pagination .pager__item--last {
    display: none;
}


.product-search-data .pagination .pager__item--previous a,
.product-search-data .pagination .pager__item--next a {
    background: #53A447 !important;
    border: 0;
    color: #ffffff;
}

#edit-purchased-entity-0-attributes-attribute-color--wrapper legend span {
    font-size: 0;
}

#edit-purchased-entity-0-attributes-attribute-color--wrapper legend span::before {
    content: "Farbe";
    display: inline-block;
    font-size: 16px;

}

.selected-thickness {
    p {
        margin: 0 !important;
        color: #000 !important;

        span {
            text-transform: uppercase;
        }
    }
}

div.js-form-item-purchased-entity-0-attributes-attribute-color :is(.field--name-name:has(font) font, .field--name-name) {
    font-size: 0;
    display: block;
}

div.js-form-item-purchased-entity-0-attributes-attribute-color .field--name-name {
    height: 3rem;
    overflow: hidden;
    display: grid !important;
    place-content: center;
}

div.js-form-item-purchased-entity-0-attributes-attribute-color .field--name-name>div font {

    font-size: .8rem !important;
}

div.js-form-item-purchased-entity-0-attributes-attribute-color .field--name-name>div {

    font-size: .8rem !important;
    display: none;
}

div.js-form-item-purchased-entity-0-attributes-attribute-color .field--name-name>div:first-of-type {
    display: block !important;
}

img.country-img {
    max-height: 18px;
    margin-left: 1.2rem;
    margin-top: 8px;
}

p.guise {
    display: none;
}

div#edit-payment-information-payment-method .form-disabled {
    display: none;
}

/* =============== Cart Page ==================== */

.path-cart,
.path-checkout,
.page--page-not-found {
    .btn-primary {
        background: #53A447;
        border-color: #53A447;
        color: #ffffff;
    }

    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary:focus-visible {
        background: #4e9b42 !important;
        border-color: #4e9b42 !important;
    }
}

.path-cart .block-page-title-block h1 {
    margin: 20px 0;
    margin-bottom: 40px;
    text-align: center;
}

.cart-form {
    max-width: 1000px;
    margin: 0 auto;

    form{
        overflow-x: auto;
    }

    table {
        
        th {
            background-color: #ebebeb;
        }

        td {
            vertical-align: middle;

            a {
                color: #000000;
                transition: all 0.3s ease;
            }

            a:hover {
                color: #4e9b42;
            }
        }
    }

    .field--name-total-price {
        display: flex;
        justify-content: end;
    }
}

/* ------- Cart Empty ---------- */

.path-cart:has(.cart-empty-page) .block-page-title-block {
    display: none;
}

.cart-empty-page {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart-empty-page::before {
    content: '';
    display: inline-block;
    width: 150px;
    height: 150px;
    background: url(../images/empty-cart.png) center/contain no-repeat;
}

/* ======================= Checkout Pages ======================= */

.path-checkout #main-content:not(.checkout-complete-page) {
    background: #8B96A81A;
}

.path-checkout #block-nebel-page-title {
    margin-top: 15px;

    h1 {
        text-align: center;
    }
}

.path-checkout #block-nebel-content {
    margin: 25px 0;
}

.layout-checkout-form {
    .checkout-left-section {
        padding: 30px !important;
        background: #ffffff;
        border-radius: 6px;
        height: 100%;

        .checkout-pane-payment-information,
        #edit-review-contact-information,
        .checkout-pane-contact-information {
            margin-top: 0;

            >legend span {
                font-size: 24px;
                font-weight: 400;
            }

            fieldset[data-drupal-selector="edit-payment-information-payment-method"] {
                legend {
                    display: none;
                }
            }

            .form-item-payment-information-billing-information-select-address {
                label {
                    display: block;
                    margin-bottom: 4px;
                }
            }

            .address-book-edit-button {
                margin: 0;
                font-size: 13px;
                padding: 4px 12px;
                line-height: 1;
                border-radius: 3px;
            }

            #edit-payment-information-billing-information,
            #edit-payment-information-add-payment-method-billing-information-address-0 {
                .form-item {
                    margin-top: 0;
                    margin-bottom: 14px;
                }

                .address-container-inline {
                    display: flex;

                    .form-item {
                        width: 50%;
                        margin-right: 10px;
                    }

                    .form-item:last-child {
                        margin-right: 0;
                    }
                }
            }
        }
    }

    .checkout-right-section {
        background: #fff;
        padding: 30px !important;
        background: #fff;
        border-radius: 6px;

        .layout-container-checkout-secondary {
            >h3 {
                font-size: 24px;
                font-weight: 400;
                margin-bottom: 20px;
            }

            .checkout-pane-coupon-redemption {
                div[data-drupal-selector="edit-sidebar-coupon-redemption-form"] {
                    display: flex;
                    align-items: end;

                    .form-item {
                        margin: 0;
                    }

                    input[type="submit"] {
                        height: max-content;
                        width: max-content;
                    }
                }
            }

            .checkout-pane-coupon-redemption:has(.alert) {
                div[data-drupal-selector="edit-sidebar-coupon-redemption-form"] {
                    margin-top: 15px;
                    flex-wrap: wrap;

                    input[type="submit"] {
                        margin-left: 0;
                        margin-top: 8px;
                    }
                }

            }
        }

        .layout-container-checkout-footer {
            margin-top: 50px;

            input[type="submit"] {
                width: 100%;
                height: 45px;
            }

            .link--previous {
                text-align: center;
                display: block;
                margin-top: 10px;
                color: #53A447;
            }

        }
    }

    .checkout-order-summary {
        table {
            width: 100%;
            margin-bottom: 15px;

            tr {
                td:last-child {
                    text-align: end;
                    padding-right: 10px;
                }

                .field__label,
                .field--name-field-stock-level {
                    display: none;
                }
            }
        }
    }

    /* ======================= Anonymous User Checkout Page ======================== */

    .checkout-pane-login {
        .form-wrapper__login-option {
            padding: 30px !important;
            background: #ffffff;
            border-radius: 6px;
            margin: 0;

            >legend {
                font-size: 24px;
                margin-bottom: 10px;
            }
        }

        .form-wrapper__login-option:not(:last-child) {
            margin-bottom: 20px;
        }

        .form-wrapper__returning-customer {
            a {
                color: #53A447;
            }
        }
    }

}

/* ========= Guest Checkout Completed page ============== */

.layout-checkout-form:has(.checkout-pane-completion-register) {
    display: flex;
    align-items: center;

    .checkout-pane {
        flex: 1 0 50%;
        padding: 0 12px;
    }

    .commerce-checkout-completion-register {
        max-width: 500px;
        margin: 0 auto;
        padding: 30px;
        background: #f1f1f1;
        border-radius: 6px;

        .commerce-checkout-completion-register__text {

            h2 {
                font-size: 24px;
                text-align: center;
                font-weight: 400;
                margin-bottom: 30px;
            }

            p {
                display: none;
            }
        }

        .commerce-checkout-completion-register__form {
            .form-item {
                margin: 0;
                margin-bottom: 10px;

                label,
                .description,
                .password-strength,
                .password-confirm-message {
                    display: none;
                }

                input {
                    height: 50px;
                }
            }

            input[type="submit"] {
                height: 50px;
                width: 100%;
                margin-top: 20px;
                text-transform: capitalize;
            }
        }
    }
}



/* ============== Order Completion Message =============== */

.path-checkout .checkout-complete-page #block-nebel-page-title {
    display: none;
}

.checkout-complete::before {
    content: '';
    display: inline-block;
    height: 100px;
    width: 100px;
    background: url(../images/green-tick.png) center/contain no-repeat;
    margin-bottom: 20px;
}

.checkout-complete {
    text-align: center;

    h2,
    h3,
    h4,
    h5,
    h6,
    p {
        text-align: center;
    }

    a.btn-primary {
        background: #439b2b;
        padding: 6px 20px;
    }

    .order-complete-message {
        h3 {
            margin-bottom: 20px;
        }

        p {
            margin-bottom: 6px;
            color: #666666;
        }

        .btn-primary {
            margin-top: 20px;
        }
    }
}

/* ================= 404 Page ================== */

.page--page-not-found {
    padding: 50px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;

    h2 {
        font-size: 8rem;
        margin-bottom: 2rem;
        font-weight: 400;
        text-align: center;
    }

    h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    p {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 3rem;
        text-align: center;
    }

    a {
        text-transform: uppercase;
        text-align: center;
        padding: 8px 20px;
        min-width: 280px;
        text-align: center;
    }
}


.form-item-purchased-entity-0-attributes-attribute-guise,
.form-item-purchased-entity-0-attributes-attribute-inventory-value {
    display: none;
}