/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*//* WooCommerce Products Filter - Styled to match Genre Filter */

/* Container styling */
.brxe-woocommerce-products-filter {
    list-style: none;
    padding: 0;
    margin: 0;
}
.brxe-woocommerce-products-filter .radio-buttons li label {
    margin: 0;
}

.brxe-woocommerce-products-filter .filter-item {
    margin-bottom: 20px;
}

/* Filter title styling - match genre filter header */
.brxe-woocommerce-products-filter .title {
    margin-bottom: 15px;
}

.brxe-woocommerce-products-filter .title-tag {
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1.5;
    color: #000;
    margin: 0;
}

/* Checkbox and Radio button styling - match genre filter */
/* .brxe-woocommerce-products-filter .checkboxes label,
.brxe-woocommerce-products-filter .radio-buttons label {
    display: block;
    padding: 10px 15px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
} */



.brxe-woocommerce-products-filter .checkboxes label:hover,
.brxe-woocommerce-products-filter .radio-buttons label:hover {
    background-color: #f5f5f5;
    border-color: #0066cc;
}

.brxe-woocommerce-products-filter .checkboxes input:checked + label,
.brxe-woocommerce-products-filter .radio-buttons input:checked + label {
    background-color: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

/* Hide default checkboxes/radios - use label styling instead */
.brxe-woocommerce-products-filter .checkboxes input[type="checkbox"],
.brxe-woocommerce-products-filter .radio-buttons input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Button container - match genre filter button group */
.wc-filter-button-group {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: 15px;
}

/* Apply and Clear buttons - match genre filter form buttons */
.wc-filter-apply,
.wc-filter-clear {
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.wc-filter-apply {
    background-color: #0066cc;
    color: #ffffff;
    flex: 1;
}

.wc-filter-apply:hover {
    background-color: #0055aa;
}

.wc-filter-apply:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.wc-filter-clear {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.wc-filter-clear:hover {
    background-color: #e5e5e5;
    border-color: #999;
}

/* Dropdown styling */
.brxe-woocommerce-products-filter select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.brxe-woocommerce-products-filter select:focus {
    outline: none;
    border-color: #0066cc;
}

/* Price slider styling */
.brxe-woocommerce-products-filter .double-slider-wrap {
    padding: 15px 0;
}

.brxe-woocommerce-products-filter .slider-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

/* Box list styling (visual boxes) */
.brxe-woocommerce-products-filter .box-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.brxe-woocommerce-products-filter .box-list label {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
}

.brxe-woocommerce-products-filter .box-list label:hover {
    background-color: #f5f5f5;
    border-color: #0066cc;
}

.brxe-woocommerce-products-filter .box-list input:checked + label {
    background-color: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

/* Text list styling (link-based) */
.brxe-woocommerce-products-filter .text-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brxe-woocommerce-products-filter .text-list li {
    margin-bottom: 8px;
}

.brxe-woocommerce-products-filter .text-list a {
    display: block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.brxe-woocommerce-products-filter .text-list a:hover,
.brxe-woocommerce-products-filter .text-list a.active {
    background-color: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

/* Star rating filter */
.brxe-woocommerce-products-filter .stars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brxe-woocommerce-products-filter .stars label {
    display: block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.brxe-woocommerce-products-filter .stars label:hover {
    background-color: #f5f5f5;
    border-color: #0066cc;
}

.brxe-woocommerce-products-filter .stars input:checked + label {
    background-color: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

/* Hide native form submit buttons if they exist */
.brxe-woocommerce-products-filter button[type="submit"]:not(.wc-filter-apply) {
    display: none;
}

/* Loading state */
.wc-filter-loading .wc-filter-apply {
    opacity: 0.6;
    cursor: wait;
}

/* Loading overlay */
.wc-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 60px 20px;
}

.wc-loading-overlay .spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0066cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wc-loading-overlay p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Products container needs relative positioning for overlay */
.brxe-woocommerce-products {
    position: relative;
}

/* WooCommerce Filter Pagination - Match genre filter style */
.wc-filter-pagination {
    display: flex;
    gap: 29px;
    justify-content: flex-end;
    padding-top: 67px;
    align-items: center;
}

.wc-filter-pagination .pagination-info {
    display: flex;
    gap: 19px;
    font-family: var(--font-primary, inherit);
    color: #000;
    font-size: 22px;
    line-height: 1;
    text-transform: uppercase;
}

.wc-filter-pagination button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.wc-filter-pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wc-filter-pagination button:not(:disabled):hover {
    opacity: 0.7;
}

.wc-filter-pagination svg {
    display: block;
    width: 52px;
    height: 36px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .wc-filter-button-group {
        flex-direction: column;
    }

    .wc-filter-apply,
    .wc-filter-clear {
        width: 100%;
    }

    .wc-filter-pagination {
        gap: 15px;
        padding-top: 40px;
    }

    .wc-filter-pagination .pagination-info {
        font-size: 18px;
        gap: 12px;
    }

    .wc-filter-pagination svg {
        width: 40px;
        height: 28px;
    }
}
@layer bricks{@keyframes load8{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes scrolling{0%{opacity:1}to{opacity:0;-webkit-transform:translateY(10px);transform:translateY(10px)}}.woocommerce.archive .layout-default.brxe-container{align-self:center}.woocommerce.archive .bricks-before-shop-loop{align-items:center;display:flex;justify-content:space-between;margin-bottom:30px;width:100%}:root{--bricks-woo-input-height:40px}@font-face{font-family:WooCommerce;font-style:normal;font-weight:400;src:url(//threedradio.stagingvps.studioveld.com.au/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff) format("woff"),url(//threedradio.stagingvps.studioveld.com.au/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.ttf) format("truetype"),url(//threedradio.stagingvps.studioveld.com.au/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.svg#WooCommerce) format("svg")}.woocommerce{width:100%}.woocommerce main.site-main{margin-left:auto;margin-right:auto;max-width:100%;width:1100px}.woocommerce .before-cart,.woocommerce .before-checkout{display:block}.woocommerce .form-row-first{float:left;margin:0;width:49%}.woocommerce .form-row-last{float:right;width:49%}.woocommerce .form-row-wide{clear:both;width:100%}.woocommerce .clear{clear:both}@media(max-width:991px){.woocommerce .form-row-first,.woocommerce .form-row-last{float:none;width:100%}}.woocommerce .woocommerce-invalid.validate-required label{color:var(--bricks-text-danger)}.woocommerce .woocommerce-invalid.validate-required input{border-color:var(--bricks-text-danger)}.woocommerce .select2-selection{border-color:inherit;border-radius:0;height:var(--bricks-woo-input-height);line-height:var(--bricks-woo-input-height)}.woocommerce .select2-selection .select2-selection__rendered{line-height:inherit}.woocommerce .select2-selection .select2-selection__arrow{height:inherit;width:30px}.woocommerce .select2-selection .select2-selection__arrow b{border-top-color:var(--bricks-border-color)}.woocommerce .select2-dropdown{border-color:var(--bricks-border-color);border-radius:0!important}.woocommerce .woocommerce-notice{margin:30px 0;text-align:center}.woocommerce .woocommerce-notice.woocommerce-notice--success{color:var(--bricks-text-success)}.woocommerce .woocommerce-columns{display:flex}.woocommerce .woocommerce-columns .woocommerce-column{flex:1}.woocommerce table{border-collapse:collapse;border-spacing:0}.woocommerce table th{text-align:left}.woocommerce address{font-style:normal}.woocommerce fieldset{border:1px solid var(--bricks-border-color)}.woocommerce mark{background-color:var(--bricks-bg-light);color:#000;padding:0 6px}.woocommerce .button{align-items:center;background-color:#e4e7e9;border-width:0;color:currentcolor;display:inline-flex;font-weight:700;justify-content:center;min-height:40px;padding:7px 15px;text-align:center;text-decoration:none}.woocommerce .button.disabled{cursor:not-allowed}.woocommerce .button .spinning{animation:load8 1s linear infinite}.woocommerce .content-area .site-main .product .badge,.woocommerce .products .badge,.woocommerce.products .badge{background-color:#fff;border-radius:4px;font-size:14px;left:15px;line-height:24px;padding:0 10px;pointer-events:none;position:absolute;top:15px;z-index:1}.woocommerce .content-area .site-main .product .badge.onsale,.woocommerce .products .badge.onsale,.woocommerce.products .badge.onsale{color:var(--bricks-text-danger)}.woocommerce .content-area .site-main .product .badge+.badge,.woocommerce .products .badge+.badge,.woocommerce.products .badge+.badge{margin-top:32px}.woocommerce-product-attributes th{text-align:inherit}.woocommerce-store-notice{background-color:var(--bricks-bg-info);bottom:0;color:var(--bricks-text-info);display:flex;justify-content:space-between;left:0;padding:15px;position:fixed;right:0;text-align:center}.woocommerce-store-notice__dismiss-link{font-weight:700}@media(max-width:478px){.woocommerce-order-details .shop_table.woocommerce-orders-table--subscriptions tr{display:grid;grid-template-columns:1fr}.woocommerce-order-details .shop_table.woocommerce-orders-table--subscriptions tr td{align-items:stretch;display:flex;justify-content:space-between;width:100%}.woocommerce-order-details .shop_table.woocommerce-orders-table--subscriptions tr td:not(.order-actions):before{content:attr(data-title);font-weight:700}}body:not(.woocommerce) .brx-popup-content:not(.woocommerce) form.cart .single_add_to_cart_button,body:not(.woocommerce) .product_type_external,body:not(.woocommerce) .product_type_grouped,body:not(.woocommerce) .product_type_simple,body:not(.woocommerce) .product_type_variable{align-items:center;background-color:#e4e7e9;border-width:0;color:currentcolor;display:inline-flex;font-weight:700;justify-content:center;min-height:40px;padding:7px 15px;text-align:center;text-decoration:none}body:not(.woocommerce) .brx-popup-content:not(.woocommerce) form.cart .single_add_to_cart_button.disabled,body:not(.woocommerce) .product_type_external.disabled,body:not(.woocommerce) .product_type_grouped.disabled,body:not(.woocommerce) .product_type_simple.disabled,body:not(.woocommerce) .product_type_variable.disabled{cursor:not-allowed}body:not(.woocommerce) .brx-popup-content:not(.woocommerce) form.cart .single_add_to_cart_button .spinning,body:not(.woocommerce) .product_type_external .spinning,body:not(.woocommerce) .product_type_grouped .spinning,body:not(.woocommerce) .product_type_simple .spinning,body:not(.woocommerce) .product_type_variable .spinning{animation:load8 1s linear infinite}.woocommerce-notices-wrapper{display:flex;flex-direction:column;gap:15px}.woocommerce-notices-wrapper:not(:empty){margin-bottom:30px}.woocommerce-notices-wrapper:empty{display:none}.woocommerce-notices-wrapper>ul{width:100%}.woocommerce-notices-wrapper a{border-left:1px solid;color:currentcolor;display:block;float:right;font-weight:700;margin-left:10px;padding-left:10px}.woocommerce-notices-wrapper .woocommerce-message{align-items:center;background-color:var(--bricks-bg-success);color:var(--bricks-text-success);display:flex;justify-content:space-between;overflow:hidden;padding:15px;width:100%}.woocommerce-notices-wrapper .woocommerce-message a{align-items:center;background-color:#e4e7e9;background-color:var(--bricks-text-success);border-width:0;color:currentcolor;color:#fff;display:inline-flex;font-weight:700;justify-content:center;min-height:40px;order:2;padding:7px 15px;text-align:center;text-decoration:none}.woocommerce-notices-wrapper .woocommerce-message a.disabled{cursor:not-allowed}.woocommerce-notices-wrapper .woocommerce-message a .spinning{animation:load8 1s linear infinite}.woocommerce-notices-wrapper .woocommerce-error>li:only-child:has(.button){align-items:center;display:flex;justify-content:space-between}.woocommerce-notices-wrapper .woocommerce-error a{align-items:center;background-color:#e4e7e9;background-color:var(--bricks-text-danger);border-width:0;color:currentcolor;color:#fff;display:inline-flex;font-weight:700;justify-content:center;min-height:40px;padding:7px 15px;text-align:center;text-decoration:none}.woocommerce-notices-wrapper .woocommerce-error a.disabled{cursor:not-allowed}.woocommerce-notices-wrapper .woocommerce-error a .spinning{animation:load8 1s linear infinite}.woocommerce-error{background-color:var(--bricks-bg-danger);color:var(--bricks-text-danger);line-height:1.7;list-style-type:none;margin:0;overflow:hidden;padding:15px}.woocommerce-error .button{background-color:var(--bricks-text-danger);color:#fff;order:2}.woocommerce-info{align-items:center;background-color:var(--bricks-bg-info);color:var(--bricks-text-info);display:flex;justify-content:space-between;padding:15px}.woocommerce-info a{font-weight:700;text-decoration:underline}.woocommerce-info .button{background-color:var(--bricks-text-info);color:#fff;order:2}:where(.brxe-product-add-to-cart){width:100%}:where(.brxe-product-add-to-cart) table{border-collapse:collapse}:where(.brxe-product-add-to-cart) .button{column-gap:10px}:where(.brxe-product-add-to-cart) .bricks-variation-swatches{all:unset;display:flex;flex-wrap:wrap;gap:8px;list-style:none}:where(.brxe-product-add-to-cart) .bricks-variation-swatches li{border:1px solid #999;cursor:pointer;transition:all .05s linear}:where(.brxe-product-add-to-cart) .bricks-variation-swatches li.bricks-swatch-selected{border-color:#000}:where(.brxe-product-add-to-cart) .bricks-variation-swatches li.disabled{cursor:not-allowed;opacity:.5}:where(.brxe-product-add-to-cart) .bricks-variation-swatches.bricks-swatch-color{align-items:center;display:flex}:where(.brxe-product-add-to-cart) .bricks-variation-swatches.bricks-swatch-color li{height:32px;padding:1px;width:32px}:where(.brxe-product-add-to-cart) .bricks-variation-swatches.bricks-swatch-color li div{border-radius:inherit;height:100%;width:100%}:where(.brxe-product-add-to-cart) .bricks-variation-swatches.bricks-swatch-label li{padding:0 10px}:where(.brxe-product-add-to-cart) .bricks-variation-swatches.bricks-swatch-image li{padding:1px}:where(.brxe-product-add-to-cart) .bricks-variation-swatches.bricks-swatch-image li img{border-radius:inherit;height:32px;object-fit:cover;width:32px}.single_add_to_cart_button::selection{background-color:transparent}.brxe-product-meta{align-items:flex-start;display:inline-flex;flex-direction:column;width:auto}.brxe-product-meta .separator{text-align:center}.brxe-product-price{width:auto}.brxe-product-price .price{align-items:inherit;display:inherit;flex-direction:inherit;flex-wrap:inherit;gap:inherit;justify-content:inherit}.brxe-product-price .price del{color:var(--bricks-text-light);margin-right:5px}.brxe-product-price .price ins{text-decoration:none}.brxe-product-rating{width:auto}.brxe-product-reviews{width:100%}.brxe-product-reviews .comment-form-comment textarea{resize:vertical}.brxe-product-reviews .comment-form-cookies-consent input{vertical-align:text-top}.brxe-product-reviews .comment-form-cookies-consent label{display:inline}.brxe-product-stock{width:auto}.brxe-product-tabs{width:100%}.brxe-product-tabs .woocommerce-tabs.wc-tabs-wrapper{margin:0;width:100%}.brxe-product-title{margin:0;width:auto}.brxe-woocommerce-account-page{width:100%}.brxe-woocommerce-account-page .woocommerce-MyAccount-navigation ul{display:flex;flex-direction:column;flex-wrap:wrap}.brxe-woocommerce-account-form-edit-account{width:100%}.brxe-woocommerce-account-form-edit-account fieldset{display:flex;flex-direction:column;flex-grow:1;gap:10px;margin:0;padding:15px}.brxe-woocommerce-account-form-edit-account legend{padding:0 5px}.brxe-woocommerce-account-form-edit-address{width:100%}.brxe-woocommerce-account-form-login{display:flex;flex-direction:column;gap:10px;width:100%}.brxe-woocommerce-account-form-login .remember label{align-items:center;display:flex;gap:.5em;margin:0}.brxe-woocommerce-account-form-register{display:flex;flex-direction:column;gap:10px}.brxe-woocommerce-account-form-lost-password{display:flex;flex-direction:column;gap:10px;width:100%}.brxe-woocommerce-account-addresses,.brxe-woocommerce-account-downloads,.brxe-woocommerce-account-form-reset-password,.brxe-woocommerce-account-orders{width:100%}.brxe-woocommerce-account-addresses>p:first-child{display:none}.brxe-woocommerce-account-addresses .woocommerce-Addresses.addresses{margin:0}.brxe-woocommerce-account-addresses .woocommerce-Address{display:flex;flex-direction:column}.brxe-woocommerce-account-view-order{width:100%}.brxe-woocommerce-account-view-order>p:first-child{margin-bottom:30px}.brxe-woocommerce-account-view-order h2{margin:0}.brxe-woocommerce-account-view-order ol{list-style-type:none;margin:0;padding:0}.brxe-woocommerce-breadcrumbs{width:auto}.brxe-woocommerce-breadcrumbs .navigation,.brxe-woocommerce-breadcrumbs .navigation>a{align-items:center;display:inline-flex;flex-wrap:wrap}.brxe-woocommerce-breadcrumbs .separator{display:inline-block;margin:0 10px}.brxe-woocommerce-breadcrumbs svg{vertical-align:text-bottom}.brxe-woocommerce-breadcrumbs i:not(.home){font-size:12px}.brxe-woocommerce-cart-items,.brxe-woocommerce-checkout-coupon{width:100%}.brxe-woocommerce-checkout-coupon .coupon-toggle{align-items:center;background-color:var(--bricks-bg-info);color:var(--bricks-text-info);cursor:pointer;display:flex;justify-content:space-between;padding:15px}.brxe-woocommerce-checkout-coupon .coupon-toggle .showcoupon{align-items:center;display:flex;font-weight:700;gap:10px}.brxe-woocommerce-checkout-coupon .coupon-div{background-color:var(--bricks-bg-light);display:flex;flex-direction:column;gap:15px;padding:15px}.brxe-woocommerce-checkout-coupon .coupon-div .coupon-form{align-items:center;display:flex;gap:15px;justify-content:space-between}.brxe-woocommerce-checkout-coupon .coupon-div .coupon-form button{text-wrap:nowrap}@media(max-width:767px){.brxe-woocommerce-checkout-coupon .coupon-div .coupon-form{flex-direction:column}.brxe-woocommerce-checkout-coupon .coupon-div .coupon-form button{width:100%}}.brxe-woocommerce-checkout-login{width:100%}.brxe-woocommerce-checkout-login .login-toggle{align-items:center;background-color:var(--bricks-bg-info);color:var(--bricks-text-info);cursor:pointer;display:flex;justify-content:space-between;padding:15px}.brxe-woocommerce-checkout-login .login-toggle .showlogin{align-items:center;display:flex;font-weight:700;gap:10px}.brxe-woocommerce-checkout-login .login-div{background-color:var(--bricks-bg-light);display:flex;flex-direction:column;gap:15px;padding:15px}.brxe-woocommerce-checkout-login .login-div .credential.default{align-items:center;display:flex;flex-wrap:wrap;gap:15px;justify-content:space-between}.brxe-woocommerce-checkout-login .login-div .credential.default .form-group{flex:1}@media(max-width:767px){.brxe-woocommerce-checkout-login .login-div .credential.default{align-items:stretch;flex-direction:column}}.brxe-woocommerce-checkout-login .login-div .password-input{display:flex;flex-direction:column;justify-content:center;position:relative}.brxe-woocommerce-checkout-login .login-div .password-input input{padding-inline-end:40px}.brxe-woocommerce-checkout-login .login-div .password-input input::-ms-reveal{display:none}.brxe-woocommerce-checkout-login .login-div .show-password-input{align-items:center;cursor:pointer;display:flex;position:absolute;right:0;width:40px}.brxe-woocommerce-checkout-login .login-div .show-password-input:after{speak:never;-webkit-font-smoothing:antialiased;content:"";font-family:WooCommerce;font-variant:normal;font-weight:400;line-height:1;margin-left:.618em;text-decoration:none;text-transform:none}.brxe-woocommerce-checkout-login .login-div .show-password-input.display-password:after{color:var(--bricks-text-light)}.brxe-woocommerce-checkout-order-review,.brxe-woocommerce-checkout-thankyou{width:100%}.brxe-woocommerce-checkout-thankyou .woocommerce-columns--addresses{flex-wrap:wrap;gap:20px}.brxe-woocommerce-notice.woocommerce-notices-wrapper{margin-bottom:0;width:100%}.brxe-woocommerce-products-filter{display:flex;flex-direction:column;gap:30px;width:100%}.brxe-woocommerce-products-filter,.brxe-woocommerce-products-filter ol,.brxe-woocommerce-products-filter ul{list-style-type:none;margin:0;padding:0}.brxe-woocommerce-products-filter .toggle.expanded{display:none}.brxe-woocommerce-products-filter .filter-item.open .toggle.expanded,.brxe-woocommerce-products-filter .toggle.collapsed{display:block}.brxe-woocommerce-products-filter .filter-item.open .toggle.collapsed{display:none}.brxe-woocommerce-products-filter .filter-item.open .filter{display:block}.brxe-woocommerce-products-filter .title{align-items:center;cursor:pointer;display:flex;flex-direction:row;justify-content:space-between;margin-bottom:15px}.brxe-woocommerce-products-filter .title:empty{display:none!important}.brxe-woocommerce-products-filter .title .title-tag{font-size:1.2em;margin:0}.brxe-woocommerce-products-filter .filter{animation:fadeIn .2s;display:none}.brxe-woocommerce-products-filter .filter:empty{display:none!important}.brxe-woocommerce-products-filter .checkboxes li,.brxe-woocommerce-products-filter .radio-buttons li{align-items:center;display:flex}.brxe-woocommerce-products-filter .checkboxes li input,.brxe-woocommerce-products-filter .radio-buttons li input{appearance:none;cursor:pointer;padding:0}.brxe-woocommerce-products-filter .checkboxes li label,.brxe-woocommerce-products-filter .radio-buttons li label{color:currentcolor;cursor:pointer;margin:0 0 0 .5em}.brxe-woocommerce-products-filter input[type=checkbox],.brxe-woocommerce-products-filter input[type=radio]{border-radius:4px;border-style:solid;border-width:1px;height:1em;width:1em}.brxe-woocommerce-products-filter input[type=checkbox]:hover,.brxe-woocommerce-products-filter input[type=radio]:hover{border-color:currentcolor}.brxe-woocommerce-products-filter input[type=checkbox]:checked,.brxe-woocommerce-products-filter input[type=radio]:checked{background-color:currentcolor;border-color:currentcolor;box-shadow:inset 0 0 0 2px #fff}.brxe-woocommerce-products-filter input[type=radio]{border-radius:50%}.brxe-woocommerce-products-filter input[type=range]{outline:none}.brxe-woocommerce-products-filter .text-list li.current{font-weight:700}.brxe-woocommerce-products-filter .box-list{display:flex;flex-flow:row wrap;margin:0;padding:0}.brxe-woocommerce-products-filter .box-list li{background-color:var(--bricks-bg-light);border-radius:30px;cursor:pointer;font-size:.9em;line-height:30px;margin:0 5px 5px 0;text-align:center}.brxe-woocommerce-products-filter .box-list li label{color:currentcolor;cursor:inherit;margin:0;padding:0 10px}.brxe-woocommerce-products-filter .box-list li.checked{background-color:var(--bricks-bg-dark)}.brxe-woocommerce-products-filter .box-list li.checked label{color:#fff}.brxe-woocommerce-products-filter .double-slider-wrap{padding-top:14px;position:relative;width:100%}.brxe-woocommerce-products-filter .double-slider-wrap input[type=range]{appearance:none;-webkit-appearance:none;background-color:currentcolor;border-radius:2px;height:2px;pointer-events:none;position:absolute}.brxe-woocommerce-products-filter .double-slider-wrap input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;background-color:#fff;border:2px solid;border-radius:14px;box-shadow:inset 0 0 0 2px #fff;cursor:pointer;height:14px;pointer-events:all;position:relative;transition:.1s;width:14px;z-index:1}.brxe-woocommerce-products-filter .double-slider-wrap input[type=range]::-moz-range-thumb{-webkit-appearance:none;background-color:#fff;border:2px solid;border-radius:14px;box-shadow:inset 0 0 0 2px #fff;cursor:pointer;height:14px;pointer-events:all;position:relative;transition:.1s;width:14px;z-index:1}.brxe-woocommerce-products-filter .double-slider-wrap input[type=range].max,.brxe-woocommerce-products-filter .double-slider-wrap input[type=range].upper{background-color:transparent}.brxe-woocommerce-products-filter .double-slider-wrap label{display:none}.brxe-woocommerce-products-filter .double-slider-wrap .value-wrap{display:flex;justify-content:space-between;margin-top:14px}.brxe-woocommerce-products-filter .double-slider-wrap .value-wrap>span{display:inline-flex;gap:10px}.brxe-woocommerce-products-filter .reset{display:block}.brxe-woocommerce-products-filter .search-form{position:relative}.brxe-woocommerce-products-filter .search-form input[type=search]{padding-right:30px}.brxe-woocommerce-products-filter .search-form button[type=submit]{background-color:transparent;font-size:18px;height:100%;padding:0 15px;position:absolute;right:0;top:0}.brxe-woocommerce-products-filter .search-form i{opacity:.5}.brxe-woocommerce-products-filter .search-form i:hover{opacity:1}.brxe-woocommerce-products-filter .reset-button{align-items:center;background-color:#e4e7e9;border-width:0;color:currentcolor;display:inline-flex;font-weight:700;justify-content:center;min-height:40px;padding:7px 15px;text-align:center;text-decoration:none}.brxe-woocommerce-products-filter .reset-button.disabled{cursor:not-allowed}.brxe-woocommerce-products-filter .reset-button .spinning{animation:load8 1s linear infinite}.brxe-woocommerce-products-filter .stars{display:inline-flex}.brxe-woocommerce-products-filter .stars a{box-shadow:none;display:inline-block;font-size:1.5em;height:1em;line-height:1;position:relative;text-decoration:none;width:1em}.brxe-woocommerce-products-filter .stars a .icon{display:inline-block;position:absolute;text-indent:0}.brxe-woocommerce-products-filter .stars a span{display:inline-block;text-indent:-999em}.brxe-woocommerce-products-filter .stars a .active,.brxe-woocommerce-products-filter .stars a.active .icon{visibility:hidden}.brxe-woocommerce-products-filter .stars a.active .active{visibility:visible}.brxe-woocommerce-products-filter .stars:hover a .icon{visibility:hidden}.brxe-woocommerce-products-filter .stars:hover a .active,.brxe-woocommerce-products-filter .stars:hover a:hover~a .icon{visibility:visible}.brxe-woocommerce-products-filter .stars:hover a:hover~a .active{visibility:hidden}.brxe-woocommerce-products-orderby{width:auto}.brxe-woocommerce-products-orderby select{padding-right:30px}.brxe-woocommerce-products-pagination,.brxe-woocommerce-products-total-results{width:auto}.woocommerce-breadcrumb{margin-bottom:30px}.woocommerce-breadcrumb a{font-weight:700}.woocommerce-breadcrumb span{display:inline-block;margin:0 10px}.brxe-woocommerce-mini-cart{position:relative;width:auto}.brxe-woocommerce-mini-cart.hide-empty-count .cart-count{display:none}.brxe-woocommerce-mini-cart .mini-cart-link{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;gap:10px}.brxe-woocommerce-mini-cart .mini-cart-link:hover{text-decoration:none}.brxe-woocommerce-mini-cart .mini-cart-link i{display:flex;font-size:27px}.brxe-woocommerce-mini-cart .mini-cart-link .cart-icon{display:flex;position:relative}.brxe-woocommerce-mini-cart .mini-cart-link .cart-subtotal{line-height:1}.brxe-woocommerce-mini-cart .cart-count{align-items:center;background-color:#000;border-radius:50%;color:#fff;display:flex;font-size:10px;font-weight:700;height:18px;justify-content:center;line-height:1;position:absolute;right:0;top:0;transform:translate(50%,-50%);width:18px}.brxe-woocommerce-mini-cart .cart-count.hide{display:none}.brxe-woocommerce-mini-cart .cart-count.show{display:flex}.brxe-woocommerce-mini-cart .off-canvas-overlay{background-color:rgba(0,0,0,.25);bottom:0;content:"";left:0;opacity:0;position:absolute;position:fixed;right:0;top:0;transition:all .2s;visibility:hidden;z-index:-1}.brxe-woocommerce-mini-cart .cart-detail{background-color:#fff;border-style:solid;border-width:1px;opacity:0;position:absolute;right:0;top:calc(100% + 15px);transition:opacity .15s linear,transform .15s linear,left 0s .15s,right 0s .15s;visibility:hidden;width:400px;z-index:-1}.brxe-woocommerce-mini-cart .cart-detail.off-canvas{position:fixed;transition:all .2s ease-in-out}.brxe-woocommerce-mini-cart .cart-detail.off-canvas.top{bottom:auto!important;left:0!important;right:0!important;top:0!important;transform:translateY(-100%);width:100%!important}.brxe-woocommerce-mini-cart .cart-detail.off-canvas.top .woocommerce-mini-cart__buttons{display:flex;justify-content:flex-end}.brxe-woocommerce-mini-cart .cart-detail.off-canvas.right{bottom:0!important;left:auto!important;right:0!important;top:0!important;transform:translate(100%)}.brxe-woocommerce-mini-cart .cart-detail.off-canvas.right .woocommerce-mini-cart__total{margin-top:auto}.brxe-woocommerce-mini-cart .cart-detail.off-canvas.bottom{bottom:0!important;left:0!important;right:0!important;top:auto!important;transform:translateY(100%);width:100%!important}.brxe-woocommerce-mini-cart .cart-detail.off-canvas.bottom .woocommerce-mini-cart__buttons{display:flex;justify-content:flex-end}.brxe-woocommerce-mini-cart .cart-detail.off-canvas.left{bottom:0!important;left:0!important;right:auto!important;top:0!important;transform:translate(-100%)}.brxe-woocommerce-mini-cart .cart-detail.off-canvas.left .woocommerce-mini-cart__total{margin-top:auto}.brxe-woocommerce-mini-cart .cart-detail .widget_shopping_cart_content{display:flex;flex-direction:column;height:100%;justify-content:space-between;padding:30px}.brxe-woocommerce-mini-cart .cart-detail .woocommerce-mini-cart__empty-message{font-size:.9em;text-align:center}.brxe-woocommerce-mini-cart .cart-detail li{margin-bottom:15px;overflow:hidden;padding-inline-end:20px;position:relative}.brxe-woocommerce-mini-cart .cart-detail li .remove{font-size:21px;font-weight:400;line-height:1;opacity:.5;position:absolute;right:0}.brxe-woocommerce-mini-cart .cart-detail li .remove:hover{opacity:1}.brxe-woocommerce-mini-cart .cart-detail li a{font-size:1.1em;font-weight:700}.brxe-woocommerce-mini-cart .cart-detail li .quantity{border:none;box-shadow:none;color:var(--bricks-text-light);display:block;line-height:1;margin-top:5px}.brxe-woocommerce-mini-cart .cart-detail li .variation{margin:0}.brxe-woocommerce-mini-cart .cart-detail li .variation dt{font-weight:700}.brxe-woocommerce-mini-cart .cart-detail li .variation dd,.brxe-woocommerce-mini-cart .cart-detail li .variation dt{line-height:1.5;margin:0}.brxe-woocommerce-mini-cart .cart-detail li .variation dd+dt{margin-top:15px}.brxe-woocommerce-mini-cart .cart-detail .total{border-top-style:solid;border-top-width:1px;display:flex;justify-content:space-between;margin:20px 0 0;padding:20px 0 0}.brxe-woocommerce-mini-cart .cart-detail .total .strong{font-weight:700}.brxe-woocommerce-mini-cart .cart-detail .woocommerce-mini-cart__buttons{display:grid;gap:20px;grid-auto-flow:column;margin-top:20px}.brxe-woocommerce-mini-cart .cart-detail .woocommerce-mini-cart__buttons a{align-items:center;background-color:#e4e7e9;border-width:0;color:currentcolor;display:inline-flex;font-weight:700;justify-content:center;line-height:40px;min-height:40px;min-height:0;padding:0 15px;text-align:center;text-decoration:none}.brxe-woocommerce-mini-cart .cart-detail .woocommerce-mini-cart__buttons a.disabled{cursor:not-allowed}.brxe-woocommerce-mini-cart .cart-detail .woocommerce-mini-cart__buttons a .spinning{animation:load8 1s linear infinite}.brxe-woocommerce-mini-cart .cart-detail img{float:left;margin-inline-end:15px;width:60px}.brxe-woocommerce-mini-cart.show-cart-details .cart-detail{opacity:1;visibility:visible;z-index:999}.brxe-woocommerce-mini-cart.show-cart-details .cart-detail+.off-canvas-overlay{opacity:1;visibility:visible;z-index:998}.brxe-woocommerce-mini-cart.show-cart-details .cart-detail.off-canvas{transform:translate(0)}.brxe-woocommerce-mini-cart.show-cart-details .cart-detail :where(.bricks-mini-cart-close){background-color:transparent;display:grid;padding:10px;place-items:center;position:absolute;right:0;top:0}.woocommerce-mini-cart{list-style-type:none;margin:0;overflow-y:auto;padding:0}.admin-bar .brxe-woocommerce-mini-cart .cart-detail.off-canvas:not(.bottom){top:var(--wp-admin--admin-bar--height)!important}.brxe-product-related,.cross-sells,.related.products,.upsells.products{width:100%}.cross-sells+section.products,.related.products+section.products,.upsells.products+section.products{margin-top:60px}.cross-sells .star-rating,.related.products .star-rating,.upsells.products .star-rating{display:none}.cross-sells .products,.related.products .products,.upsells.products .products{align-items:start;display:grid;gap:30px;list-style-type:none;margin:0;padding:0}.cross-sells .products.columns-4,.related.products .products.columns-4,.upsells.products .products.columns-4{grid-template-columns:repeat(4,1fr)}.cross-sells .products.columns-3,.related.products .products.columns-3,.upsells.products .products.columns-3{grid-template-columns:repeat(3,1fr)}.cross-sells .products.columns-2,.related.products .products.columns-2,.upsells.products .products.columns-2{grid-template-columns:repeat(2,1fr)}.cross-sells .products.columns-1,.related.products .products.columns-1,.upsells.products .products.columns-1{grid-template-columns:repeat(1,1fr)}.cross-sells .products .product,.related.products .products .product,.upsells.products .products .product{display:block}.cross-sells .woocommerce-LoopProduct-link,.related.products .woocommerce-LoopProduct-link,.upsells.products .woocommerce-LoopProduct-link{display:block;margin-bottom:10px}.cross-sells img,.related.products img,.upsells.products img{object-fit:cover;width:100%}.cross-sells .woocommerce-loop-product__title,.related.products .woocommerce-loop-product__title,.upsells.products .woocommerce-loop-product__title{font-size:1.4em;margin:15px 0 0}.cross-sells .price,.related.products .price,.upsells.products .price{font-size:1.2em}.cross-sells .price del,.related.products .price del,.upsells.products .price del{margin-right:5px}@media(max-width:991px){.cross-sells .products,.related.products .products,.upsells.products .products{grid-template-columns:repeat(2,1fr)!important}}@media(max-width:478px){.cross-sells .products,.related.products .products,.upsells.products .products{grid-template-columns:repeat(1,1fr)!important;text-align:center}}.woocommerce-cart .woocommerce{max-width:100%;width:100%}.cart-empty.woocommerce-info{max-width:100%}.woocommerce-cart-form{margin:0;position:relative}.woocommerce-cart-form ul{list-style-type:none;margin:0;padding:0}.woocommerce-cart-form label{color:inherit}.woocommerce-cart-form thead{border-bottom:1px solid var(--bricks-border-color);display:table-header-group;line-height:60px}@media(max-width:767px){.woocommerce-cart-form thead{display:none}}.woocommerce-cart-form tbody th:not([scope=row]){display:none;vertical-align:top}.woocommerce-cart-form tbody tr{border-bottom-style:solid;border-bottom-width:1px;display:table-row;position:relative}.woocommerce-cart-form tbody tr:last-child{border:none}.woocommerce-cart-form tbody td,.woocommerce-cart-form tbody th[scope=row]{clear:both;padding:15px 0;text-align:initial}.woocommerce-cart-form tbody td[data-title]:before,.woocommerce-cart-form tbody th[scope=row][data-title]:before{font-weight:700;margin-inline-end:.5em}.woocommerce-cart-form tbody td.actions label,.woocommerce-cart-form tbody th[scope=row].actions label{display:none}@media(max-width:767px){.woocommerce-cart-form tbody td,.woocommerce-cart-form tbody th[scope=row]{display:flex;flex-wrap:wrap;gap:15px;justify-content:space-between}.woocommerce-cart-form tbody td[data-title]:before,.woocommerce-cart-form tbody th[scope=row][data-title]:before{content:attr(data-title) ": "}.woocommerce-cart-form tbody td.product-quantity .quantity,.woocommerce-cart-form tbody th[scope=row].product-quantity .quantity{width:auto}.woocommerce-cart-form tbody td.product-quantity .quantity .qty,.woocommerce-cart-form tbody th[scope=row].product-quantity .quantity .qty{width:60px}.woocommerce-cart-form tbody td.product-quantity input,.woocommerce-cart-form tbody th[scope=row].product-quantity input{line-height:30px}}.woocommerce-cart-form .product-remove{padding:0;text-align:center;width:30px}.woocommerce-cart-form .product-remove a{font-size:24px}@media(max-width:767px){.woocommerce-cart-form .product-remove{text-align:initial}.woocommerce-cart-form .product-remove a{font-size:32px}}.woocommerce-cart-form .product-thumbnail img{display:block;object-fit:cover;width:100px}@media(max-width:767px){.woocommerce-cart-form .product-thumbnail>a{flex-grow:1}.woocommerce-cart-form .product-thumbnail img{width:100%}}.woocommerce-cart-form .product-name{font-weight:700}@media(max-width:991px){.woocommerce-cart-form .product-quantity .quantity{max-width:90%}.woocommerce-cart-form .product-quantity .quantity .action{width:30px}}.woocommerce-cart-form .actions{text-align:right}@media(max-width:991px){.woocommerce-cart-form .actions .button{align-self:center}}@media(max-width:478px){.woocommerce-cart-form .actions{text-align:initial}.woocommerce-cart-form .actions button{flex-grow:1}}.woocommerce-cart-form .coupon{align-items:center;display:flex;float:left;gap:15px}.woocommerce-cart-form .coupon label{display:none}.woocommerce-cart-form .coupon input{display:inline-block;text-align:initial;width:auto}.woocommerce-cart-form .coupon .button{min-width:auto}@media(max-width:478px){.woocommerce-cart-form .coupon{flex-grow:1;flex-wrap:wrap}.woocommerce-cart-form .coupon input{flex-grow:1}}.woocommerce-cart-form button[type=submit]:disabled{background-color:var(--bricks-bg-light);color:inherit;cursor:not-allowed}.woocommerce-cart-form dl.variation{display:flex;flex-wrap:wrap;gap:.25em}.woocommerce-cart-form dl.variation dd,.woocommerce-cart-form dl.variation dt{margin:0}.cart-collaterals{float:right;height:fit-content;width:50%}@media(max-width:767px){.cart-collaterals{float:none;width:100%}}.cart-collaterals .cross-sells{margin-bottom:60px}.cart-collaterals .cross-sells>h2{margin-bottom:.5em}.cart-collaterals .cross-sells h2{font-size:1.8em}.cart-collaterals .cross-sells ul{list-style-type:none;margin:0;padding:0}.cart-collaterals .cart_totals h2{line-height:62px;margin:0}.cart-collaterals table{border-bottom:1px solid var(--bricks-border-color);border-top:1px solid var(--bricks-border-color);line-height:30px;margin:0 0 30px}.cart-collaterals table a{text-decoration:underline}.cart-collaterals table tbody tr{display:table-row}.cart-collaterals table tbody th{padding:15px 0;text-align:initial}.cart-collaterals table tbody td{border:none;padding:15px 0}.cart-collaterals .wc-proceed-to-checkout .button{font-size:1.2em;line-height:60px;text-decoration:none}@media(max-width:478px){.cart-collaterals .wc-proceed-to-checkout .button{display:flex}}.brxe-woocommerce-cart-coupon{width:auto}.brxe-woocommerce-cart-coupon .coupon{align-items:center;display:flex;flex-wrap:wrap;gap:15px}.brxe-woocommerce-cart-coupon .coupon label{display:none}.brxe-woocommerce-cart-coupon .coupon input{text-align:initial;width:auto}.brxe-woocommerce-cart-coupon .coupon button[type=submit]{white-space:nowrap;width:auto}.brxe-woocommerce-cart-collaterals{width:100%}.brxe-woocommerce-cart-collaterals .cart-collaterals{float:none;width:auto}ul.woocommerce-shipping-methods{list-style-type:none;margin:0;padding:0}ul.woocommerce-shipping-methods li{margin-bottom:15px}ul.woocommerce-shipping-methods label{line-height:20px;text-transform:none}ul.woocommerce-shipping-methods label a{margin-left:5px}ul.woocommerce-shipping-methods input[type=radio]{float:left;height:20px;margin:0 10px 0 0;width:auto}ul.woocommerce-shipping-methods input[type=radio]+label{font-size:14px}.woocommerce-checkout.woocommerce-order-pay #order_review{width:100%}.woocommerce-checkout label{color:inherit;cursor:pointer;font-weight:700;letter-spacing:.2px}.woocommerce-checkout #customer_details{display:flex;flex-direction:column;gap:15px}.woocommerce-checkout .brxe-woocommerce-checkout-customer-details{width:100%}.woocommerce-checkout .brxe-woocommerce-checkout-customer-details #customer_details{float:none;margin-right:0;width:auto}.woocommerce-checkout #order_review.bricks-template{border:none;float:none;width:auto}.woocommerce-checkout #order_review .woocommerce-shipping-totals label,.woocommerce-checkout #order_review .woocommerce-shipping-totals li{margin-bottom:0}.woocommerce-checkout #order_review .woocommerce-shipping-totals #shipping_method{display:flex;flex-direction:column;gap:15px}.woocommerce-checkout .woocommerce-error a{all:unset;cursor:pointer;text-decoration:underline}.woocommerce-checkout .woocommerce-checkout-review-order{display:flex;flex-direction:column;gap:15px}.woocommerce-checkout .woocommerce-checkout-payment,.woocommerce-checkout .woocommerce-checkout-review-order-table{border:1px solid var(--bricks-border-color)}.woocommerce-checkout .brxe-woocommerce-checkout-order-table{width:100%}.woocommerce-checkout .brxe-woocommerce-checkout-order-table .shop_table td,.woocommerce-checkout .brxe-woocommerce-checkout-order-table .shop_table th{padding:20px 0}.woocommerce-checkout .brxe-woocommerce-checkout-order-table .shop_table tfoot{border:none}.woocommerce-checkout .brxe-woocommerce-checkout-order-payment{width:100%}.woocommerce-checkout .brxe-woocommerce-checkout-order-payment #payment{padding:0}@media(max-width:767px){.woocommerce-checkout #customer_details{float:none;width:100%}.woocommerce-checkout #order_review{border-left:none;border-right:none;float:none;width:100%}}.woocommerce-checkout .woocommerce-shipping-methods{list-style-type:none;margin:0;padding:0}.woocommerce-checkout .woocommerce-shipping-fields{margin:60px 0 0}.woocommerce-checkout .woocommerce-shipping-fields #ship-to-different-address{position:relative}.woocommerce-checkout .woocommerce-shipping-fields #ship-to-different-address label{cursor:pointer;display:block;font-size:21px;text-transform:none}.woocommerce-checkout .woocommerce-shipping-fields #ship-to-different-address input{position:absolute;right:0;top:50%;transform:translateY(-50%)}.woocommerce-checkout .woocommerce-additional-fields{margin-top:15px}.woocommerce-checkout .woocommerce-additional-fields textarea{resize:vertical}.woocommerce-checkout .shop_table td,.woocommerce-checkout .shop_table th{line-height:1.4;padding:20px}.woocommerce-checkout .shop_table tfoot,.woocommerce-checkout .shop_table thead{border-bottom:1px solid var(--bricks-border-color)}.woocommerce-checkout .shop_table tbody td{border-bottom-style:solid;border-bottom-width:1px}.woocommerce-checkout .shop_table tbody tr:last-child td{border:none}.woocommerce-checkout .shop_table dl.variation{display:flex;flex-wrap:wrap;gap:.25em}.woocommerce-checkout .shop_table dl.variation dd,.woocommerce-checkout .shop_table dl.variation dt{margin:0}.woocommerce-checkout #payment{padding:20px}.woocommerce-checkout #payment .payment_methods{list-style-type:none;margin:0;padding:0}.woocommerce-checkout #payment .payment_methods li{margin-bottom:15px}.woocommerce-checkout #payment .payment_methods label{line-height:20px;text-transform:none}.woocommerce-checkout #payment .payment_methods label a{margin-left:5px}.woocommerce-checkout #payment .payment_methods input[type=checkbox]{float:left}.woocommerce-checkout #payment .payment_methods input[type=radio]{float:left;height:20px;margin:0 10px 0 0;width:auto}.woocommerce-checkout #payment .payment_methods input[type=radio]+label{font-size:14px}.woocommerce-checkout #payment .payment_methods .payment_box{background-color:var(--bricks-bg-light);font-size:14px;margin:15px 0;padding:10px 15px;position:relative}.woocommerce-checkout #payment .payment_methods .payment_box:before{background-color:var(--bricks-bg-light);border-left-color:transparent;border-right-color:transparent;border-top-color:transparent;content:"";display:block;left:0;margin:-10px 0 0 15px;position:absolute;top:-10px}.woocommerce-checkout #payment .payment_methods img{float:right;max-width:80px}.woocommerce-checkout #payment .payment_methods a{font-weight:inherit;text-decoration:underline;text-transform:none}.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper{font-size:.9em}.woocommerce-checkout .place-order{display:flex;flex-direction:column;flex-wrap:nowrap}.woocommerce-checkout .place-order a{text-decoration:underline}.woocommerce-checkout .place-order .button{font-size:1.2em;line-height:60px}.woocommerce-checkout .woocommerce-privacy-policy-text,.woocommerce-checkout .woocommerce-terms-and-conditions{margin:10px 0}.woocommerce-checkout .woocommerce-form__input-checkbox{display:inline!important}.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text{position:relative;top:-2px}.woocommerce-checkout form.checkout_coupon{background-color:var(--bricks-bg-light);margin:30px 0;padding:20px}.woocommerce .blockUI.blockOverlay:before{animation:spin 1s ease-in-out infinite;background:url(//threedradio.stagingvps.studioveld.com.au/wp-content/plugins/woocommerce/assets/images/icons/loader.svg) 50%;background-size:auto;background-size:cover;color:rgba(0,0,0,.75);content:"";display:block;font-size:2em;height:1em;left:50%;line-height:1;margin-left:-.5em;margin-top:-.5em;position:absolute;text-align:center;top:50%;width:1em}form.woocommerce-checkout.bricks-default-checkout{align-items:stretch;display:grid;gap:15px;grid-template-columns:56% auto;padding-bottom:20px;padding-top:20px}@media(max-width:767px){form.woocommerce-checkout.bricks-default-checkout{grid-template-columns:1fr}}.wp-block-woocommerce-checkout.alignwide{width:100%}.woocommerce-order-overview.order_details{border-style:solid;border-width:1px;display:grid;grid-template-columns:repeat(2,50%);margin:0 0 15px;padding:0}.woocommerce-order-overview.order_details li{border-bottom-style:solid;border-bottom-width:1px;display:inline-flex;flex-direction:column;padding:10px 20px}.woocommerce-order-overview.order_details li:nth-child(odd){border-right-style:solid;border-right-width:1px}.woocommerce-order-overview.order_details li:last-child{border-bottom:none}.woocommerce-order-overview.order_details+p{text-align:center}@media(max-width:478px){.woocommerce-order-overview.order_details{grid-template-columns:1fr}.woocommerce-order-overview.order_details li:nth-child(odd){border-right-style:unset;border-right-width:unset}}.woocommerce-order-details,.woocommerce-order-downloads{margin:30px 0}.woocommerce-order-details table{border-style:solid;border-width:1px;line-height:40px}.woocommerce-order-details table+.order-again{margin:15px 0 0}.woocommerce-order-details table thead{display:none}.woocommerce-order-details table tbody tr{border-bottom-style:solid;border-bottom-width:1px}.woocommerce-order-details table td,.woocommerce-order-details table th{line-height:1;padding:20px;width:50%}.woocommerce-order-details table td+td,.woocommerce-order-details table th+td{padding-left:0}.woocommerce-order-details table tfoot{background-color:var(--bricks-bg-light)}.woocommerce-order-details table .product-quantity{background-color:var(--bricks-bg-light);border-radius:20px;display:inline-block;font-size:12px;line-height:20px;margin:0 5px;padding:0 10px}.woocommerce-customer-details{margin:30px 0}.woocommerce-account:not(.logged-in) .woocommerce{flex-direction:column;gap:0}.woocommerce-account .woocommerce-MyAccount-navigation{background-color:var(--bricks-bg-light);min-width:25%}.woocommerce-account .woocommerce-MyAccount-navigation ul{list-style-type:none;margin:0;padding:0}.woocommerce-account .woocommerce-MyAccount-navigation a{display:block;line-height:60px;padding:0 30px}.woocommerce-account .woocommerce-MyAccount-navigation .is-active{font-weight:700}.woocommerce-account .woocommerce-MyAccount-content{flex:1}.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info{margin-bottom:30px}.woocommerce-account .woocommerce>.woocommerce-form-login:not([class^=brxe-]){margin-left:auto;margin-right:auto;width:50%}@media(max-width:767px){.woocommerce-account .woocommerce>.woocommerce-form-login:not([class^=brxe-]){width:100%}}.woocommerce-account .woocommerce-form-login:not([class^=brxe-]),.woocommerce-account .woocommerce-form-register:not([class^=brxe-]){border-style:solid;border-width:1px;display:flex;flex-direction:column;gap:10px;margin-top:30px;padding:30px;text-align:center}.woocommerce-account .woocommerce-form-login:not([class^=brxe-]) p,.woocommerce-account .woocommerce-form-register:not([class^=brxe-]) p{margin:0}.woocommerce-account .woocommerce-form-login:not([class^=brxe-]) input[type=checkbox],.woocommerce-account .woocommerce-form-register:not([class^=brxe-]) input[type=checkbox]{display:inline;width:auto}.woocommerce-account #customer_login.col2-set{display:grid;gap:40px;grid-template-columns:1fr 1fr}.woocommerce-account #customer_login.col2-set form{text-align:initial}@media(max-width:767px){.woocommerce-account #customer_login.col2-set.col2-set{grid-template-columns:1fr}}.woocommerce-account #customer_login.col2-set h2+form{margin-top:10px}.woocommerce-account .woocommerce:not(#brx-content){display:flex;gap:40px}@media(max-width:767px){.woocommerce-account .woocommerce:not(#brx-content){flex-direction:column}}.woocommerce-account .woocommerce:not(#brx-content)>h2{text-align:center}.woocommerce-account .woocommerce .woocommerce-EditAccountForm .button,.woocommerce-account .woocommerce .woocommerce-address-fields .button{margin-top:15px}.woocommerce-account .woocommerce .woocommerce-EditAccountForm #billing_company_field,.woocommerce-account .woocommerce .woocommerce-address-fields #billing_company_field{display:inline-block}.woocommerce-account .woocommerce .woocommerce-PaymentMethod input[type=radio]{display:inline;width:auto}.woocommerce-account .woocommerce .woocommerce-PaymentMethod input[type=radio]+label{display:inline}.woocommerce-account .woocommerce .woocommerce-pagination{display:flex;flex-wrap:wrap;justify-content:space-between}.woocommerce-account .woocommerce .woocommerce-pagination a.woocommerce-button--next{margin-left:auto}.woocommerce-account .woocommerce-Addresses{display:flex;gap:30px;margin-top:30px}@media(max-width:767px){.woocommerce-account .woocommerce-Addresses{flex-direction:column}}.woocommerce-account .woocommerce-Addresses .edit{display:inline-block;font-weight:700}.woocommerce-account .woocommerce-Addresses .woocommerce-Address{flex:1}.woocommerce-account .woocommerce-ResetPassword{display:flex;flex-direction:column;gap:10px}.woocommerce-account .woocommerce-ResetPassword p{margin:0}.woocommerce-account .woocommerce-ResetPassword .woocommerce-form-row{float:none;width:auto}.woocommerce-account .woocommerce-ResetPassword .clear{display:none}.woocommerce-account form label{color:inherit}.woocommerce-account form .password-input{display:flex;flex-direction:column;justify-content:center;position:relative}.woocommerce-account form .password-input input{padding-inline-end:40px}.woocommerce-account form .password-input input::-ms-reveal{display:none}.woocommerce-account form .show-password-input{align-items:center;cursor:pointer;display:flex;position:absolute;right:0;width:40px}.woocommerce-account form .show-password-input:after{speak:never;-webkit-font-smoothing:antialiased;content:"";font-family:WooCommerce;font-variant:normal;font-weight:400;line-height:1;margin-left:.618em;text-decoration:none;text-transform:none}.woocommerce-account form .show-password-input.display-password:after{color:var(--bricks-text-light)}.woocommerce-account form .woocommerce-password-strength{border-style:solid;border-width:1px;margin-top:10px;padding:5px 10px;text-align:center}.woocommerce-account form .woocommerce-password-strength.strong{background-color:#c1e1b9;border-color:#83c373;color:#277313}.woocommerce-account form .woocommerce-password-strength.short{background-color:#f1adad;border-color:#e35b5b;color:#9b2828}.woocommerce-account form .woocommerce-password-strength.bad{background-color:#fbc5a9;border-color:#f78b53;color:#b7521d}.woocommerce-account form .woocommerce-password-strength.good{background-color:#ffe399;border-color:#ffc733;color:#b58300}.woocommerce-account form .woocommerce-password-hint{display:block;margin:.5em 0 0}.woocommerce-account .woocommerce-customer-details .col2-set{grid-gap:30px;display:grid;grid-template-columns:repeat(2,1fr)}@media(max-width:767px){.woocommerce-account .woocommerce-customer-details .col2-set{grid-template-columns:1fr}}.woocommerce .woocommerce-order-downloads thead th,.woocommerce-account .woocommerce .woocommerce-MyAccount-orders thead th,.woocommerce-account .woocommerce .woocommerce-table--order-downloads thead th{line-height:var(--bricks-woo-input-height)}.woocommerce .woocommerce-order-downloads tbody td,.woocommerce .woocommerce-order-downloads tbody th,.woocommerce-account .woocommerce .woocommerce-MyAccount-orders tbody td,.woocommerce-account .woocommerce .woocommerce-MyAccount-orders tbody th,.woocommerce-account .woocommerce .woocommerce-table--order-downloads tbody td,.woocommerce-account .woocommerce .woocommerce-table--order-downloads tbody th{border-top-style:solid;border-top-width:1px;padding:15px 0}.woocommerce .woocommerce-order-downloads tbody td a,.woocommerce .woocommerce-order-downloads tbody th a,.woocommerce-account .woocommerce .woocommerce-MyAccount-orders tbody td a,.woocommerce-account .woocommerce .woocommerce-MyAccount-orders tbody th a,.woocommerce-account .woocommerce .woocommerce-table--order-downloads tbody td a,.woocommerce-account .woocommerce .woocommerce-table--order-downloads tbody th a{font-weight:700;margin-right:10px}.woocommerce .woocommerce-order-downloads tbody td a:last-child,.woocommerce .woocommerce-order-downloads tbody th a:last-child,.woocommerce-account .woocommerce .woocommerce-MyAccount-orders tbody td a:last-child,.woocommerce-account .woocommerce .woocommerce-MyAccount-orders tbody th a:last-child,.woocommerce-account .woocommerce .woocommerce-table--order-downloads tbody td a:last-child,.woocommerce-account .woocommerce .woocommerce-table--order-downloads tbody th a:last-child{margin:0}@media(max-width:767px){.woocommerce .woocommerce-order-downloads thead,.woocommerce-account .woocommerce .woocommerce-MyAccount-orders thead,.woocommerce-account .woocommerce .woocommerce-table--order-downloads thead{display:none}.woocommerce .woocommerce-order-downloads tbody td,.woocommerce .woocommerce-order-downloads tbody th,.woocommerce-account .woocommerce .woocommerce-MyAccount-orders tbody td,.woocommerce-account .woocommerce .woocommerce-MyAccount-orders tbody th,.woocommerce-account .woocommerce .woocommerce-table--order-downloads tbody td,.woocommerce-account .woocommerce .woocommerce-table--order-downloads tbody th{display:block;text-align:right}.woocommerce .woocommerce-order-downloads tbody td:before,.woocommerce .woocommerce-order-downloads tbody th:before,.woocommerce-account .woocommerce .woocommerce-MyAccount-orders tbody td:before,.woocommerce-account .woocommerce .woocommerce-MyAccount-orders tbody th:before,.woocommerce-account .woocommerce .woocommerce-table--order-downloads tbody td:before,.woocommerce-account .woocommerce .woocommerce-table--order-downloads tbody th:before{content:attr(data-title);display:table;float:left;font-weight:700}.woocommerce .woocommerce-order-downloads tbody tr:not(:last-child),.woocommerce-account .woocommerce .woocommerce-MyAccount-orders tbody tr:not(:last-child),.woocommerce-account .woocommerce .woocommerce-table--order-downloads tbody tr:not(:last-child){border-bottom-style:solid;border-bottom-width:1px;border-color:var(--bricks-border-color)}.woocommerce .woocommerce-order-downloads tbody tr:last-child td[class*=download]{border-bottom-style:solid;border-bottom-width:1px;border-top:none;border-color:var(--bricks-border-color)}}.added_to_cart{border-width:0;display:inline-flex;padding:.5em 1em}.brxe-woocommerce-products{align-self:stretch}.brxe-woocommerce-products .products{display:grid;gap:30px;grid-template-columns:repeat(4,1fr);list-style-type:none;margin:0;padding:0}@media(max-width:767px){.brxe-woocommerce-products .products{grid-template-columns:repeat(2,1fr)}}@media(max-width:478px){.brxe-woocommerce-products .products{grid-template-columns:repeat(1,1fr)}}.brxe-woocommerce-products .products.columns-1{grid-template-columns:repeat(1,1fr)}@media(max-width:767px){.brxe-woocommerce-products .products.columns-1{grid-template-columns:repeat(2,1fr)}}@media(max-width:478px){.brxe-woocommerce-products .products.columns-1{grid-template-columns:repeat(1,1fr)}}.brxe-woocommerce-products .products.columns-2{grid-template-columns:repeat(2,1fr)}@media(max-width:767px){.brxe-woocommerce-products .products.columns-2{grid-template-columns:repeat(2,1fr)}}@media(max-width:478px){.brxe-woocommerce-products .products.columns-2{grid-template-columns:repeat(1,1fr)}}.brxe-woocommerce-products .products.columns-3{grid-template-columns:repeat(3,1fr)}@media(max-width:767px){.brxe-woocommerce-products .products.columns-3{grid-template-columns:repeat(2,1fr)}}@media(max-width:478px){.brxe-woocommerce-products .products.columns-3{grid-template-columns:repeat(1,1fr)}}.brxe-woocommerce-products .products.columns-4{grid-template-columns:repeat(4,1fr)}@media(max-width:767px){.brxe-woocommerce-products .products.columns-4{grid-template-columns:repeat(2,1fr)}}@media(max-width:478px){.brxe-woocommerce-products .products.columns-4{grid-template-columns:repeat(1,1fr)}}.brxe-woocommerce-products .products.columns-5{grid-template-columns:repeat(5,1fr)}@media(max-width:767px){.brxe-woocommerce-products .products.columns-5{grid-template-columns:repeat(2,1fr)}}@media(max-width:478px){.brxe-woocommerce-products .products.columns-5{grid-template-columns:repeat(1,1fr)}}.brxe-woocommerce-products .products.columns-6{grid-template-columns:repeat(6,1fr)}@media(max-width:767px){.brxe-woocommerce-products .products.columns-6{grid-template-columns:repeat(2,1fr)}}@media(max-width:478px){.brxe-woocommerce-products .products.columns-6{grid-template-columns:repeat(1,1fr)}}.brxe-woocommerce-products .product{display:flex;flex-direction:column;height:100%}.brxe-woocommerce-products .product .woocommerce-LoopProduct-link{display:block;position:relative}.brxe-woocommerce-products .product .dynamic a img,.brxe-woocommerce-products .product .woocommerce-LoopProduct-link img{width:100%}.brxe-woocommerce-products .product h2{font-size:1.3em;margin:15px 0 0}.brxe-woocommerce-products .product .price{display:block}.brxe-woocommerce-products .product .price del{margin-right:5px}.brxe-woocommerce-products.bricks-layout-wrapper[data-layout=list] li.product{display:flex;flex-flow:row nowrap}.brxe-woocommerce-products.bricks-layout-wrapper[data-layout=list] li.product .bricks-product-image{flex:1 1 30%}.brxe-woocommerce-products.bricks-layout-wrapper[data-layout=list] li.product .bricks-product-meta{flex:2 1 70%;margin-left:30px}.brxe-woocommerce-products.bricks-layout-wrapper[data-layout=list] li.product .bricks-product-meta h2{margin:0}.brxe-woocommerce-products .add_to_cart_button,.brxe-woocommerce-products .added_to_cart,.brxe-woocommerce-products .button{margin-top:10px}.brxe-woocommerce-products .button{align-self:flex-start}.brxe-woocommerce-products .bricks-products-widgets{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.brxe-woocommerce-products .bricks-products-widgets.before{margin-bottom:20px}.brxe-woocommerce-products .bricks-products-widgets.after{margin-top:20px}.brxe-woocommerce-products .bricks-products-widgets form{margin:0}.brxe-woocommerce-products .bricks-products-widgets .orderby{padding-right:30px}.products .product{position:relative}.products+.woocommerce-pagination{margin:60px auto 0}.woocommerce-pagination{display:flex}.woocommerce-pagination .page-numbers{align-items:center;display:flex;flex-wrap:wrap;margin:0;padding:0}.woocommerce-pagination .page-numbers li{display:inline-block;margin:0 5px}.woocommerce-pagination .page-numbers li .page-numbers{padding:0 5px}.woocommerce-pagination .page-numbers li .current,.woocommerce-pagination .page-numbers li:hover{font-weight:700}.brxe-product-gallery{min-width:0;width:100%}.brxe-product-gallery[data-pos=top] .woocommerce-product-gallery{flex-direction:column-reverse}.brxe-product-gallery[data-pos=left] .woocommerce-product-gallery{flex-direction:row-reverse}.brxe-product-gallery[data-pos=right] .woocommerce-product-gallery{flex-direction:row}.brxe-product-gallery[data-pos=left] .flex-control-nav,.brxe-product-gallery[data-pos=right] .flex-control-nav{flex-shrink:0;grid-template-columns:1fr;width:100px}.brxe-product-gallery.bricks-lightbox .woocommerce-product-gallery .woocommerce-product-gallery__image img{cursor:zoom-in}.brxe-product-gallery .woocommerce-product-gallery,.brxe-product-gallery img{width:100%}.brxe-product-gallery.thumbnail-slider{display:flex;flex-direction:column;gap:30px}.brxe-product-gallery.thumbnail-slider[data-pos=top]{flex-direction:column-reverse}.brxe-product-gallery.thumbnail-slider[data-pos=left]{flex-direction:row-reverse}.brxe-product-gallery.thumbnail-slider[data-pos=right]{flex-direction:row}.brxe-product-gallery.thumbnail-slider[data-pos=bottom] .brx-product-gallery-thumbnail-slider .woocommerce-product-gallery__image:not(:last-child),.brxe-product-gallery.thumbnail-slider[data-pos=top] .brx-product-gallery-thumbnail-slider .woocommerce-product-gallery__image:not(:last-child){margin-inline-end:30px}.brxe-product-gallery.thumbnail-slider[data-pos=left] .brx-product-gallery-thumbnail-slider,.brxe-product-gallery.thumbnail-slider[data-pos=right] .brx-product-gallery-thumbnail-slider{flex-shrink:0;width:100px}.brxe-product-gallery.thumbnail-slider[data-pos=left] .brx-product-gallery-thumbnail-slider .brx-thumbnail-slider-wrapper,.brxe-product-gallery.thumbnail-slider[data-pos=right] .brx-product-gallery-thumbnail-slider .brx-thumbnail-slider-wrapper{width:auto!important}.brxe-product-gallery.thumbnail-slider[data-pos=left] .brx-product-gallery-thumbnail-slider .woocommerce-product-gallery__image:not(:last-child),.brxe-product-gallery.thumbnail-slider[data-pos=right] .brx-product-gallery-thumbnail-slider .woocommerce-product-gallery__image:not(:last-child){margin-bottom:30px}.brxe-product-gallery.thumbnail-slider[data-pos=left] .flex-direction-nav a,.brxe-product-gallery.thumbnail-slider[data-pos=right] .flex-direction-nav a{transform:translateX(-50%)}.brxe-product-gallery.thumbnail-slider[data-pos=left] .flex-direction-nav a.flex-prev,.brxe-product-gallery.thumbnail-slider[data-pos=right] .flex-direction-nav a.flex-prev{bottom:auto;left:50%;top:0}.brxe-product-gallery.thumbnail-slider[data-pos=left] .flex-direction-nav a.flex-next,.brxe-product-gallery.thumbnail-slider[data-pos=right] .flex-direction-nav a.flex-next{bottom:0;left:50%;top:auto}.brxe-product-gallery.thumbnail-slider .flex-direction-nav a{transform:translateY(-50%)}.brxe-product-gallery.thumbnail-slider .flex-direction-nav a.flex-prev{left:0;top:50%}.brxe-product-gallery.thumbnail-slider .flex-direction-nav a.flex-next{right:0;top:50%}.brxe-product-gallery.thumbnail-slider .brx-product-gallery-thumbnail-slider{overflow:hidden;position:relative}.brxe-product-gallery.thumbnail-slider .brx-product-gallery-thumbnail-slider .woocommerce-product-gallery__image a{outline:none}.brxe-product-gallery.thumbnail-slider .brx-product-gallery-thumbnail-slider .woocommerce-product-gallery__image img{aspect-ratio:1;cursor:pointer;object-fit:cover;opacity:.3;transition:opacity .1s;width:100%}.brxe-product-gallery.thumbnail-slider .brx-product-gallery-thumbnail-slider .woocommerce-product-gallery__image img:hover,.brxe-product-gallery.thumbnail-slider .brx-product-gallery-thumbnail-slider .woocommerce-product-gallery__image.flex-active-slide img{opacity:1}.brxe-product-gallery.thumbnail-slider .brx-product-gallery-thumbnail-slider .flex-direction-nav{height:0;list-style-type:none;margin:0;padding:0}.brxe-product-gallery.thumbnail-slider .brx-product-gallery-thumbnail-slider .flex-direction-nav a{cursor:pointer;display:grid;font-size:20px;outline:none;overflow:hidden;place-items:center;position:absolute;text-decoration:none;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-ms-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out;z-index:10}.brxe-product-gallery.thumbnail-slider .brx-product-gallery-thumbnail-slider .flex-direction-nav .flex-disabled{cursor:default;filter:alpha(opacity=0);opacity:0!important;z-index:-1}.brxe-product-gallery.thumbnail-slider .woocommerce-product-gallery .flex-control-thumbs{display:none}.woocommerce-product-gallery{display:flex;flex-direction:column;gap:20px;position:relative;width:50%}@media(max-width:991px){.woocommerce-product-gallery{width:100%}}.woocommerce-product-gallery:hover .woocommerce-product-gallery__trigger{opacity:1}.woocommerce-product-gallery figure{margin:0}.woocommerce-product-gallery .woocommerce-product-gallery__image a{display:block}.woocommerce-product-gallery .woocommerce-product-gallery__image img{width:100%}.woocommerce-product-gallery .woocommerce-product-gallery__trigger{height:24px;opacity:0;position:absolute;right:15px;text-align:center;top:15px;width:24px;z-index:1}.woocommerce-product-gallery .woocommerce-product-gallery__trigger:before{background-color:#fff;background-image:url("data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iYmkgYmktYXJyb3dzLWFuZ2xlLWV4cGFuZCIgd2lkdGg9IjFlbSIgaGVpZ2h0PSIxZW0iIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0iY3VycmVudENvbG9yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTEuNSAxMC4wMzZhLjUuNSAwIDAgMSAuNS41djMuNWgzLjVhLjUuNSAwIDAgMSAwIDFoLTRhLjUuNSAwIDAgMS0uNS0uNXYtNGEuNS41IDAgMCAxIC41LS41eiIgY2xpcC1ydWxlPSJldmVub2RkIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNNi4zNTQgOS42NDZhLjUuNSAwIDAgMSAwIC43MDhsLTQuNSA0LjVhLjUuNSAwIDAgMS0uNzA4LS43MDhsNC41LTQuNWEuNS41IDAgMCAxIC43MDggMHptOC41LTguNWEuNS41IDAgMCAxIDAgLjcwOGwtNC41IDQuNWEuNS41IDAgMCAxLS43MDgtLjcwOGw0LjUtNC41YS41LjUgMCAwIDEgLjcwOCAweiIgY2xpcC1ydWxlPSJldmVub2RkIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMTAuMDM2IDEuNWEuNS41IDAgMCAxIC41LS41aDRhLjUuNSAwIDAgMSAuNS41djRhLjUuNSAwIDEgMS0xIDBWMmgtMy41YS41LjUgMCAwIDEtLjUtLjV6IiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=");background-position:50%;background-repeat:no-repeat;background-size:18px;border-radius:4px;content:"";cursor:zoom-in;height:24px;position:absolute;right:0;top:0;width:24px;z-index:1}.woocommerce-product-gallery .flex-control-thumbs{display:grid;gap:20px;grid-template-columns:repeat(4,1fr);list-style-type:none;margin:0;padding:0}.woocommerce-product-gallery .flex-control-thumbs img{cursor:pointer;opacity:.3;transition:opacity .1s;width:100%}.woocommerce-product-gallery .flex-control-thumbs img.flex-active,.woocommerce-product-gallery .flex-control-thumbs img:hover{opacity:1}.brx-body.iframe .woocommerce-product-gallery__trigger{pointer-events:none!important}.single-product .product{display:flex;flex-wrap:wrap;position:relative}.single-product .content-area .product{column-gap:30px}.single-product .woocommerce-grouped-product-list{margin-bottom:15px}.single-product .woocommerce-grouped-product-list-item{align-items:center;margin-bottom:10px}.single-product .woocommerce-grouped-product-list-item label{margin:0 10px}.single-product .woocommerce-grouped-product-list-item .quantity{margin-bottom:0}.single-product .woocommerce-grouped-product-list-item td{padding:0}.single-product .brxe-product-stock{width:auto}.single-product .summary{flex:1}.single-product .summary .product_title{margin-bottom:10px}.single-product .summary .price{font-size:1.4em;margin:15px 0}.single-product .summary .price del{color:var(--bricks-text-light);margin-right:5px}.single-product .summary .price ins{text-decoration:none}.single-product .summary .woocommerce-product-details__short-description{margin-bottom:30px}.single-product .summary .stock{font-weight:700;margin-bottom:15px}.single-product .summary .stock.in-stock{color:var(--bricks-text-success)}.single-product .summary .stock.out-of-stock{color:var(--bricks-text-danger)}.single-product .summary .product_meta{border-top-style:solid;border-top-width:1px;display:block;margin-top:30px;padding-top:30px}.single-product .summary .product_meta>span{display:block;line-height:30px}.single-product .product_meta .separator{display:inline-block;text-align:center;width:20px}.single-product .product_meta a{font-weight:700}.single-product .product_meta.column{align-items:unset;flex-direction:column}.single-product .woocommerce-tabs{margin:60px 0}form.cart .quantity,form.woocommerce-cart-form .quantity{display:flex;width:200px}form.cart .quantity+button,form.woocommerce-cart-form .quantity+button{margin-top:10px}form.cart .quantity.hidden,form.woocommerce-cart-form .quantity.hidden{display:none}form.cart .quantity input,form.woocommerce-cart-form .quantity input{-moz-appearance:textfield;background-color:transparent;flex:1;line-height:var(--bricks-woo-input-height);order:1;padding:0;text-align:center}form.cart .quantity input::-webkit-inner-spin-button,form.cart .quantity input::-webkit-outer-spin-button,form.woocommerce-cart-form .quantity input::-webkit-inner-spin-button,form.woocommerce-cart-form .quantity input::-webkit-outer-spin-button{-webkit-appearance:none}form.cart .quantity input[type=hidden]+.minus,form.cart .quantity input[type=hidden]+.minus+.plus,form.woocommerce-cart-form .quantity input[type=hidden]+.minus,form.woocommerce-cart-form .quantity input[type=hidden]+.minus+.plus{display:none}form.cart .quantity .qty,form.woocommerce-cart-form .quantity .qty{border-left:none!important;border-right:none!important;width:30px}form.cart .quantity .minus,form.woocommerce-cart-form .quantity .minus{border-style:solid;border-width:1px;order:0}form.cart .quantity .plus,form.woocommerce-cart-form .quantity .plus{border-style:solid;border-width:1px;order:2}form.cart .quantity .minus,form.cart .quantity .plus,form.woocommerce-cart-form .quantity .minus,form.woocommerce-cart-form .quantity .plus{align-items:center;cursor:pointer;display:flex;justify-content:center;opacity:.75;user-select:none;width:40px}form.cart .quantity .minus:hover svg,form.cart .quantity .plus:hover svg,form.woocommerce-cart-form .quantity .minus:hover svg,form.woocommerce-cart-form .quantity .plus:hover svg{stroke:#000}form.cart .quantity .minus svg,form.cart .quantity .plus svg,form.woocommerce-cart-form .quantity .minus svg,form.woocommerce-cart-form .quantity .plus svg{height:16px;pointer-events:none;width:16px}form.cart .button,form.woocommerce-cart-form .button{align-items:center;column-gap:10px;display:inline-flex;justify-content:center;min-width:200px;white-space:nowrap}form.cart table.variations,form.woocommerce-cart-form table.variations{empty-cells:show;margin-bottom:30px;overflow:visible}form.cart table.variations tr:not(:has(.reset_variations)),form.woocommerce-cart-form table.variations tr:not(:has(.reset_variations)){border-bottom-style:solid;border-bottom-width:1px;border-top-style:solid;border-top-width:1px}form.cart table.variations th,form.woocommerce-cart-form table.variations th{padding-top:15px;vertical-align:top}form.cart table.variations th label,form.woocommerce-cart-form table.variations th label{margin-bottom:0}form.cart table.variations td,form.woocommerce-cart-form table.variations td{padding:15px 0;position:relative;width:50%}form.cart table.variations tr:not(:has(.reset_variations)):has(td[colspan]),form.woocommerce-cart-form table.variations tr:not(:has(.reset_variations)):has(td[colspan]){display:none}form.cart table.variations .reset_variations,form.woocommerce-cart-form table.variations .reset_variations{border-width:0;display:inline-flex;display:none;margin-top:1em;padding:0}form.cart table.variations .reset_variations:before,form.woocommerce-cart-form table.variations .reset_variations:before{content:"×";font-size:1.2em;margin-right:5px}form.cart .woocommerce-variation:not(:empty),form.woocommerce-cart-form .woocommerce-variation:not(:empty){margin-bottom:30px}form.cart .woocommerce-variation-price,form.woocommerce-cart-form .woocommerce-variation-price{margin:10px 0}.woocommerce-tabs{border-top-style:solid;border-top-width:1px;flex-direction:column;width:100%}.woocommerce-tabs,.woocommerce-tabs .wc-tabs{border-bottom-style:solid;border-bottom-width:1px;display:flex}.woocommerce-tabs .wc-tabs{flex-wrap:wrap;list-style-type:none;margin:0;padding:0}.woocommerce-tabs .wc-tabs li{padding:15px 30px}.woocommerce-tabs .wc-tabs .active{font-weight:700}.woocommerce-tabs .panel{flex:1;padding:30px}.woocommerce-tabs .panel th{text-align:inherit}#reviews .comment-reply-title{display:block;font-size:1.3em;font-weight:700;margin-bottom:20px}#reviews .avatar{border-radius:48px;height:48px;margin-right:30px;width:48px}#reviews .commentlist{list-style-type:none;margin:0;padding:0}#reviews .commentlist li{margin-bottom:30px}#reviews .comment_container{display:flex}#reviews .comment-text{flex:1;position:relative}#reviews .comment-text .star-rating{position:absolute}#reviews .meta .woocommerce-review__author{display:block;line-height:1;margin-bottom:5px}#reviews .meta .woocommerce-review__dash{display:none}#reviews .meta .woocommerce-review__published-date{color:var(--bricks-text-light);font-size:.9em}#reviews .description{border-bottom-style:solid;border-bottom-width:1px;margin-top:15px;padding-bottom:30px}#reviews #review_form_wrapper{margin-top:30px}#reviews form label{color:currentcolor;font-weight:700}#reviews form .required{opacity:.5}#reviews form .stars.selected a.active:before,#reviews form .stars.selected a:not(.active):before{color:var(--bricks-text-medium)}#reviews form .stars.selected a.active~a:before{color:#d5d6d7}#reviews form .stars a{display:inline-block;height:15px;line-height:1;position:relative;text-decoration:none;text-indent:-999em;width:15px}#reviews form .stars a:before{color:#d5d6d7;content:"";font-family:WooCommerce;left:0;position:absolute;text-indent:0;top:0}#reviews form .comment-form-comment{margin:15px 0}#reviews form .comment-form-comment label{margin:0 0 10px}.woocommerce-product-rating{align-items:center;display:flex;line-height:1}.woocommerce-product-rating .star-rating{margin-right:5px}.star-rating{color:#d5d6d7;font-family:WooCommerce;font-size:15px;height:15px;line-height:1;overflow:hidden;position:relative;right:0;top:0;width:75px}.star-rating:before{content:"";position:absolute;right:0;top:0}.star-rating span{left:0;overflow:hidden;padding-top:15px;position:absolute;top:0}.star-rating span:before{color:var(--bricks-text-medium);content:"";left:0;position:absolute;top:0}}:root {--text-2xs: clamp(0.51rem, calc(0.00039952057530962876 * (100vw - 29.88rem) + 0.51rem), 0.53rem);--text-xs: clamp(0.64rem, calc(0.0011985617259288842 * (100vw - 29.88rem) + 0.64rem), 0.7rem);--text-s: clamp(0.8rem, calc(0.002796644027167397 * (100vw - 29.88rem) + 0.8rem), 0.94rem);--text-m: clamp(1rem, calc(0.004994007191370355 * (100vw - 29.88rem) + 1rem), 1.25rem);--text-l: clamp(1.25rem, calc(0.008389932081502195 * (100vw - 29.88rem) + 1.25rem), 1.67rem);--text-xl: clamp(1.56rem, calc(0.01318417898521774 * (100vw - 29.88rem) + 1.56rem), 2.22rem);--text-2xl: clamp(1.95rem, calc(0.020175789053136235 * (100vw - 29.88rem) + 1.95rem), 2.96rem);}html {font-size: 100%}h1,h2,h3,h4,h5,h6, p, ul, ol, li, figure, blockquote {margin: 0;}@layer bricks {:where(.brxe-svg){height:auto;width:auto}:where(.brxe-svg) svg{height:auto;max-width:100%;overflow:visible;width:auto}}@layer bricks {.brxe-icon{font-size:60px}svg.brxe-icon{font-size:inherit}}@layer bricks {.brxe-code{width:100%}}@layer bricks {.brxe-logo{color:currentcolor;font-size:20px;font-weight:600;line-height:1}.brxe-logo img{display:block;height:auto;width:auto}.brxe-logo a{color:currentcolor;display:inline-block}}#brx-header.brx-sticky {transition: all 0.3s;}#brx-header.brx-sticky > .brxe-section,#brx-header.brx-sticky > .brxe-container,#brx-header.brx-sticky > .brxe-block,#brx-header.brx-sticky > .brxe-div {transition: all 0.3s;}#brx-header.brx-sticky .brxe-logo {transition: all 0.3s;}#brx-header.brx-sticky .bricks-nav-menu > li > a {transition: all 0.3s;}#brx-header.brx-sticky .bricks-nav-menu > li > .brx-submenu-toggle > a {transition: all 0.3s;}#brx-header.brx-sticky .bricks-nav-menu > li > .brx-submenu-toggle > button > * {transition: all 0.3s;}#brx-header.brx-sticky .brx-nav-nested-items > li > a {transition: all 0.3s;}#brx-header.brx-sticky .brx-nav-nested-items > li > .brx-submenu-toggle {transition: all 0.3s;}#brx-header.brx-sticky .brx-nav-nested-items > li > .brx-submenu-toggle > * {transition: all 0.3s;}#brx-header.brx-sticky .brxe-nav-nested > .brxe-toggle .brxa-inner {transition: all 0.3s;}#brx-header.brx-sticky .brxe-search {transition: all 0.3s;}#brx-header.brx-sticky .brxe-search button {transition: all 0.3s;}@media (max-width: 767px) {#brxe-bd1133 {width: 16px; height: 16px}}#brxe-ed7ff9 {height: 15px; width: 15px}#brxe-5bf96a {flex-direction: row}#td-header {flex-direction: row; justify-content: space-between; align-items: center}@layer bricks {:where(.brxe-heading).has-separator{align-items:center;display:inline-flex;gap:20px}:where(.brxe-heading)>[contenteditable]{display:inline-block;text-decoration:inherit}:where(.brxe-heading) .separator{border-top:1px solid;flex-grow:1;flex-shrink:0;height:1px}}#brxe-qbiufu {background-color: #000000}@layer bricks {.brxe-breadcrumbs{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;gap:10px}.brxe-breadcrumbs .separator{display:flex}.brxe-breadcrumbs .item:has(>svg,>i){align-items:center;display:flex}}#brxe-42e6d7 {gap: 6px}@layer bricks {.brxe-template{width:100%}}#brxe-jdydud {gap: 0px; margin-right: 0; margin-left: 0; padding-right: 0; padding-left: 0}#brxe-jdydud .title {margin-bottom: 0}@media (max-width: 768px) { .wc-filter-button-group { display: flex; gap: 12px; flex-direction: row; }}#brxe-iyghpc .repeater-item [data-field-id="31f634"] {margin-top: 15px; margin-bottom: 5px}#brxe-iyghpc .products {grid-template-columns: repeat(3, 1fr)}@media (max-width: 767px) {#brxe-iyghpc .products {grid-template-columns: repeat(2, 1fr)}}@media (max-width: 478px) {#brxe-iyghpc .products {grid-template-columns: repeat(1, 1fr)}}@layer bricks {.brxe-code{width:100%}}@layer bricks {.brxe-logo{color:currentcolor;font-size:20px;font-weight:600;line-height:1}.brxe-logo img{display:block;height:auto;width:auto}.brxe-logo a{color:currentcolor;display:inline-block}}.brxe-pnzyac {display: flex}#legals {display: flex; column-gap: 30px}#brxe-47de41 {display: flex; flex-direction: column; justify-content: space-between; row-gap: 30px; height: stretch}#brxe-861c1a {display: flex; justify-content: flex-start; column-gap: 34px}#brxe-d2bbbb {flex-direction: row; align-self: stretch !important; width: 100%; justify-content: space-between}#brxe-81ee34 {align-self: flex-end !important}@layer bricks {:where(.brxe-svg){height:auto;width:auto}:where(.brxe-svg) svg{height:auto;max-width:100%;overflow:visible;width:auto}}@layer bricks {.brxe-code{width:100%}}@layer bricks {.brxe-logo{color:currentcolor;font-size:20px;font-weight:600;line-height:1}.brxe-logo img{display:block;height:auto;width:auto}.brxe-logo a{color:currentcolor;display:inline-block}}@media (max-width: 767px) {#brxe-xokmnv {height: 14px; width: 14px}}@media (max-width: 767px) {#brxe-sbyahh svg {height: 20px; width: 20px}#brxe-sbyahh .mini-cart-link i {font-size: 20px}}@media (max-width: 767px) {#brxe-kibpjk {height: 20px; width: 20px}}@media (max-width: 767px) {#brxe-mgsboo { display: flex; gap: 21px; }}@media (max-width: 767px) {#brxe-whziau { display: flex; flex-direction: column; gap:21px;}}@media (max-width: 767px) {#brxe-odxwfb { position: relative; display: flex; flex-direction: column; justify-content: flex-start; .sub-menu span, .no-sub-menu span { color: var(--Sand, #F2EBDA); text-align: center; font-family: 'Vina Sans'; font-size: 60px; font-style: normal; font-weight: 400; line-height: 40px;  text-transform: uppercase; } .brxe-log img{ width: 85%; height: 16px; } .sub-menu { display: flex; align-items: center; justify-content: space-between; flex-direction: column; width: 100%; .sub-menu-item::after { content:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="14" viewBox="0 0 9 14" fill="none"><path d="M1.06067 12.6459L6.85329 6.85326L1.06067 1.06064" stroke="%23F2EBDA" stroke-width="3"/></svg>'); display: inline-flex; justify-self: center; height: 100%; } } .sub-menu-item{ display: flex; align-items: center; justify-content: space-between; width: 100%; } li:not(:first-child)::before { content:''; display: flex; flex-direction: column; justify-self: center; height: 1.5px; width: 100%; background-color: #F2EBDA; margin-top: 16px; margin-bottom: 14px; } .responsive-menu { position: relative; list-style: none; padding: 0; margin: 0;}.sub-menu-toggle,.sub-menu-item a { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; cursor: pointer; color: inherit;}.arrow-icon { margin-left: auto;}.sub-menu-overlay { display: flex; flex-direction: column; position: absolute; top: 0; left: 0; width: 100%; height: 100dvh; background-color: black; z-index: 9999; overflow-y: auto; transform: translateX(100%); transition: transform 0.3s ease; .sub-menu-title { color: var(--Sand, #F2EBDA); text-align: left; font-family: "Vina Sans"; font-size: 60px; font-style: normal; font-weight: 400; line-height: 60px;  text-transform: uppercase; &::after { content:''; display: flex; flex-direction: column; justify-self: center; height: 1.5px; width: 100%; background-color: #F2EBDA; margin-top: 16px; margin-bottom: 14px; } }}.sub-menu-overlay:not([hidden]) { transform: translate(0, -45px);}.sub-menu-overlay[hidden] { display: none;}.sub-menu-back { display: flex; align-items: center; padding-block: 4px; padding-left: 10px; padding-right: 12px; border: 1px solid #F2EBDA; border-radius: 4px; .back-span { color: #F2EBDA; font-family: "Barlow Condensed"; font-size: 20px; font-style: normal; font-weight: 400; line-height: normal; } .back-arrow { &::before { content: ''; background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="14" viewBox="0 0 10 14" fill="none"><path d="M7.76495 1.03357L2.12061 6.97076L8.05781 12.6151" stroke="%23F2EBDA" stroke-width="3"/></svg>'); height: 10px; width: 15px; display: flex; background-repeat: no-repeat; background-size: contain; } }}.sub-menu-list { list-style: none; padding: 0; margin: 0; overflow-y: auto; height: 100%; ::before { display: none !important; }}.sub-menu-list a { text-align: left; color: var(--Sand, #F2EBDA); font-family: "Vina Sans"; font-size: 30px !important; font-style: normal; font-weight: 400; line-height: 20px !important;  text-transform: uppercase;}}}@media (max-width: 767px) {#brxe-tasdls { overflow: hidden;}}@layer bricks.icons{@font-face{font-family:Ionicons;font-style:normal;font-weight:400;src:url(//threedradio.stagingvps.studioveld.com.au/wp-content/themes/bricks/assets/fonts/ionicons/ionicons.woff2) format("woff2"),url(//threedradio.stagingvps.studioveld.com.au/wp-content/themes/bricks/assets/fonts/ionicons/ionicons.woff) format("woff"),url(//threedradio.stagingvps.studioveld.com.au/wp-content/themes/bricks/assets/fonts/ionicons/ionicons.ttf) format("truetype")}[class*=" ion-"],[class*=" ion-ios-"],[class*=" ion-logo-"],[class*=" ion-md-"],[class^=ion-],[class^=ion-ios-],[class^=ion-logo-],[class^=ion-md-]{speak:never;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font-family:Ionicons;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-rendering:auto;text-transform:none}[class*=" ion-"]:before,[class*=" ion-ios-"]:before,[class*=" ion-logo-"]:before,[class*=" ion-md-"]:before,[class^=ion-]:before,[class^=ion-ios-]:before,[class^=ion-logo-]:before,[class^=ion-md-]:before{font-family:Ionicons}.ion-ios-add:before{content:""}.ion-ios-add-circle:before{content:""}.ion-ios-add-circle-outline:before{content:""}.ion-ios-airplane:before{content:""}.ion-ios-alarm:before{content:""}.ion-ios-albums:before{content:""}.ion-ios-alert:before{content:""}.ion-ios-american-football:before{content:""}.ion-ios-analytics:before{content:""}.ion-ios-aperture:before{content:""}.ion-ios-apps:before{content:""}.ion-ios-appstore:before{content:""}.ion-ios-archive:before{content:""}.ion-ios-arrow-back:before{content:""}.ion-ios-arrow-down:before{content:""}.ion-ios-arrow-dropdown:before{content:""}.ion-ios-arrow-dropdown-circle:before{content:""}.ion-ios-arrow-dropleft:before{content:""}.ion-ios-arrow-dropleft-circle:before{content:""}.ion-ios-arrow-dropright:before{content:""}.ion-ios-arrow-dropright-circle:before{content:""}.ion-ios-arrow-dropup:before{content:""}.ion-ios-arrow-dropup-circle:before{content:""}.ion-ios-arrow-forward:before{content:""}.ion-ios-arrow-round-back:before{content:""}.ion-ios-arrow-round-down:before{content:""}.ion-ios-arrow-round-forward:before{content:""}.ion-ios-arrow-round-up:before{content:""}.ion-ios-arrow-up:before{content:""}.ion-ios-at:before{content:""}.ion-ios-attach:before{content:""}.ion-ios-backspace:before{content:""}.ion-ios-barcode:before{content:""}.ion-ios-baseball:before{content:""}.ion-ios-basket:before{content:""}.ion-ios-basketball:before{content:""}.ion-ios-battery-charging:before{content:""}.ion-ios-battery-dead:before{content:""}.ion-ios-battery-full:before{content:""}.ion-ios-beaker:before{content:""}.ion-ios-bed:before{content:""}.ion-ios-beer:before{content:""}.ion-ios-bicycle:before{content:""}.ion-ios-bluetooth:before{content:""}.ion-ios-boat:before{content:""}.ion-ios-body:before{content:""}.ion-ios-bonfire:before{content:""}.ion-ios-book:before{content:""}.ion-ios-bookmark:before{content:""}.ion-ios-bookmarks:before{content:""}.ion-ios-bowtie:before{content:""}.ion-ios-briefcase:before{content:""}.ion-ios-browsers:before{content:""}.ion-ios-brush:before{content:""}.ion-ios-bug:before{content:""}.ion-ios-build:before{content:""}.ion-ios-bulb:before{content:""}.ion-ios-bus:before{content:""}.ion-ios-business:before{content:""}.ion-ios-cafe:before{content:""}.ion-ios-calculator:before{content:""}.ion-ios-calendar:before{content:""}.ion-ios-call:before{content:""}.ion-ios-camera:before{content:""}.ion-ios-car:before{content:""}.ion-ios-card:before{content:""}.ion-ios-cart:before{content:""}.ion-ios-cash:before{content:""}.ion-ios-cellular:before{content:""}.ion-ios-chatboxes:before{content:""}.ion-ios-chatbubbles:before{content:""}.ion-ios-checkbox:before{content:""}.ion-ios-checkbox-outline:before{content:""}.ion-ios-checkmark:before{content:""}.ion-ios-checkmark-circle:before{content:""}.ion-ios-checkmark-circle-outline:before{content:""}.ion-ios-clipboard:before{content:""}.ion-ios-clock:before{content:""}.ion-ios-close:before{content:""}.ion-ios-close-circle:before{content:""}.ion-ios-close-circle-outline:before{content:""}.ion-ios-cloud:before{content:""}.ion-ios-cloud-circle:before{content:""}.ion-ios-cloud-done:before{content:""}.ion-ios-cloud-download:before{content:""}.ion-ios-cloud-outline:before{content:""}.ion-ios-cloud-upload:before{content:""}.ion-ios-cloudy:before{content:""}.ion-ios-cloudy-night:before{content:""}.ion-ios-code:before{content:""}.ion-ios-code-download:before{content:""}.ion-ios-code-working:before{content:""}.ion-ios-cog:before{content:""}.ion-ios-color-fill:before{content:""}.ion-ios-color-filter:before{content:""}.ion-ios-color-palette:before{content:""}.ion-ios-color-wand:before{content:""}.ion-ios-compass:before{content:""}.ion-ios-construct:before{content:""}.ion-ios-contact:before{content:""}.ion-ios-contacts:before{content:""}.ion-ios-contract:before{content:""}.ion-ios-contrast:before{content:""}.ion-ios-copy:before{content:""}.ion-ios-create:before{content:""}.ion-ios-crop:before{content:""}.ion-ios-cube:before{content:""}.ion-ios-cut:before{content:""}.ion-ios-desktop:before{content:""}.ion-ios-disc:before{content:""}.ion-ios-document:before{content:""}.ion-ios-done-all:before{content:""}.ion-ios-download:before{content:""}.ion-ios-easel:before{content:""}.ion-ios-egg:before{content:""}.ion-ios-exit:before{content:""}.ion-ios-expand:before{content:""}.ion-ios-eye:before{content:""}.ion-ios-eye-off:before{content:""}.ion-ios-fastforward:before{content:""}.ion-ios-female:before{content:""}.ion-ios-filing:before{content:""}.ion-ios-film:before{content:""}.ion-ios-finger-print:before{content:""}.ion-ios-fitness:before{content:""}.ion-ios-flag:before{content:""}.ion-ios-flame:before{content:""}.ion-ios-flash:before{content:""}.ion-ios-flash-off:before{content:""}.ion-ios-flashlight:before{content:""}.ion-ios-flask:before{content:""}.ion-ios-flower:before{content:""}.ion-ios-folder:before{content:""}.ion-ios-folder-open:before{content:""}.ion-ios-football:before{content:""}.ion-ios-funnel:before{content:""}.ion-ios-gift:before{content:""}.ion-ios-git-branch:before{content:""}.ion-ios-git-commit:before{content:""}.ion-ios-git-compare:before{content:""}.ion-ios-git-merge:before{content:""}.ion-ios-git-network:before{content:""}.ion-ios-git-pull-request:before{content:""}.ion-ios-glasses:before{content:""}.ion-ios-globe:before{content:""}.ion-ios-grid:before{content:""}.ion-ios-hammer:before{content:""}.ion-ios-hand:before{content:""}.ion-ios-happy:before{content:""}.ion-ios-headset:before{content:""}.ion-ios-heart:before{content:""}.ion-ios-heart-dislike:before{content:""}.ion-ios-heart-empty:before{content:""}.ion-ios-heart-half:before{content:""}.ion-ios-help:before{content:""}.ion-ios-help-buoy:before{content:""}.ion-ios-help-circle:before{content:""}.ion-ios-help-circle-outline:before{content:""}.ion-ios-home:before{content:""}.ion-ios-hourglass:before{content:""}.ion-ios-ice-cream:before{content:""}.ion-ios-image:before{content:""}.ion-ios-images:before{content:""}.ion-ios-infinite:before{content:""}.ion-ios-information:before{content:""}.ion-ios-information-circle:before{content:""}.ion-ios-information-circle-outline:before{content:""}.ion-ios-jet:before{content:""}.ion-ios-journal:before{content:""}.ion-ios-key:before{content:""}.ion-ios-keypad:before{content:""}.ion-ios-laptop:before{content:""}.ion-ios-leaf:before{content:""}.ion-ios-link:before{content:""}.ion-ios-list:before{content:""}.ion-ios-list-box:before{content:""}.ion-ios-locate:before{content:""}.ion-ios-lock:before{content:""}.ion-ios-log-in:before{content:""}.ion-ios-log-out:before{content:""}.ion-ios-magnet:before{content:""}.ion-ios-mail:before{content:""}.ion-ios-mail-open:before{content:""}.ion-ios-mail-unread:before{content:""}.ion-ios-male:before{content:""}.ion-ios-man:before{content:""}.ion-ios-map:before{content:""}.ion-ios-medal:before{content:""}.ion-ios-medical:before{content:""}.ion-ios-medkit:before{content:""}.ion-ios-megaphone:before{content:""}.ion-ios-menu:before{content:""}.ion-ios-mic:before{content:""}.ion-ios-mic-off:before{content:""}.ion-ios-microphone:before{content:""}.ion-ios-moon:before{content:""}.ion-ios-more:before{content:""}.ion-ios-move:before{content:""}.ion-ios-musical-note:before{content:""}.ion-ios-musical-notes:before{content:""}.ion-ios-navigate:before{content:""}.ion-ios-notifications:before{content:""}.ion-ios-notifications-off:before{content:""}.ion-ios-notifications-outline:before{content:""}.ion-ios-nuclear:before{content:""}.ion-ios-nutrition:before{content:""}.ion-ios-open:before{content:""}.ion-ios-options:before{content:""}.ion-ios-outlet:before{content:""}.ion-ios-paper:before{content:""}.ion-ios-paper-plane:before{content:""}.ion-ios-partly-sunny:before{content:""}.ion-ios-pause:before{content:""}.ion-ios-paw:before{content:""}.ion-ios-people:before{content:""}.ion-ios-person:before{content:""}.ion-ios-person-add:before{content:""}.ion-ios-phone-landscape:before{content:""}.ion-ios-phone-portrait:before{content:""}.ion-ios-photos:before{content:""}.ion-ios-pie:before{content:""}.ion-ios-pin:before{content:""}.ion-ios-pint:before{content:""}.ion-ios-pizza:before{content:""}.ion-ios-planet:before{content:""}.ion-ios-play:before{content:""}.ion-ios-play-circle:before{content:""}.ion-ios-podium:before{content:""}.ion-ios-power:before{content:""}.ion-ios-pricetag:before{content:""}.ion-ios-pricetags:before{content:""}.ion-ios-print:before{content:""}.ion-ios-pulse:before{content:""}.ion-ios-qr-scanner:before{content:""}.ion-ios-quote:before{content:""}.ion-ios-radio:before{content:""}.ion-ios-radio-button-off:before{content:""}.ion-ios-radio-button-on:before{content:""}.ion-ios-rainy:before{content:""}.ion-ios-recording:before{content:""}.ion-ios-redo:before{content:""}.ion-ios-refresh:before{content:""}.ion-ios-refresh-circle:before{content:""}.ion-ios-remove:before{content:""}.ion-ios-remove-circle:before{content:""}.ion-ios-remove-circle-outline:before{content:""}.ion-ios-reorder:before{content:""}.ion-ios-repeat:before{content:""}.ion-ios-resize:before{content:""}.ion-ios-restaurant:before{content:""}.ion-ios-return-left:before{content:""}.ion-ios-return-right:before{content:""}.ion-ios-reverse-camera:before{content:""}.ion-ios-rewind:before{content:""}.ion-ios-ribbon:before{content:""}.ion-ios-rocket:before{content:""}.ion-ios-rose:before{content:""}.ion-ios-sad:before{content:""}.ion-ios-save:before{content:""}.ion-ios-school:before{content:""}.ion-ios-search:before{content:""}.ion-ios-send:before{content:""}.ion-ios-settings:before{content:""}.ion-ios-share:before{content:""}.ion-ios-share-alt:before{content:""}.ion-ios-shirt:before{content:""}.ion-ios-shuffle:before{content:""}.ion-ios-skip-backward:before{content:""}.ion-ios-skip-forward:before{content:""}.ion-ios-snow:before{content:""}.ion-ios-speedometer:before{content:""}.ion-ios-square:before{content:""}.ion-ios-square-outline:before{content:""}.ion-ios-star:before{content:""}.ion-ios-star-half:before{content:""}.ion-ios-star-outline:before{content:""}.ion-ios-stats:before{content:""}.ion-ios-stopwatch:before{content:""}.ion-ios-subway:before{content:""}.ion-ios-sunny:before{content:""}.ion-ios-swap:before{content:""}.ion-ios-switch:before{content:""}.ion-ios-sync:before{content:""}.ion-ios-tablet-landscape:before{content:""}.ion-ios-tablet-portrait:before{content:""}.ion-ios-tennisball:before{content:""}.ion-ios-text:before{content:""}.ion-ios-thermometer:before{content:""}.ion-ios-thumbs-down:before{content:""}.ion-ios-thumbs-up:before{content:""}.ion-ios-thunderstorm:before{content:""}.ion-ios-time:before{content:""}.ion-ios-timer:before{content:""}.ion-ios-today:before{content:""}.ion-ios-train:before{content:""}.ion-ios-transgender:before{content:""}.ion-ios-trash:before{content:""}.ion-ios-trending-down:before{content:""}.ion-ios-trending-up:before{content:""}.ion-ios-trophy:before{content:""}.ion-ios-tv:before{content:""}.ion-ios-umbrella:before{content:""}.ion-ios-undo:before{content:""}.ion-ios-unlock:before{content:""}.ion-ios-videocam:before{content:""}.ion-ios-volume-high:before{content:""}.ion-ios-volume-low:before{content:""}.ion-ios-volume-mute:before{content:""}.ion-ios-volume-off:before{content:""}.ion-ios-walk:before{content:""}.ion-ios-wallet:before{content:""}.ion-ios-warning:before{content:""}.ion-ios-watch:before{content:""}.ion-ios-water:before{content:""}.ion-ios-wifi:before{content:""}.ion-ios-wine:before{content:""}.ion-ios-woman:before{content:""}.ion-logo-android:before{content:""}.ion-logo-angular:before{content:""}.ion-logo-apple:before{content:""}.ion-logo-bitbucket:before{content:""}.ion-logo-bitcoin:before{content:""}.ion-logo-buffer:before{content:""}.ion-logo-chrome:before{content:""}.ion-logo-closed-captioning:before{content:""}.ion-logo-codepen:before{content:""}.ion-logo-css3:before{content:""}.ion-logo-designernews:before{content:""}.ion-logo-dribbble:before{content:""}.ion-logo-dropbox:before{content:""}.ion-logo-euro:before{content:""}.ion-logo-facebook:before{content:""}.ion-logo-flickr:before{content:""}.ion-logo-foursquare:before{content:""}.ion-logo-freebsd-devil:before{content:""}.ion-logo-game-controller-a:before{content:""}.ion-logo-game-controller-b:before{content:""}.ion-logo-github:before{content:""}.ion-logo-google:before{content:""}.ion-logo-googleplus:before{content:""}.ion-logo-hackernews:before{content:""}.ion-logo-html5:before{content:""}.ion-logo-instagram:before{content:""}.ion-logo-ionic:before{content:""}.ion-logo-ionitron:before{content:""}.ion-logo-javascript:before{content:""}.ion-logo-linkedin:before{content:""}.ion-logo-markdown:before{content:""}.ion-logo-model-s:before{content:""}.ion-logo-no-smoking:before{content:""}.ion-logo-nodejs:before{content:""}.ion-logo-npm:before{content:""}.ion-logo-octocat:before{content:""}.ion-logo-pinterest:before{content:""}.ion-logo-playstation:before{content:""}.ion-logo-polymer:before{content:""}.ion-logo-python:before{content:""}.ion-logo-reddit:before{content:""}.ion-logo-rss:before{content:""}.ion-logo-sass:before{content:""}.ion-logo-skype:before{content:""}.ion-logo-slack:before{content:""}.ion-logo-snapchat:before{content:""}.ion-logo-steam:before{content:""}.ion-logo-tumblr:before{content:""}.ion-logo-tux:before{content:""}.ion-logo-twitch:before{content:""}.ion-logo-twitter:before{content:""}.ion-logo-usd:before{content:""}.ion-logo-vimeo:before{content:""}.ion-logo-vk:before{content:""}.ion-logo-whatsapp:before{content:""}.ion-logo-windows:before{content:""}.ion-logo-wordpress:before{content:""}.ion-logo-xbox:before{content:""}.ion-logo-xing:before{content:""}.ion-logo-yahoo:before{content:""}.ion-logo-yen:before{content:""}.ion-logo-youtube:before{content:""}.ion-md-add:before{content:""}.ion-md-add-circle:before{content:""}.ion-md-add-circle-outline:before{content:""}.ion-md-airplane:before{content:""}.ion-md-alarm:before{content:""}.ion-md-albums:before{content:""}.ion-md-alert:before{content:""}.ion-md-american-football:before{content:""}.ion-md-analytics:before{content:""}.ion-md-aperture:before{content:""}.ion-md-apps:before{content:""}.ion-md-appstore:before{content:""}.ion-md-archive:before{content:""}.ion-md-arrow-back:before{content:""}.ion-md-arrow-down:before{content:""}.ion-md-arrow-dropdown:before{content:""}.ion-md-arrow-dropdown-circle:before{content:""}.ion-md-arrow-dropleft:before{content:""}.ion-md-arrow-dropleft-circle:before{content:""}.ion-md-arrow-dropright:before{content:""}.ion-md-arrow-dropright-circle:before{content:""}.ion-md-arrow-dropup:before{content:""}.ion-md-arrow-dropup-circle:before{content:""}.ion-md-arrow-forward:before{content:""}.ion-md-arrow-round-back:before{content:""}.ion-md-arrow-round-down:before{content:""}.ion-md-arrow-round-forward:before{content:""}.ion-md-arrow-round-up:before{content:""}.ion-md-arrow-up:before{content:""}.ion-md-at:before{content:""}.ion-md-attach:before{content:""}.ion-md-backspace:before{content:""}.ion-md-barcode:before{content:""}.ion-md-baseball:before{content:""}.ion-md-basket:before{content:""}.ion-md-basketball:before{content:""}.ion-md-battery-charging:before{content:""}.ion-md-battery-dead:before{content:""}.ion-md-battery-full:before{content:""}.ion-md-beaker:before{content:""}.ion-md-bed:before{content:""}.ion-md-beer:before{content:""}.ion-md-bicycle:before{content:""}.ion-md-bluetooth:before{content:""}.ion-md-boat:before{content:""}.ion-md-body:before{content:""}.ion-md-bonfire:before{content:""}.ion-md-book:before{content:""}.ion-md-bookmark:before{content:""}.ion-md-bookmarks:before{content:""}.ion-md-bowtie:before{content:""}.ion-md-briefcase:before{content:""}.ion-md-browsers:before{content:""}.ion-md-brush:before{content:""}.ion-md-bug:before{content:""}.ion-md-build:before{content:""}.ion-md-bulb:before{content:""}.ion-md-bus:before{content:""}.ion-md-business:before{content:""}.ion-md-cafe:before{content:""}.ion-md-calculator:before{content:""}.ion-md-calendar:before{content:""}.ion-md-call:before{content:""}.ion-md-camera:before{content:""}.ion-md-car:before{content:""}.ion-md-card:before{content:""}.ion-md-cart:before{content:""}.ion-md-cash:before{content:""}.ion-md-cellular:before{content:""}.ion-md-chatboxes:before{content:""}.ion-md-chatbubbles:before{content:""}.ion-md-checkbox:before{content:""}.ion-md-checkbox-outline:before{content:""}.ion-md-checkmark:before{content:""}.ion-md-checkmark-circle:before{content:""}.ion-md-checkmark-circle-outline:before{content:""}.ion-md-clipboard:before{content:""}.ion-md-clock:before{content:""}.ion-md-close:before{content:""}.ion-md-close-circle:before{content:""}.ion-md-close-circle-outline:before{content:""}.ion-md-cloud:before{content:""}.ion-md-cloud-circle:before{content:""}.ion-md-cloud-done:before{content:""}.ion-md-cloud-download:before{content:""}.ion-md-cloud-outline:before{content:""}.ion-md-cloud-upload:before{content:""}.ion-md-cloudy:before{content:""}.ion-md-cloudy-night:before{content:""}.ion-md-code:before{content:""}.ion-md-code-download:before{content:""}.ion-md-code-working:before{content:""}.ion-md-cog:before{content:""}.ion-md-color-fill:before{content:""}.ion-md-color-filter:before{content:""}.ion-md-color-palette:before{content:""}.ion-md-color-wand:before{content:""}.ion-md-compass:before{content:""}.ion-md-construct:before{content:""}.ion-md-contact:before{content:""}.ion-md-contacts:before{content:""}.ion-md-contract:before{content:""}.ion-md-contrast:before{content:""}.ion-md-copy:before{content:""}.ion-md-create:before{content:""}.ion-md-crop:before{content:""}.ion-md-cube:before{content:""}.ion-md-cut:before{content:""}.ion-md-desktop:before{content:""}.ion-md-disc:before{content:""}.ion-md-document:before{content:""}.ion-md-done-all:before{content:""}.ion-md-download:before{content:""}.ion-md-easel:before{content:""}.ion-md-egg:before{content:""}.ion-md-exit:before{content:""}.ion-md-expand:before{content:""}.ion-md-eye:before{content:""}.ion-md-eye-off:before{content:""}.ion-md-fastforward:before{content:""}.ion-md-female:before{content:""}.ion-md-filing:before{content:""}.ion-md-film:before{content:""}.ion-md-finger-print:before{content:""}.ion-md-fitness:before{content:""}.ion-md-flag:before{content:""}.ion-md-flame:before{content:""}.ion-md-flash:before{content:""}.ion-md-flash-off:before{content:""}.ion-md-flashlight:before{content:""}.ion-md-flask:before{content:""}.ion-md-flower:before{content:""}.ion-md-folder:before{content:""}.ion-md-folder-open:before{content:""}.ion-md-football:before{content:""}.ion-md-funnel:before{content:""}.ion-md-gift:before{content:""}.ion-md-git-branch:before{content:""}.ion-md-git-commit:before{content:""}.ion-md-git-compare:before{content:""}.ion-md-git-merge:before{content:""}.ion-md-git-network:before{content:""}.ion-md-git-pull-request:before{content:""}.ion-md-glasses:before{content:""}.ion-md-globe:before{content:""}.ion-md-grid:before{content:""}.ion-md-hammer:before{content:""}.ion-md-hand:before{content:""}.ion-md-happy:before{content:""}.ion-md-headset:before{content:""}.ion-md-heart:before{content:""}.ion-md-heart-dislike:before{content:""}.ion-md-heart-empty:before{content:""}.ion-md-heart-half:before{content:""}.ion-md-help:before{content:""}.ion-md-help-buoy:before{content:""}.ion-md-help-circle:before{content:""}.ion-md-help-circle-outline:before{content:""}.ion-md-home:before{content:""}.ion-md-hourglass:before{content:""}.ion-md-ice-cream:before{content:""}.ion-md-image:before{content:""}.ion-md-images:before{content:""}.ion-md-infinite:before{content:""}.ion-md-information:before{content:""}.ion-md-information-circle:before{content:""}.ion-md-information-circle-outline:before{content:""}.ion-md-jet:before{content:""}.ion-md-journal:before{content:""}.ion-md-key:before{content:""}.ion-md-keypad:before{content:""}.ion-md-laptop:before{content:""}.ion-md-leaf:before{content:""}.ion-md-link:before{content:""}.ion-md-list:before{content:""}.ion-md-list-box:before{content:""}.ion-md-locate:before{content:""}.ion-md-lock:before{content:""}.ion-md-log-in:before{content:""}.ion-md-log-out:before{content:""}.ion-md-magnet:before{content:""}.ion-md-mail:before{content:""}.ion-md-mail-open:before{content:""}.ion-md-mail-unread:before{content:""}.ion-md-male:before{content:""}.ion-md-man:before{content:""}.ion-md-map:before{content:""}.ion-md-medal:before{content:""}.ion-md-medical:before{content:""}.ion-md-medkit:before{content:""}.ion-md-megaphone:before{content:""}.ion-md-menu:before{content:""}.ion-md-mic:before{content:""}.ion-md-mic-off:before{content:""}.ion-md-microphone:before{content:""}.ion-md-moon:before{content:""}.ion-md-more:before{content:""}.ion-md-move:before{content:""}.ion-md-musical-note:before{content:""}.ion-md-musical-notes:before{content:""}.ion-md-navigate:before{content:""}.ion-md-notifications:before{content:""}.ion-md-notifications-off:before{content:""}.ion-md-notifications-outline:before{content:""}.ion-md-nuclear:before{content:""}.ion-md-nutrition:before{content:""}.ion-md-open:before{content:""}.ion-md-options:before{content:""}.ion-md-outlet:before{content:""}.ion-md-paper:before{content:""}.ion-md-paper-plane:before{content:""}.ion-md-partly-sunny:before{content:""}.ion-md-pause:before{content:""}.ion-md-paw:before{content:""}.ion-md-people:before{content:""}.ion-md-person:before{content:""}.ion-md-person-add:before{content:""}.ion-md-phone-landscape:before{content:""}.ion-md-phone-portrait:before{content:""}.ion-md-photos:before{content:""}.ion-md-pie:before{content:""}.ion-md-pin:before{content:""}.ion-md-pint:before{content:""}.ion-md-pizza:before{content:""}.ion-md-planet:before{content:""}.ion-md-play:before{content:""}.ion-md-play-circle:before{content:""}.ion-md-podium:before{content:""}.ion-md-power:before{content:""}.ion-md-pricetag:before{content:""}.ion-md-pricetags:before{content:""}.ion-md-print:before{content:""}.ion-md-pulse:before{content:""}.ion-md-qr-scanner:before{content:""}.ion-md-quote:before{content:""}.ion-md-radio:before{content:""}.ion-md-radio-button-off:before{content:""}.ion-md-radio-button-on:before{content:""}.ion-md-rainy:before{content:""}.ion-md-recording:before{content:""}.ion-md-redo:before{content:""}.ion-md-refresh:before{content:""}.ion-md-refresh-circle:before{content:""}.ion-md-remove:before{content:""}.ion-md-remove-circle:before{content:""}.ion-md-remove-circle-outline:before{content:""}.ion-md-reorder:before{content:""}.ion-md-repeat:before{content:""}.ion-md-resize:before{content:""}.ion-md-restaurant:before{content:""}.ion-md-return-left:before{content:""}.ion-md-return-right:before{content:""}.ion-md-reverse-camera:before{content:""}.ion-md-rewind:before{content:""}.ion-md-ribbon:before{content:""}.ion-md-rocket:before{content:""}.ion-md-rose:before{content:""}.ion-md-sad:before{content:""}.ion-md-save:before{content:""}.ion-md-school:before{content:""}.ion-md-search:before{content:""}.ion-md-send:before{content:""}.ion-md-settings:before{content:""}.ion-md-share:before{content:""}.ion-md-share-alt:before{content:""}.ion-md-shirt:before{content:""}.ion-md-shuffle:before{content:""}.ion-md-skip-backward:before{content:""}.ion-md-skip-forward:before{content:""}.ion-md-snow:before{content:""}.ion-md-speedometer:before{content:""}.ion-md-square:before{content:""}.ion-md-square-outline:before{content:""}.ion-md-star:before{content:""}.ion-md-star-half:before{content:""}.ion-md-star-outline:before{content:""}.ion-md-stats:before{content:""}.ion-md-stopwatch:before{content:""}.ion-md-subway:before{content:""}.ion-md-sunny:before{content:""}.ion-md-swap:before{content:""}.ion-md-switch:before{content:""}.ion-md-sync:before{content:""}.ion-md-tablet-landscape:before{content:""}.ion-md-tablet-portrait:before{content:""}.ion-md-tennisball:before{content:""}.ion-md-text:before{content:""}.ion-md-thermometer:before{content:""}.ion-md-thumbs-down:before{content:""}.ion-md-thumbs-up:before{content:""}.ion-md-thunderstorm:before{content:""}.ion-md-time:before{content:""}.ion-md-timer:before{content:""}.ion-md-today:before{content:""}.ion-md-train:before{content:""}.ion-md-transgender:before{content:""}.ion-md-trash:before{content:""}.ion-md-trending-down:before{content:""}.ion-md-trending-up:before{content:""}.ion-md-trophy:before{content:""}.ion-md-tv:before{content:""}.ion-md-umbrella:before{content:""}.ion-md-undo:before{content:""}.ion-md-unlock:before{content:""}.ion-md-videocam:before{content:""}.ion-md-volume-high:before{content:""}.ion-md-volume-low:before{content:""}.ion-md-volume-mute:before{content:""}.ion-md-volume-off:before{content:""}.ion-md-walk:before{content:""}.ion-md-wallet:before{content:""}.ion-md-warning:before{content:""}.ion-md-watch:before{content:""}.ion-md-water:before{content:""}.ion-md-wifi:before{content:""}.ion-md-wine:before{content:""}.ion-md-woman:before{content:""}}
@font-face{font-family:"FontAwesomePB";src:url(//threedradio.stagingvps.studioveld.com.au/wp-content/plugins/woocommerce-product-bundles/assets/fonts/fa-pb-615.eot);src:url(//threedradio.stagingvps.studioveld.com.au/wp-content/plugins/woocommerce-product-bundles/assets/fonts/fa-pb-615.eot?#iefix) format("embedded-opentype"),url(//threedradio.stagingvps.studioveld.com.au/wp-content/plugins/woocommerce-product-bundles/assets/fonts/fa-pb-615.woff2) format("woff2"),url(//threedradio.stagingvps.studioveld.com.au/wp-content/plugins/woocommerce-product-bundles/assets/fonts/fa-pb-615.woff2) format("woff"),url(//threedradio.stagingvps.studioveld.com.au/wp-content/plugins/woocommerce-product-bundles/assets/fonts/fa-pb-615.ttf) format("truetype"),url(//threedradio.stagingvps.studioveld.com.au/wp-content/plugins/woocommerce-product-bundles/assets/fonts/fa-pb-615.svg#fapbregular) format("svg");font-weight:normal;font-style:normal}table.wc-block-cart-items .wc-block-cart-items__row.is-bundle__hidden,.wc-block-components-order-summary-item.is-bundle__hidden{display:none !important}table.wc-block-cart-items .wc-block-cart-items__row.is-bundle__price_hidden .wc-block-cart-item__prices,table.wc-block-cart-items .wc-block-cart-items__row.is-bundle__price_hidden .wc-block-components-product-badge,.wc-block-components-order-summary-item.is-bundle__price_hidden .wc-block-cart-item__prices,.wc-block-components-order-summary-item.is-bundle__price_hidden .wc-block-components-product-badge{display:none}table.wc-block-cart-items .wc-block-cart-items__row.is-bundle__title_hidden .wc-block-components-product-name,.wc-block-components-order-summary-item.is-bundle__title_hidden .wc-block-components-product-name{display:none}table.wc-block-cart-items .wc-block-cart-items__row.is-bundle__subtotal_hidden .wc-block-cart-item__total-price-and-sale-badge-wrapper,.wc-block-components-order-summary-item.is-bundle__subtotal_hidden .wc-block-cart-item__total-price-and-sale-badge-wrapper{display:none}table.wc-block-cart-items .wc-block-cart-items__row.is-bundle__meta_hidden .wc-block-components-product-details__includes,.wc-block-components-order-summary-item.is-bundle__meta_hidden .wc-block-components-product-details__includes{display:none}table.wc-block-cart-items .wc-block-cart-items__row.is-bundle .wc-block-components-product-details__includes .wc-block-components-product-details__name,.wc-block-components-order-summary-item.is-bundle .wc-block-components-product-details__includes .wc-block-components-product-details__name{display:block;margin-bottom:.5em}table.wc-block-cart-items .wc-block-cart-items__row.is-bundle .wc-block-components-product-details__includes:not(:first-of-type) .wc-block-components-product-details__name,.wc-block-components-order-summary-item.is-bundle .wc-block-components-product-details__includes:not(:first-of-type) .wc-block-components-product-details__name{display:none}table.wc-block-cart-items .wc-block-cart-items__row.is-bundle .wc-block-components-product-details__includes+li:not(.wc-block-components-product-details__includes),.wc-block-components-order-summary-item.is-bundle .wc-block-components-product-details__includes+li:not(.wc-block-components-product-details__includes){margin-top:.5em}table.wc-block-cart-items .wc-block-cart-items__row.is-bundle .wc-block-cart-item__edit,.wc-block-components-order-summary-item.is-bundle .wc-block-cart-item__edit{margin:.75em 0}table.wc-block-cart-items .wc-block-cart-items__row.is-bundle .wc-block-cart-item__edit a,.wc-block-components-order-summary-item.is-bundle .wc-block-cart-item__edit a{text-decoration:underline;color:inherit}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled:not(.is-bundled__removable) .wc-block-cart-item__remove-link,.wc-block-components-order-summary-item.is-bundled:not(.is-bundled__removable) .wc-block-cart-item__remove-link{display:none}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__hidden,.wc-block-components-order-summary-item.is-bundled__hidden{display:none !important}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__description_hidden .wc-block-components-product-metadata__description,.wc-block-components-order-summary-item.is-bundled__description_hidden .wc-block-components-product-metadata__description{display:none}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__subtotal_aggregated .wc-block-components-product-badge,.wc-block-components-order-summary-item.is-bundled__indented.is-bundled__subtotal_aggregated .wc-block-components-product-badge{display:none}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__subtotal_aggregated .wc-block-cart-item__total,.wc-block-components-order-summary-item.is-bundled__indented.is-bundled__subtotal_aggregated .wc-block-cart-item__total{font-size:.875em}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented .wc-block-cart-item__wrap,.wc-block-components-order-summary-item.is-bundled__indented .wc-block-cart-item__wrap{padding-top:66px;font-size:.875em}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented .wc-block-cart-item__wrap .wc-block-components-product-metadata,table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented .wc-block-cart-item__wrap .wc-block-cart-item__remove-link,.wc-block-components-order-summary-item.is-bundled__indented .wc-block-cart-item__wrap .wc-block-components-product-metadata,.wc-block-components-order-summary-item.is-bundled__indented .wc-block-cart-item__wrap .wc-block-cart-item__remove-link{font-size:.8572em}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented td.wc-block-cart-item__image,.wc-block-components-order-summary-item.is-bundled__indented td.wc-block-cart-item__image{position:relative;z-index:1}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented td.wc-block-cart-item__image a,.wc-block-components-order-summary-item.is-bundled__indented td.wc-block-cart-item__image a{height:50px;display:block;width:0px}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented td.wc-block-cart-item__image img,.wc-block-components-order-summary-item.is-bundled__indented td.wc-block-cart-item__image img{position:absolute;left:100%;width:50px}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented td.wc-block-cart-item__image:after,.wc-block-components-order-summary-item.is-bundled__indented td.wc-block-cart-item__image:after{margin-left:100%}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__product:after,.wc-block-components-order-summary-item.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__product:after{margin-left:82px}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__product:after,table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__total:after,.wc-block-components-order-summary-item.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__product:after,.wc-block-components-order-summary-item.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__total:after{opacity:.1}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__subtotal_aggregated .wc-block-cart-item__total .wc-block-components-product-badge,.wc-block-components-order-summary-item.is-bundled__subtotal_aggregated .wc-block-cart-item__total .wc-block-components-product-badge{display:none}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__subtotal_aggregated .wc-block-cart-item__total .wc-block-components-product-price,.wc-block-components-order-summary-item.is-bundled__subtotal_aggregated .wc-block-cart-item__total .wc-block-components-product-price{white-space:nowrap}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__subtotal_aggregated .wc-block-cart-item__total .wc-block-components-product-price :after,.wc-block-components-order-summary-item.is-bundled__subtotal_aggregated .wc-block-cart-item__total .wc-block-components-product-price :after{font-family:"FontAwesomePB";display:inline-block;font-smoothing:antialiased;-ms-transform:rotate(90deg) /*rtl:ignore*/;transform:rotate(90deg) /*rtl:ignore*/;content:"" /*rtl:''*/;margin-left:.75em;opacity:.25}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__price_hidden .wc-block-cart-item__prices,table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__price_hidden .wc-block-components-product-badge,.wc-block-components-order-summary-item.is-bundled__price_hidden .wc-block-cart-item__prices,.wc-block-components-order-summary-item.is-bundled__price_hidden .wc-block-components-product-badge{display:none}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__subtotal_hidden .wc-block-cart-item__total-price-and-sale-badge-wrapper,.wc-block-components-order-summary-item.is-bundled__subtotal_hidden .wc-block-cart-item__total-price-and-sale-badge-wrapper{display:none}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__thumbnail_hidden .wc-block-cart-item__image,.wc-block-components-order-summary-item.is-bundled__thumbnail_hidden .wc-block-cart-item__image{visibility:hidden}table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__subtotal_hidden .wc-block-cart-item__total,.wc-block-components-order-summary-item.is-bundled__subtotal_hidden .wc-block-cart-item__total{visibility:hidden}.is-medium table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented .wc-block-cart-item__wrap,.is-small table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented .wc-block-cart-item__wrap{padding-top:0;padding-left:66px}.is-medium table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited .wc-block-cart-item__wrap,.is-small table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited .wc-block-cart-item__wrap{padding-top:0;padding-left:132px}.is-medium table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__image img,.is-small table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__image img{margin-left:66px}.is-large table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented .wc-block-cart-item__wrap{padding-top:0;padding-left:66px}.is-large table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented td.wc-block-cart-item__image img{margin-left:16px}.is-large table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited .wc-block-cart-item__wrap{padding-top:0;padding-left:132px}.is-large table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented.is-bundled__composited td.wc-block-cart-item__image img{margin-left:82px}.is-large table.wc-block-cart-items .wc-block-cart-items__row.is-bundled td{border-top:0}.is-medium table.wc-block-cart-items .wc-block-cart-items__row.is-bundle:after,.is-medium table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented:not(.is-bundled__last):after,.is-small table.wc-block-cart-items .wc-block-cart-items__row.is-bundle:after,.is-small table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented:not(.is-bundled__last):after,.is-mobile table.wc-block-cart-items .wc-block-cart-items__row.is-bundle:after,.is-mobile table.wc-block-cart-items .wc-block-cart-items__row.is-bundled__indented:not(.is-bundled__last):after{margin-left:80px}