<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@tailwin base;

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.top-0 {
    top: 0
}

.top-6 {
    top: 1.5rem
}

.top-8 {
    top: 2rem
}

.right-6 {
    right: 1.5rem
}

.left-0 {
    left: 0
}

.col-span-2 {
    grid-column: span 2/span 2
}

.col-start-1 {
    grid-column-start: 1
}

.row-start-1 {
    grid-row-start: 1
}

.float-right {
    float: right
}

.float-left {
    float: left
}

.m-0 {
    margin: 0
}

.m-auto {
    margin: auto
}

.mx-0 {
    margin-left: 0;
    margin-right: 0
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.my-0 {
    margin-bottom: 0;
    margin-top: 0
}

.my-4 {
    margin-bottom: 1rem;
    margin-top: 1rem
}

.my-6 {
    margin-bottom: 1.5rem;
    margin-top: 1.5rem
}

.my-8 {
    margin-bottom: 2rem;
    margin-top: 2rem
}

.mt-5 {
    margin-top: 1.25rem
}

.mt-8 {
    margin-top: 2rem
}

.mt-16 {
    margin-top: 4rem
}

.mr-2 {
    margin-right: .5rem
}

.mb-0 {
    margin-bottom: 0
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-8 {
    margin-bottom: 2rem
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.inline {
    display: inline
}

.table {
    display: table
}

.grid {
    display: grid
}

.inline-grid {
    display: inline-grid
}

.hidden {
    display: none
}

.h-3 {
    height: .75rem
}

.h-7 {
    height: 1.75rem
}

.h-10 {
    height: 2.5rem
}

.w-7 {
    width: 1.75rem
}

.w-25 {
    width: 6.25rem
}

.w-72 {
    width: 18rem
}

.w-auto {
    width: auto
}

.w-full {
    width: 100%
}

.w-screen {
    width: 100vw
}

.max-w-sm {
    max-width: 24rem
}

.max-w-3xl {
    max-width: 48rem
}

.max-w-6xl {
    max-width: 72rem
}

.max-w-xxs {
    max-width: 18rem
}

.max-w-8xl {
    max-width: 74rem
}

.border-collapse {
    border-collapse: collapse
}

@keyframes spin {
    to {
        transform: rotate(1turn)
    }
}

@keyframes ping {

    75%,
    to {
        opacity: 0;
        transform: scale(2)
    }
}

@keyframes pulse {
    50% {
        opacity: .5
    }
}

@keyframes bounce {

    0%,
    to {
        animation-timing-function: cubic-bezier(.8, 0, 1, 1);
        transform: translateY(-25%)
    }

    50% {
        animation-timing-function: cubic-bezier(0, 0, .2, 1);
        transform: none
    }
}

.cursor-pointer {
    cursor: pointer
}

.resize {
    resize: both
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-cols-left-icon {
    grid-template-columns: 2rem minmax(0, 1fr)
}

.items-center {
    align-items: center
}

.gap-2 {
    gap: .5rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-8 {
    gap: 2rem
}

.gap-x-2 {
    column-gap: .5rem
}

.gap-x-20 {
    column-gap: 5rem
}

.gap-y-8 {
    row-gap: 2rem
}

.self-end {
    align-self: flex-end
}

.rounded-full {
    border-radius: 9999px
}

.border-0 {
    border-width: 0
}

.border-2 {
    border-width: 2px
}

.border {
    border-width: 1px
}

.border-solid {
    border-style: solid
}

.border-baxi-border {
    --tw-border-opacity: 1;
    border-color: rgba(200, 200, 200, var(--tw-border-opacity))
}

.bg-transparent {
    background-color: transparent
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.bg-baxi-shade {
    background-color: #00000033
}

.p-4 {
    padding: 1rem
}

.p-6 {
    padding: 1.5rem
}

.px-0 {
    padding-left: 0;
    padding-right: 0
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.py-4 {
    padding-bottom: 1rem;
    padding-top: 1rem
}

.py-8 {
    padding-bottom: 2rem;
    padding-top: 2rem
}

.py-c3 {
    padding-bottom: .75rem;
    padding-top: .75rem
}

.pt-4 {
    padding-top: 1rem
}

.pt-6 {
    padding-top: 1.5rem
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-cust-p1 {
    font-size: 1.375rem
}

.text-4\.5xl {
    font-size: 2.625rem
}

.font-light {
    font-weight: 300
}

.font-bold {
    font-weight: 700
}

.font-black {
    font-weight: 900
}

.normal-case {
    text-transform: none
}

.text-black {
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity))
}

.text-white {
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.text-baxi-blue-300 {
    --tw-text-opacity: 1;
    color: rgba(36, 54, 110, var(--tw-text-opacity))
}

.text-baxi-blue-600 {
    --tw-text-opacity: 1;
    color: rgba(32, 43, 75, var(--tw-text-opacity))
}

.text-baxi-text-2 {
    --tw-text-opacity: 1;
    color: rgba(127, 126, 126, var(--tw-text-opacity))
}

.text-baxi-border {
    --tw-text-opacity: 1;
    color: rgba(200, 200, 200, var(--tw-text-opacity))
}

.text-baxi-orange {
    --tw-text-opacity: 1;
    color: rgba(223, 126, 50, var(--tw-text-opacity))
}

.underline {
    text-decoration: underline
}

.line-through {
    text-decoration: line-through
}

*,
:after,
:before {
    --tw-shadow: 0 0 #0000;
    --tw-ring-inset: var(--tw-empty,
            /*!*/
            /*!*/
        );
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59, 130, 246, .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000
}

.tw-mx-auto {
    margin-left: auto;
    margin-right: auto
}

body.ecommerce_content .cta a:hover,
body.ecommerce_content .cta button:hover,
body.ecommerce_content .ecommerce__product_comparison .card-item a:active:focus,
body.ecommerce_content .ecommerce__product_comparison .card-item a:focus,
body.ecommerce_content .ecommerce__product_comparison .card-item a:hover,
body.ecommerce_content .ecommerce__product_comparison .card-item button:active:focus,
body.ecommerce_content .ecommerce__product_comparison .card-item button:focus,
body.ecommerce_content .ecommerce__product_comparison .card-item button:hover,
body.ecommerce_content a:focus,
body.ecommerce_content a:hover,
body.ecommerce_content button:active:focus,
body.ecommerce_content button:focus,
body.ecommerce_content button:hover {
    outline: none;
    outline-style: hidden;
    outline-width: 0
}

body.ecommerce_content .wrapper.banner_wide {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    padding-top: 5rem;
    width: 100vw
}

body.ecommerce_content div[id^=react_] .pure-u-1body.ecommerce_content .wrapper.banner_wide {
    width: 100%
}

body.ecommerce_content .bg-baxi-blue h1 {
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity))
}

body.ecommerce_content h2 {
    --tw-text-opacity: 1;
    color: rgba(36, 54, 110, var(--tw-text-opacity));
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.75rem
}

@media (min-width:1280px) {
    body.ecommerce_content h2 {
        font-size: 2.25rem;
        line-height: 2.5rem
    }
}

body.ecommerce_content h3 {
    --tw-text-opacity: 1;
    color: rgba(36, 54, 110, var(--tw-text-opacity));
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    text-transform: uppercase;
    width: 100%
}

@media (min-width:1280px) {
    body.ecommerce_content h3 {
        font-size: 1.5625rem
    }
}

body.ecommerce_content .baxi-footer h3 {
    text-transform: none
}

body.ecommerce_content h4 {
    color: #0a0a0ade;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem
}

body.ecommerce_content .ecommerce__category_promo .card_content h4 {
    --tw-text-opacity: 1;
    color: rgba(65, 65, 65, var(--tw-text-opacity));
    font-weight: 400;
    margin-top: 1rem
}

body.ecommerce_content .card__list {
    column-gap: .5rem;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: auto;
    margin-right: auto;
    max-width: 74rem;
    row-gap: 4rem;
    width: auto
}

@media (min-width:1280px) {
    body.ecommerce_content .card__list {
        column-gap: 0;
        grid-auto-columns: auto;
        grid-auto-columns: max-content;
        grid-auto-flow: column;
        grid-template-columns: none;
        width: min-content
    }
}

body.ecommerce_content .btn {
    --tw-border-opacity: 1;
    border-color: rgba(36, 54, 110, var(--tw-border-opacity))
}

body.ecommerce_content .btn:hover {
    --tw-border-opacity: 1;
    border-color: rgba(70, 99, 185, var(--tw-border-opacity))
}

body.ecommerce_content .btn {
    --tw-bg-opacity: 1;
    background-color: rgba(36, 54, 110, var(--tw-bg-opacity))
}

body.ecommerce_content .btn:hover {
    --tw-bg-opacity: 1;
    background-color: rgba(70, 99, 185, var(--tw-bg-opacity))
}

body.ecommerce_content .btn {
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75rem;
    padding: .75rem 2rem
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper .ecommerce.hero__basico {
    height: 30rem;
    margin-top: 0;
    width: 100vw
}

body.ecommerce_content div[id^=react_] .pure-u-1body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper .ecommerce.hero__basico {
    width: 100%
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper .ecommerce.hero__basico figure:after {
    height: 100%;
    left: 0;
    position: absolute;
    width: 100vw
}

body.ecommerce_content div[id^=react_] .pure-u-1body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper .ecommerce.hero__basico figure:after {
    width: 100%
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper .ecommerce.hero__basico figure:after {
    background: linear-gradient(90deg, rgba(0, 0, 0, .8), hsla(0, 0%, 100%, .5));
    content: "";
    left: 0;
    top: 0
}

.ecommerce_content .ecommerce__plan_promo_card&gt;.text {
    padding-top: .875rem
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper .ecommerce.hero__basico figure {
    --tw-gradient-from: #000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    height: 100%;
    max-height: 30rem;
    width: 100vw
}

body.ecommerce_content div[id^=react_] .pure-u-1body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper .ecommerce.hero__basico figure {
    width: 100%
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper figure.side_image img {
    max-width: 24rem;
    width: 100%
}

@media (min-width:1280px) {
    body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper figure.side_image img {
        max-width: none
    }
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper .ecommerce.hero__basico .text.Brand.Class {
    padding: 8rem 0 !important
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper .ecommerce.hero__basico .text.Brand.Class .hero-calderas-domesticas {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    width: 100%
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper .ecommerce.hero__basico .text.Brand.Class .hero-calderas-domesticas .hero-calderas-domesticas-explanation,
body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper .ecommerce.hero__basico .text.Brand.Class .hero-calderas-domesticas h1 {
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity))
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .hero__basico.ecommerce .text.Brand.Class .btn {
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75rem;
    margin-top: 3.5rem;
    min-width: min-content;
    padding: .75rem 2rem
}

@media (min-width:1280px) {
    body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .ecommerce__plan_promo .container {
        grid-row: span 2/span 2
    }
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .ecommerce__button-container {
    text-align: left
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .ecommerce__category_promo .category_list .ecommerce__category_card figure img {
    height: 4.375rem
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .ecommerce__plan_promo_card .container figure {
    text-align: left
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .ecommerce__plan_steps .container {
    grid-column-start: 1
}

@media (min-width:1280px) {
    body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .ecommerce__plan_steps .container {
        grid-row: span 6/span 6;
        grid-row-start: 1
    }
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .ecommerce__plan_steps .container figure {
    height: 100%;
    text-align: center
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .ecommerce__plan_steps .container figure img {
    height: 100%
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .ecommerce__plan_steps ol {
    counter-reset: my-counter;
    list-style: none;
    padding: 0
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .ecommerce__plan_steps ol li {
    --tw-text-opacity: 1;
    color: rgba(36, 54, 110, var(--tw-text-opacity));
    counter-increment: my-counter;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
    padding-bottom: .75rem;
    padding-left: 4rem;
    padding-top: .75rem;
    position: relative
}

div&gt;div:not(body.page-product:not(.SitecoreIsInPrevieworEdit) .items-caracteristica:nth-child(2)) .ecommerce__plan_steps ol li+li {
    margin-top: 0
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .ecommerce__plan_steps ol li:before {
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    background-color: rgba(36, 54, 110, var(--tw-bg-opacity));
    border-radius: 9999px;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
    content: counter(my-counter);
    font-size: 1.25rem;
    left: 0;
    line-height: 1.75rem;
    padding: .5rem 1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper--fullwidth.bg-baxi-blue:not(.footer) {
    --tw-bg-opacity: 1;
    background-color: rgba(36, 54, 110, var(--tw-bg-opacity))
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper--fullwidth.bg-baxi-blue:not(.footer) h1 {
    font-size: 1.75rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 64rem;
    padding-left: 1rem;
    padding-right: 1rem
}

@media (min-width:768px) {
    body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper--fullwidth.bg-baxi-blue:not(.footer) h1 {
        font-size: 2.8125rem
    }
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper--fullwidth.bg-baxi-blue:not(.footer) p {
    font-size: 1rem;
    font-weight: 100;
    line-height: 1.5rem;
    line-height: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 64rem;
    padding-left: 1rem;
    padding-right: 1rem
}

@media (min-width:768px) {
    body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .wrapper--fullwidth.bg-baxi-blue:not(.footer) p {
        font-size: 1.375rem
    }
}

body.ecommerce_content .ecommerce__category_promo {
    text-align: center
}

body.ecommerce_content .ecommerce__category_promo .category_list {
    width: 100%
}

body.ecommerce_content .ecommerce__category_promo h3 {
    text-transform: none
}

body.ecommerce_content .card__list .title {
    display: block;
    font-size: 1.375rem;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: .5rem;
    text-align: center;
    text-transform: none;
    width: 100%
}

@media (min-width:1280px) {
    body.ecommerce_content .card__list .title {
        font-size: 1.5rem;
        line-height: 2rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
}

body.ecommerce_content .card__list .pre-text.description {
    margin-top: 0
}

.ecommerce__category_card {
    cursor: pointer
}

.ecommerce__category_card:hover {
    --tw-shadow: 0 2px 8px 0 rgba(0, 0, 0, .75);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.card__product .list-items {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0
}

div&gt;div:not(body.page-product:not(.SitecoreIsInPrevieworEdit) .items-caracteristica:nth-child(2)) .card__product .list-items li+li {
    margin-top: 0
}

.card__product .list-items li {
    --tw-border-opacity: 1;
    --tw-text-opacity: 1;
    border: solid rgba(200, 200, 200, var(--tw-border-opacity));
    border-width: 1px 1px 0;
    color: rgba(65, 65, 65, var(--tw-text-opacity));
    margin-bottom: 0;
    margin-top: 0;
    padding: 1rem
}

.card__product.maintenance .list-items li {
    font-size: .875rem;
    line-height: 1.25rem;
    position: relative;
    text-align: center
}

@media (min-width:1280px) {
    .card__product.maintenance .list-items li {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

.card__product.maintenance .list-items li span.description {
    --tw-text-opacity: 1;
    color: rgba(65, 65, 65, var(--tw-text-opacity));
    visibility: visible
}

@media (min-width:1280px) {
    .card__product.maintenance .list-items li span.description {
        pointer-events: none;
        visibility: hidden
    }
}

.card__product.maintenance .list-items li .icon {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    left: 0;
    top: 50%;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@media (min-width:1280px) {
    .card__product.maintenance .list-items li .icon {
        --tw-translate-y: -50%;
        position: absolute
    }
}

.card__product .list-items li:last-child {
    border-bottom-width: 1px
}

.card__product.maintenance .list-items .icon {
    background: url(../images/ICONS/check.png) no-repeat;
    background-position: 50%;
    background-size: contain;
    display: block;
    height: 1.5rem;
    width: 100%
}

.card__product.maintenance .list-items .inactive .icon {
    background: url(../images/ICONS/cross.png) no-repeat;
    background-position: 50%;
    background-size: contain
}

body.ecommerce_content .card__product .btn {
    line-height: 1;
    padding-bottom: .75rem;
    padding-top: .75rem
}

body.ecommerce_content .toggle-switch-container.switch {
    margin-bottom: 2rem
}

.toggle-switch-container .toggle,
.toggle-switch-container.switch .toggle {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.toggle-switch-container .toggle {
    width: 2.25rem
}

.toggle-switch-container input[type=checkbox].toggle-switch:checked+.toggle-item .toggle:before {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-translate-x: 1.25rem;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.toggle-switch-container .toggle-item {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: 100%
}

@media (min-width:1280px) {
    .toggle-switch-container .toggle-item {
        margin-left: 0;
        margin-right: 0
    }
}

.toggle-switch-container.switch .toggle-item .toggle {
    height: 3rem;
    width: 18rem
}

.toggle-switch-container.switch .toggle-item .toggle:before {
    height: 3rem
}

.toggle-switch-container.switch .post-text,
.toggle-switch-container.switch .pre-text {
    font-size: 1rem;
    line-height: 1.5rem;
    line-height: 1
}

body.ecommerce_content .hide-for-mobile {
    display: none
}

@media (min-width:1280px) {
    body.ecommerce_content .hide-for-mobile {
        display: inline-block
    }

    body.ecommerce_content .card-item {
        max-width: 13.75rem
    }
}

body.ecommerce_content .card-item .card__product {
    padding-bottom: 6.75rem
}

body.ecommerce_content .card-item .card__product .bottom-title {
    bottom: 4.5rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    max-width: none;
    position: absolute;
    width: 100%
}

@media (min-width:1280px) {
    body.ecommerce_content .card-item .card__product .bottom-title {
        font-size: 1.5625rem
    }
}

body.ecommerce_content .card-item .card__product .list-items+.sub-text {
    bottom: 4.25rem;
    line-height: 1;
    position: absolute;
    width: 100%
}

body.ecommerce_content .card-item .card__product .button-container {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-translate-x: -50%;
    bottom: 2rem;
    left: 50%;
    position: absolute;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

body.ecommerce_content .card-item .card__product .button-container .btn {
    font-size: 1rem;
    line-height: 1.5rem;
    line-height: 9px;
    min-width: 9rem
}

body.ecommerce_content .card-item .card__product .link {
    bottom: 0;
    position: absolute;
    width: 100%
}

body.ecommerce_content .card-item.hide-for-mobile {
    align-self: flex-end
}

body.ecommerce_content .card__head {
    height: auto;
    overflow: hidden;
    padding-bottom: .5rem;
    position: relative
}

@media (min-width:1280px) {
    body.ecommerce_content .card__head {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }
}

body.ecommerce_content .card__head .toggle-switch-container {
    align-self: flex-end;
    margin-top: 0;
    padding-top: .125rem
}

body.ecommerce_content .card__product .card__head .pre-text.description {
    align-self: flex-end
}

body.ecommerce_content .card__head.with-toggle {
    margin-top: -.625rem
}

body.ecommerce_content .card__head.with-toggle .pre-text.pre-text.description {
    display: none
}

body.ecommerce_content .orig-price {
    --tw-text-opacity: 1;
    color: rgba(223, 126, 50, var(--tw-text-opacity));
    text-decoration: line-through
}

body.ecommerce_content .btn.btn-secondary {
    --tw-border-opacity: 1;
    --tw-text-opacity: 1;
    --tw-shadow: 0 0 #0000;
    background-color: transparent;
    border-color: rgba(223, 126, 50, var(--tw-border-opacity));
    border-width: 2px;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    color: rgba(223, 126, 50, var(--tw-text-opacity));
    font-size: 1.125rem;
    line-height: 1.75rem;
    line-height: 1
}

.promo-section {
    --tw-border-opacity: 1;
    border-color: rgba(200, 200, 200, var(--tw-border-opacity));
    border-width: 4px;
    border: none;
    border-top: 2px solid #c8c8c8
}

body.ecommerce_content .card__product h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem
}

@media (min-width:1280px) {
    body.ecommerce_content .card__product h3 {
        font-size: 1.5rem;
        line-height: 2rem
    }
}

body.ecommerce_content .card__product .post-text.description,
body.ecommerce_content .card__product .pre-text.description,
body.ecommerce_content .link-back,
body.ecommerce_content .promo-code-description span,
body.ecommerce_content ::placeholder {
    --tw-text-opacity: 1;
    color: rgba(65, 65, 65, var(--tw-text-opacity));
    opacity: .8
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .steps-track .track .step-1 {
    --tw-bg-opacity: 1;
    background-color: rgba(36, 54, 110, var(--tw-bg-opacity));
    display: block;
    height: .75rem;
    position: relative;
    width: 33.333333%
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .steps-track .track .step-2 {
    --tw-bg-opacity: 1;
    background-color: rgba(36, 54, 110, var(--tw-bg-opacity));
    display: block;
    height: .75rem;
    position: relative;
    width: 66.666667%
}

body.ecommerce_content:not(.SitecoreIsInPrevieworEdit) .steps-track .track .step-3 {
    --tw-bg-opacity: 1;
    background-color: rgba(36, 54, 110, var(--tw-bg-opacity));
    display: block;
    height: .75rem;
    position: relative;
    width: 100%
}

.card__product {
    display: block;
    overflow: hidden;
    position: relative
}

.card__product .most-sold {
    --tw-bg-opacity: 1;
    background-color: rgba(223, 126, 50, var(--tw-bg-opacity));
    color: #fff;
    display: block;
    font-size: .6875rem;
    height: 1rem;
    text-align: center;
    transform: rotate(-35deg) translate(-2.375rem, -1.675rem);
    width: 10rem
}

@media (max-width:1023px) {
    .card__product .most-sold {
        font-size: .6875rem;
        transform: rotate(-10deg) translate(-2.25rem, -1.375rem)
    }
}

.link-back {
    display: inline-block;
    padding-left: 1rem;
    position: relative
}

body:not(.SitecoreIsInPrevieworEdit).extra-options {
    padding-top: 6rem
}

.total-section {
    border-top: 1px solid
}

.extra-options-select {
    display: none
}

.extra-options-card {
    height: 100%;
    padding-bottom: 8rem
}

.extra-options-card figure {
    height: 13rem;
    overflow: hidden
}

.extra-options-card figure img {
    height: 100%;
    object-fit: cover;
    width: 100%
}

.extra-options-card .price-and-cta {
    bottom: 0;
    position: absolute;
    width: 100%
}

.extra-options-card:hover .extra-options-select {
    display: block
}

.extra-options-card input[type=checkbox]:checked+span {
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    background-color: rgba(36, 54, 110, var(--tw-bg-opacity));
    color: rgba(255, 255, 255, var(--tw-text-opacity));
    display: block
}

.extra-options-card input[type=checkbox]:checked+span:before {
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
    content: "âœ”";
    display: block;
    font-size: 1rem;
    height: 1.75rem;
    line-height: 1.5rem;
    padding: 2px 0;
    text-align: center;
    width: 1.75rem
}

.extra-options-card figure:after {
    background: linear-gradient(90deg, rgba(0, 0, 0, .8), transparent);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.link-back:before {
    background: url(../images/icons/back-arrow.png) no-repeat;
    background-position: 0;
    background-size: contain;
    content: "";
    display: inline-block;
    font-size: .75rem;
    font-weight: 500;
    height: 1rem;
    position: relative;
    width: 3.1825rem
}

.link-back.comparison.absolute {
    position: relative
}

.basket-item .item .delete {
    background: url(../images/ICONS/trashcan.png) no-repeat;
    background-size: contain;
    content: "";
    height: 1rem;
    width: 1rem
}

.info.withImage .img-container img {
    width: 100%
}

.info-text {
    --tw-text-opacity: 1;
    color: rgba(127, 126, 126, var(--tw-text-opacity))
}

.hide-text-on-large .info-text {
    display: block
}

@media (min-width:1280px) {
    .hide-text-on-large .info-text {
        display: none
    }
}

.hide-text-on-small .info-text {
    display: none
}

@media (min-width:1280px) {
    .hide-text-on-small .info-text {
        display: block
    }
}

body.ecommerce_content .field-container textarea {
    margin-bottom: 0;
    margin-top: 0
}

body.ecommerce_content .field-container .input-wrapper input[type=text] {
    height: 3.125rem
}

.data-form {
    border-bottom: 1px solid #d9d9d9
}

.data-form .field-container.custom-droplist .custom-dropdown {
    height: 3.125rem;
    width: 100%
}

.data-form .field-container.custom-droplist .custom-dropdown .custom-droplist--placeholder {
    height: 3.125rem;
    padding-bottom: .75rem;
    padding-top: .75rem
}

.data-form .field-container.custom-droplist .custom-dropdown .custom-droplist--placeholder.selected {
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity))
}

.promo-section .input-container.error input[type=text].promo-code {
    --tw-border-opacity: 1;
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    background-color: rgba(255, 244, 244, var(--tw-bg-opacity));
    border-color: rgba(237, 16, 16, var(--tw-border-opacity));
    color: rgba(237, 16, 16, var(--tw-text-opacity))
}

.promo-section .input-container.error input[type=text].promo-code+.validation.error {
    display: block;
    width: 20rem
}

.promo-section .input-container.error .validation.error {
    --tw-text-opacity: 1;
    color: rgba(237, 16, 16, var(--tw-text-opacity))
}

.promo-section .promo-label {
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-align: center
}

.payments-container .credit-card .adyen-checkout__checkbox__label {
    font-size: .875rem;
    line-height: 1.25rem
}

.data-forms .field-container.checkbox .field-label {
    margin: 0
}

.payment-forms [type=checkbox]+label,
.payment-forms [type=radio]+label {
    margin: auto 0;
    padding: 0
}

body.ecommerce_content .data-container .field-container.checkbox {
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 0
}

body.ecommerce_content .field-container {
    width: 100%
}

body.ecommerce_content .field-container.checkbox input[type=checkbox]:checked+.field-label:before {
    background: url(../images/ICONS/check.png) no-repeat;
    background-position: 50%;
    background-size: contain
}

body.ecommerce_content .thank-you h2.title {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 2rem;
    margin-top: 1.5rem;
    text-align: center
}

@media (min-width:1280px) {
    body.ecommerce_content .thank-you h2.title {
        font-size: 2.625rem;
        line-height: 1;
        margin-top: 0;
        text-align: left
    }
}

body.ecommerce_content .summary-basket {
    max-width: none
}

@media (min-width:768px) {
    body.ecommerce_content .summary-basket {
        width: 100%
    }
}

@media (min-width:1280px) {
    body.ecommerce_content .summary-basket {
        margin-top: 0;
        max-width: 24rem
    }
}

body.ecommerce_content .data-container,
body.ecommerce_content .payments-container {
    max-width: none;
    width: 100%
}

@media (min-width:1280px) {

    body.ecommerce_content .data-container,
    body.ecommerce_content .payments-container {
        max-width: 48rem
    }
}

body.ecommerce_content div[id^=react_] .pure-u-1.w-screen {
    width: 100%
}

body.ecommerce_content .modal-container.pop-up {
    background-color: #00000033
}

body.ecommerce_content .modal-container.pop-up .button-container {
    bottom: auto;
    left: auto;
    position: relative;
    transform: none
}

body.ecommerce_content .modal-container.pop-up p {
    margin-bottom: 0
}

body.ecommerce_content .credit-card #secure-auth-container .adyen-checkout__threeds2__challenge.adyen-checkout__threeds2__challenge--05 .adyen-checkout__iframe--threeDSIframe {
    margin: 0
}

body.ecommerce_content .field-container.dropdown-search .input-wrapper:before {
    background: url(../images/ICONS/search.png) no-repeat;
    background-position: 50%;
    background-size: contain;
    content: "";
    display: block;
    height: 1rem;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem
}

@media (min-width:640px) {
    .sm\:max-w-full {
        max-width: 100%
    }
}

@media (min-width:768px) {
    .md\:mt-8 {
        margin-top: 2rem
    }

    .md\:mb-12 {
        margin-bottom: 3rem
    }

    .md\:inline-block {
        display: inline-block
    }

    .md\:max-w-3xl {
        max-width: 48rem
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (min-width:1280px) {
    .lg\:absolute {
        position: absolute
    }

    .lg\:sticky {
        position: sticky
    }

    .lg\:top-36 {
        top: 9rem
    }

    .lg\:right-0 {
        right: 0
    }

    .lg\:col-span-5 {
        grid-column: span 5/span 5
    }

    .lg\:col-start-2 {
        grid-column-start: 2
    }

    .lg\:row-span-2 {
        grid-row: span 2/span 2
    }

    .lg\:row-span-4 {
        grid-row: span 4/span 4
    }

    .lg\:row-start-1 {
        grid-row-start: 1
    }

    .lg\:row-start-2 {
        grid-row-start: 2
    }

    .lg\:row-start-3 {
        grid-row-start: 3
    }

    .lg\:mt-0 {
        margin-top: 0
    }

    .lg\:ml-0 {
        margin-left: 0
    }

    .lg\:w-72 {
        width: 18rem
    }

    .lg\:max-w-sm {
        max-width: 24rem
    }

    .lg\:max-w-button-xs {
        max-width: 11.25rem
    }

    .lg\:grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }

    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }

    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr))
    }

    .lg\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr))
    }

    .lg\:gap-x-0 {
        column-gap: 0
    }

    .lg\:text-left {
        text-align: left
    }

    .lg\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem
    }
}</pre></body></html>