/*Variables - Change Colors here*/
:root {
    --aqua-color: #9fe0dc;
    --gray-color: #BDBDBD;
    --primary-color: #66c1be;
    --primary-color-hover: #8acfcd;
    --secondary-color: #122945;
}
a:hover {
    cursor: pointer;
}
hr.wp-block-separator,
[data-ast-blocks-layout] .wp-block-separator:not(.is-style-dots) {
    height: 3px;
}
@media (max-width: 768px) {
    .woocommerce .ast-shop-toolbar-container {
        margin-bottom: .5rem;
        .ast-shop-toolbar-aside-wrap {
            margin-bottom: 0!important;
        }
    }
}
.ast-site-header-cart .ast-addon-cart-wrap i.astra-icon:after, .ast-theme-transparent-header .ast-site-header-cart .ast-addon-cart-wrap i.astra-icon:after {
    background-color: var(--primary-color);
    transition: .2s ease;
}

.home {
    .uagb-block-50ec5e17 {
        .wc-block-product {
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 10px -4px rgba(0, 0, 0, 0.2);
            border-radius: 25px;
            .wp-block-group {
                .wc-block-components-product-image {
                    position: inherit;
                    a {
                        position: inherit;
                        &::after {
                            position: absolute;
                            content: '';
                            inset: 0;
                            top: -24px;
                            left: -24px;
                            width: calc(100% + 48px);
                            height: 342px;
                            @media (max-width: 767px) {
                                height: 220px;
                            }
                        }
                    }
                }
            }
            .cta-btn {
                pointer-events: none;
                z-index: 3;
            }
            &:after {
                content: '+';
                position: absolute;
                top: 35%;
                left: 50%;
                transform: translate(-50%, -50%);
                padding: 1.1rem 1.25rem;
                font-size: 1.5rem;
                line-height: 1.1rem;
                border-radius: 100px;
                background-color: var(--ast-global-color-0);
                margin-top: 8px;
                z-index: 2;
                opacity: 0;
                transition: .3s ease;
                pointer-events: none;
            }
            &:before {
                content: '';
                position: absolute;
                inset: 0;
                background-color: black;
                transition: .3s ease;
                z-index: 1;
                opacity: 0;
                pointer-events: none;
            }
            &:hover {
                &:after {
                    opacity: 1;
                }
                &:before {
                    opacity: 0.15;
                }
            }
        }
    }
    .entry-content .wc-block-product-template__responsive {
        padding-left: 0;
    }
	.home-categories {
		margin-top: 30px;
		margin-bottom: -30px;
		.wc-block-featured-category {
			min-height: 275px!important;
			border-radius: 8px;
			align-content: flex-end;
			padding-bottom: 8px;
			.wc-block-featured-category__background-image {
				transition: .3s ease;
			}
			.background-dim__overlay {
				opacity: 1;
				background-color: transparent!important;
				&:before {
					transition: .2s ease;
					background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
				}
			}
			&:has(.wp-element-button:hover) {
				.wc-block-featured-category__background-image {
					scale: 1.05;
				}
			}
		}
		.wc-block-featured-category__title {
			font-size: 1.5rem;
			padding: 0 10px 12px;
			margin-bottom: 0;
		}
		.wc-block-featured-category__description {
			display: none;
		}
	}
}
#block-31 {
    .uagb-icon-list__wrap {
        padding-left: 8px!important;
        .wp-block-uagb-icon-list-child {
            margin-bottom: 0;
            .uagb-icon-list__source-wrap {
                margin-right: 6px;
            }
            svg {
                max-width: 16px;
                height: auto;
                fill: var(--primary-color);
            }
            .uagb-icon-list__label {
                font-weight: 600;
                color: white;
            }
        }
    }
}
.the-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    .the-product-style.the-product-style {
        background-color: #fff;
        border-radius: 18px;
        padding: 18px;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        height: 100%;
        text-decoration: none;
        box-shadow: 0 8px 10px -4px rgba(0, 0, 0, 0.2);
        transition: .3s ease;

        .woocommerce-loop-product__title {
            min-height: 48px;
            margin-bottom: 8px;
        }
        .product-short-description {
            font-size: .75rem;
            color: #82868A;
            margin-bottom: 1rem;
        }
        .block-wrapper {
            margin-top: auto;
        }
        .hr  {
            height: 1px;
            display: block;
            width: 100%;
            margin-bottom: 20px;
            margin-top: auto;
            background-color: var(--ast-global-color-0);
        }
        .btn {
            margin-top: auto;
            text-align: center;
            background-color: var(--ast-global-color-2);
            color: white;
            display: block;
            width: 100%;
            border-radius: 100px;
            padding: .66rem 1rem;
            font-weight: 800;
            text-transform: uppercase;
            transition: .3s ease;
            position: relative;
            &::after {
                content: '';
                transition: .3s ease;
                filter: brightness(99) invert(1);
                display: inline-block;
                vertical-align: middle;
                background: url('images/icon-arrow-right.svg') no-repeat center center;
                background-size: contain;
                width: 1.25em;
                height: 1.25em;
                right: 2em;
                top: 50%;
                transform: translateY(-50%) translateX(0);

                position: absolute;
            }
        }
        &:hover {
            box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
            .btn {
                background-color: var(--ast-global-color-0);
                &:after {
                transform: translateY(-50%) translateX(.25em);
                }
            }
        }
    }
    @media (max-width: 991px) {
        grid-template-columns: 1fr 1fr;
    }

}
body.product-template-default {
    background-color: #F2F2F2;
    overflow-x: clip;
    .custom-stock-message {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        align-items: center;
        border-bottom: 1px solid var(--ast-global-color-0);
        padding-bottom: 2rem;
        .stock-label {
            color: white;
            border-radius: 16px;
            padding: 0.25rem 1rem;
            background-color: green;
            &::before {
                content: '';
                display: inline-block;
                width: 1em;
                height: 1em;
                filter: brightness(99) invert(1);
                margin-right: .25em;
                vertical-align: middle;
                background: url('images/icon-check.svg') no-repeat center center;
                background-size: contain;
            }
        }

    }
    .custom-product-gallery-button {
        .whatsapp-button {
            display:inline-block;
            margin-top:10px;
            background-color: var(--ast-global-color-2)!important;
            border-radius: 100px;
            color: white!important;
            &::before {
                content: '';
                display: inline-block;
                width: 1em;
                height: 1em;
                filter: brightness(99) invert(1);
                margin-right: .25em;
                vertical-align: middle;
                background: url('images/icon-whatsapp.svg') no-repeat center center;
                background-size: contain;
            }
        }
        .mobile {
            margin-top: 20px;
        }
        @media (max-width: 991px) {
            text-align: center;
            margin-top: 2rem;
            .whatsapp-button {
                margin-top: -.5rem;
            }
        }
    }
    @media (min-width: 991px) {
        .custom-product-gallery-button.mobile {
            display: none;
        }
    }
    @media (max-width: 991px) {
        .custom-product-gallery-button.desktop {
            display: none;
        }
    }

    .entry-summary {
        width: 100%!important;
    }
    .gallery-contact-wrapper {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        float: none;
        .woocommerce-product-gallery {
            width: 100%!important;
            .flex-viewport {
                background-color: white;
                border-radius: 4px;
                padding: 1rem;
            }
        }
    }
    .wooco_component {
        .wooco_component_name {
            display: inline;
        }
        .wooco_component_desc {
            display: inline;
            pointer-events: none;
        }
        &:has(.wooco_component_desc) {
            position: relative;
            transition: .3s ease;
            .wooco_component_name {
                transition: .3s ease;
                &:after {
                    content: 'i';
                    border-radius: 50%;
                    background-color: #66c1be;
                    width: 16px;
                    height: 16px;
                    margin-left: 2px;
                    display: inline-block;
                    color: white;
                    font-size: 12px;
                    margin-left: 4px;
                    padding-left: 4.75px;
                    position: relative;
                    top: -6px;
                    line-height: 1.6;
                    font-family: 'Courier New', Courier, monospace;
                }
            }
            .wooco_component_desc {
                opacity: 0;
                position: absolute;
                top: -35px;
                left: 0;
                background-color: white;
                border: 1px solid #D8D8D8;
                border-radius: 8px;
                padding: .5rem;
                z-index: 10;
                font-size: 11px;
                color: #707070;
                transition: .3s ease;
            }
            &:has(.wooco_component_name:hover),
            &:has(.wooco_component_name:focus) {
                .wooco_component_desc {
                    opacity: 1;
                }
            }
        }
    }
    .wooco_component_product_selection_grid_item_image {
        img {
            max-width: 75px;
        }
    }
    .woocommerce-Price-amount {
        font-style: italic;
    }
    #primary {
        margin-top: 0;
        .site-main {
            padding-left: 0;
            padding-right: 0;
        }
    }
    .ast-woo-product-no-review {
        padding-bottom: 4rem;
        max-width: 1300px;
        padding-right: 20px;
        padding-left: 20px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 45% 1fr;
        column-gap: 3rem;
        row-gap: 1rem;
        @media (max-width: 768px) {
            display: block;
        }
    }
    .custom_total {
        display: flex;
        justify-content: space-between;
        grid-column: 2;
        /* margin-top: 1.25rem; */
        font-weight: bold;
        margin-bottom: .5rem;
    }
    div.product div.summary {
        margin-bottom: 0!important;
    }

    .woocommerce-breadcrumb,
    .entry-title {
        @media (min-width: 768px) {
            grid-column: span 2;
        }
    }
    .price-excl-vat,
    .price-excl-vat .woocommerce-Price-amount {
        color: #82868A;
        transform: translateY(-6px);
        display: inline-block;
        font-size: .75rem;
        font-weight: 400;
        small {
            font-weight: 400;
            transform: translateY(-6px);
            display: inline-block;
            font-size: .75rem;
        }
    }

    .custom-add-to-cart-form-wrapper {
        border: 2px solid #66c1be;
        padding: 15px;
        margin-top: 15px;
        margin-bottom: 15px;
        display: grid;
        border-radius: 4px;
        grid-template-columns: 150px 1fr;
        gap: 2rem;
        background-color: white;
        align-items: center;
        .before-add-to-cart-product-title {
            position: absolute;
            width: 100%;
            padding-left: .5rem;
            padding-top: 1.25rem;
            font-weight: bold;
        }
        form {
            margin-top: 3rem;
            margin-left: -1.5rem;
            .button {
                display: none;
            }

        }
        @media (max-width: 768px) {
            grid-template-columns: 1fr;
            gap: .5rem;
            .before-add-to-cart-product-image {
                img {
                    display: none;
                }
            }
            .before-add-to-cart-product-title {
                position: relative;
                padding-left: 0;
                padding-top: 0;
            }
            form {
                margin-top: .5rem;
                margin-left: 0;
                .button {
                    margin-bottom: 0!important;
                }
            }

        }
    }
    .summary .wooco_summary {
        order: 4;
    }
    .wooco_count {
        display: none!important;
    }
    .wooco_summary {
        .woocommerce-Price-amount {
            margin-left: auto;
        }
    }
    .wooco_total {
        font-weight: 600;
        display: flex;
    }

    .custom-product-desc-specs {
        background-color: white;
        padding: 10vw 0 8vw;
        .wrapper {
            gap:40px;
            align-items:flex-start;
            margin-top:40px;
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .wrapper {
                flex-direction: column;
                gap: 20px;
            }
        }
    h2 {
        position: relative;
        &:before {
            content: '';
            position: absolute;
            top: -1.5rem;
            left: 0;
            width: 300px;
            height: 6px;
            background-color:#66c1be;
        }
    }
    .custom-product-specs {
        width: 100%;
    }
    table.shop_attributes {
        border-top: 0;
    }
    td {
        border-right: 0;
        border-bottom: 1px solid #D1D5DB;
    }
    tr {
        border: 0;
    }
    th {
        border: 0;
        border-bottom: 1px solid #D1D5DB;
    }
    .woocommerce-product-attributes-item__value {
        text-align: end;
    }
    @media (max-width: 768px) {
            flex-direction: column;
            gap: 20px;
        }
    }
    .related.products {
        max-width: 1300px;
        padding-right: 20px;
        padding-left: 20px;
        margin: 0 auto;
        margin-top: 6vw;
        .woocommerce-loop-product__title {
            min-height: 48px;
            margin-bottom: 8px;
        }
        > h2 {
            position: relative;
            &:before {
                content: '';
                position: absolute;
                top: -1.5rem;
                left: 0;
                width: 300px;
                height: 6px;
                background-color:#66c1be;
            }
        }
    }
    .quantity .plus,
    .quantity .minus {
        width: 40px;
        height: 40px;
        cursor: pointer;
        padding: 0;
        border-radius: 4px;
        font-weight: bold;
        border: 0;
        background-color: #66c1be;
    }

    .quantity .qty {
        border-radius: 4px!important;
        width: 84px!important;
        min-width: 84px!important;
        height: 40px;
        margin-left: 44px;
        margin-right: 6px;
        border: 1px solid var(--ast-border-color);
    }
    @media only screen and (max-width: 767px) {
        .wooco_component[class*=wooco_component_layout_grid_] .wooco_component_product_selection_grid .wooco_component_product_selection_grid_item:not(:first-of-type) {
            width: calc(50% - 20px);
        }
    }
}

