/*
 Theme Name:   Bricks Child
 Theme URI:    https://yourwebsite.com
 Description: Child theme for Bricks Builder
 Author:       Your Name
 Author URI:   https://yourwebsite.com
 Template:     bricks
 Version:      1.1
*/

/* Add your custom CSS below */

 
.custom-products-grid {
    display: grid;
    gap:16px;
    grid-template-columns: repeat(4, 1fr);
}
.custom-products-grid.nyhet-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.custom-products-grid.popular {
    grid-template-columns: repeat(1, 1fr);
}
.custom-products-grid .custom-product-card {
    display: flex;
    flex-direction: column;
    gap:8px;
    padding: 7px;
    border: 1px solid #F6F6F6;
    border-radius: 8px;
    background: #fff;
    height: 100%;
    transition: all 0.2s;
}
.custom-products-grid .custom-product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.custom-products-grid .image-box {
    position: relative;
}
.custom-products-grid .product-tags-discount {
    position: absolute;
    top: 8px;
    left: 8px;
    font-family: "Countach Bold-Italic";
    font-size: 14px;
    font-weight: 700;
    line-height: 0.7em;
    letter-spacing: 1px;
}
.custom-products-grid .product-tag {
    background: #000000;
    color: #fff;
    padding: 6px;
    border-radius: 4px;
}
.custom-products-grid .product-discount {
    padding: 6px;
    border-radius: 4px;
}

.custom-products-grid.kampanj .product-tag{
    background: #890404;
}
.custom-products-grid.popular .product-tag {
    background: #F79E1B;
    color: #880000;
}
.custom-products-grid .wishlist-icon {
    position: absolute;
    top: 5px;
    right: 8px;
}
.custom-products-grid .wishlist-icon .yith-add-to-wishlist-button-block{
    margin: 0;
}
.custom-products-grid .wishlist-icon .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor{
    width: 24px;
    gap: 0;
}
.custom-products-grid .product-image{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #F6F6F6;
    border-radius: 6px;
    overflow: hidden;
    height: 284px;
}
.custom-products-grid .product-image img {
    max-width: 100%;
    max-height: 100%;
}
.custom-products-grid .color-variations {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    position: absolute;
    bottom: 9px;
    right: 10px;
}
.custom-products-grid .color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid transparent;
    /*cursor: pointer;*/
    transition: all 0.2s ease;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
}
.loop-color-dot{cursor: default !important;}
.custom-products-grid .color-dot.active {
    border-color: #999999;
    transform: scale(1.25);
}
.custom-products-grid .details{
    display: flex;
    flex-direction: column;
    gap:4px;
    flex:auto;
}
.custom-products-grid .product-brand {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.custom-products-grid .product-title {
    font-weight: 700;
    word-wrap: break-word;
}
.custom-products-grid .product-title a{
    font-weight: 700;
}
.custom-products-grid .price {
    font-family: "Countach Bold-Italic";
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
    padding: 30px 0 5px;
}
.custom-products-grid .sale-price {
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 0.2px;
    color: #000000;
}
.custom-products-grid .sale-price.has-regular {
    color: #EA0000;
}
.custom-products-grid .regular-price, .archive-product-price.from-price del .woocommerce-Price-amount.amount{
    font-size: 17px;
    line-height: 17px;
    text-decoration: line-through;
    color: #363636;
    font-style: normal;
}
.custom-products-grid .product-slider {
    width: calc(100% + 32px);
    padding:20px 16px 35px;
    margin-left: -16px;
}
.custom-products-grid .product-slider .swiper-pagination{
    justify-content: center;
}
.custom-products-grid .product-slider .swiper-pagination-bullet{
    background: #D9D9D9;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 5px !important;
}
.custom-products-grid .product-slider .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: #000000;
}
.custom-products-grid .product-slider .swiper-button-next, 
.custom-products-grid .product-slider .swiper-button-prev{
    width:40px;
    height: 40px;    
    background: #000000;
    color: #ffffff;
    border-radius: 4px;
}
.custom-products-grid .product-slider .swiper-button-next{
    right:0;
}
.custom-products-grid .product-slider .swiper-button-prev{
    left:0;
}
.custom-products-grid .product-slider .swiper-button-next:after, 
.custom-products-grid .product-slider .swiper-button-prev:after{
    font-size: 12px;
}

