/* Custom CSS for the PDK */
:root {
    /* Font size */
    --H1-font-size: clamp(1.5625rem, -2.8499rem + 8.982vw, 3.4375rem);
    --H2-font-size: clamp(1.25rem, -0.6279rem + 3.8226vw, 2.8125rem);
    --H3-font-size: clamp(1.125rem, -0.9341rem + 4.1916vw, 2rem);
    --H4-font-size: clamp(1rem, 0.6995rem + 0.6116vw, 1.25rem);
    /* --H4-font-size: clamp(1rem, -0.2754rem + 7.8125vw, 1.875rem); */

    /* Colors */
    --Blue-Main: #14A7E0;
    --Blue-Dark-1: #0A5371;
    --Blue-Dark-2: #0F7DA9;
    --Blue-Light-1: #31B8ED;
    --Blue-Light-2: #ECF9FD;

    --Orange-Main: #E45825;
    --Orange-Dark-1: #FF4800;
    --Orange-Dark-2: #FF5400;
    --Orange-Light-1: #E97449;
    --Orange-Light-2: #F8D5C9;

    --Green-Main: #00893A;

    --White: #FFFFFF;
    --Black: #000000;
    --Gray-Light: #F3F3F3;
    --Gray-Medium: #D9D9D9;
}
.video-wrapper{ 
	aspect-ratio: 16/9;
}

.video-wrapper iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Button */
a.ct-link-button, .gform_button { 
    border: unset;
    transition: all 0.3s ease;
}

/* Button -- Primary */
a.button--primary, .gform_button {
    background-color: var(--Orange-Main);
    color: var(--White);
    border-radius: 10px;
    padding: 10px 24px;
    z-index: 1;
}
a.button--primary:hover, .gform_button:hover { background-color: var(--Orange-Light-1); }

/* Button -- Secondary */
a.button--secondary {
    background-color: var(--White);
    color: var(--Orange-Main);
    border-radius: 10px;
    padding: 10px 24px;
}
a.button--secondary:hover { color: var(--Orange-Light-1); }

/* Button -- Download */
a.button--download {
    color: var(--Black);
    font-weight: 600;
}

/* Button -- Tertiary */
a.button--tertiary {
    background-color: var(--Blue-Main);
    color: var(--White);
    border-radius: 10px;
    padding: 10px 24px;
}
a.button--tertiary:hover { background-color: var(--Blue-Light-1); }

/* Lineair background */
.lineair-background {
    position: relative;
    overflow: hidden;
    background-color: var(--White);
    /* border-radius: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lineair-background:hover {
    transform: scale(1.02);
}

/* Content binnen de link */
.lineair-background img,
.lineair-background .home__explore-products__inner__content {
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.lineair-background:hover img,
.lineair-background:hover .home__explore-products__inner__content {
    opacity: 0.7;
}

.lineair-background::before {
    content: "";
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 80%;
    left: -50%;
    top: 0px;
    background: linear-gradient(180deg, #42DDFF 0%, rgba(17, 112, 255, 0.46) 100%);
    opacity: 0.38;
    filter: blur(100px);
    animation: moveBlue 8s ease-in-out infinite;
    transition: all 0.5s ease;
}

.lineair-background:hover::before {
    opacity: 0.15;
    animation: moveBlueHover 4s ease-in-out infinite;
}

.lineair-background::after {
    content: "";
    z-index: 0;
    position: absolute;
    width: 50%;
    height: 50%;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(255, 122, 0, 0) 0%, var(--Orange-Main) 100%);
    opacity: 0.38;
    filter: blur(100px);
    animation: moveOrange 6s ease-in-out infinite;
    transition: all 0.5s ease;
}

.lineair-background > * { z-index: 9; }

.lineair-background:hover::after {
    opacity: 0.15;
    animation: moveOrangeHover 3s ease-in-out infinite;
}

@keyframes moveBlue {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(10%, 5%) scale(1.05);
    }
    50% {
        transform: translate(5%, 10%) scale(1.1);
    }
    75% {
        transform: translate(-5%, 5%) scale(1.05);
    }
}

@keyframes moveBlueHover {
    0%, 100% {
        transform: translate(0, 0) scale(1.1) rotate(0deg);
    }
    50% {
        transform: translate(15%, 10%) scale(1.2) rotate(2deg);
    }
}

@keyframes moveOrange {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-10%, -5%) scale(1.1);
    }
    66% {
        transform: translate(-5%, -10%) scale(1.05);
    }
}