.woocommerce-message,
.woocommerce-info {
    max-width: 1320px;
    width: calc(100vw - 55px);
    margin: 0 auto 1rem;
}
.post-14 {
    max-width: 1320px;
    width: calc(100vw - 55px);
    margin: 0 auto;
}

body.woocommerce-cart {
    background-color: #f9f9f9;
    main {
        max-width: 1300px;
        margin: 0 auto;
    }
    .woocommerce-cart-form {
        table.shop_table {
            border: 0;
            border-top: 1px solid var(--primary-color);
            padding-top: 40px;
            margin-top: 40px;
            thead {
                background-color: transparent;
                border-color: var(--primary-color);
            }
            td {
                border-color: var(--gray-color);
            }
            .product-thumbnail:has(img) {
                img {
                    background-color: white;
                    padding: 8px 12px;
                    border: 1px solid var(--primary-color);
                    border-radius: 4px;
                    max-width: 100px;
                }
            }
            .product-name .ast-product-name>a {
                color: var(--secondary-color);
            }
            @media (max-width:600px){
                padding-top: 16px;
                margin-top: 16px;
                td {
                    border: none;
                    padding: 2px;
                    min-height: 1.5rem!important;
                }
                .product-remove {
                    position: absolute;
                    top: 0;
                    right: 0;
                }
                .cart_item {
                    border-bottom: 1px solid var(--primary-color);
                    position: relative;
                    margin-bottom: 12px;
                }
                .product-thumbnail:has(img) {
                    padding: 0px 12px;
                }

            }
        }
    }

    .cart-collaterals {
        .cart_totals  {
            border: none;
            h2 {
                background-color: transparent;
                margin: 0;
                font-size: 1.25rem;
                padding-left: 0;
                border-color: var(--primary-color);
            }
        }
    }
    .wc-proceed-to-checkout a.checkout-button {
        border-radius: 100px;
        padding-block: 8px;
        &:hover {
            background-color: var(--primary-color-hover);
        }
    }
}

