/** Shopify CDN: Minification failed

Line 579:20 Expected identifier but found "/"
Line 960:2 Unexpected "}"

**/
.quick-add-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    border-radius: 100%;
    font-size: 24px;
    width: 44px;
    height: 44px;
    text-decoration: none;
    position: relative;
    transition: background 0.3s ease;
    z-index: 1000;
}

.quick-add-plus .icon,
.quick-add-plus .loader,
.quick-add-plus .success {
    position: absolute;
}

.quick-add-plus .loader {
    font-size: 18px;
    animation: spin 1s linear infinite;
}

.quick-add-plus .success {
    font-size: 20px;
    color: limegreen;
}

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

.quick-add {
    z-index: 1000 !important;
    width: 47px;
    border-radius: 100px;
    overflow: hidden;
    float: right;
    top: -44px;
    right: 0px;
    margin: 0px 0px -50px 0px !important;
    outline: solid 4px white;
}

.quick-add__submit {
    background: black;
    color: white;
    transition: 0.3s;
}

.quick-add__submit:hover {
    color: white;
    background-color: #E89600;
}

h1, h2, h3, h4, h5, .h0, .h1, .h2, .h3, .h4, .h5 {
    font-family: "helvetica-neue-lt-pro", sans-serif !important;
    font-style: normal;
}

span {
    font-family: "helvetica-neue-lt-pro", sans-serif !important;
    font-style: normal; 
}

div {
    font-family: "helvetica-neue-lt-pro", sans-serif !important;
    font-style: normal; 
}

.card--card{
    border-radius: 3px !important;
    overflow: hidden !important;

}

.slider-button {
    border: black solid 1px !important;
    background: none !important;
    padding: 9px 9px !important;
    cursor: pointer !important;
    z-index: 10 !important;
    border-radius: 100px !important;
    color: black !important;
    margin: 0px 9px 0px 0px !important;
    width: auto !important;
    height: auto !important;
    transition: 0.3s;
}

.slider-button:hover {
    background-color: #37373a !important;
    color: white !important;

}

.slider-buttons {
    justify-content: left !important;
}

.slider-button svg {
    width: 31px !important;
    height: 31px;
}

.product-info {
    display: inline-flex;
    width: 100%;
    align-items: flex-start;
    margin: 10px 0px 0px;
}

.card__heading {
    width: 60%;
}

.card-information {
    width: 40% !important;
    text-align: right !important;
    line-height: 1 !important;
    display: inline-flex ;
    flex-direction: row;
    justify-content: flex-end;
}

.product-sku {
    margin: 0px !important;
    font-family: "helvetica-neue-lt-pro", sans-serif !important;
    font-style: normal !important;
    letter-spacing: 0px !important;
    font-size: 13px !important;
    font-weight: 300 !important;
}

.card__information {
    padding: 0px !important;
}

.card__content {
    padding: 20px !important;
}

.quick-add-small {
    padding: 12px 18px 15px 19px !important;
}

.quick-add-small span {
    font-size: 21px !important;
    font-weight: 400 !important;
    font-family: "helvetica-neue-lt-pro", sans-serif !important;
    font-style: normal !important;
    line-height: 0 !important;
}

.product-price {
    line-height: 1 !important;
    font-family: "helvetica-neue-lt-pro", sans-serif !important;
    font-style: normal !important;
    letter-spacing: 0px !important;
    font-size: 15px !important;
    font-weight: 600 !important;

}