@keyframes moveOrangeHover {
    0%, 100% {
        transform: translate(0, 0) scale(1.1) rotate(0deg);
    }
    50% {
        transform: translate(-15%, -10%) scale(1.2) rotate(-2deg);
    }
}

/* Box shadow */
.box-shadow { box-shadow: 0px 4px 5.3px 4px rgba(0, 0, 0, 0.25); }

#div_block-101-7:after { display: none; }

.variations .label { text-align: left; }
.variations label { color: var(--Black) !important; font-weight: 600 !important; }

.ginput_container input, .ginput_container textarea, .ginput_container select {
    border: 1px solid var(--Gray-Medium);
    border-radius: 8px;
    padding: 12px 16px !important;
    font-family: 'Montserrat';
    height: 100%;
}

.newsletter_wrapper.gravity-theme input[type=email] { 
    height: auto;
    font-size: 14px;
    border: 1px solid #d3ced2;
    background: #ffffff;
    color: #000000;
    outline: none;
    font-family: inherit;
    padding: 8px 12px;
    border-radius: 4px;
    resize: none;
}
.newsletter_wrapper.gravity-theme #field_submit input {
    font-size: 100%;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: .618em 1em;
    font-weight: 700;
    border-radius: 3px;
    left: auto;
    color: #515151;
    background-color: #e9e6ed;
    border: 0;
    display: inline-block;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
}

.vacature--content h2 { font-size: var(--H3-font-size); }
.vacature--content h3 { font-size: var(--H4-font-size); }

.oxy-oxyninja-slider img {
    object-fit: contain !important;
}

.product-menu-wrapper {
  margin-bottom: 30px;
}

.product-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 10px;
}

.product-menu-item {
    padding: 1em;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
    border-top-width: 3px;
    border-right-width: 3px;
    border-bottom-width: 3px;
    border-left-width: 3px;
    border-top-color: var(--Blue-Light-2);
    border-right-color: var(--Blue-Light-2);
    border-bottom-color: var(--Blue-Light-2);
    border-left-color: var(--Blue-Light-2);
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    gap: 20px;
    padding-bottom: 20px;
    position: relative;
}

.product-menu-submenu-container {
  display: none;
  grid-column: 1 / -1;
  margin-bottom: 30px;
}

.product-menu-submenu {
    display: none;
    background: #fff;
    padding: 1em;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    border: 3px solid var(--Blue-Dark-2);
    border-radius: 10px;    
}
.product-menu-item.active {
    border: 3px solid var(--Blue-Dark-2);
}
.product-menu-item.active .ls__sbc--inner__icon {
    background-color: var(--Blue-Dark-2);
}
.product-menu-submenu-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-menu-submenu-item-image {
    width: 100px;
    aspect-ratio: 1;
    object-fit: contain;
}

.mega-menu-wrapper {
    position: relative;
}

.mega-menu-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f1f3f6;
    z-index: 999;
    border-top: 1px solid #ccc;
}

.mega-menu-top-item:hover + .mega-menu-main,
.mega-menu-main:hover {
    display: flex;
}

.mega-menu-top {
    display: flex;
}

.mega-menu-top-item {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 800;
    position: relative;
    color: var(--White);
    text-transform: uppercase;
}

/* Overige stijlen blijven hetzelfde */
.mega-menu-left {
    width: 25%;
    background-color: var(--White);
    padding: 10px 0;
    border-right: 1px solid #ccc;
    text-align: left;
}

.mega-menu-left-item {
    display: block;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
}

.mega-menu-left-item:hover {
    background-color: #d2e9f7;
}

.mega-menu-right {
    flex-grow: 1;
    padding: 20px;
    text-align: left;
}

.submenu-item {
    display: block;
    padding: 8px 0;
    color: #000;
    text-decoration: none;
}
.submenu-item:first-child {
    font-weight: 600;
}

.submenu-item:hover {
    text-decoration: underline;
}

/* FAQ */
.faq-category {
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 0.5rem 0;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    padding: 0.8rem 0;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-weight: bold;
    font-size: 1.5rem;
    margin-left: 1rem;
    color: #555;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    color: #f5531a; /* oranje kleur */
}

.faq-answer {
    display: none;
    padding: 0.5rem 0 1rem;
    color: #333;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    color: #f5531a;
}

.faq-filter {
    position: sticky;
    top: 0;
    background-color: #fff;
    padding: 1rem 0;
    z-index: 1000;
}

.faq-filter ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-filter li {
    margin: 0;
}