body.woocommerce-checkout {
    background-color: #f2f2f2;
    header {
        position: absolute!important;
    }
    main {
        max-width: 1300px;
        margin: 0 auto;
    }

    #order_review {
        padding-top: 10px!important;
        margin-top: 40px!important;
        border-top: 1px solid var(--primary-color)!important;
    }

    .checkout_custom_style .woocommerce-input-wrapper input,
    .checkout_custom_style .woocommerce-input-wrapper span.select2-selection {
        border-radius: 100px !important;
        background-color: #fff;
        border: 1px solid color(srgb 0 0 0 / 0.15) !important;
        padding: 24px 16px !important;
    }

    .checkout_custom_style .woocommerce-input-wrapper .selection > span{
            padding: 16px 16px !important;
    }
    .ast-product-thumbnail {
        background-color: white;
        border-radius: 4px;
    }

    .checkout_custom_style .woocommerce-input-wrapper input::placeholder{
        color: color(srgb 0 0 0 / 1);
    }

    .checkout_custom_style .woocommerce-billing-fields-custom h3, .checkout_custom_style .woocommerce-billing-fields h3, .checkout_custom_style .woocommerce-shipping-fields h3, .checkout_custom_style .woocommerce-additional-fields h3{
    font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px !important;
        padding-bottom: 0px !important;
        border-bottom: none !important;
    }

    .checkout_custom_style .form-row h3{
        margin: 32px 0px -12px 0px !important;
        padding:0px !important;
    }

    .checkout_custom_style p.form-row{
        padding-top: 0 !important;
    /* 	margin-top: -12px; */
        font-size: 14px;
    }

    .woocommerce-billing-fields >  h3{
        display:none;
    }
    .woocommerce-input-wrapper {
        color: #475569!important;
    }
    /* Show checkmark when input is NOT checked */
    /* .woocommerce-form__input-checkbox:not(:checked) + span::before {
        content: "✔";
        position: absolute;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        font-size: 14px;
        background-color: #67c2bf;
        width: 20px;
        height: 20px;
        text-align: center;
        line-height: 20px;
        border-radius: 4px;
    } */
    .checkout_custom_style .cart-subtotal th, .checkout_custom_style .cart-subtotal td, .checkout_custom_style .shipping th, .checkout_custom_style .shipping td{
        font-size: 14px;
    }

    #order_review .woocommerce-checkout-review-order-table tr th {
        padding-left: 0!important;
        padding-right: 0!important;
    }

    .checkout_custom_style .shipping td ul li label{
        color: green !important;
    }

    .checkout_custom_style tbody {
        padding-bottom: 40px;
        margin-bottom: 40px;
        border-bottom: 1px solid var(--primary-color);
        display: block;
    }
    .checkout_custom_style tfoot {
        tr {
            display: flex;
            justify-content: space-between;
        }
    }

    #payment ul.payment_methods .payment_method_stripe label {
        max-width: 55vw;
        white-space: wrap;
    }

    .checkout_custom_style tfoot tr th, .checkout_custom_style tfoot tr td{
        padding-top: 0 !important;
        padding-bottom: 4px !important;
    }

    .checkout_custom_style tbody .product-name{
        position: relative !important;	
        display: inline-block !important;
        padding-bottom: 0px !important;
        margin-bottom: -24px;
        padding-left: 0!important;
        padding-right: 0!important;
    }

    .checkout_custom_style .product-name .ast-product-name{
        margin-top: -24px;
    }
    #shipping_address_1_field {
        width: 50%;
    }

    &:not(.woocommerce-order-received) .checkout_custom_style .product-name .product-quantity{
        position: absolute;
        top: 5.5em;
        left: 9.5em;
    }

    .checkout_custom_style tr th.product-name, .checkout_custom_style tr th.product-total{
        display: none;
    }

    .checkout_custom_style td, .checkout_custom_style th, .checkout_custom_style table{
        border:none;
        box-shadow: none !important;
        border-radius: 0!important;
    }

    @media (max-width: 600px) {
        .checkout_custom_style .cart_item {
            padding-left: 10px;
            display: flex;
        }
    }

    .checkout_custom_style .cart_item .product-total .amount{
        color: #000 !important;
        font-weight: 600 !important;
    }

    .checkout_custom_style .ast-product-thumbnail img{
        width: 132px !important;
        min-width: 132px !important;
        height: 110px !important;
        padding: 4px;
        border: 2px solid #76c2bf;
        object-fit: contain;
        margin-right: 0!important;
    }

    .checkout_custom_style .ast-product-image{
        gap: 12px !important;
        flex-flow: row !important;
    }

    .checkout_custom_style .ast-product-image .ast-product-name{
        font-size: 16px;
        font-weight: 600;
        color: var(--secondary-color);
        padding-left: 8px;
        width: calc(100% - 60px);
        min-width: 250px;
    }


    @media (max-width:600px){
        .checkout_custom_style .ast-product-image{
            flex-flow: nowrap !important;
            margin-top: 4px;
        }
        .checkout_custom_style .ast-product-thumbnail img {
            width: 64px !important;
            min-width: 64px !important;
            height: 55px !important;
            padding: 2px;
            border: 1px solid #76c2bf;
        }
        .checkout_custom_style .product-name .ast-product-name{
            min-width: 0;
            font-size: .875rem;
            line-height: 1.1em;
            margin-top: -10px;
        }
        .checkout_custom_style .product-name .product-quantity{
            position: relative;
            top: -1.5em;
            left: 5.5em;
        }
        .uagb-forms-main-form .uagb-forms-field-set:nth-of-type(1), .uagb-forms-main-form .uagb-forms-field-set:nth-of-type(2){
            width: 100%;
        }
        .uagb-forms-main-form{
            padding-left:8px !important;
        }
    }

    .wooco-item-child .product-total .amount {
        opacity: 1;
    }

}