@media (min-width: 992px) and (max-width: 1199px) {
.custom-products-grid .product-image {
height: 260px;
}
}
@media(max-width:1199px){
.custom-products-grid .sale-price {
    font-size: 28px;
    line-height: 28px;
}
}
@media(max-width:991px){
.custom-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media(max-width:767px){
.custom-products-grid .product-image {   
    height: 190px;
}
.custom-products-grid .product-tag {    
    padding: 4px;    
}
.custom-products-grid .product-discount {
    padding: 4px;
}
.custom-products-grid .price {
    gap: 8px;
    padding-top: 20px;
}
.custom-products-grid .sale-price, .archive-product-price .woocommerce-Price-amount.amount {
    font-size: 24px;
    line-height: 24px;
}
}

.search-result-item__price del{opacity: 1 !important;}
.search-result-item__price:has(del) {
    color: #363636; /* keep default for normal */
    
}

.search-result-item__price:has(del) del + * {
    color: #ff3f42; /* your new price color */
    font-weight: 600;
}


#brxe-sfoupq li.menu-item-has-children i.ion-ios-arrow-forward {
    position: absolute;
    height: 47px;
    min-width: 100%;
    justify-content: flex-end;
    display: flex;
    padding-right: 19px;
    left: 0;
}

#brxe-sfoupq li.menu-item-has-children > a {
    pointer-events: none;
}


#brxe-sfoupq li.bu-slide-menu-item:not(.bu-slide-menu-item-has-children) > i.ion-ios-arrow-forward {
    display: none;
}

.brxe-bu-sliding-menu .bu-slide-menu-el, .brxe-bu-sliding-menu .bu-slide-menu-sub-menu {
    transition: transform .2s ease-in-out;
}

/*
@media only screen and (max-width: 991px) {

    #brxe-sfoupq.brxe-nav-nested > ul {
        opacity: 100% !important;
        transform: translateX(100%);
        transition: transform 0.3s ease, opacity 0.3s ease;
        visibility: visible;
        pointer-events: none;
        animation: none !important;
    }

    #brxe-sfoupq.brxe-nav-nested.brx-open > ul {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        animation: none !important;
    }
    #brxe-sfoupq.brxe-nav-nested.brx-closing {
        visibility: visible !important;
        opacity: 100% !important;
    }
}

*/

@layer bricks {
  /* Closed state — off-screen */
  #brxe-sfoupq.brxe-nav-nested > ul {
    opacity: 1 !important;
    visibility: visible;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
    animation: none !important;
  }

  /* Open state — slides in */
  #brxe-sfoupq.brxe-nav-nested.brx-open > ul {
    transform: translateX(0);
    pointer-events: all;
    animation: none !important;
  }

  /* Closing state — slide back out, override Bricks' opacity:0/visibility:hidden */
  #brxe-sfoupq.brxe-nav-nested.brx-closing .brx-nav-nested-items {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(100%) !important;
  }
}


#brxe-sfoupq.brxe-nav-nested .sub-menu .menu-item a {
    font-weight: 500;
}

#brxe-sfoupq.brxe-nav-nested .menu-item a {
    font-weight: 700;
}

.brxe-bu-sliding-menu .bu-slide-menu-back-arrow {
    border: none;
}

.see-all-link a {
    text-decoration: underline;
    font-weight: 700 !important;
    padding-bottom: 17px;
    padding-top: 17px;
    border-bottom: 1px solid #ECECEC;
}

.see-all-link a:hover {
    text-decoration: underline;
}

#brxe-mdhfzc, #brxe-chhsit {
    outline: none;
    box-shadow: none;
}

.brxe-bu-sliding-menu li:hover > a span {
    transform: translateX(0);
}

@media only screen and (max-width: 991px) {
    #brxe-kosuow .bu-menu-sub-item-back {
        padding-left: 2px;
    }
    #brxe-kosuow .bu-slide-menu-back-arrow {
        width: 32px;
    }
}

body::before {
  background: #00000047;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  content: '';
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.test::before {
  opacity: 1;
  visibility: visible;
}

header#brx-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 32px);
  background: #00000047;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.test header#brx-header::before {
  /* opacity: 1; */
  /* visibility: visible; */
}

.ywcas-classic-search {
    position: relative;
    transition: z-index 0s 0.3s;
}

.ywcas-classic-search:focus-within,
.ywcas-classic-search:has(.popover-content) {
    z-index: 110;
    transition: z-index 0s;
}

.brxe-dropdown.brx-has-megamenu.open.active > .brx-submenu-toggle span {
    color: #ffffb8;
}