.product-title {
    font-family: "helvetica-neue-lt-pro", sans-serif !important;
    font-style: normal !important;
    letter-spacing: 0px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

@media only screen and (min-width: 601px) {
    :root { --desktop-carousel-gap: max(5rem, calc((100vw - var(--page-width) + 10rem) / 2)); }
}
@media only screen and (max-width: 600px) {
    :root {
        --ratio: 100%;
        --desktop-carousel-gap: max(3rem, calc((100vw - var(--page-width) + 10rem) / 2));
    }
}

.no-scroll { overflow: hidden !important; }

.card-carousel-section .carousel-card {
    position: relative;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding-top: var(--ratio);
    height: var(--card-height);
    scroll-snap-align: start;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
    transition: all .3s cubic-bezier(0,0,.5,1);
        border-radius: 16px;
}

@media only screen and (max-width: 600px) {
    .card-carousel-section .carousel-card {
        flex: 0 0 calc(100% / 1.5);
        border-radius: 15px;
    }
}
@media only screen and (min-width: 601px) and (max-width: 1700px) {
    .card-carousel-section .carousel-card { flex: 0 0 calc(100% / 4); }
}
@media only screen and (min-width: 1701px) {
    .card-carousel-section .carousel-card { flex: 0 0 calc(100% / var(--cards-per-view, 6)); }
}

.card-carousel-section .carousel-card:hover { transform: scale(1.025); z-index: 2; }
.card-carousel-section .carousel-card.first-card { margin-left: var(--desktop-carousel-gap); }
.card-carousel-section .carousel-card.last-card { margin-right: var(--desktop-carousel-gap); }

.card-carousel-section .card-content { position: absolute; inset: 0; display: flex; flex-direction: column; }
.card-carousel-section .header-description-container { display: flex; flex-direction: column; position: absolute; }
.card-carousel-section .header-description-container.top { top: 40px; }
.card-carousel-section .header-description-container.middle { top: 50%; transform: translateY(-50%); }
.card-carousel-section .header-description-container.bottom { bottom: 10%; }
.card-carousel-section .header-description-container.left { left: 10%; right: 15%; text-align: left; }
.card-carousel-section .header-description-container.center { left: 50%; transform: translateX(-50%); text-align: center; }
.card-carousel-section .header-description-container.right { right: 10%; text-align: right; }

.card-carousel-section .card-icon {
    display: inline-block;
    margin-bottom: 15px;
}
.card-carousel-section .card-header {
    margin: 0 !important;
    font-size: calc(var(--font-heading-scale)* 1.8em);
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
}

.card-carousel-section .card-btn {
    position: absolute;
    transform: translate(-50%, -50%);
    text-decoration: none !important;
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
}

.card-carousel-section .card-btn:hover {
    color: white;
}

.card-carousel-section .card-btn span:hover {
    color: white;
    background-color: #37373a;
}

.card-carousel-section .card-btn span {
    line-height: 1.5;
    font-size: 22px;
    padding: 4px 13px 10px 14px;
    transition: 0.3s;
    text-decoration: none !important;
    border: solid 1px;
    border-radius: 100px;
    text-align: center;
}

.card-carousel-section .card-btn.text-light:hover { background: white; color: black !important; border-color: white; }
.card-carousel-section .card-btn.top { top: 40px; }
.card-carousel-section .card-btn.middle { top: 50%; }
.card-carousel-section .card-btn.bottom { bottom: 0%; }
.card-carousel-section .card-btn.left { left: 10%; }
.card-carousel-section .card-btn.center { left: 50%; }
.card-carousel-section .card-btn.right { right: 0%; }

.card-carousel-section.carousel-container { position: relative; overflow: hidden; width: 100%; }
.card-carousel-section .carousel-wrapper {
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
    scroll-padding-left: var(--desktop-carousel-gap); scroll-padding-right: var(--desktop-carousel-gap);
    padding: 20px 0px;
}
.card-carousel-section .carousel-wrapper::-webkit-scrollbar { display: none; }
.card-carousel-section .carousel { display: flex; gap: 16px; width: 100%; }

.card-carousel-section .carousel-button {
    position: absolute; top: 50%; transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7); color: white; border: none;
    padding: 8px 16px; cursor: pointer; z-index: 10;
}
.card-carousel-section .carousel-button.left { left: 0; }
.card-carousel-section .carousel-button.right { right: 0; }

.card-carousel-section .card-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.card-carousel-section .card-overlay { position: absolute; inset: 0; background-color: transparent; z-index: 0; display: block !important; }
.card-carousel-section .carousel-card.overlay-light .card-overlay { background-color: rgba(255, 255, 255, var(--overlay-opacity, 0.3)); }
.card-carousel-section .carousel-card.overlay-dark .card-overlay { background-color: rgba(0, 0, 0, var(--overlay-opacity, 0.8)); }