section {
    .container {
        max-width: 1300px;
        padding-right: 20px;
        padding-left: 20px;
        margin: 0 auto;
    }
}

.custom-theme-usps {
    background-color: #122945;
    padding: 3rem 0;
    .container {
        max-width: 1300px;
        padding-right: 20px;
        padding-left: 20px;
        margin: 0 auto;
    }
    .usps-list {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        .usp-item {
            min-width: 150px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            img {
                width: auto;
                max-width: 55px;
                object-fit: contain;
                height: 48px;
            }
            .usp-title {
                color: white;
                font-size: .85rem;
                margin-top: .75rem;
                text-align: center;
                max-width: 190px;
                min-height: 45px;
            }
        }
        @media (max-width: 768px) {
            overflow-x: auto;
            white-space: nowrap;
            scroll-snap-type: x proximity;
            .usp-item {
                margin-bottom: 1rem;
            }
            .usp-title {
                white-space: normal;
                word-break: break-word;
            }
        }
    }
}

.custom-related-products {
    padding: 6vw 0;
    h3 {
        position: relative;
        &:before {
            content: '';
            position: absolute;
            top: -1.5rem;
            left: 0;
            width: 300px;
            height: 6px;
            background-color:#66c1be;
        }
    }
    @media (max-width: 575px) {
        padding-top: 80px;
        .the-product-grid {
            grid-template-columns: 1fr;
            .the-product-style.the-product-style {
                text-align: center;
            }
        }
    }
}