.faq-filter a {
    display: inline-block;
    padding: 6px 12px;
    border: 2px solid #00a8e8;
    color: #00a8e8;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.faq-filter a:hover,
.faq-filter a:focus {
    background-color: #00a8e8;
    color: #fff;
}


table.custom-attribute-table { width: 100%; }
.custom-attribute-table td { width: 50%; padding: 8px 16px; }
.custom-attribute-table tr:nth-child(even) { background-color: var(--Blue-Light-2); }


.woocommerce-product-details__short-description h2, .oxy-product-description h2 {
    font-size: var(--H3-font-size);
}
.woocommerce-product-details__short-description > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: var(--Blue-Light-2);
    padding: 20px 60px;
    border-radius: 20px;
}
.woocommerce-product-details__short-description > ul > li {
    list-style-image: url(/wp-content/uploads/2025/06/Black-check-mark.svg);
    width: 45%;
}

ul.custom-list > li,
.custom-list ul > li {
    list-style-image: url(/wp-content/uploads/2025/06/Black-check-mark.svg);
}
.grid-list ul { 
	display:grid;
	grid-template-columns: 1fr 1fr;
}

@keyframes float {
  0% {
    transform: translatex(0);
  }
  50% {
    transform: translatex(-20px);
  }
  100% {
    transform: translatex(0);
  }
}


.custom-variation-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin-top: 20px;
}
.custom-variation-table tbody {
    border: unset;
}

.custom-variation-table th {
    background-color: var(--Orange-Main);
    color: var(--White);
    padding: 12px 10px;
    font-weight: bold;
}

.custom-variation-table td {
    padding: 10px;
}

.custom-variation-table tr:nth-child(even) {
    background-color: var(--Blue-Light-2);
}

.custom-variation-table tr:nth-child(odd) {
    background-color: var(--White);
}

.custom-variation-table a {
    color: var(--Orange-Main);
    text-decoration: none;
}

.custom-variation-table a:hover {
    text-decoration: underline;
}

.filco_tabs {
	.tabs {
		display: -webkit-box;
        list-style: none;
        margin: 0;
        gap: 10px;
        padding: 0;
        overflow: auto;

		li {
			padding: 14px 20px;
			border-top-left-radius: 10px;
			border-top-right-radius: 10px;
		}
	}
	h2 {
			display: none;
	}
}

table{
	border-collapse: collapse;
	width: 100%;
	thead{
		tr {
			background-color:var(--Orange-Main);
			color:var(--White);
		}
	}
	tbody{
		tr:nth-child(even){
			background-color:var(--Blue-Light-2);
		}
	}

	th, td {
		padding-block: 8px;
		padding-inline: 16px;
		/* text-align: center; */
	}
}

.oxy-product-description p { color: var(--Black) !important; }
.subcategory__compliance__head--icon {
    width: 100px;
    aspect-ratio: 1;
}
.grid-list ul { gap: 20px;}
.grid-list ul li { margin-right: 20px; }

.product-menu-submenu-main-link {
    grid-column: span 4;
    text-decoration: underline;
}
.category__r-p .splide__list { justify-content: center; }

.mega-menu-columns-1-of-2 { border-bottom: #ccc 1px solid !important; border-right: 1px solid #ccc !important;}
/* .mega-menu-item-has-children { border-bottom: 1px solid #ccc !important;} */
.ct-video > .oxygen-vsb-responsive-video-wrapper { height: 100%; padding-bottom: unset !important; }

.variation-table-and-image {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

@media only screen and (max-width: 600px) {
    body .home__explore-products.ct-section .ct-section-inner-wrap, 
    body .home__revol-group.ct-section .ct-section-inner-wrap,
    body .home__revol-group--grid:not(.ct-section):not(.oxy-easy-posts),
    body .home__support-materials--grid.ct-section .ct-section-inner-wrap,
    body .home__blogs.ct-section .ct-section-inner-wrap,
    body .category__summary--grid:not(.ct-section):not(.oxy-easy-posts),
    body .subcategory__sizing-guide:not(.ct-section):not(.oxy-easy-posts),
    body .category__menu--grid-3:not(.ct-section):not(.oxy-easy-posts),
    body .about__numbers.ct-section .ct-section-inner-wrap,
    body .about__industries.ct-section .ct-section-inner-wrap  {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .home__revol-group--inner--div:after { display: none; }
    .custom-variation-table, #section-2-2169 {
        display: block !important;
        overflow-x: auto;
        white-space: nowrap;
    }
    .variation-table-and-image, .material-advantages { flex-direction: column; }
    .category__menu--grid-3:not(.ct-section):not(.oxy-easy-posts) { width: 100%; gap: 0 !important; }
    .material-advantages { gap: unset !important; }
    .product-menu-grid {
        grid-template-columns: 1fr !important;
    }
}