.card-carousel-section .text-dark { color: #000 !important; }
.card-carousel-section .text-light { color: #fff !important; }

.card-carousel-section .popup-modal {
    display: none; position: fixed; z-index: 999; left: 0; top: 0;
    width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.85);
}
.card-carousel-section .popup-modal-content {
    background-color: #fff; margin: 10% auto; padding: 20px; position: relative; max-width: 600px; border-radius: 8px;
}
.card-carousel-section .popup-modal-close {
    color: #000; font-size: 24px; font-weight: bold; position: absolute; top: 12px; right: 20px; cursor: pointer;
}
.card-carousel-section .popup-text { margin-top: 40px; }

.product-price {
    justify-content: end;
    justify-items: end ;
}

.product-price { display: grid; gap: .125rem; }
.product-price .price-line { display: flex; align-items: baseline; gap: .5rem; }
.product-price .ex-vat {
    margin-top: 3px;
    opacity: .4;
}
.product-price .vat-note { margin-left: .25rem; font-size: .85em; opacity: .75; }
.product-price .sale-price { font-weight: 700; }
.product-price .regular-price { font-weight: 600; }
.product-price [class*="ex-vat"] { font-weight: 500; }

.slider-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.collection__view-all .button {
    background: black;
    border-radius: 4px;
    transition: 0.3s;
}

.collection__view-all .button:hover {
    color: white !important;
    background-color: #E89600 !important;
    border-radius: 4px !important;
    overflow: hidden !important;
}

.card-wrapper:hover {
    text-decoration: none !important;
}

.product-card-wrapper {
    transition: all .3s cubic-bezier(0,0,.5,1);
}

.product-card-wrapper:hover {
    transform: scale(1.01);
    z-index: 2;
}

.text-stack p {
    margin: -4px 0 0 0;
    letter-spacing: 0px;
    font-size: 18px;
    line-height: 1;
}

.text-stack h3 {
    font-size: 28px !important;
    letter-spacing: 0px;
    line-height: 1 !important;
}

.title strong {
    font-weight: 500;
}

.rich-text__heading strong {
        font-weight: 500;
}

.text-stack {
    text-shadow: 0px 0px 21px rgba(0, 0, 0, 1);
}

.slideshow-buttons .banner__buttons .button--primary {
    background: #232323;
    color: white;
}

.banner__buttons.banner__buttons--multiple .button.button--primary {
    background: white;
    color: #232323;
}

.mega-menu__list {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.slideshow-buttons .banner__buttons .button--secondary {
    border: solid 1px !important;
}

.banner__buttons.banner__buttons--multiple .button--secondary {
    border: solid 1px !important;
}

.button {
    border-radius: 4px !important;
}

.slideshow-buttons {
    display: inline-flex;
    gap: 10px;
    margin: 20px 0px 0px;
}

.button {
    font-size: 1.5rem !important;
    font-family: "helvetica-neue-lt-pro", sans-serif !important;
    font-style: normal !important;
}

@media only screen and (min-width: 769px) {
.slideshow__text.banner__box {
    max-width: 400px !important;
}
}

.slider--desktop:after {
    margin-left: calc(0.7 * var(--grid-desktop-horizontal-spacing)) !important;
}

.banner__heading {
    font-size: 40px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
}

.banner__box.content-container {
    max-width: 450px;
}

.product-popup-modal__button {
    text-decoration: none !important;
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.product-popup-modal__opener {
    border-top: 1px solid #d5d5d5;
    border-bottom: 1px solid #d5d5d5;
    width: 100%;
    text-decoration: none;
    margin: -1px 0px 0px !important;
}

@media only screen and (min-width: 1301px) {
.header--middle-left {
    grid-template-columns: 1fr 5fr 1fr !important;
}
}

@media only screen and (max-width: 1300px) and (min-width: 990px)  {
        .header--middle-left {
        grid-template-columns: 2fr 10fr 1fr !important;
    }
}

@media only screen and (min-width: 990px) {
    .header__inline-menu {
        display: flex !important;
        justify-content: center !important;
    }
}

@media only screen and (max-width: 1099px) and (min-width: 990px)  {
.header__menu-item {
    padding: 1rem 2rem !important;
}
}

@media only screen and (min-width: 1100px) {
.header__menu-item {
    padding: 1.2rem 3rem !important;
}
}

.list-menu__item {
    font-family: "helvetica-neue-lt-pro", sans-serif !important;
    font-style: normal !important;
    letter-spacing: 0px !important;
    font-size: 16px !important;
    font-weight: 300 !important;
}

.quantity:after {
    border-radius: 4px !important;
}

.description-preview {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.read-more {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}

@media only screen and (min-width: 769px) {
.collection-hero__inner {
    padding: 30px 5rem 50px !important;
}
}

@media only screen and (min-width: 769px) {
.delivery-msg {
padding: 14px 20px;
    border: solid 1.1px black;
    border-radius: 4px;
    text-align: center;
    margin: 0 10px 0 0 !important;
    line-height: 1.3 !important;
}
}

@media only screen and (max-width: 768px) {
.delivery-msg {
padding: 14px 20px;
    border: solid 1.1px black;
    border-radius: 4px;
    text-align: center;
    margin: 0 !important;
    line-height: 1.3 !important;
}
}

.price .price-item {
    margin: 0px !important;
    text-decoration: none !important;
}

.product-price-now {
        font-size: 26px;
    letter-spacing: 0;
}

.price-item {
    letter-spacing: 0px !important;
}

.price__container {
    width: 100%;
}


.discount-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto; /
}

.product-form__buttons .product-form__submit.button.button--full-width.button--primary {
    background: #000;
    transition: all .2s cubic-bezier(0, 0, .5, 1);
}

.product-form__buttons .product-form__submit.button.button--full-width.button--primary:hover {
     background: #e8941a;
}

.cart__checkout-button button {
  background: #000;
}

.product__title>* {
line-height: 1;
}

  /* Styled box */
  .discount-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem .6rem; 
    padding: 14px 20px;
    background: #e8941a;
    border-radius: 4px;
    text-align: center;
    flex-wrap: wrap;
    letter-spacing: -0.2px;
    font-size: 14px;
    font-weight: bold;
    margin: 20px 0px 0px;
  }


  /* Let the input size to code length on wide screens,
     but shrink or take full line on small screens */
  .discount-copy__input {
    font-size: 14px;
    max-width: 100%;
    min-width: 0;
    width: auto;
  }





.discount-copy__input {
    border: 1px solid #e8941a;
    border-radius: 4px;
    font-family: "helvetica-neue-lt-pro", sans-serif !important;
    font-style: normal; 
    font-size: 14px;
    background: #e8941a;
    color: white;
    font-weight: bold;
}

.discount-copy__btn {
    border: 0;
    padding: 6px 10px;
    cursor: pointer;
    background: #111;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
}
          
.discount-copy__btn:focus-visible {
    outline: 2px solid #111; 
    outline-offset: 2px; 
}

.discount-copy__toast {
    position: absolute;
    left: 50%;
    top: calc(100% + 6px);
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity .25s ease-in-out;
    font-size: .9rem;
    color: #0a7a28;
    pointer-events: none;
}

.cart-remove-button:hover {
    background-color: #a6192e;
    border: #a6192e 1px solid !important;
    color: white !important;
}


.cart-remove-button {
    border: #a6192e 1px solid !important;
    color: #a6192e;
    background: none;
    letter-spacing: 0.06rem;
    margin-left: 10px !important;
    transition: .3s;
}
          
.discount-copy__toast.is-visible { 
    opacity: 1; 
}

.grid__item {
    border-radius: 4px;
    overflow: hidden;
}

.pre-order-badge {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #e8941a;
    color: white;
    padding: 4px 20px;
    border-radius: 44px;
    font-size: 13px;
}

.hide-item {
    display: none !important;
}

.button:not([disabled]):hover:after, .shopify-challenge__button:hover:after, .customer button:hover:after, .shopify-payment-button__button--unbranded:hover:after {
    box-shadow: none !important;
}

.delivery-msg-drawer {
        padding: 11px 10px;
    border: solid 1.1px black;
    border-radius: 4px;
    text-align: center;
    margin: 0 0px 10px 0 !important;
    line-height: 1;
    font-size: 12px;
    letter-spacing: 0;
}

.grid-box .card:hover {
    transform: scale(1.015);
    z-index: 2;
}

.share-btn {
    display: inline-flex; 
padding: 10px 0px 10px 0px;
    text-decoration: none;
        transition: all .2s cubic-bezier(0, 0, .5, 1);
}

.share-btn:hover {
        text-decoration: underline;
        color: black;
}

.share-btn .social-btn {
    color: black;
    text-decoration: none;
    letter-spacing: 0;
    font-size: 1.4rem;
    margin: -3px 0px 0px 0px;
    line-height: 1 !important;
}

.pdf-icon {
    height: 25px;
    margin: 0px 10px 0px 0px;
    
}

.share-button {
    display: inline-flex;
    gap: 40px;
}

.vat-note {
    letter-spacing: 0 !important;
}

.product-pricing .price-line.ex-vat {
    margin-top: -10px;
    opacity: .5;
}

.modal-header {
    font-size: 37px !important;
    margin: 0px 0px 20px 0px !important;
}

@media only screen and (min-width: 769px) {
.product-popup-modal__content {
    padding: 30px 60px 60px !important;
    transform: translate(-50%, -50%) !important;
    height: min-content !important;
    margin: 0px !important;
    top: 50% !important;
}
}

#cart {
    display: block;
}

#delivery {
    display: none;
    }