.custom-duplicate-add-to-cart {
    grid-column: 2;
    button.button {
        width: 100%;
        background-color: #004268;
        color: white;
        text-align: center;
        transition: .2s ease;
    }
}

.custom-payment-images {
    grid-column: 2;
    .payment-image {
        text-align: center;
    }
    @media (max-width: 768px) {
        .payment-image {
            margin-top: 1rem;
        }
    }
}


@media (max-width: 768px) {
    .ast-header-account {
        transform: translateY(-7px);
    }
    .ast-header-account,
    .ast-header-language-switcher-element {
        width: auto;
        display: inline-block!important;
    }
}

.berocket_ajax_group_filter_title {
    font-size: 1rem;
    position: relative;
    &:before {
        content: '';
        position: absolute;
        top: -1rem;
        left: 0;
        width: 40%;
        height: 3px;
        background-color:#66c1be;
    }
}
.archive {
    main {
        padding-top: 24px;
    }
    background-color: #F2F2F2;
    ul.products {
        li.product {
            border-radius: 18px;
            padding: 18px;
            text-decoration: none;
            box-shadow: 0 8px 10px -4px rgba(0, 0, 0, 0.2);
            transition: .3s ease;
            justify-content: space-between;
            .astra-shop-thumbnail-wrap {
                margin-bottom: 0;
                a img {
                    object-fit: contain;
                }
            }
            .ast-woo-shop-product-description {
                margin-bottom: 1rem;
                border-bottom: 1px solid var(--ast-global-color-0);
                padding-bottom: 1rem;

                p {
                    font-size: .75rem;
                    color: #82868A;
                    margin-bottom: 1rem;
                }
            }
            .astra-shop-summary-wrap {
                padding: 0;
            }
            .price {
                width: 80px;
                max-width: 120px;
                display: inline-block;
                font-size: .75rem;
                font-weight: 400;
                display: flex;
                flex-direction: column;
                position: absolute;
                bottom: 16px;

                del {
                    .woocommerce-Price-amount {
                        font-size: 1rem;
                        bdi {
                            font-size: 1rem;
                        }
                    }
                }
            }
            .price-excl-vat,
            .price-excl-vat .woocommerce-Price-amount {
                font-size: 1rem;
                color: #82868A;
                margin-top: 4px;
                small {
                    font-size: .75rem;
                }
            }
            a.button {
                float: right;
                margin-top: 14px;
                margin-bottom: 0;
                position: inherit;
                border-radius: 100px;
                background-color: #122945;
                color: #fff;
                text-transform: uppercase;
                font-weight: 400;
                &:after {
                    content: '';
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    inset: 0;
                }
            }
            &:hover {
                .button {
                    background-color: #66c1be!important;
                }
            }
            
            .woocommerce-Price-amount {
                font-style: italic;
                font-weight: 800;
                color: #044368;
                font-size: 1.1rem;
                margin-left: -4px;
            }
        }
    }
    #primary {
        border-left: 0;
    }

    #secondary {
        border-right: 0;
    }
    @media (min-width: 922px) {
        #primary {
            width: 100%;
            padding-left: 0;
        }
    }
    .woocommerce-products-header__title:not(:empty) {
        font-size: 2rem;
        position: relative;
        &:before {
            content: '';
            position: absolute;
            top: -1.75rem;
            left: 0;
            width: 20%;
            height: 6px;
            background-color:#66c1be;
        }
    }
}