/* Dölj WC-fält som syncas automatiskt från Dintero 
#wfacp_checkout_form #billing_email_field,
*/
#wfacp_checkout_form #billing_first_name_field,
#wfacp_checkout_form #billing_last_name_field,
#wfacp_checkout_form #billing_company_field,
#wfacp_checkout_form #billing_address_1_field,
#wfacp_checkout_form #billing_address_2_field,
#wfacp_checkout_form #billing_postcode_field,
#wfacp_checkout_form #billing_city_field,
#wfacp_checkout_form #billing_country_field,
#wfacp_checkout_form #billing_phone_field,
#wfacp_checkout_form #shipping_first_name_field,
#wfacp_checkout_form #shipping_last_name_field,
#wfacp_checkout_form #shipping_company_field,
#wfacp_checkout_form #shipping_address_1_field,
#wfacp_checkout_form #shipping_address_2_field,
#wfacp_checkout_form #shipping_postcode_field,
#wfacp_checkout_form #shipping_city_field,
#wfacp_checkout_form #shipping_country_field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.brx-has-megamenu .brx-dropdown-content {
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
    border-top-right-radius: 0px !important;
    border-top-left-radius: 0px !important;
}

#brxe-qwdwqz {
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}

.single-post h2 {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Satoshi Bold';
    line-height: 32px;
    letter-spacing: 0px;
}

.woocommerce-checkout-payment.wfacp_anim {
    
}

.brxe-wfacp-form {
    width: 100%;
}

/* Kontakt-kortet som ankare */
.wfacp-section.step_0 {
    position: relative;
}

/* Flytta toggle-länken upp i högra hörnet */
.wfacp-coupon-section .woocommerce-form-login-toggle {
    /* position: absolute; */
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    margin: 0;
}

.woocommerce-form-login-toggle .woocommerce-info {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: inherit;
    font-size: 0.95rem;
}

.woocommerce-form-login-toggle .woocommerce-info::before {
    display: none;
}

.woocommerce-form-login-toggle .showlogin {
    font-weight: 700;
    text-decoration: underline;
}

#brxe-fa484a #wfacp-e-form .wfacp-section, .wfacp-section.wfacp-hg-by-box.step_0.form_section_single_step_0_brick_1 {
    border-radius: 8px !important;
    border: 1px solid #F6F6F6 !important;
    background-color: white;
}
.wfacp-section.wfacp-hg-by-box.step_0.form_section_single_step_0_brick_1 {
    padding: 16px !important;
}

#brxe-fa484a #wfacp-e-form .wfacp_main_form.woocommerce .form-row label.checkbox {
    background-color: white;
}

.wfacp-section.wfacp-hg-by-box.step_0.form_section_single_step_0_brick_1 .wfacp_section_heading.wfacp_section_title {
    float: left;
}

.wfacp-section.wfacp-hg-by-box.step_0.form_section_single_step_0_brick_1 .wfacp-coupon-section {
    clear: unset !important;
}

.wfacp-section.wfacp-hg-by-box.step_0.form_section_single_step_0_brick_1 .woocommerce-form-login-toggle {
    float: right;
}

#brxe-fa484a #wfacp-e-form .wfacp_main_form.woocommerce .wfacp-section .wfacp-comm-title {
    margin-bottom: 0px;
}

.form-row.wfacp-form-control-wrapper.wfacp-col-left-half.lost_password.wfacp-text-align-right {
    width: 100% !important;
}

.form-row.wfacp-form-control-wrapper.wfacp-col-left-half.wfacp-remember-me {
    display: none !important;
}

.wfacp-section.wfacp_payment.form_section_your_order_0_brick_1.wfacp-section-title.wfacp-hg-by-box {
    padding: 0px !important;
}

#brxe-d8105a {
    border: 1px solid #E5E5E4;
}

#brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr:not(.order-total):not(.cart-discount):not(.wfacp-saving-amount) th,
#brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr:not(.order-total):not(.cart-discount):not(.wfacp-saving-amount) td,
#brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr:not(.order-total):not(.cart-discount):not(.wfacp-saving-amount) th span,
#brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr:not(.order-total):not(.cart-discount):not(.wfacp-saving-amount) td span,
#brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr:not(.order-total):not(.cart-discount):not(.wfacp-saving-amount) td bdi,
#brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr.order-total th,
#brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr.order-total td,
#brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr.order-total th span,
#brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr.order-total td span,
#brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr.order-total td strong,
#brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr.order-total td bdi {
    color: var(--UI-UI-Black, #161616);
    font-family: 'Satoshi Medium', Satoshi, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

/* Mellanrum mellan Delsumma och Frakt */
#brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr.cart-subtotal th,
#brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr.cart-subtotal td {
    padding-bottom: 16px;
}