.cart-item {
        background: #fafafa;
            margin: 0px 0px 10px 0px !important;
    padding: 10px 20px;
}

.cart__checkout-button.button {
    background: black;
    z-index: 1000;
}



  .tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    cursor: help;
    outline: none; /* we’ll style focus below */
  }

  /* The circled “i” */
  .tooltip .info {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1.1rem;
    height: 1.1rem;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 700;
    line-height: 1;
    user-select: none;
  }

  /* Tooltip bubble */
  .tooltip .tooltip-content {
    position: absolute;
    bottom: 100%;
    left: 0;
    transform: translate(-50%) translateY(-8px);
    background: #111;
    color: #fff;
    padding: 13px;
    border-radius: 4px;
    font-size: 11px;
    letter-spacing: 0.1px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s  ease, transform .18s ease;
    z-index: 10;
  }

  /* Little arrow */
  .tooltip .tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 120px;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #111;
  }

  /* Show on hover or focus */
  .tooltip:hover .tooltip-content,
  .tooltip:focus .tooltip-content,
  .tooltip:focus-within .tooltip-content {
    opacity: 1;
    transform: translateX(0%) translateY(0px);
  }

  /* Visible focus ring for keyboard users */
  .tooltip:focus {
    outline: 2px solid #5b9df9;
    outline-offset: 3px;
    border-radius: .3rem;
  }

  .discount-copy-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem .6rem;
    padding: 14px 20px;
    background: #fff;
    border-radius: 4px;
    text-align: center;
    flex-wrap: wrap;
    letter-spacing: -.2px;
    font-size: 14px;
    font-weight: 700;
    margin: 0px 0 10px;
    border: black solid 1px;
  }

  .discount-copy__input-footer {
    border: 1px solid white;
    border-radius: 4px;
    font-family: helvetica-neue-lt-pro, sans-serif !important;
    font-style: normal;
    font-size: 14px;
    background: white;
    font-weight: 700;
    color: #e8941a;
  }


  .modal { display: none; }
  .modal.is-open { display: flex; }
  body.modal-open { overflow: hidden; }