@media (max-width: 921px) {
    .ast-menu-toggle:focus
    .ast-menu-toggle:hover {
        box-shadow: none;
        border: 0;
    }
}

.uagb-faq-questions {
    .uagb-icon,
    .uagb-icon-active {
        padding: 4px!important;
    }
}
.custom-call-to-action {
    padding-block: 4rem;
    background-color: white;
    .img-block {
        border-radius: 0 24px 24px 0;
        overflow: hidden;
        width: calc(100% + 175px);
        margin-left: -200px;
        img {
            max-height: 500px;
            object-fit: cover;
            width: 100%;
            height: 100%;
        }
    }
    .bedrijfsgegevens {
        a {
            display: flex;
            flex-wrap: nowrap;
            gap: .5rem;
            margin-bottom: .5rem;
            align-items: center;
            transition: .3s ease;
            .icon {
                border-radius: 4px;
                background-color: var(--secondary-color);
                display: grid;
                place-content: center;
                width: 2rem;
                height: 2rem;
                svg {
                    transition: .3s ease;
                }
            }
            &:hover {
                .icon {
                    svg {
                        scale: 1.25;
                    }
                }
            }
        }
    }
    h3 {
        position: relative;
        &:before {
            content: '';
            position: absolute;
            top: -1.75rem;
            left: 0;
            width: 30%;
            height: 6px;
            background-color:#66c1be;
        }
    }
    .contact-info {
        a {
            color: #191970;
        }
    }
    @media (min-width: 921px) {
        .content {
            padding-left: 1.5rem;
        }
        .contact-info {
            padding-left: 1.5rem;
            a {
                color: #191970;
            }
        }
    }
    @media (max-width: 921px) {
        .img-block {
            margin-bottom: 3rem;
            width: calc(100% + 60px);
            margin-left: -60px;
        }
    }
}

.uagb-slick-carousel {
    @media (max-width: 768px) {
        padding-bottom: 2rem;
    }
    .slick-arrow {
        position: absolute;
        display: flex !important;
        justify-content: center;
        width: 36px;
        height: 36px;
        z-index: 2;
        top: -50px;
    }
    .slick-prev {
        right: 0!important;
        /* left: 50%!important;
        transform: translateX(-110%)!important; */
    }
    .slick-next {
        /* right: 50%!important;
        transform: translateX(110%)!important; */
    }
}

/* Basic input styles */
.gform_wrapper.gravity-theme input[type="text"],
.gform_wrapper.gravity-theme input[type="email"],
.gform_wrapper.gravity-theme input[type="tel"],
.gform_wrapper.gravity-theme textarea {
    border-radius:25px;
    border: 1px solid var(--gray-color);
    height: 40px;
    text-indent:10px;
    background-color: #f2f2f2;
    transition:all 0.3s ease-in-out;
}
.gform_wrapper.gravity-theme input[type="submit"] {
    background:var(--primary-color);
    appearance: none;
    border: none;
    color: var(--secondary-color);
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 100px;
    transition:all 0.3s ease-in-out;
}
/* Submit button */
.gform_wrapper.gravity-theme input[type="submit"]:hover {
    background:var(--secondary-color);
    color: white;
    cursor:pointer;
}


/* EXTRA STYLES */
/* Responsive Featured Products on Mobile on homepage */
@media(max-width: 600px) {
.wc-block-product-template__responsive.columns-4	{
	grid-template-columns: repeat(auto-fill,minmax(max(150px,calc(100% - .9375em)),1fr)) !important;
	padding-left: 0px;
	}	
}

/* Move Add to cart location */
.summary.entry-summary {
  display: flex;
  flex-direction: column;
}
.summary .wooco_summary {
  order: 1;
}

.summary .wooco_wrap {
  order: 2;
}

.summary .ast-single-product-payments {
  order: 3;
}
/* Move Price location */

.summary .wooco_wrap {
  display: flex;
  flex-direction: column;
}

.summary .wooco_wrap .wooco_before_text{
  order: 2;
}

.summary .wooco_wrap .wooco_components{
  order: 3;
}