/* Total får H3 Bold 24px */
tr.order-total .woocommerce-Price-amount.amount,.order-total .woocommerce-Price-currencySymbol {
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 28px !important;
}

body #wfob_wrap .wfob_wrapper .bump_skin_type_2 .bwf_display_flex {
    padding: 8px;
}

.order-total .includes_tax {
    display: none !important;
}

#brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr.order-total th,
#brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr.order-total td {
    padding-top: 16px;
}

#brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr.shipping_total_fee td {
    padding-bottom: 16px;
}
.wfob_title {
    font-weight: 500 !important;
    font-family: 'Satoshi Medium' !important;
}

.prodname {
    font-family: 'Satoshi Bold' !important;
    font-weight: bold !important;
    text-transform: capitalize !important;
}

.wfob_text_inner.wfob_skin_description p {
    font-size: 12px !important;
    color: #646464 !important;
        font-weight: 500 !important;
    font-family: 'Satoshi Medium' !important;
}

body:not(.fake-class)  #wfob_wrap .wfob_wrapper .wfob_bump.bump_skin_type_2 .wfob_price_container * {
    line-height: 8px !important;
            font-weight: 500 !important;
    font-family: 'Satoshi Medium' !important;
}

.custom-mobile-heading {
    display: none;
    font-family: 'Satoshi Bold';
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 116.667% */
}

.wfob_price {
    text-align: right !important;
}

@media only screen and (max-width: 990px) {

    /* Tvinga ordersammanfattningen att alltid vara utfälld */
    .wfacp_mb_mini_cart_sec_accordion_content {
        display: block !important;
    }
    
    /* Vänd "ner-pilen" så det visuellt ser ut som en aktiv accordion */
    .wfacp_mb_cart_accordian .wfacp_summary_link img {
        transform: rotate(180deg);
    }

    .wfacp-row.wfacp_coupon_row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    body:not(.fakeclass) #wfacp-e-form .wfacp-coupon-section .wfacp-coupon-page p.wfacp-form-control-wrapper:first-child, #wfacp-e-form .wfacp_mb_mini_cart_sec_accordion_content form.checkout_coupon.woocommerce-form-coupon .form-row-last.wfacp-col-left-half, #wfacp-e-form .wfacp-coupon-section .wfacp-coupon-page p.wfacp-form-control-wrapper:first-child {
        width: 100% !important;
        max-width: 100% !important;
        background-color: transparent;
    }

    #brxe-d8105a {
        display: flex;
        order: 0;
        border: 0px;
        padding-top: 0px;
        flex-direction: column;
        padding-bottom: 0px;
    }
    #brxe-fa484a #wfacp-e-form .wfacp_collapsible_order_summary_wrap {
        display: none;
    }

    #brxe-9b3533 {
        display: flex;
        padding-bottom: 0px !important;
    }

    #brxe-88f078 {
        order: 1;
    }

    .wfacp_order_summary_container {
        background-color: white;
        padding: 16px;
        border-radius: 8px;
        border: 1px solid #F6F6F6;

    }
    .brxe-wfacp-order-summary, #brxe-9b3533 {
        padding-top: 0px;
    }

    .brxe-wfacp-order-summary {
        display: flex;
        flex-direction: column;
    }

    #brxe-9b3533 .wfacp_mini_cart_start_h .wfacp-order-summary-label {
        border-bottom: 0px;
    }

    .custom-mobile-heading {
        display: block;
        margin-bottom: 14px;
    }
    #wfacp_mini_cart_start_h .wfacp-order-summary-label {
        display: none;
    }

    .wfacp_anim.wfacp_order_summary_container.wfacp_min_cart_widget.wfacp_mini_cart_elementor {
        margin-bottom: 32px;
    }

    body.woocommerce-checkout #brxe-ydvdsr.brxe-post-title {
        display: none;
    }

    body.woocommerce-checkout header#brx-header {
        background-color: #FAFAFA;
    }

    #brxe-fa484a #wfacp-e-form .wfacp-form {
        padding-top: 0px;
    }

    .woocommerce-checkout-payment.wfacp_anim {
        display: none;
    }

    #brxe-d8105a {
        background-color: #FAFAFA;
    }
    dl.variation dt,
    dl.variation dd {
        display: inline;
        margin: 0;
    }

    dl.variation dd::after {
        content: "";
        display: block;
    }

    dl.variation dd p {
        display: inline;
        margin: 0;
    }

    .cart_item.wfacp_delete_active {
        display: flex !important;
    }

    td.product-name-area {
        display: flex !important;
    }
    td.product-total {
        display: flex;
        flex-direction: column;
        width: 20% !important;
        padding-left: 0px !important;
        margin-left: 0px !important;
        margin: 0px !important;
        padding: 0px !important;
        max-width: 100%;
        margin-top: 15px !important;
    }

    .wfacp_mini_cart_start_h .wfacp_order_sum tr td:last-child, .cart-item .product-total {
        width: auto !important;
        max-width: 25% !important;
        margin-left: auto !important;
    }

    .wfacp_mini_cart_start_h .wfacp_order_sum tr td:first-child {
        width: 80% !important;
    }

    td.product-total span.woocommerce-Price-amount.amount:not(.fake-class) {
        line-height: 0px !important;
        font-size: 10px !important;
    }
    #brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_items .product-total ins bdi {
        font-size: 12px !important;
        /* red text */
    }

    #brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_items .product-total ins bdi .woocommerce-Price-currencySymbol {
        display: block !important;
    }

    .wfacp-pro-thumb {
        width: 40px !important;
        height: 40px !important;
    }

    .product-name.wfacp_summary_img_true {
        padding-left: 0px !important;
    }
    .wfacp_cart_title_sec {
        padding-right: 0px !important;
    }

    #brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container tr.cart_item td .product-name span:not(.subscription-details) {
        font-size: 13px;
        font-family: "Satoshi Medium";
        font-weight: 500;
    }

    #brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_items .product-total > ins span bdi {
        display: flex !important;
    }


    .wfacp_mini_cart_start_h form.checkout_coupon.woocommerce-form-coupon .wfacp-col-left-half {
        margin-bottom: 7px !important;
    }

    .wfacp_mini_cart_start_h form.checkout_coupon.woocommerce-form-coupon .wfacp-col-left-half {
        padding-right: 0px !important;
    }

    .bwf_display_col_flex.wfob_pro_txt_wrap {
        flex-direction: column !important;
    }

    .bwf_display_col_flex.wfob_add_to_cart_button {
        width: 100% !important;
        text-align: left !important;
        display: flex !important;
    }

    body #wfob_wrap .wfob_wrapper .wfob_bump.wfob_layout_10 .bwf_display_flex .bwf_display_col_flex .bwf_display_col_flex.wfob_add_to_cart_button {
        display: flex !important;
    }

    .wfob_price {
        text-align: left !important;
    }

    #brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr.cart-subtotal th, #brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr.cart-subtotal td, #brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr.order-total th, #brxe-9b3533 .wfacp_mini_cart_start_h .wfacp_order_summary_container table.wfacp_mini_cart_reviews tr.order-total td {
        padding-bottom: 4px !important;
    }


}