@media only screen and (max-width: 768px) {
#card-grid-template--26260734738806__card_grid_4NJkpt .grid-box {
    gap: 15px !important;
}
}

  .toggle-btn {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
    transition: transform .15s ease, box-shadow .15s ease;
    margin-top: 1rem;
    padding: 0px;
    text-decoration: none;
    font-weight: 500;
    font-family: helvetica-neue-lt-pro, sans-serif !important;
    font-style: normal;
  }

  .toggle-btn:hover { 
        color: #e8941a;
  }

  .toggle-btn:active { 
    transform: translateY(1px); 
}

  .fade-hint {
    display: block !important;
    height: 40px;
    margin-top: -32px;
    background: linear-gradient(to bottom, #fafafa9c, #fafafa);
    z-index: 1 !important;
    position: relative;
  }

    /* Only show 20 words on mobile */
  .desc-mobile { display: inline; }
  .desc-desktop { display: none; }

  @media (min-width: 768px) {
    /* Show 70 words on desktop */
    .desc-mobile { display: none; }
    .desc-desktop { display: inline; }
  }

.more {
    position: relative;
    z-index: 2;
}

  }
  .more[hidden] + .fade-hint { display: block; }

@media only screen and (min-width: 601px) and (max-width: 1200px) {
#Slider-template--26260734738806__slideshow_m6qAwa {
   height: 45rem !important;
}
}

@media only screen and (min-width: 1201px)  {
#Slider-template--26260734738806__slideshow_m6qAwa {
   height: 60rem !important;
}
}

#card-carousel-sections--26260734443894__card_slider_GCVpeA {
    background: #fafafa;
}

@media only screen and (min-width: 550px) {
#jq-brochure-download div, #jq-quote-request div, #dropship-signup div{
    width: calc(50% - 25px);
    display: inline-block;
    margin: 5px 10px;
}
}

@media only screen and (max-width: 549px) {
#jq-brochure-download div, #jq-quote-request div, #dropship-signup div {
  width: calc(100% - 20px);
  display: inline-block;
  margin: 5px auto;
}
}


#jq-brochure-download div label, #jq-quote-request div label, #dropship-signup div label {
width: 100%;
  display: block;
    text-align: left;
}