/* Checkout products style */

.page-id-13 .main-header-bar{
	background: #f2f2f2 !important;
/* 	float: left; */
}

.page-id-13 .main-header-bar div div{
	float: left;
}

.checkout_custom_style #ast-order-review-wrapper h3{
	position: relative;
	left: 16px;
}


/* Place order button */
.place-order{
    display: flex;
    flex-flow: column;
    align-items: center;
}

.place-order button{
	width:200px !important;
	border-radius: 100px;
}

/* payment options style */
#ast-payment_options_heading{
	margin-top: 40px !important;
	margin-bottom: 16px !important;
}


/* Style the label */
.woocommerce-form__label-for-checkbox {
    accent-color: var(--primary-color);
}
body:not(.cartflows-canvas):not(.cartflows-default):not(.cartflows-instant-checkout) .woocommerce form .form-row label:not(.checkbox):not(.radio):not(.woocommerce-form__label-for-checkbox) {
    padding-left: 18px;
}
footer h6,
footer h2.widget-title {
    margin-bottom: 2rem;
    position: relative;
    &:before {
        content: '';
        position: absolute;
        top: 2.75rem;
        left: 0;
        width: 48px;
        height: 4px;
        background-color:#66c1be;
    }
}

/* Checkout Footer policy text style */
.woocommerce-privacy-policy-text p{
	font-size: 14px;
	color:00;
}
.woocommerce-privacy-policy-text p a{
	color: #000;
	text-decoration: underline !important;
}

/* Home products height */
.home_products_style h2 
{
	display: flex;
	align-items: end;
	height: 45px !important;
	z-index: 9;
	position: relative;
}

/* From fileds setting */
.uagb-forms-main-form .uagb-forms-field-set:nth-of-type(1), .uagb-forms-main-form .uagb-forms-field-set:nth-of-type(2){
	width: 48%;
	float:left;
	display:flex;
}
.uagb-forms-main-form .uagb-forms-field-set:nth-of-type(1){
	margin-right:16px
}


/* Custom Sidebar List */
.custom_sidebar_list span{
	border-bottom: 1px solid #1229457d;
	width:180px;
	margin-top: -4px;
	padding-bottom:12px;
}
/* Text button on  2 lines issue */
.uagb-block-50ec5e17 .wp-container-core-group-is-layout-c3d0faaf h2 {
    font-size: min(15px, 4vw) !important;
    height: 30px;
    display: flex
;
    justify-content: space-between;
    align-items: center;
}
/* START single product custom style */
.wooco_component_product_selection_grid_item:before{
display:none;
}

.wooco_component_product_selection_grid_item {
	border-radius:8px;
    background: #fff;
}

.ast-article-single img{
	box-shadow:none;
}

.wooco-qty-input{
	margin-left:6px;
}

.wooco-qty-input span:nth-of-type(1), .wooco-qty-input span:nth-last-of-type(1){
	display:none;
}
.site-content {
    margin-top: 127px;
}
header.site-header {
    transition: transform 0.3s ease-in-out;
    position: fixed;
    top: 0;
    width: 100%;
}
header.sticky-header {
    transform: translateY(-46px);
}
@media (max-width: 1150px) {
    .site-content {
        margin-top: 144px;
    }
    header.sticky-header {
        transform: translateY(-65px);
    }
}
@media (max-width: 921px) {
    .site-content {
        margin-top: 80px;
    }
    header.sticky-header {
        transform: translateY(0);
    }
}

.wooco_component_product_selection_grid .wooco_component_product_selection_grid_item:nth-of-type(1){
	display: flex;
	justify-content: center;
	align-items: center;
}

.wooco_component_product_selection_grid .wooco_component_product_selection_grid_item:nth-of-type(1) .wooco_component_product_selection_grid_item_image{
	display:none;
}

.wooco_component_product_selection_grid .wooco_component_product_selection_grid_item:nth-of-type(1) .wooco_component_product_selection_grid_item_info .wooco_component_product_selection_grid_item_desc{
	display:none;
}

.wooco_component_product_selection_grid .wooco_component_product_selection_grid_item:nth-of-type(1) .wooco_component_product_selection_grid_item_info .wooco_component_product_selection_grid_item_qty{
	display:none;
}

.ast-woocommerce-container, .ast-article-single{
	background: transparent;
	background-color:transparent !important;
}

.products .ast-article-single{
	background-color: #fff !important;
}

.woocommerce-js div.product div.images img, .ast-woocommerce-product-gallery__image.flex-active-slide:after{
	border-radius: 8px;
}

.wooco_component_product_selection_grid_item.wooco_item_selected
 {
    border-color: #66c1be;
    border: 2px solid #66c1be;
}
.ast-woocommerce-product-gallery__image {
    background-color: white;
    border-radius: 8px;
    padding: 4px;
    img {
        width: 150px!important;
    }
}
.woocommerce-product-gallery-thumbnails__wrapper {
    display: flex;
    gap: .5rem;
}
.ast-woocommerce-product-gallery__image:focus{
	outline:none;
}