.wc_payment_methods.payment_methods.methods.wfacp_method_length_count_one, 
.form-row.place-order, 
.wc_payment_methods.payment_methods.methods {
    display: none;
}

#brxe-9b3533 dl.variation {
    display: block !important;
    font-family: 'Satoshi Medium';
    font-weight: 500;
}

#brxe-9b3533 dl.variation dt,
#brxe-9b3533 dl.variation dd {
    display: inline !important;
    margin: 0 !important;
    font-family: 'Satoshi Medium' !important;
    font-weight: 500 !important;
}

#brxe-9b3533 dl.variation dd {
    margin-left: 8px !important;
    font-family: 'Satoshi Medium' !important;
    font-weight: 500 !important;
}

#brxe-9b3533 dl.variation dd::after {
    content: "" !important;
    display: block !important;
    margin-bottom: 6px !important;
    font-family: 'Satoshi Medium' !important;
    font-weight: 500 !important;
}

#brxe-9b3533 dl.variation dd p {
    display: inline !important;
    margin: 0 !important;
    font-family: 'Satoshi Medium' !important;
    font-weight: 500 !important;
}

#brxe-9b3533 dl.variation dt::before {
    content: none !important;
    display: none !important;
    font-family: 'Satoshi Medium' !important;
    font-weight: 500 !important;
}

.woocommerce-checkout .bwf_display_col_flex.wfob_pro_txt_wrap {
    display: flex !important;
    margin-left: 35px !important;
}

#brxe-9b3533 .wfacp_mini_cart_start_h form.checkout_coupon.woocommerce-form-coupon .wfacp-form-control {
    color: black;
}