#jq-brochure-download div input, #jq-brochure-download div textarea, #jq-brochure-download div select, #jq-quote-request div input, #jq-quote-request div textarea, #jq-quote-request div select, #dropship-signup div input, #dropship-signup div textarea,#dropship-signup div select  {
width: 100%;
  display: block;
  text-align: left;
}

#jq-brochure-download, #jq-quote-request, #dropship-signup  {
  text-align: center;
}

.card-description {
    line-height: 1.5 !important;
}

.section-btn:hover {
    background: #e8941a
}

.section-btn {
    transition: all .2s cubic-bezier(0, 0, .5, 1);
}


.action-bottom {
  width: 100% !important;
}

.action-bottom .note {
  margin: 0 10px;
}

.captcha-block {
  display: inline-flex !important; 
      width: 100% !important; 
}

.subscribe-block {
  display: inline-flex !important; 
  width: 100% !important;
  justify-content: center;
  align-items: center;
  max-width: 300px;
}

.subscribe-block .checkbox {
    height: 20px;
    width: 25% !important;
}

.request-btn {
        background: black;
    padding: 16px 70px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.5rem;
    font-family: "helvetica-neue-lt-pro", sans-serif !important;
    font-style: normal;
    max-width: 300px;
    text-align: center !important;
    margin: auto;
    transition: all .2s cubic-bezier(0, 0, .5, 1);
}

.request-btn:hover {
    background: #e8941a;
    border: #e8941a;
    text-align: center !important;
}

.info-banner {
    width: 100%;
    text-align: center;
    color: #e8941a;
}

.brochure-title {
    text-align: center;
}

.form-input {
    padding: 9px 16px;
}

.card__heading.h2 {
    font-size: 26px !important;
    letter-spacing: 0px;
    line-height: 1 !important;
}

.article-card__excerpt.rte-width {
    line-height: 1.5 !important;
}

@media only screen and (min-width: 550px) {
.footer-logo {
    width: 100%;
    height: 40px;
    object-fit: contain;
    margin: auto;
}
}

@media only screen and (max-width: 549px) {
.footer-logo {
        width: 240px;
    height: 40px;
    object-fit: contain;
    margin: 0px 0px 0px 36px;
}
}

.footer-block__heading {
    letter-spacing: 0px !important;
}

.footer {
    border: none !important;
}
@media only screen and (min-width: 550px) {
  .spicers-contact .wrap { 
    max-width: 860px; 
    margin: 0 auto; 
}
}

@media only screen and (max-width: 549px) {
  .spicers-contact .wrap { 
    max-width: 860px; 
    margin: 0 auto; 
    padding: 0px 20px;
}
}
  .spicers-contact .title { margin: 0 0 .5rem; letter-spacing: -0.01em; }
  .spicers-contact .lead { margin: 0 0 1.25rem; opacity: .8; }
  .field-custom { margin-bottom: 1rem; }
  .field-custom label { display:block; font-weight:600; margin-bottom:.4rem; }
  .field-custom input, .field select, .field textarea { 
    width: 100%;
    padding: .8rem 1rem;
    border: black 1px solid;
    border-radius: 4px;
    background: #fff;
    color: #000;
 }
  .field-custom input:focus, .field select:focus, .field textarea:focus { outline: none; box-shadow: 0 0 0 .25rem rgba(100,150,255,.25); }
  .form-btn { 
    appearance: none;
    border: none;
    border-radius: 4px;
    padding: 15px 60px;
    font-weight: 700;
    cursor: pointer;
    background: black;
    color: white;
    margin: auto;
    display: block;
 }

 .textarea-form {
    width: 100%;
    border: solid 1px black;
    border-radius: 4px;
}

.dropdown-form {
width: 100%;
    padding: 11px;
    border-radius: 4px;
    border: solid 1px black;
}

  .btn:hover { filter: brightness(1.05); }
  .alert { padding:.75rem 1rem; border-radius:.625rem; font-weight:600; margin: 0 0 1rem; }
  .success { background:#ecfdf5; border:1px solid #a7f3d0; color:#065f46; }
  .errors { display:grid; gap:.5rem; margin: 0 0 1rem; }
  .hp { position:absolute; left:-5000px; }


  @media only screen and (max-width: 549px) {
.blog-slider-btn {
padding: 0px 0px 20px 20px;
}
  }

@media only screen and (max-width: 549px) {
.price-per-item__container .quantity {
    width: 100% !important;
}
}

.header__active-menu-item {
    text-decoration: none !important;
}