/* Hide default WooCommerce breadcrumb and title */
.entry-summary .woocommerce-breadcrumb,
.entry-summary .product_title {
    display: none !important;
}

.ast-modern-checkout .woocommerce form.woocommerce-checkout .form-row.ast-column-33 {
    width: 100%;
}

.woocommerce-checkout.woocommerce-order-received {
    .woocommerce-order .woocommerce-order-details table.shop_table tr {
        padding-top: 2px;
        padding-bottom: 2px;
        th {
            width: 100%;
        }
    } 
    .order_item {
        width: 100%;
        display: flex;
        justify-content: space-between;
        .product-name {
            padding-top: 0!important;
        }
        .woocommerce-table__product-total {
            padding: 0!important;
        }
    }
}

.onsale.circle {
    display: none;
}

.uagb-block-50ec5e17 {
    overflow: hidden;
}
.wp-block-button__link {
    border-radius: 100px!important;
}
.uagb-testimonial__wrap .uagb-tm__content {
    min-height: 275px;
}
html {
    overflow-x: clip;
}
.woocommerce-account .entry-content .woocommerce.woocommerce {
    border-radius: 16px;
    input {
        border-radius: 60px!important;
    }
    .woocommerce-form-login__submit {
        border-radius: 100px;
    }
}
.woocommerce-Address {
    h2 {
        font-size: 1.5rem;
        margin: .5rem;
    }
}
.woocommerce-MyAccount-content {
    .woocommerce-Button {
        border-radius: 100px;
    }
}
.woocommerce-product-gallery__wrapper {
    background-color: #fff;
    border-radius: 20px;
}
.wooco_component_product_selection_grid_item_desc {
    display: none;
}
.wooco_component_product_selection_list.wooco_component_product_selection_list .wooco_component_product_selection_list_item {
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #66c1be; 
    .wooco_component_product_selection_list_item_choose {
        display: none;
    }
    .wooco_component_product_selection_list_item_image {
        width: 160px;
        flex: 0 0 160px;
        height: 100px;
        object-fit: contain;
        img {
            object-fit: contain;
        }
    }
}
.ast-modern-checkout .woocommerce #payment ul.payment_methods {
    background-color: #fff;
    .payment_box {
        background-color: #fff!important;
    }
}

.custom-upsells {
    margin-top: 64px;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    border-radius: 4px;
}

.upsell-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;

    &:last-child {
        border-bottom: none;
    }
    img {
        min-width: 84px;
        width: 84px;
    }
    @media (max-width: 575px) {
        .upsell-qty-wrap {
            flex: 0 0 100%;
        }
        
    }
}

.upsell-title {
    font-weight: 500;
}

.upsell-qty-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.qty-minus,
.qty-plus {
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
}
input.upsell-qty {
    text-align: center;
    border-radius: 4px!important;
    max-width: 84px!important;
    width: 84px;
    height: 40px;
    padding-right: 0;
    max-height: 40px!important;
}

.qty-minus:disabled,
.qty-plus:disabled {
    /* opacity: .4; */
    cursor: not-allowed;
}

.upsell-meta {
    display: flex;
    flex-direction: column;
}

.upsell-price {
    font-size: 0.9em;
    color: #666;
    margin-left: -4px;
}


.my-cat-swiper {
    overflow: visible;
}
.my-cat-swiper-wrapper {
    position: relative;
    margin-top: 44px;
    margin-bottom: -80px;
    overflow: visible;
}

.custom-buttons {
    position: absolute;
    top: -44px;      /* iets boven de slider */
    right: 0;
    z-index: 10;

    display: flex;
    gap: 16px;        /* ruimte tussen knoppen */
    svg {
        width: 26px;
    }
}

.custom-buttons .swiper-button-prev,
.custom-buttons .swiper-button-next {
    position: relative; /* BELANGRIJK: anders zet swiper ze terug */
    width: 46px;
    height: 46px;
    background: #66c1be;
    opacity: 0.8;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s ease;
}
.custom-buttons .swiper-button-prev:hover,
.custom-buttons .swiper-button-next:hover {
    background: #fff;
}

.custom-buttons .swiper-button-prev:after,
.custom-buttons .swiper-button-next:after {
    font-size: 0;
    color: #fff;
    opacity: 1;
}

.my-cat-swiper .swiper-slide {
    position: relative;
    height: 375px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 8px 10px -4px rgba(0, 0, 0, 0.2);
}
.my-cat-swiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    position: relative;
}
.my-cat-swiper .swiper-slide .button-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    opacity: 0;
    transition: .3s ease;
    width: 46px;
    height: 46px;
    background: #66c1be;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s ease;
}
.my-cat-swiper .swiper-slide:hover .button-hover {
    opacity: 1;
}

.my-cat-swiper .btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #112945;
    padding: 10px 16px;
    border-radius: 600px;
    width: calc(100% - 4.5rem);
    text-align: center;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}

.my-cat-swiper .btn span a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.single_add_to_cart_button {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
#ast-checkout-coupon #ast-coupon-trigger {
    display: none;
}