/* Bricks: Image Link Block (custom element) */
.brxe-image-link-block {
    position: relative;
    display: flex;
    overflow: hidden;
    isolation: isolate;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
    transition: transform 0.3s ease;
}

.brxe-image-link-block:hover {
    transform: scaleX(1.02) scaleY(1.02);
}

.brxe-image-link-block > img.image-link-block__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.brxe-image-link-block > *:not(img.image-link-block__bg) {
    position: relative;
    z-index: 1;
}

.search-no-results #brxe-967025, .search-no-results #brxe-8c0793 {
    display: none;
}

.search.-results h4.title {
    line-height: 64px;
}

@media only screen and (max-width: 768px) {
    .no-results-found-text {
        font-size: 20px;
    }

    .search.-results h4.title {
        line-height: 24px;
    }
}

#brxe-da7866.rea-active {
    background-image: url('/wp-content/uploads/2026/03/REA-banner-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
  /* Allow grid items to shrink below their content's min-width */
  .brxe-div.brx-grid > * {
    min-width: 0;
  }

  /* Allow long single words (HOCKEYKLUBBOR, HOCKEYHJÄLMAR, etc.) to break */
  .brxe-div.brx-grid :is(h1, h2, h3, h4, h5, h6) {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

.woocommerce-product-gallery__image,
.woocommerce-product-gallery__image > a {
  height: 100% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.woocommerce-product-gallery__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  max-height: 100% !important;
}

#brxe-zjelaj .form-group:not(:last-child):not(.captcha) {
    padding-bottom: 0px;
}

.message {
    margin-bottom: 10px;
}

.brxe-f004eb .archive-product-price, .brxe-f004eb .price {
    gap: 8px;
}

.loop-color-dot.out-of-stock {
    opacity: 100;
}

@media (max-width: 768px) {
 .woocommerce-product-gallery, .woocommerce-product-gallery__wrapper, .woocommerce-product-gallery__image, .woocommerce-product-gallery__image a, .woocommerce-product-gallery .flex-viewport {
    height: auto !important;
    max-height: none !important;
  }
 .woocommerce-product-gallery__image img, .woocommerce-product-gallery img {
    height: auto !important;
    max-height: none !important;
    width: 100% !important;
  }
.woocommerce-product-gallery
    > .flex-viewport
    .woocommerce-product-gallery__image img,
  .woocommerce-product-gallery
    > .woocommerce-product-gallery__wrapper
    .woocommerce-product-gallery__image img {
    padding: 25px;
  }
  /* safety net: make sure thumbs aren't affected */
  .brx-thumbnail-slider-wrapper .woocommerce-product-gallery__image img {
    padding: 0;
  }
}

.woocommerce-product-gallery .flex-viewport {
    max-height: none !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
}
.woocommerce-product-gallery__wrapper,
.woocommerce-product-gallery__image,
.woocommerce-product-gallery__image a {
    height: auto !important;
}
.woocommerce-product-gallery__image img.wp-post-image {
    height: auto !important;
    width: 100% !important;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

.hs-backorder-notice {
    color: #8a5a00;
    background: #fff7e0;
    border-left: 3px solid #e0a800;
    padding: 6px 10px;
    margin-top: 8px;
    font-size: 0.9em;
}

.search-result-item__price span.hs-sale-price {
    display: flex;
    gap: 5px;
    align-items: flex-end;
}

.search-result-item__price span.hs-sale-price del {
    font-size: 17px;
    line-height: 17px;
    text-decoration: line-through;
    color: #363636;
    font-style: normal;
}

.search-result-item__price span.hs-sale-price ins {
    font-size: 24px;
    line-height: 21px;
    letter-spacing: 0.2px;
    text-decoration: none;
    color: #EA0000;
    margin-top: 5px;
}

li#menu-item-37251 {
    color: #EA0000;
}
#brxe-bf6a65 ins {
    color: #EA0000;
}

.wfacp_mini_cart_reviews tr.cart-discount {
  display: table-row;
}
.wfacp_mini_cart_reviews tr.cart-discount th {
  display: table-cell;
  text-align: left;
}
.wfacp_mini_cart_reviews tr.cart-discount td {
  display: table-cell;
  text-align: right;
}

.pwgc-label {
    color: black;
}

body.postid-37695 .brxe-shortcode.size-chart {
    display: none;
}

body.woocommerce-checkout h2.wfacp_section_heading.wfacp_section_title {
    margin-bottom: 20px !important;
}