/*Variables*/

:root {
    /*Variables > Breakpoints*/
    --mobile-breakpoint: 400;
    --desktop-breakpoint: 1180;
    --tablet-size: calc(var(--desktop-breakpoint) - var(--mobile-breakpoint));
    /*END OF :: Variables > Breakpoints*/
    /*Variables > Typography*/
    /*Variables > Typography > Fonts*/
    --heading-font: 'GeneralSans', serif;
    --body-font: 'GeneralSans', serif;
    /*END OF :: Variables > Typography > Fonts*/
    /*Variables > Typography > Headings*/
    --huge-mobile-heading-size: 32;
    --x-large-mobile-heading-size: 26;
    --large-mobile-heading-size: 22;
    --medium-mobile-heading-size: 18;
    --normal-mobile-heading-size: 16;
    --small-mobile-heading-size: 14;
    --huge-desktop-heading-size: 36;
    --x-large-desktop-heading-size: 30;
    --large-desktop-heading-size: 26;
    --medium-desktop-heading-size: 20;
    --normal-desktop-heading-size: 18;
    --small-desktop-heading-size: 16;
    --huge-heading-size-change: calc(var(--huge-desktop-heading-size) - var(--huge-mobile-heading-size));
    --x-large-heading-size-change: calc(var(--x-large-desktop-heading-size) - var(--x-large-mobile-heading-size));
    --large-heading-size-change: calc(var(--large-desktop-heading-size) - var(--large-mobile-heading-size));
    --medium-heading-size-change: calc(var(--medium-desktop-heading-size) - var(--medium-mobile-heading-size));
    --normal-heading-size-change: calc(var(--normal-desktop-heading-size) - var(--normal-mobile-heading-size));
    --small-heading-size-change: calc(var(--small-desktop-heading-size) - var(--small-mobile-heading-size));
    /*END OF :: Variables > Typography > Headings*/
    /*Variables > Typography > Body*/
    --huge-body-dsk: 25;
    --x-lrg-body-dsk: 20;
    --lrg-body-dsk: 18;
    --med-body-dsk: 16;
    --reg-body-dsk: 15;
    --sml-body-dsk: 13;
    --huge-body-mbl: 22;
    --x-lrg-body-mbl: 18;
    --lrg-body-mbl: 17;
    --med-body-mbl: 15;
    --reg-body-mbl: 14;
    --sml-body-mbl: 12;
    --huge-body-size-change: calc(var(--huge-body-dsk) - var( --huge-body-mbl));
    --x-large-body-size-change: calc(var(--x-lrg-body-dsk) - var(--x-lrg-body-mbl));
    --large-body-size-change: calc(var(--lrg-body-dsk) - var(--lrg-body-mbl));
    --medium-body-size-change: calc(var(--med-body-dsk) - var(--med-body-mbl));
    --normal-body-size-change: calc(var(--reg-body-dsk) - var(--reg-body-mbl));
    --small-body-size-change: calc(var(--sml-body-dsk) - var(--sml-body-mbl));
    /*END OF :: Variables > Typography > Body*/
    /*END OF :: Variables > Typography*/
    /*Variables > Colours*/
    --hih-black: 0, 0, 0;
    --hih-white: 255, 255, 255;
    --hih-yellow: 251, 187, 44;
    --hih-gray-900: 51, 51, 51;
    --hih-gray-700: 85, 85, 85;
    --hih-gray-500: 120, 120, 120;
    --hih-gray-300: 157, 157, 156;
    --hih-gray-100: 224, 224, 224;
    /*END OF :: Variables > Colours*/
}

h1,
.huge-title,
h2,
.x-large-title,
h3,
.large-title,
h4,
.medium-title,
h5,
.normal-title,
h6,
.small-title {
    font-style: normal;
    font-weight: 300 !important;
    line-height: 1.3em;
    color: #000;
}

h1,
h2.huge-title,
h3.huge-title,
h4.huge-title,
h5.huge-title,
h6.huge-title,
.huge-title {
    font-size: calc(var(--huge-mobile-heading-size) * 1px);
    margin: 0 0 0.3em;
    line-height: 1.2em;
}

:root {
    --huge-title: calc(var(--huge-mobile-heading-size) * 1px);
}

h1.x-large-title,
h2,
h3.x-large-title,
h4.x-large-title,
h5.x-large-title,
h6.x-large-title,
.x-large-title {
    font-size: calc(var(--x-large-mobile-heading-size) * 1px);
    margin: 0 0 0.4em;
}

:root {
    --x-large-title: calc(var(--x-large-mobile-heading-size) * 1px);
}

h1.large-title,
h2.large-title,
h3,
h4.large-title,
h5.large-title,
h6.large-title,
.large-title {
    font-size: calc(var(--large-mobile-heading-size) * 1px);
    margin: 0 0 0.5em;
}

:root {
    --large-title: calc(var(--large-mobile-heading-size) * 1px);
}

h1.medium-title,
h2.medium-title,
h3.medium-title,
h4,
h5.medium-title,
h6.medium-title,
.medium-title {
    font-size: calc(var(--medium-mobile-heading-size) * 1px);
    margin: 0 0 0.6em;
}

:root {
    --medium-title: calc(var(--medium-mobile-heading-size) * 1px);
}

h1.normal-title,
h2.normal-title,
h3.normal-title,
h4.normal-title,
h5,
h6.normal-title,
.normal-title {
    font-size: calc(var(--normal-mobile-heading-size) * 1px);
    margin: 0 0 0.6em;
}

:root {
    --normal-title: calc(var(--normal-mobile-heading-size) * 1px);
}

h1.small-title,
h2.small-title,
h3.small-title,
h4.small-title,
h5.small-title,
h6,
.small-title {
    font-size: calc(var(--small-mobile-heading-size) * 1px);
    margin: 0 0 0.6em;
}

:root {
    --small-title: calc(var(--small-mobile-heading-size) * 1px);
}

@media screen and (min-width: 400px) {
    h1,
    h2.huge-title,
    h3.huge-title,
    h4.huge-title,
    h5.huge-title,
    h6.huge-title,
    .huge-title {
        font-size: calc((var(--huge-mobile-heading-size) * 1px) + var(--huge-heading-size-change) * ((100vw - (var(--mobile-breakpoint) * 1px)) / var(--tablet-size)));
    }
     :root {
        --huge-title: calc((var(--huge-mobile-heading-size) * 1px) + var(--huge-heading-size-change) * ((100vw - (var(--mobile-breakpoint) * 1px)) / var(--tablet-size)));
    }
    h1.x-large-title,
    h2,
    h3.x-large-title,
    h4.x-large-title,
    h5.x-large-title,
    h6.x-large-title,
    .x-large-title {
        font-size: calc((var(--x-large-mobile-heading-size) * 1px) + var(--x-large-heading-size-change) * ((100vw - (var(--mobile-breakpoint) * 1px)) / var(--tablet-size)));
    }
     :root {
        --x-large-title: calc((var(--x-large-mobile-heading-size) * 1px) + var(--x-large-heading-size-change) * ((100vw - (var(--mobile-breakpoint) * 1px)) / var(--tablet-size)));
    }
    h1.large-title,
    h2.large-title,
    h3,
    h4.large-title,
    h5.large-title,
    h6.large-title,
    .large-title {
        font-size: calc((var(--large-mobile-heading-size) * 1px) + var(--large-heading-size-change) * ((100vw - (var(--mobile-breakpoint) * 1px)) / var(--tablet-size)));
    }
     :root {
        --large-title: calc((var(--large-mobile-heading-size) * 1px) + var(--large-heading-size-change) * ((100vw - (var(--mobile-breakpoint) * 1px)) / var(--tablet-size)));
    }
    h1.medium-title,
    h2.medium-title,
    h3.medium-title,
    h4,
    h5.medium-title,
    h6.medium-title,
    .medium-title {
        font-size: calc((var(--medium-mobile-heading-size) * 1px) + var(--medium-heading-size-change) * ((100vw - (var(--mobile-breakpoint) * 1px)) / var(--tablet-size)));
    }
     :root {
        --medium-title: calc((var(--medium-mobile-heading-size) * 1px) + var(--medium-heading-size-change) * ((100vw - (var(--mobile-breakpoint) * 1px)) / var(--tablet-size)));
    }
    h1.normal-title,
    h2.normal-title,
    h3.normal-title,
    h4.normal-title,
    h5,
    h6.normal-title,
    .normal-title {
        font-size: calc((var(--normal-mobile-heading-size) * 1px) + var(--normal-heading-size-change) * ((100vw - (var(--mobile-breakpoint) * 1px)) / var(--tablet-size)));
    }
     :root {
        --normal-title: calc((var(--normal-mobile-heading-size) * 1px) + var(--normal-heading-size-change) * ((100vw - (var(--mobile-breakpoint) * 1px)) / var(--tablet-size)));
    }
    h1.small-title,
    h2.small-title,
    h3.small-title,
    h4.small-title,
    h5.small-title,
    h6,
    .small-title {
        font-size: calc((var(--small-mobile-heading-size) * 1px) + var(--small-heading-size-change) * ((100vw - (var(--mobile-breakpoint) * 1px)) / var(--tablet-size)));
    }
     :root {
        --small-title: calc((var(--small-mobile-heading-size) * 1px) + var(--small-heading-size-change) * ((100vw - (var(--mobile-breakpoint) * 1px)) / var(--tablet-size)));
    }
}

@media screen and (min-width: 1100px) {
    h1,
    h2.huge-title,
    h3.huge-title,
    h4.huge-title,
    h5.huge-title,
    h6.huge-title,
    .huge-title {
        font-size: calc(var(--huge-desktop-heading-size) * 1px);
    }
     :root {
        --huge-title: calc(var(--huge-desktop-heading-size) * 1px);
    }
    h1.x-large-title,
    h2,
    h3.x-large-title,
    h4.x-large-title,
    h5.x-large-title,
    h6.x-large-title,
    .x-large-title {
        font-size: calc(var(--x-large-desktop-heading-size) * 1px);
    }
     :root {
        --x-large-title: calc(var(--x-large-desktop-heading-size) * 1px);
    }
    h1.large-title,
    h2.large-title,
    h3,
    h4.large-title,
    h5.large-title,
    h6.large-title,
    .large-title {
        font-size: calc(var(--large-desktop-heading-size) * 1px);
    }
     :root {
        --large-title: calc(var(--large-desktop-heading-size) * 1px);
    }
    h1.medium-title,
    h2.medium-title,
    h3.medium-title,
    h4,
    h5.medium-title,
    h6.medium-title,
    .medium-title {
        font-size: calc(var(--medium-desktop-heading-size) * 1px);
    }
     :root {
        --medium-title: calc(var(--medium-desktop-heading-size) * 1px);
    }
    h1.normal-title,
    h2.normal-title,
    h3.normal-title,
    h4.normal-title,
    h5,
    h6.normal-title,
    .normal-title {
        font-size: calc(var(--normal-desktop-heading-size) * 1px);
    }
     :root {
        --normal-title: calc(var(--normal-desktop-heading-size) * 1px);
    }
    h1.small-title,
    h2.small-title,
    h3.small-title,
    h4.small-title,
    h5.small-title,
    h6,
    .small-title {
        font-size: calc(var(--small-desktop-heading-size) * 1px);
    }
     :root {
        --small-title: calc(var(--small-desktop-heading-size) * 1px);
    }
}


/*END OF :: Global > Typography > Headings*/

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body,
button,
input,
textarea {
    color: #43454b;
    font-family: effra, sans-serif;
    font-weight: 300;
    line-height: 1.618;
    text-rendering: optimizeLegibility;
}

p {
    line-height: 1.45;
}

.col-full {
    max-width: 1180px !important;
}

.content-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.support,
.columns-4.products,
.columns-3.products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-around;
}

.row-container,
.columns-4.products,
.columns-3.products {
    height: auto;
    padding: 0px;
    margin: 0 auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    max-width: calc(var(--desktop-breakpoint) * 1px);
}

.row-container .col-1,
.row-container .col-2,
.row-container .col-3,
.row-container .col-4,
.row-container .col-5,
.row-container .col-6,
.row-container .col-7,
.row-container .col-8,
.row-container .col-9,
.row-container .col-10,
.row-container .col-11,
.row-container .col-12,
.columns-4.products .prod_loop_template,
.columns-3.products .prod_loop_template {
    width: 100% !important;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (min-width: 580px) {
    .row-container .prod_loop_template,
    .columns-3.products .prod_loop_template,
    .columns-4.products .prod_loop_template,
    .footer-icon-row .col-3 {
        width: calc(((100% / 12) * 6) - 1rem) !important;
    }
}

@media screen and (min-width: 768px) {
    .row-container .col-1 {
        width: calc(((100% / 12) * 1) - 10px) !important;
    }
    .row-container .col-2 {
        width: calc(((100% / 12) * 2) - 10px) !important;
    }
    .row-container .col-3,
    .columns-4.products .prod_loop_template {
        width: calc(((100% / 12) * 3) - 10px) !important;
    }
    .footer-icon-row .col-3 {
        width: calc(((100% / 12) * 3) - 0px) !important;
    }
    .columns-4.products::after {
        content: '';
        width: calc(((100% / 12) * 3) - 10px) !important;
        display: flex !important;
    }
    .row-container .col-4,
    .columns-3.products .prod_loop_template {
        width: calc(((100% / 12) * 4) - 10px) !important;
    }
    .row-container .col-4.icon-layout-col {
        width: calc(((100% / 12) * 4) - 0px) !important;
    }
    .columns-3.products::after {
        content: '';
        width: calc(((100% / 12) * 4) - 10px) !important;
        display: flex !important;
    }
    .row-container .prod_loop_template {
        width: calc(((100% / 12) * 4) - 1rem) !important;
    }
    .row-container .col-5 {
        width: calc(((100% / 12) * 5) - 10px) !important;
    }
    .row-container .col-6 {
        width: calc(((100% / 12) * 6) - 10px) !important;
    }
    .latest-news-section-container .col-6 {
        width: calc(((100% / 12) * 6) - 30px) !important;
    }
    .row-container .col-7 {
        width: calc(((100% / 12) * 7) - 10px) !important;
    }
    .row-container .col-8 {
        width: calc(((100% / 12) * 8) - 10px) !important;
    }
    .row-container .col-9 {
        width: calc(((100% / 12) * 9) - 10px) !important;
    }
    .row-container .col-10 {
        width: calc(((100% / 12) * 10) - 10px) !important;
    }
    .row-container .col-11 {
        width: calc(((100% / 12) * 11) - 10px) !important;
    }
    .row-container .col-12 {
        width: calc((100% / 12) * 12) !important;
    }
    .mobile-only {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .column-row-section-container .row-container .col-4,
    .inspirations-section-container .row-container .col-4,
    .casestudies-section-container .row-container .col-4 {
        width: calc(((100% / 12) * 4) - 40px) !important;
    }
}

@media screen and (min-width: 1000px) {
    .row-container .col-1 {
        width: calc(((100% / 12) * 1) - 1rem) !important;
    }
    .row-container .col-2 {
        width: calc(((100% / 12) * 2) - 1rem) !important;
    }
    .row-container .col-3 {
        width: calc(((100% / 12) * 3) - 1rem) !important;
    }
    .footer-icon-row .col-3 {
        width: calc(((100% / 12) * 3) - 0px) !important;
    }
    .columns-4.products .prod_loop_template {
        width: calc(((100% / 12) * 3) - 1rem) !important;
    }
    .columns-4.products::after {
        content: '';
        width: calc(((100% / 12) * 3) - 1rem) !important;
        display: flex !important;
    }
    .row-container .col-4 {
        width: calc(((100% / 12) * 4) - 1rem) !important;
    }
    .row-container .col-4.icon-layout-col {
        width: calc(((100% / 12) * 4) - 0px) !important;
    }
    .row-container .prod_loop_template,
    .columns-3.products .prod_loop_template {
        width: calc(((100% / 12) * 4) - 1rem) !important;
    }
    .columns-3.products::after {
        content: '';
        width: calc(((100% / 12) * 4) - 1rem) !important;
        display: flex !important;
    }
    .row-container .col-5 {
        width: calc(((100% / 12) * 5) - 1rem) !important;
    }
    .row-container .col-6 {
        width: calc(((100% / 12) * 6) - 1rem) !important;
    }
    .product-template-default .col-full .row-container .col-6 {
        width: calc(((100% / 12) * 6) - 2rem) !important;
    }
    .latest-news-section-container .col-6 {
        width: calc(((100% / 12) * 6) - 30px) !important;
    }
    .row-container .col-7 {
        width: calc(((100% / 12) * 7) - 1rem) !important;
    }
    .row-container .col-8 {
        width: calc(((100% / 12) * 8) - 1rem) !important;
    }
    .row-container .col-9 {
        width: calc(((100% / 12) * 9) - 1rem) !important;
    }
    .row-container .col-10 {
        width: calc(((100% / 12) * 10) - 1rem) !important;
    }
    .row-container .col-11 {
        width: calc(((100% / 12) * 11) - 1rem) !important;
    }
    .row-container .col-12 {
        width: calc((100% / 12) * 12) !important;
    }
}

.page-template-template-homepage:not(.has-post-thumbnail) .site-main {
    padding-top: 0 !important;
}

ul.products::before {
    display: none;
}

@media screen and (max-width: 767px) {
    .desktop-only {
        display: none;
    }
}

.orange {
    color: #f2682c;
}

.before-header *,
.site-header *,
.main-navigation *,
.site-footer * {
    font-family: effra, sans-serif !important;
    font-weight: 300 !important;
}

.before-header .fab,
.site-header .fab,
.main-navigation .fab,
.site-footer .fab {
    font-family: "Font Awesome 5 Brands" !important;
}

.before-header .fa,
.before-header .fas,
.site-header .fa,
.site-header .fas,
.main-navigation .fa,
.main-navigation .fas,
.site-footer .fa,
.site-footer .fas {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

:root .fal {
    font-family: 'Font Awesome 5 Pro' !important;
    font-weight: 300;
}

#site-navigation.main-navigation .primary-navigation ul li a {
    color: #000 !important;
}

@media screen and (min-width:867px){
    .main-navigation {
        border-bottom: 1px solid #ececec !important;
    }
}

.sfp-nav-search {
    display: flex !important;
    padding: 1em 1em 1em 0;
    justify-content: flex-end;
}

#site-navigation .sfp-nav-search {
    max-width: 270px !important;
}

#site-navigation {
    display: flex !important;
    align-items: center !important;
    flex-direction: row-reverse !important;
    justify-content: space-between !important;
}

#menu-new-primary>li>.sub-menu {
    border: 1px solid #ececec;
}

.sfp-nav-search-close {
    display: none !important;
}

#site-navigation .sfp-nav-search::after {
    display: none !important;
}

.storefront-pro-active #site-navigation>div {
    width: 100% !important;
    margin: 0 !important;
}

.main-navigation::before,
.main-navigation::after {
    display: none !important;
}

.menu-item-icon .fas {
    margin-right: 0.75em;
}

.main-navigation ul.menu>li.menu-item-has-children>a::after {
    display: none;
}

.sfp-live-search-container button {
    line-height: 15px !important;
}

.sfp-live-search-container button,
.sfp-live-search-container button:hover {
    /* right: 0; */
    left: 0 !important;
    right: auto !important;
}

.sfp-live-search-container .sfp-live-search-field {
    /* padding-right: 3em; */
    padding-right: 1em !important;
    padding-left: 3em !important;
    line-height: 30px !important;
}

.sfp-live-search-field {
    background-color: #f2f2f2 !important;
    border-radius: 17.5px !important;
    overflow: hidden;
    width: auto !important;
    border: 1px solid #ececec !important;
}

.sfp-live-search-field,
.sfp-live-search-field::placeholder {
    font-family: effra, sans-serif !important;
    font-size: 1em;
}

.sfp-live-search-field:focus {
    background-color: #eeeeee !important;
    border: 1px solid #ececec !important;
}

.sfp-live-search-results {
    left: auto !important;
    right: 0 !important;
    background: transparent;
    box-shadow: none !important;
    min-width: 100% !important;
    margin-top: 12px;
}

.sfp-live-search-results>div {
    background-color: #ffffff;
    border: 2px solid #ececec;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
}

.sfp-live-search-results a {
    display: flex !important;
    align-items: center !important;
    font-size: 0.85em !important;
    line-height: 120%;
}

.sfp-live-search-results a:not(:last-child) {
    border-bottom: 1px solid #f2f2f2;
}

.widget.sfp-live-search {
    padding: 0 !important;
}

.main-navigation ul.nav-menu>li>a,
.main-navigation ul.menu>li>a,
.main-navigation .sfp-nav-search a {
    padding-top: 0.75em !important;
    padding-bottom: 0.75em !important;
}

body.storefront-pro-active .site-header .site-header-cart {
    display: inline-block !important;
}

body.storefront-pro-active .site-header-cart li a.cart-contents {
    display: none !important;
}

:root body .site-header {
    background-color: #fff !important;
    border-bottom-color: #ececec !important;
    border-bottom-width: 3px !important;
    padding: 1em 1em 1em 1em !important;
    display: flex;
    justify-content: space-between;
    opacity: 1 !important;
}

.site-header::before,
.site-header::after {
    display: none !important;
}


.site-header.sticky ~ .below-navigation .sfp-nav-search{
    position: fixed;
    top: 0px;
    max-height: 61px;
}

.before-header {
    background-color: #000000;
}

#site-navigation.main-navigation .site-header-cart .widget_shopping_cart,
#site-navigation.main-navigation ul.menu ul {
    background-color: #fff !important;
}

.sfp-nav-style .site-header .site-logo-link {
    width: fit-content !important;
    float: none !important;
    max-width: 225px !important;
    display: flex;
    align-items: center;
}

.sfp-nav-style .site-header .site-logo-link img {
    max-width: 100% !important;
}

.header-actions {
    display: flex;
}

.header-action {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    background: transparent !important;
    padding: 0 1em !important;
}

.update-basket {
    position: relative;
}

.update-basket span {
    position: absolute;
    right: 0.5em;
    top: 0;
    background: #f2682c;
    color: #ffffff;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    font-size: 0.65em !important;
    justify-content: center;
    text-align: center;
    padding-top: 0 !important;
}

@media screen and (min-width: 768px) {
    .sticky .update-basket span {
        top: -5px;
    }
}

@media (max-width: 970px) {
    .site-header .site-logo-link.site-logo-desktop {
        display: none !important;
    }
    .site-header .site-logo-link.site-logo-mobile {
        display: block !important;
    }
    .site-header-cart .cart-contents {
        right: 40px !important;
        padding: 0 !important;
    }
    .primary-navigation .menu {
        overflow: hidden !important;
        max-height: 0 !important;
    }
    .primary-navigation {
        display: none !important;
    }

    #site-header-cart{
        position: fixed;
    }

    #site-navigation{
        position: absolute;
        right: 0;
        width: 100%;
    }

    .storefront-pro-active #site-navigation > div.sfp-nav-search{
        z-index: 111;
        width: 100vw !important;
        background-color: #fff;
        max-width: 100vw !important;
        transform: translateY(-63px);
    }
    .storefront-pro-active #site-navigation > div.sfp-nav-search.toggled{
        transform: translateY(0px);
    }
    .storefront-pro-active #site-navigation > div.sfp-nav-search .basket-close{
        transform: rotateZ(-150deg);
        opacity: 0;
        transition: transform 0.35s ease-in-out, opacity 0.2s ease-in-out 0.1s;
        position: absolute;
        left: calc(1em + 3px);
    }

    .site-header.sticky ~ .below-navigation #site-navigation > div.sfp-nav-search.toggled{
        transform: translateY(61px);
    }
}
.search-menu-toggle svg.search-icon,
.update-basket svg.basket-icon {
    transform: rotateZ(0deg);
    opacity: 1;
    transition: transform 0.35s ease-in-out, opacity 0.2s ease-in-out 0.1s; 
}
.search-menu-toggle svg.basket-close,
.update-basket svg.basket-close {
    transform: rotateZ(-150deg);
    opacity: 0;
    transition: transform 0.35s ease-in-out, opacity 0.2s ease-in-out 0.1s;
    position: absolute;
    left: calc(1em + 3px);
}

.search-menu-toggle svg{
    pointer-events: none;
}

.search-menu-toggle:hover svg.search-icon path,
.update-basket:hover svg.basket-icon path:not(:first-child) {
    fill: #f2682c !important;
}

.search-menu-toggle:hover svg.basket-close path,
.update-basket:hover svg.basket-close path {
    fill: #f2682c !important;
}

.update-basket:hover svg.basket-icon path:first-child {
    stroke: #f2682c !important;
}

.side-menu-toggle:hover svg path {
    fill: #f2682c !important;
}

.search-menu-toggle.toggled svg.search-icon,
.update-basket.toggled svg.basket-icon {
    transform: rotateZ(150deg);
    opacity: 0;
}

.search-menu-toggle.toggled svg.basket-close,
.update-basket.toggled svg.basket-close {
    transform: rotateZ(0deg);
    opacity: 1;
}

.remove_from_cart_button {
    display: block !important;
}

.woocommerce-mini-cart-item {
    display: flex !important;
    justify-content: space-between;
    flex-wrap: wrap;
}

.widget_shopping_cart .product_list_widget li a.remove {
    position: relative !important;
    top: 0 !important;
}

.woocommerce-mini-cart-item a.remove::before {
    color: #afafaf;
    line-height: 1.3 !important;
    text-align: center !important;
    font-size: 1.3em !important;
    transition: color 0.2s ease-in-out;
}

.woocommerce-mini-cart-item a.remove:hover::before {
    color: #f2682c !important;
}

.product_list_widget li::before,
.product_list_widget li::after {
    display: none !important;
}

.woocommerce-mini-cart-item .quantity {
    padding-left: 2.1rem;
    padding-top: 0.5em;
    font-size: 14px !important;
}

.woocommerce-mini-cart-item .woocommerce-Price-amount {
    font-size: 14px !important;
}

.discount-info .old-price {
    opacity: 0.7;
    padding-right: 10px;
}

.woocommerce-mini-cart .variation {
    padding-top: 0.5em;
    padding-left: 2.1rem;
    flex-basis: 100%;
}

:root .storefront-pro-active .woocommerce-mini-cart dt.variation-Pre-order {
    color: #f2682c !important;
    line-height: 1em;
}

:root .storefront-pro-active .woocommerce-mini-cart dd.variation-Pre-order p {
    font-style: italic;
    line-height: 1em;
}

.woocommerce-mini-cart-item a:not(.remove) {
    flex-basis: calc(100% - 30px);
    line-height: 1.2em;
    font-size: 14px !important;
}

.site-header-cart .widget_shopping_cart {
    position: absolute !important;
    display: block !important;
    left: auto !important;
    width: 300px !important;
    max-width: 100vw !important;
    right: 0 !important;
    top: calc(100% + 10px) !important;
}

.widget_shopping_cart {
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: top;
    opacity: 0;
}

.toggled .widget_shopping_cart {
    transform: scaleY(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.site-header-cart .widget_shopping_cart.sub-menu--is-touch-device {
    display: block !important;
}

.site-header-cart .widget_shopping_cart .product_list_widget {
    height: auto !important;
}

.site-header-cart .widget_shopping_cart {
    background: #ffffff !important;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    color: #000000 !important;
    border: 2px solid #e9e9e9 !important;
}

.storefront-pro-active .site-header-cart .widget_shopping_cart :not(.button) {
    color: #000000 !important;
    margin: 0 !important;
}

.woocommerce-mini-cart.cart_list.product_list_widget:before {
    content: "Basket Contents";
    color: #f2682c !important;
    font-size: 1.15em;
    width: 100%;
    display: block;
    font-weight: 600;
    padding-bottom: 0.65em;
    border-bottom: 1px solid #ececec;
}

.site-header-cart .widget_shopping_cart .buttons,
.site-header-cart .widget_shopping_cart .total {
    background: #ffffff;
}

.woocommerce-mini-cart__buttons .wc-forward,
.variation-table .btn,
.theme-btn.download,
.product_type_simple.add_to_cart_button,
.theme-btn,
.button-print,
.button-reset,
#commentform #submit,
.woocommerce-form-login__submit,
.b2bking_add_cart_to_purchase_list_button,
#idpc_button {
    background-color: #ffffff !important;
    border: 1px solid #f2682c !important;
    border-radius: 100px !important;
    color: #f2682c !important;
    text-transform: uppercase !important;
    padding: 6px !important;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    font-weight: 400 !important;
    display: flex;
    font-size: 12px !important;
    align-items: center;
}

.woocommerce-mini-cart__buttons .wc-forward:hover,
.variation-table .btn:hover,
.theme-btn.download:hover,
.woocommerce-form-login__submit:hover,
.product_type_simple.add_to_cart_button:hover,
.theme-btn:hover,
.button-print:hover,
.button-reset:hover,
#commentform #submit:hover,
.b2bking_add_cart_to_purchase_list_button:hover,
#idpc_button:hover {
    background-color: #f2682c !important;
    color: #ffffff !important;
}

.theme-btn,
.button-print,
.button-reset,
.product_type_simple.add_to_cart_button,
#commentform #submit,
.b2bking_add_cart_to_purchase_list_button,
.woocommerce-form-login__submit,
#idpc_button {
    padding: 0.6em 1.35em !important;
    max-width: max-content;
}

.theme-btn.full,
.prod_loop_template .product_type_simple.add_to_cart_button {
    width: 100%;
    max-width: 100% !important;
    justify-content: center;
}

.theme-btn.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    padding: 0.6em 0em !important;
}

.theme-btn.product_type_simple.add_to_cart_button.ajax_add_to_cart span {
    padding: 0 1.35em;
}

.woocommerce-form-login__submit {
    padding-left: 5em !important;
    padding-right: 5em !important;
}

.theme-btn.light,
.update-cart[disabled],
.b2bking_add_cart_to_purchase_list_button {
    color: #848484 !important;
    border: 1px solid #848484 !important;
}

.theme-btn.invert {
    background-color: #f2682c !important;
    color: #ffffff !important;
}

.theme-btn.light.invert {
    background-color: #6b6b6b !important;
    color: #ffffff !important;
}

.theme-btn.light:hover,
.update-cart[disabled]:hover,
.b2bking_add_cart_to_purchase_list_button:hover {
    background-color: #6b6b6b !important;
    color: #ffffff !important;
}

.theme-btn.invert:hover {
    background-color: #ffffff !important;
    color: #f2682c !important;
}

.theme-btn.light.invert:hover {
    background-color: #ffffff !important;
    color: #848484 !important;
}

.woocommerce-mini-cart__buttons .wc-forward:after {
    display: none !important;
}

.site-header .widget_shopping_cart li {
    padding: 0.85em 0 0.45em 0 !important;
}

.widget_shopping_cart p.total {
    border-bottom-width: 0px !important;
}

.widget_shopping_cart p.buttons {
    padding-top: 0px !important;
}

:root .woocommerce-mini-cart.cart_list.product_list_widget {
    padding: 0 1.5em 0 1.5em;
    margin-top: 1em !important;
    max-height: 400px;
    overflow-x: auto;
}

:root .storefront-pro-active .site-header-cart .woocommerce-Price-amount.amount * {
    color: #f2682c !important;
    font-weight: 500 !important;
}

.widget_shopping_cart_content {
    position: relative;
}

:root .widget_shopping_cart_content::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #ffffff;
    right: 13px;
    top: calc(-1em - 11px);
}

#site-navigation .handheld-navigation-container,
.main-navigation .handheld-navigation {
    display: block !important;
}

:root .handheld-navigation-container {
    position: fixed;
    right: 0;
    top: 0;
    height: 100% !important;
    max-height: 100vh !important;
    z-index: 99999 !important;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.handheld-navigation-container::before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Pro' !important;
    font-weight: 300;
    position: absolute;
    left: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    border: 2px solid #e9e9e9 !important;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    cursor: pointer;
    opacity: 0;
    transform: translateX(-100px);
    transition: transform 0.2s ease-in-out 0s, opacity 0.15s ease-in-out 0s;
}

.handheld-navigation-container.toggled::before {
    transform: translateY(0px);
    opacity: 1;
    transition: transform 0.3s ease-in-out 0.45s, opacity 0s ease-in-out 0.4s;
}

:root .handheld-navigation-container.toggled {
    transform: translateX(0%);
}

:root #site-navigation .handheld-navigation {
    overflow-x: hidden;
    height: 100%;
    max-height: 100%;
    background-color: #ffffff;
    padding: 0 !important;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    border-left: 2px solid #e9e9e9 !important;
    max-width: 275px;
    width: calc(100% - 50px);
    right: 0;
    position: absolute;
    top: 0;
}

.handheld-navigation .menu {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 95%;
    overflow-x: auto !important;
    padding: 0;
    margin-top: 2.5%;
}

.handheld-navigation .menu li a,
.handheld-navigation .menu li a:hover {
    color: #000000 !important;
    font-size: 15px !important;
}

.handheld-navigation .menu li a:after {
    display: none !important;
}

.handheld-navigation .menu li {
    padding: 0.5em !important;
    border-bottom: 1px solid #ececec !important;
}

.handheld-navigation .sub-menu li:last-child {
    border: none !important;
}

.handheld-navigation .menu li:first-child {
    border-top: 1px solid #ececec !important;
}

.handheld-navigation .menu li .dropdown-toggle {
    width: 30px !important;
    height: 30px !important;
    background-color: #ecececbe;
    top: 1.25em !important;
    right: 0.75em !important;
    padding: 0 !important;
    transition: none !important;
    border-radius: 100%;
}

.handheld-navigation .menu li .dropdown-toggle.toggled-on {
    background-color: #f2682c !important;
}

.handheld-navigation .menu li .dropdown-toggle:after {
    color: #000000 !important;
    transition: none !important;
}

.handheld-navigation .menu li .dropdown-toggle.toggled-on:after {
    color: #ffffff !important;
}

.sub-menu--is-touch-device.toggled-on {
    display: block !important;
}

.handheld-navigation ul.menu .sub-menu {
    display: none;
    margin-left: 0.5em !important;
    padding-left: 0.75em !important;
    border-left: 1px solid #f2682c !important;
    margin-top: 0.75em !important;
}

.handheld-navigation ul.menu .sub-menu.toggled-on {
    display: block;
}

.handheld-navigation .menu {
    width: 100%;
}

.storefront-handheld-footer-bar {
    display: none;
}

:root .storefront-pro-active .site-header-cart .widget_shopping_cart .woocommerce-mini-cart__empty-message {
    padding: 0 1em 1em 1em;
    margin-top: 1em !important;
}

.site-footer .footer-menu-1,
.site-footer .footer-menu-2 {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer {
    background-color: #333333 !important;
    padding: 4em 0 3em;
}

.site-footer .col-4 {
    margin-bottom: 2.5em;
}

:root .site-footer ul li a {
    font-size: 1rem;
    opacity: 0.85;
}

:root .site-footer ul li a:hover {
    opacity: 1;
}

:root .site-footer h4 {
    font-size: 15px;
    font-weight: 400 !important;
    color: #ffffff;
    margin-bottom: 5px !important;
}

:root .site-footer address {
    opacity: 0.85;
    font-size: 1rem;
}

.site-footer .social-info {
    margin-bottom: 2.5em;
}

.social-info a i {
    font-size: 16px !important;
    color: #ffffff;
}

.social-info a {
    margin-left: 0.25em;
    margin-right: 0.25em;
    color: #ffffff;
}

.social-info a:hover i {
    color: #f2682c;
}

.site-footer .cards i {
    margin-left: 0.5em;
}

.bottom-links {
    display: flex;
    flex-wrap: wrap;
}

.bottom-links * {
    opacity: 0.85;
    font-size: 1rem;
}

.bottom-links *:not(:last-child):after {
    content: "|";
    display: inline-block;
    margin: 0 0.5em;
}

.before-header {
    padding: 3px 1.25em;
}

.before-header .contact-info:first-of-type {
    margin-right: 1em;
}

.before-header .contact-info i {
    margin-right: 0.35em;
}

.before-header {
    display: flex;
    justify-content: space-between;
}

.before-header * {
    font-size: 1rem;
    color: #ffffff !important;
    letter-spacing: 1px;
}

.before-header p {
    margin-bottom: 0 !important;
    color: #ffffff;
}

.contact-info-container {
    display: flex;
    flex-wrap: wrap;
}

@media screen and (min-width: 970px) {
    .side-menu-toggle,
    .search-menu-toggle {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    footer .col-4:last-of-type,
    footer .col-6:last-of-type {
        text-align: right;
    }
}

@media screen and (max-width: 767px) {
    .site-header-cart .widget_shopping_cart {
        position: fixed !important;
        display: block !important;
        width: 100% !important;
        max-width: calc(100% - 2em) !important;
        right: 1em !important;
        top: auto !important;
        bottom: 3.5em;
        height: 65vh;
        max-height: calc(100vh - 155px);
        transition: transform 0s ease-in-out;
        left: 1em !important;
    }
    .widget_shopping_cart_content {
        height: inherit;
    }
     :root .woocommerce-mini-cart.cart_list.product_list_widget {
        height: calc(100% - 155px);
        max-height: calc(100% - 155px);
    }
     :root .woocommerce-mini-cart.cart_list.product_list_widget {
        margin-top: 0em !important;
        padding-top: 1em;
    }
     :root .widget_shopping_cart_content::after {
        display: none !important;
    }
    .sfp-nav-style .site-header .site-logo-link img {
        max-width: 150px !important;
    }
    .site-header .site-logo-link.site-logo-mobile {
        display: flex !important;
    }
    .social-info {
        text-align: left !important;
    }
    .social-info a {
        display: inline-block !important;
    }
    .site-footer .cards i:first-child {
        margin-left: 0em;
    }
}

@media screen and (max-width: 530px) {
    .before-header .social-info {
        display: none;
    }
}

@media screen and (max-width: 900px) {
    .before-header p {
        display: none;
    }
    .before-header .social-info {
        width: auto !important;
    }
}

.blockOverlay {
    background-color: #ffffff !important;
}


/*PRODUCT PAGE */

@media screen and (min-width:768px) {
    .title-price {
        display: flex;
        justify-content: space-between;
    }
}

.title-price .product-price {
    font-size: 1rem;
    font-weight: 300;
    margin-top: 0.35em;
    display: flex;
    flex-direction: column;
}

.title-price .product-price bdi {
    font-size: 1.10em;
    font-weight: 500;
    color: #f2682c;
    line-height: 1em;
}

.title-price .product-price del {
    opacity: 0.7 !important;
    font-size: 11px !important;
    order: 3;
}

.title-price .product-price del * {
    color: #6b6b6b !important;
}

.title-price .product-title {
    padding-right: 15px;
}

@media screen and (max-width:500px) {
    .title-price {
        flex-direction: column;
    }
    .title-price .product-price {
        margin-top: 0.35em;
    }
    .star-rating-container {
        margin-top: 0.35em !important;
    }
}

.productpage {
    padding-top: 2.5em;
}

.primary-cat span {
    font-size: 0.9em;
    font-weight: 500;
    margin-top: 0.65em;
    letter-spacing: 0.025em;
    color: #0a0a0a;
}

.productpage .mobile-only {
    margin-bottom: 2em;
}

@media screen and (max-width:767px) {
     :root .productpage .col-6 .honey,
     :root #order_review .honey {
        position: relative !important;
        left: auto !important;
        top: auto !important;
    }
}

:root .Magic360-container{
    display: block !important
}

.MagicZoom figure,
:root .Magic360-container {
    border: 1px solid rgba(214, 214, 214, 0.5) !important;
    border-radius: 3px !important;
}

.variation-table {
    margin-top: 2em;
}

.variation-table table {
    border-collapse: collapse;
    margin-bottom: 0;
}

.variation-table thead tr,
.variation-table tbody tr {
    border-bottom: 1px solid #d6d6d6;
}

.variation-table thead th,
.variation-table table td::before {
    padding: 0px 3px 1px 1px;
    font-size: 12px;
    text-transform: uppercase;
    color: #9c9c9c;
    background: transparent;
    border: none;
    letter-spacing: 1px;
}

.variation-table tbody td {
    font-size: 13px;
    padding: 20px 3px 20px 1px;
    font-weight: 400;
    background-color: transparent !important;
    vertical-align: middle;
}

.variation-table tbody td p {
    margin-bottom: 0;
}

.variation-table .table-sale-price {
    color: #f2682c;
}

.variation-table .table-reg-price {
    opacity: 0.65;
    text-decoration: strikethrough;
}

.variation-table tbody td em {
    color: #949494;
}

@media screen and (max-width: 600px),
screen and (min-width: 768px) and (max-width: 1000px) {
    table {
        border: 0;
    }
    .variation-table table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    .variation-table table tr {
        border: 1px solid #d6d6d6;
        display: block;
        margin-top: 1.25em;
        padding: 5px 10px;
        border-radius: 3px;
    }
    .variation-table table tr:first-of-type {
        margin-top: 0 !important;
    }
    .variation-table table td {
        border-bottom: 1px solid #e9e9e9;
        display: block;
        text-align: right;
        padding: 10px 3px 10px 1px;
    }
    .variation-table table td::before {
        content: attr(data-label);
        float: left;
        text-transform: uppercase;
    }
    .variation-table table td:last-child,
    .variation-table table td:nth-last-child(2) {
        border-bottom: 0;
    }
    .variation-table .add_to_cart_button {
        width: 100%;
        max-width: 100% !important;
    }
    .variation-table .add_to_cart_button>span {
        margin: 0 auto;
    }
}

.added_to_cart.wc-forward {
    display: none !important;
}

.add_to_cart_button .sk-circle {
    display: none;
}

.add_to_cart_button.loading .sk-circle {
    display: block;
}

.add_to_cart_button.loading::after {
    display: none;
}

.add_to_cart_button.loading span {
    display: none;
}

.sk-circle {
    margin: auto;
    width: 20px;
    height: 20px;
    position: relative;
    padding: 0 2em;
}

.sk-circle .sk-child {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.sk-circle .sk-child:before {
    content: "";
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #f2682c;
    border-radius: 100%;
    -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
    animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.theme-btn:hover .sk-circle .sk-child:before {
    background-color: #fff !important;
}

.sk-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.sk-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.sk-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sk-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.sk-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.sk-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sk-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.sk-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.sk-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.sk-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.sk-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.sk-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.sk-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.sk-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.sk-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.sk-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.sk-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.sk-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.sk-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-circleBounceDelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.star-rating-container {
    margin-top: 1.15em;
}

.productpage .star-rating,
.prod_loop_template .star-rating {
    font-size: 0.85em;
    letter-spacing: 4px;
    width: 6.85em;
    margin: 0 !important;
}

.productpage .woocommerce-product-rating,
.prod_loop_template .woocommerce-product-rating {
    float: none !important;
    display: flex;
    justify-content: flex-start;
}

.productpage .woocommerce-review-link,
.prod_loop_template .woocommerce-review-link {
    font-size: 1rem;
    color: #7c7c7c;
    margin-left: 5px;
}

.short-description {
    margin-top: 1.1em;
}

.single-cart {
    margin-top: 1.25em;
}

.single-cart .cart,
.single-cart .cart .quantity.buttons_added {
    margin: 0 !important;
}

.single-cart .cart .quantity.buttons_added {
    padding-right: 1.25em;
}

.flash-message {
    margin-top: 2em;
}

.flash-message p {
    margin-bottom: 0 !important;
}

.short-description .woocommerce-product-details__short-description p {
    margin-bottom: 0.1em;
}

.short-description .woocommerce-product-details__short-description * {
    font-size: 1rem;
    font-weight: 400;
}

.short-description .woocommerce-product-details__short-description p span {
    letter-spacing: 1px;
    font-weight: 500 !important;
}

.short-description .woocommerce-product-details__short-description p span strong {
    font-weight: 500 !important;
}

.short-description .woocommerce-product-details__short-description ul {
    list-style-type: "- \00a0 \00a0";
    margin-left: 1em;
    line-height: 1.75em;
    margin-bottom: 0;
}

.short-description .woocommerce-product-details__short-description li::marker {
    margin-right: 10px;
}

.product-title,
.entry-title,
#main h1 {
    color: #000;
    margin-bottom: 0;
    letter-spacing: -1px;
}

.entry-title {
    margin: 1em 0;
}

.flash-message {
    display: inline-flex;
    background-color: #f2f2f2;
    max-width: max-content;
    align-items: center;
    padding: 0.75em 1.5em 0.75em 0.95em;
    position: relative;
    margin-top: 1.6em;
}

.flash-message>svg {
    width: 40px !important;
}

.flash-message .flash-message-content {
    padding-left: 10px;
}

.flash-message .flash-message-content * {
    font-size: 14px !important;
    line-height: 1.4em !important;
    margin: 0;
}

.flash-message .flash-message-content *:not(strong) {
    font-weight: 300 !important;
}

.flash-message .flash-message-content strong {
    font-weight: 500 !important;
}


/*
.flash-message span[data-open-modal] {
  text-decoration: underline;
}

.flash-message span[data-open-modal]:hover {
  color: #f2682c;
  cursor:pointer;
}
*/

.product-template-default .col-full {
    padding: 0;
    max-width: 72em;
}

@media screen and (max-width: 72em) {
    .col-full {
        margin-left: 16px;
        margin-right: 16px;
    }
}

.pswp {
    display: none;
}

.wc-accordion>a {
    display: flex !important;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #d6d6d6 !important;
    padding: 10px 10px 10px 0px !important;
    color: #000 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.wc-accordion-panel {
    border-top: none !important;
    padding: 0.7em 0em !important;
}

.wc-accordion-panel>p {
    font-size: 1rem;
}

.section-title,
.wc-accordion-panel>h2 {
    margin-bottom: 0.5em !important;
    color: #000;
    font-size: var(--medium-title) !important;
}

.wc-accordions {
    margin-bottom: 0 !important;
}

.wc-accordion a .fa-angle-down {
    transition: transform 0.3s ease-in-out;
}

.wc-accordion-active .fa-angle-down {
    transform: rotateZ(180deg);
    color: #f2682c;
}

.find-out-more {
    margin-top: 2.25em;
}

.woocommerce-noreviews,
:root .woocommerce-error,
:root .woocommerce-message,
:root .woocommerce-notice--info,
:root .woocommerce-info {
    background-color: #F2f2f2 !important;
    border-left: 7px solid rgba(61, 155, 210, 1);
    font-size: 1rem;
    color: #000 !important;
    padding: 1em 2em 1em 1em !important;
}

:root .woocommerce-error {
    border-left: 7px solid #e2401c !important;
}

:root .woocommerce-message {
    border-left: 7px solid #f2682c !important;
}

:root .woocommerce-notice--info,
:root .woocommerce-info {
    border-left: 7px solid #303030 !important;
}

:root .woocommerce-error *,
:root .woocommerce-notice--info *,
:root .woocommerce-message *,
:root .woocommerce-info * {
    color: #000 !important;
}

.woocommerce-noreviews::before,
.woocommerce-error::before,
:root .woocommerce-notice--info:before,
:root .woocommerce-message:before,
:root .woocommerce-info:before {
    display: none !important;
}

#reviews .commentlist li .avatar {
    width: 45px !important;
}

#reviews .commentlist li ul.children .avatar {
    width: 45px !important;
}

#reviews .commentlist li ul.children .avatar,
#reviews .commentlist li .avatar {
    margin-right: 15px !important;
}

#reviews .commentlist li .comment_container .comment-text {
    width: calc(100% - 60px) !important;
}

#reviews .commentlist li ul.children .comment-text {
    width: calc(100% - 60px) !important;
}

#reviews .commentlist li ul.children {
    width: 88%;
    padding-top: 1em;
}

.review.depth-1:not(:last-of-type) {
    border-bottom: 1px solid #d6d6d6 !important;
}

#reviews .commentlist li {
    margin-bottom: 2em;
}

.woocommerce-review__author {
    font-size: 1rem;
}

.woocommerce-review__published-date {
    color: #404040 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
}

#reviews .commentlist .description {
    font-size: 1rem;
}

#reviews .commentlist .meta {
    margin-bottom: 0.5em !important;
}

.woocommerce-Reviews {
    display: flex;
    flex-direction: column-reverse;
}

.woocommerce-Reviews-title {
    display: none;
}

#reviews .theme-btn {
    margin: 0 auto 2em;
}

#review_form #respond {
    padding: 0;
    background-color: transparent;
}

.theme-btn.download {
    display: flex;
    width: max-content;
    font-size: 13px !important;
    padding: 0.75em 1em !important;
    margin: 0 0 1.25em 0 !important;
}

.theme-btn.download .main-text,
.theme-btn.download .sub-text,
.theme-btn.download .icon-container i {
    color: #f2682c;
}

.theme-btn.download:hover .main-text,
.theme-btn.download:hover .sub-text,
.theme-btn.download:hover .icon-container i {
    color: #fff;
}

.theme-btn.download .sub-text {
    font-style: italic;
    display: block;
    text-transform: capitalize;
}

.theme-btn.download .main-text {
    display: block;
}

.theme-btn.download .text-container {
    padding: 0 1em 0 1em;
}

.theme-btn.download .icon-container {
    padding: 0 0.35em 0 0.8em;
    font-size: 0.7em !important;
    display: flex;
    align-items: center;
}

.info-icon-row {
    margin-top: 1.9em;
    /* border-bottom: 1px solid #d6d6d6;
    border-top: 1px solid #d6d6d6; */
    padding-top: 1em;
}

.info-icon-row .icon-col {
    flex-basis: calc(100% / 3);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    padding: 0.55em 0.35em;
    margin-bottom: 1em;
}

.icon-col p {
    margin-bottom: 0;
    font-weight: 300;
    font-size: 0.8em;
    color: #000;
    text-transform: capitalize;
    letter-spacing: 0.03em;
    line-height: 1.25;
}

.icon-col i {
    margin-right: 0.5em;
    font-size: 14px !important;
    color:#f2682c;
}

/* @media screen and (min-width: 1067px),
screen and (min-width: 501px) and (max-width: 767px) {
    .info-icon-row .icon-col:not(:last-child):not(:nth-of-type(3)) {
        border-right: 1px solid #d6d6d6;
    }
}*/

@media screen and (min-width: 768px) and (max-width: 1066px),
screen and (max-width: 500px) {
    .info-icon-row .icon-col {
        flex-basis: calc(100% / 2);
        padding: 0.35em 0.35em;
    }
    /* .info-icon-row .icon-col:not(:last-child):not(:nth-of-type(2)):not(:nth-of-type(4)) {
        border-right: 1px solid #d6d6d6;
    }*/
}

.wattage-calc-section {
    margin-top: 2em;
}

.modal-container {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.modal-container.toggled {
    opacity: 1;
    pointer-events: all;
}

.rad-modal-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.rad-modal {
    background-color: #ffffff;
    max-height: calc(100vh - 15%);
    overflow-y: auto;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    width: calc(100% - 2em);
    max-width: 767px;
    border: 1px solid rgba(242, 103, 44, 0.5);
    padding: 2em 2.5em;
    transform: translateY(5em);
    transition: transform 0.4s ease-in-out;
    position: relative;
}

.modal-container.toggled .rad-modal {
    transform: translateY(0em);
}

.rad-modal .tab-content {
    padding: 0;
}

.close-rad-modal {
    position: absolute;
    width: 25px;
    height: 25px;
    background: #000;
    border-radius: 100%;
    right: 0.75em;
    top: 0.75em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.close-rad-modal i {
    pointer-events: none;
}

.modal-links-container {
    display: flex;
    flex-wrap: wrap
}

.modal-links-container .theme-btn {
    margin-right: 1em;
    margin-bottom: 1em;
}

.rad-modal .tooltip.stop {
    top: auto !important;
    bottom: -25px !important;
    right: auto !important;
    left: 0 !important;
    position: absolute;
    width: 100%;
}

.rad-modal .rad-modal-header h2 {
    font-size: var(--huge-title);
    color: #000;
    margin-bottom: 0;
    padding-right: 15px;
}

.rad-modal .rad-modal-header h3 {
    color: #f2682c;
    border: none !important;
    line-height: 1.25em;
}

.rad-modal .rad-modal-header {
    margin-bottom: 1.5em;
}

.container-fluid {
    background-color: #f2f2f2;
    padding: 0.5rem 1.35rem 1.35rem 1.35rem !important;
}

#quote-modal-container .container-fluid {
    padding: 0 !important;
}

#quote-modal-container .step-1-container {
    padding: 0.2rem 1.35rem !important;
}

#quote-modal-container .step-2-container,
#quote-modal-container .step-3-container {
    padding: 1.35rem !important;
}

.select-xls-table {
    margin-top: 2rem;
}

.pop-up-calculator-container-fluid.container-fluid .ee112,
.pop-up-calculator-container-fluid.container-fluid .ee120,
.quote-container-fluid.container-fluid .ee119,
.quote-container-fluid.container-fluid .ee131,
.quote-container-fluid.container-fluid .ee134 {
    background-color: transparent !important;
    font-family: effra, sans-serif !important;
    font-size: 1rem;
    border: 0;
    position: relative;
}

.pop-up-calculator-container-fluid.container-fluid .ee112,
.pop-up-calculator-container-fluid.container-fluid .ee120 {
    padding: 0 !important;
}

#commentform label,
.container-fluid label {
    font-weight: 300;
    text-align: left !important;
    font-family: effra, sans-serif !important;
    font-size: 1rem;
    background-color: transparent !important;
    width: 100% !important;
    display: block;
    border: none !important;
}

#commentform input:not(#submit),
#commentform select,
#commentform option,
.container-fluid input,
.container-fluid select,
.container-fluid option {
    font-family: effra, sans-serif !important;
    font-size: 1rem;
    font-weight: 300;
    text-align: left;
    border: 1px solid #d6d6d6;
    box-shadow: 0;
    background-color: #f2f2f2;
    border-radius: 7px;
    padding: 0.75em 0.5em;
    box-shadow: none !important;
    max-height: 40px;
    width: 100%;
}

.quote-container-fluid.container-fluid .radio {
    padding: 0.5rem 0.5rem;
    min-height: 40px;
}

#commentform textarea {
    font-family: effra, sans-serif !important;
    font-size: 1rem;
    font-weight: 300;
    text-align: left;
    border: 1px solid #d6d6d6 !important;
    box-shadow: 0;
    background-color: #f2f2f2;
    border-radius: 7px;
    padding: 0.75em 0.5em;
    box-shadow: none !important;
}

.container-fluid input,
.container-fluid select,
.container-fluid option {
    background-color: #ffffff;
}

.container-fluid input.error {
    border-color: rgba(219, 28, 28, 0.897) !important;
}

.container-fluid textarea {
    font-family: effra, sans-serif !important;
    box-shadow: none !important;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    resize: none;
    background: #ffffff;
    color: #f2682c;
    font-weight: 300;
    font-size: 1.5em;
    line-height: 1.25em;
}

.container-fluid textarea:focus {
    background: #ffffff;
}

.container-fluid input:hover,
.container-fluid select:hover,
.container-fluid option:hover,
.container-fluid input:focus,
.container-fluid select:focus,
.container-fluid option:focus {
    background-color: #f8f8f8;
}

.container-fluid fieldset {
    background-color: transparent !important;
    margin: 0 !important;
    padding: 1em 0.5em !important;
    border-bottom: 1px solid #d6d6d6;
}

.container-fluid .last fieldset {
    border-bottom: none !important;
}

.pop-up-calculator-container-fluid.container-fluid .ee112 fieldset,
.quote-container-fluid.container-fluid .ee119 fieldset {
    display: flex;
    align-items: center;
}

.pop-up-calculator-container-fluid.container-fluid .ee112 fieldset>*,
.quote-container-fluid.container-fluid .ee119 fieldset>* {
    width: calc(100% / 2);
}

.pop-up-calculator-container-fluid.container-fluid .ee120,
.pop-up-calculator-container-fluid.container-fluid .ee120 fieldset {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    border-bottom: 0 !important;
}

.calc-row {
    display: flex;
    flex-direction: row;
    padding: 1em 0.5em 0 0.5em;
    justify-content: space-between;
    flex-wrap: wrap;
}

.container-fluid .calc-row fieldset {
    border: none !important;
    padding: 0 !important;
}

.calc-row>* {
    width: 100%;
    max-width: calc((100% / 3) - 0.75em);
    margin: 0.75em 0;
}

.calc-row .result-row {
    max-width: calc(((100% / 3) * 2) - 0.65em) !important;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #fff !important;
    padding: 0.5em;
}

.calc-row .result-row p {
    width: 100%;
    padding-bottom: 5px !important;
    margin-bottom: 5px !important;
    border-bottom: 1px solid #f2f2f2;
    color: #000 !important;
}

.calc-row .result-row label {
    font-size: 0.7em;
    font-weight: 400;
    letter-spacing: 1px;
    color: #636363;
    text-transform: uppercase;
}

.calc-row .result-row input {
    border: 0 !important;
    padding: 0 !important;
    color: #000 !important;
}

.calc-row .result-row>.ee134 {
    max-width: calc(50% - 0.75em);
}

.calc-row>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-2-container .calc-row.hidden {
    display: none;
}

.wattage-result {
    background: #ffffff;
    border: 1px solid rgba(242, 103, 44, 0.5);
    margin-top: 1.75em;
    padding: 1.25em;
}

.wattage-result .ee106 {
    color: #727272;
    font-size: 1rem;
}

.restart-calc {
    margin: 0 auto;
    display: block;
}

.quote-table *:not(input) {
    padding: 0;
    background-color: transparent !important;
}

.quote-table input {
    border: none !important;
}

.quote-table div {
    border: none;
}

.quote-table.totals-table {
    width: 100%;
    margin-left: auto;
    table-layout: fixed;
    margin-bottom: 0;
}

.quote-table.selection-table {
    margin-bottom: 0;
}

.quote-table.selection-table table {
    table-layout: fixed;
}

.quote-table.totals-table thead tr th:not(:first-of-type) {
    background-color: #FFFFFF !important;
    font-size: 0.7em;
    font-weight: 400;
    letter-spacing: 1px;
    color: #636363;
    text-transform: uppercase;
    padding: 0.5rem;
}

.quote-table.selection-table thead tr th {
    font-size: 0.7em;
    font-weight: 400;
    letter-spacing: 1px;
    color: #636363;
    text-transform: uppercase;
    padding: 0.5rem;
}

.quote-table.totals-table thead tr td:first-of-type {
    vertical-align: middle;
}

.quote-table.totals-table tbody tr td:first-of-type>div {
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    font-weight: 300;
    text-align: right !important;
    font-family: effra, sans-serif !important;
    font-size: 1rem;
}

.quote-table.totals-table tbody tr td:not(:first-of-type) {
    background-color: #FFFFFF !important;
}

.quote-table.totals-table tbody tr td,
.quote-table.selection-table tbody tr td tbody tr td {
    border-top: 1px solid #c2c2c2;
}

.quote-table.selection-table>tbody>tr>td:first-of-type {
    width: 60%;
}

.quote-table.totals-table tbody tr:last-of-type td * {
    font-weight: 500 !important;
}

.step-2-container .quote-table.totals-table thead tr th:nth-child(2) {
    width: 39%;
}

.step-2-container .quote-table.totals-table thead tr th:nth-child(3) {
    width: 36%;
}

.radio.radio-primary {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 1px;
    border: none !important;
}

.radio.radio-primary input {
    flex-basis: 30px;
}

.container-fluid .large-title {
    padding-top: 1rem;
    background-color: #FFFFFF;
    padding: 2.5rem 1.35rem 1rem;
    margin: 0 !important;
}

.container-fluid.quote-container-fluid>section>div>h4:first-of-type {
    border-top: 1px solid #eee;
}

.container-fluid .action-btns {
    margin-top: 1rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.container-fluid .action-btns .hidden {
    display: none;
}

.container-fluid .action-btns div {
    cursor: pointer;
    margin-bottom: 2rem;
}

.container-fluid .room-row {
    border: 1px solid #e6e6e6;
    padding: 0rem 1rem 0.5rem 1rem;
    border-radius: 3px;
    background-color: rgba(214, 214, 214, 0.2) !important;
    margin-bottom: 1rem;
}

.button-reset {
    margin-right: auto !important;
}

.toolbar .toolbar-panel-left {
    display: flex !important;
}

@media screen and (max-width: 580px) {
    .rad-modal {
        padding: 1em 1.25em;
    }
    .container-fluid {
        background-color: #f2f2f2;
        padding: 0.5em 0.5em !important;
    }
    .pop-up-calculator-container-fluid.container-fluid .ee112 fieldset,
    .quote-container-fluid.container-fluid .ee119 fieldset {
        flex-direction: column;
    }
    .pop-up-calculator-container-fluid.container-fluid .ee112 fieldset>*,
    .quote-container-fluid.container-fluid .ee119 fieldset>* {
        width: 100%;
    }
    .container-fluid fieldset label {
        padding-bottom: 4px;
    }
    .calc-row>* {
        max-width: calc((100% / 2) - 0.75em);
    }
    .calc-row .result-row {
        max-width: 100% !important;
    }
}

.extra-info-section-container {
    padding: 0em 1em;
    margin-top: 3em;
}

.extra-info-section-container:not(.no-border) .row-container {
    border: 1px solid rgba(242, 103, 44, 1);
    padding: 1em;
}

.extra-info-section-container .content-col {
    padding: 2em 0 2em 0;
    display: flex;
    justify-content: center;
}

h2.theme-h2 {
    font-weight: 300 !important;
    font-size: 2.25em;
    line-height: 1.214;
}

.extra-info-section-container .content-col .theme-h2 {
    color: #000;
}

@media screen and (min-width: 768px) {
    .extra-info-section-container img {
        height: 100%;
        object-fit: cover;
    }
    .extra-info-section-container.img_right .support {
        flex-direction: row-reverse;
    }
    .extra-info-section-container .content-col {
        padding: 2em 10% 2em 2em;
    }
    .extra-info-section-container.img_right .content-col {
        padding: 2em 7% 2em 7%;
    }
}

.crosssells li {
    border: 1px solid rgba(214, 214, 214, 0.7) !important;
    padding: 1em;
    display: flex;
}

.crosssells li h3 {
    font-weight: 300 !important;
    font-size: 1.5em !important;
    line-height: 1.214;
    color: #000;
    padding: 0;
    background: transparent;
}

.crosssells li:not(:last-child) {
    margin-bottom: 1.25em;
}

.cross-content-col {
    flex-grow: 1;
}

.cross-btn-container {
    display: flex;
    border-top: 1px solid rgba(214, 214, 214, 0.3) !important;
    flex-wrap: wrap;
}

.cross-btn-container .theme-btn {
    margin-right: 0.5em;
    margin-top: 0.75em;
}

.crosssells img {
    box-shadow: none !important;
    border: 1px solid rgba(214, 214, 214, 0.3) !important;
}

.crosssells .cross-img-col {
    margin-right: 1em;
}

.crosssells .cross-img-col img {
    margin: 0 !important;
    width: 100%;
    width: 115px;
}

@media screen and (max-width: 400px) {
    .crosssells .cross-img-col img {
        width: 75px;
    }
    .crosssells li h3 {
        font-size: 1.25em !important;
    }
}

.crosssells .rad-modal img {
    margin-bottom: 0.3em;
    margin-right: 1em !important;
}

.crosssells .cross-price {
    display: block;
    font-weight: 400;
    font-size: 1rem;
    padding-bottom: 0.35em;
}

.site-header.sticky,
.site-header.sticky {
    transition: height 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.site-header.sticky {
    position: fixed;
    top: 0;
    z-index: 5;
}

.site-header.sticky+.below-navigation {
    margin-top: 70px;
}

.site-header .site-logo-link {
    transition: max-width 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.site-header.sticky .site-logo-link {
    max-width: 150px !important;
}

.site-header.sticky .site-logo-link.site-logo-mobile {
    max-width: 100px !important;
}

@media screen and (max-width: 767px) {
     :root body .site-header.sticky {
        padding: 0.5em 1em 0.5em 1em !important;
    }
    .site-header.sticky {
        transition: transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    }
}

.related.products {
    margin-top: 3em;
}

.related.products h2 {
    text-transform: capitalize !important;
}

.product-loop-row::before {
    display: none !important;
}

.product-loop-row::after {
    content: '';
    width: calc((100% / 3) - 1.5em);
    display: inline;
}

.prod_loop_template {
    border: 1px solid rgba(214, 214, 214, 0.9) !important;
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    float: none !important;
    margin: 0 0 2em 0 !important;
}

.prod_loop_template .ajax_add_to_cart {
    margin-top: 1em;
}

.prod_loop_template img {
    margin-bottom: 1.68em !important;
}

.prod_loop_template h3,
.related.products>h2 {
    color: #000 !important;
    padding: 0 !important;
    background: transparent;
    word-wrap: break-word;
}

.prod_loop_template h3 {
    margin-bottom: 0 !important;
}

.prod_loop_template .sale-pill {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #FFFFFF !important;
    background-color: #f2682c !important;
    white-space: nowrap;
    padding: 3px 5px;
    border-radius: 2px;
    vertical-align: middle;
}

.related.products>h2 {
    text-align: center;
}

.prod_loop_template .theme-btn {
    max-width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 1.25em;
}

.prod_loop_template img {
    border: 1px solid rgba(214, 214, 214, 0.3) !important;
    width: 100%;
}

.prod_loop_sub {
    margin-top: 0.35em;
    font-size: 15px;
    color: #525252;
    line-height: 1.35em;
    font-weight: 500;
}

.prod_loop_rating {
    margin-top: 0.5em;
}

.prod_loop_meta {
    margin-top: 0.5em;
    display: flex;
    flex-wrap: wrap;
}

.prod_loop_meta div:not(:last-child)::after {
    content: '|';
    display: inline-block;
    margin: 0 1em;
    color: #d6d6d6;
}

.prod_loop_warranty i,
.prod_loop_variation i {
    margin-right: 0.35em;
}

.prod_loop_template .woocommerce-review-link {
    pointer-events: none !important;
}

.prod_loop_price {
    font-size: 1rem !important;
    font-weight: 300 !important;
    line-height: 1.4em !important;
    margin-top: auto;
    padding-top: 1em;
}

.prod_loop_price .woocommerce-Price-amount {
    display: block;
}

.prod_loop_price .woocommerce-Price-amount * {
    font-size: 1.3em;
    color: #f2682c;
    font-weight: 500 !important;
}

.prod_loop_price del .woocommerce-Price-amount * {
    color: #43454b !important;
}

.prod_loop_price .woocommerce-Price-currencySymbol {
    font-size: 1.2rem !important;
}

.prod_loop_price del {
    font-size: 11px;
    opacity: 0.7;
}

.footer-icon-row {
    max-width: 875px;
    margin: 2.5em auto 3.5em;
}

.footer-icon-row .col-3 {
    align-items: center;
    margin-top: 1.5em;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer-icon-row .col-3 i {
    margin-right: 0.5em;
}

.footer-icon-row .col-3:not(:last-child) {
    box-shadow: 1px 0px 0px 0px #d6d6d6;
}

.quantity.buttons_added {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

:root .quantity.buttons_added .minus,
:root .quantity.buttons_added .plus {
    position: relative !important;
    height: 100% !important;
    line-height: 0 !important;
    margin: 0 !important;
    border: none !important;
    float: none !important;
    height: 2.2rem !important;
    width: 1.5rem !important;
    padding: 0 1.15em 0 0.8em !important;
    color: #FFFFFF;
    font-size: 1.34em !important;
    background-color: #333333;
}

:root .quantity.buttons_added .plus {
    padding: 0 1.3em 0 0.7em !important;
}

.quantity.buttons_added .minus {
    border-radius: 1.25em 0 0 1.25em;
}

.quantity.buttons_added .plus {
    border-radius: 0 1.25em 1.25em 0;
}

.quantity.buttons_added .input-text.qty.text {
    border: none !important;
    float: none !important;
    height: 2.5em !important;
    -moz-appearance: textfield !important;
    width: 3em !important;
    font-family: effra, sans-serif !important;
    font-weight: 300 !important;
    background-color: #FFFFFF;
    box-shadow: inset 0px 0px 0px 1px #cacaca !important;
}

.quantity.buttons_added .minus,
.quantity.buttons_added .plus,
.quantity.buttons_added .input-text.qty.text {
    font-size: 14px !important;
}

table.cart .product-quantity .plus,
table.cart .product-quantity .minus {
    display: inline-block !important
}

.woocommerce .woocommerce-input-wrapper input[type="text"],
.woocommerce .woocommerce-input-wrapper input[type="tel"],
.woocommerce .woocommerce-input-wrapper input[type="email"],
.woocommerce .woocommerce-input-wrapper input[type="password"],
.woocommerce .woocommerce-input-wrapper textarea,
.woocommerce .woocommerce-form input[type="text"],
.woocommerce .woocommerce-form input[type="tel"],
.woocommerce .woocommerce-form input[type="email"],
.woocommerce .woocommerce-form input[type="password"],
.woocommerce .woocommerce-form textarea,
#idpc_dropdown,
.select2-selection__rendered,
.select2-container--default .select2-selection--single {
    background-color: #fafafa;
    border-radius: 7px !important;
    box-shadow: inset 0px 0px 0px 1px #c7c7c7 !important;
    border: none;
    font-size: 1rem;
    font-weight: 300;
    color: #333333;
    height: 40px;
}

.checkout textarea,
.woocommerce-cart-form textarea {
    height: 100px;
}

.woocommerce .woocommerce-input-wrapper input[type="text"]:focus,
.woocommerce .woocommerce-input-wrapper input[type="tel"]:focus,
.woocommerce .woocommerce-input-wrapper input[type="email"]:focus,
.woocommerce .woocommerce-input-wrapper input[type="password"]:focus,
.woocommerce .woocommerce-input-wrapper textarea:focus,
.woocommerce .woocommerce-form input[type="text"]:focus,
.woocommerce .woocommerce-form input[type="tel"]:focus,
.woocommerce .woocommerce-form input[type="email"]:focus,
.woocommerce .woocommerce-form input[type="password"]:focus,
#idpc_dropdown:focus,
.woocommerce .woocommerce-form textarea:focus {
    box-shadow: inset 0px 0px 0px 2px #a3a3a3 !important;
}

.woocommerce .woocommerce-input-wrapper {
    position: relative;
}

.woocommerce .woocommerce-input-wrapper::after {
    pointer-events: none;
}

.woocommerce .woocommerce-validated .woocommerce-input-wrapper::after {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 1em;
    top: 2px;
    line-height: 1em;
    color: #23b347;
}

.woocommerce .woocommerce-invalid .woocommerce-input-wrapper::after {
    content: '\f06a';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 1em;
    top: 2px;
    line-height: 1em;
    color: #f2392c;
}

#billing_country_field .woocommerce-input-wrapper::after,
#shipping_country_field .woocommerce-input-wrapper::after {
    right: 1.6em !important;
    top: 4px !important;
}

#account_password_field .woocommerce-input-wrapper.password-input::after {
    right: 2.3em !important;
    top: 12px !important;
}

.show-password-input {
    padding: .529em;
    line-height: 1.6;
}

.woocommerce-password-hint {
    line-height: 1.25em;
}

#billing_address_1_field .woocommerce-input-wrapper,
#shipping_address_1_field .woocommerce-input-wrapper {
    display: block;
}

#billing_address_1_field .woocommerce-input-wrapper::after,
#shipping_address_1_field .woocommerce-input-wrapper::after {
    top: 12px !important;
}

.idpc_lookup .woocommerce-input-wrapper:nth-of-type(2)::after,
.idpc_lookup .woocommerce-input-wrapper:nth-of-type(3)::after {
    display: none;
}

#idpc_dropdown {
    margin-top: 1em;
    cursor: pointer;
}

div.idpc_autocomplete>ul>li:hover {
    background-color: #f2f2f2 !important;
}

div.idpc_autocomplete>ul>li {
    font-size: 1rem;
    color: #000000;
}

.woocommerce .woocommerce-input-wrapper .required {
    color: #f2392c;
    font-weight: 600;
    margin-right: 2px;
}

#order_comments_field .woocommerce-input-wrapper {
    height: 100%;
    display: inline-block;
    width: 100%;
}

#order_comments_field.woocommerce-validated .woocommerce-input-wrapper:after {
    top: auto !important;
    bottom: 1em !important;
}

#order_comments_field .woocommerce-input-wrapper textarea {
    min-width: 100%;
    max-width: 100%;
}

.woocommerce-additional-fields {
    clear: both;
}

.woocommerce .form-row label {
    font-weight: 300;
    font-size: 1rem;
    color: #333333;
    margin-bottom: 5px;
}

#idpc_button {
    margin-top: 1em;
}

@media screen and (min-width: 768px) {
    .idpc_lookup {
        width: 44.4444444444%;
        float: left;
        margin-right: 11.1111111111%;
    }
}

input:autofill {
    background-image: linear-gradient(#eeeeee, #eeeeee) !important;
}

.shipping-choice {
    display: flex;
}

.woocommerce-checkout #customer_details .col-2,
#my_custom_checkout_field,
.woocommerce-checkout-payment {
    margin-top: 3em;
}

#ship-to-different-address {
    margin-top: 1em;
}

#ship-to-different-address,
#create-account-choice {
    margin-bottom: 1.5em !important;
}

#ship-to-different-address-checkbox,
#create-account-choice input {
    display: none;
}

#ship-to-different-address .theme-btn,
#create-account-choice .theme-btn {
    display: inline-flex !important;
    padding-left: 4em !important;
    padding-right: 4em !important;
    margin-right: 1em;
}

#ship-to-different-address .label-title,
#create-account-choice .label-title {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: #333333;
}

#ship-to-different-address .label-sub-title,
#create-account-choice .label-sub-title {
    display: block;
    font-weight: 300;
    font-size: 1rem;
    color: #333333;
    margin-bottom: 0.5em;
}

#ship-to-different-address-checkbox~.no-choice,
#ship-to-different-address-checkbox:checked~.yes-choice,
#ship-to-different-address-checkbox:checked~.no-choice:hover,
#create-account-choice input~.no-choice,
#create-account-choice input:checked~.yes-choice,
#create-account-choice input:checked~.no-choice:hover {
    background-color: #f2682c !important;
    color: #FFFFFF !important;
}

#ship-to-different-address-checkbox:checked~.no-choice,
#create-account-choice input:checked~.no-choice {
    background-color: #FFFFFF !important;
    color: #f2682c !important;
}

.woocommerce-form__label-for-checkbox {
    width: 100%;
}

.form-sub-title {
    font-weight: 300 !important;
    color: #000 !important;
    font-size: 1.75em !important;
    margin-bottom: 0.35em !important;
    margin-top: 1em;
    line-height: 1.1 !important;
}

@media screen and (min-width:768px) {
    .col2-set {
        width: 62%;
    }
    #order_review_heading,
    #order_review {
        width: 32%;
    }
}

#order_review .cart_item .product-name {
    font-size: 1rem;
    display: block;
    color: #000;
    font-weight: 500;
    line-height: 1.2em;
}

#order_review .cart_item .product-name p {
    margin-bottom: 0.15em;
}

#order_review .cart_item .product-name span {
    font-weight: 300 !important;
}

#order_review .cart_item {
    padding: 1em 0;
    border-bottom: 1px solid #eeeeee;
    margin: 0 1em;
}

#order_review .cart-item:last-of-type {
    border: none !important;
}

#order_review .shop_table.woocommerce-checkout-review-order-table {
    border: 1px solid #eeeeee;
    padding: 0.5em 0 0 0;
}

.checkout_coupon .woocommerce-input-wrapper {
    display: flex;
}

.checkout_coupon .woocommerce-input-wrapper * {
    flex-basis: 100%;
}

.checkout_coupon .woocommerce-input-wrapper button {
    margin-left: 1.5em;
}

.woocommerce-message,
.woocommerce-error {
    margin-bottom: 1.5em !important;
}

@media screen and (max-width: 767px){
    .cart_item{
        display: flex !important;
        flex-direction: column;
    }
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px !important
}

#payment .payment_methods li.wc_payment_method>input[type="radio"]+label {
    margin: 0 !important;
    box-shadow: inset 0px 0px 0px 1px #f2f2f2 !important;
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
}

#payment .payment_methods li.wc_payment_method>input[type="radio"]:first-child:checked+label {
    box-shadow: inset 0px 0px 0px 1px #f2682c !important;
}

#payment .payment_methods>li:not(.woocommerce-notice),
#payment .payment_methods>li .payment_box {
    background: transparent !important;
    font-size: 1rem;
}

#payment .payment_methods>.woocommerce-PaymentMethod>label::before,
#payment .payment_methods>.wc_payment_method>label::before {
    color: #f2f2f2;
    text-shadow: 0px 0px 1px #000;
}

#payment .payment_methods>.woocommerce-PaymentMethod>input[type="radio"]:first-child:checked+label::before,
#payment .payment_methods>.wc_payment_method>input[type="radio"]:first-child:checked+label::before {
    text-shadow: none !important;
}

.about_paypal {
    font-size: 12px;
    margin-right: 0.5em;
    text-decoration: underline;
    display: inline-block;
}

#payment .wc_payment_methods {
    box-shadow: inset 0px 0px 0px 1px #f2f2f2 !important;
}

#payment .place-order {
    margin-top: 0;
    background: transparent !important;
    padding: 1em 0 !important;
}

.woocommerce-privacy-policy-text p {
    font-size: 13px;
}

#payment .place-order .validate-required {
    background-color: #f2f2f2;
    padding: 0.75em 1em;
    margin: 1em 0;
}

#payment #place_order.theme-btn {
    background-color: #f2682c !important;
    color: #FFFFFF !important;
    padding-left: 7em !important;
    padding-right: 7em !important;
    margin-top: 1.5em;
    float: right;
}

#payment .woocommerce-form__label-for-checkbox,
.woocommerce-form-login__rememberme {
    display: flex !important;
    align-items: center !important;
}

.woocommerce-form-login__rememberme {
    margin-bottom: 1em !important;
}

.form-row.woocommerce-invalid input.input-checkbox {
    outline: none !important;
}

#sagepayform-card-icons {
    float: right !important;
}

.product-breadcrumb {
    margin-bottom: 0.5em;
}

.product-breadcrumb * {
    color: #9c9c9c !important;
    font-size: 13px;
    font-weight: 400;
}

.product-breadcrumb a {
    text-decoration: underline;
}

.m360-selector img {
    max-width: 100% !important;
    max-height: 100% !important;
}

:root [data-magic-slide-id].active-selector img {
    -webkit-filter: brightness(100%) !important;
    filter: brightness(100%) !important;
}

:root [data-magic-slide-id].m360-selector img,
[data-magic-slide-id].video-selector img {
    box-shadow: none !important;
}

:root [data-magic-slide-id].mz-thumb:hover:not(.active-selector) img,
:root [data-magic-slide-id].m360-selector:hover:not(.active-selector) img,
:root [data-magic-slide-id].video-selector:hover:not(.active-selector) img {
    -webkit-filter: brightness(100%) !important;
    filter: brightness(100%) !important;
}

:root .mz-thumb.mz-thumb-selected img {
    border-bottom: none !important;
}

@media screen and (max-width: 767px) {
     :root div.MagicToolboxContainer.selectorsLeft .MagicToolboxSelectorsContainer {
        flex-basis: 100px !important;
    }
     :root div.MagicToolboxContainer.selectorsLeft .MagicToolboxSelectorsContainer .MagicScroll-arrows-outside {
        height: 100% !important;
    }
     :root div.MagicToolboxContainer.selectorsLeft .MagicToolboxSelectorsContainer .MagicScroll a {
        padding: 0 6px !important;
    }

    .MagicToolboxContainer.noscroll .MagicToolboxSelectorsContainer > div{
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: center;
    }
    .MagicToolboxContainer.noscroll .MagicToolboxSelectorsContainer > div a{
        max-width:100px;
        width: 100%;
        height: 100%;
        margin: 0 15px 0 0;
        flex-basis: 25%;
    }
}

@media screen and (min-width: 768px) {
    div.MagicToolboxContainer.selectorsLeft .MagicToolboxMainContainer {
        padding-left: 30px !important;
    }
     :root .mz-thumb img {
        padding-bottom: 0 !important;
        max-height: 100%;
        height: auto !important;
        object-fit: cover;
    }
     :root .mcs-item a {
        border: none !important;
        border-radius: 3px !important;
        padding: 0 0 12px 0 !important;
        display: block;
    }
     :root .mcs-item a {
        height: 100% !important;
    }
}

.mcs-button {
    border-radius: 100% !important;
    background-color: #e9e9e9 !important;
}

.mcs-button:hover {
    background-color: #dadada !important;
}

.MagicScroll-horizontal .mcs-button-arrow-prev::before,
.MagicScroll-horizontal .mcs-button-arrow-next::before,
.MagicScroll-vertical .mcs-button-arrow-prev::before,
.MagicScroll-vertical .mcs-button-arrow-next::before {
    width: 7px !important;
    height: 7px !important;
    border-width: 2px !important;
    border-color: rgba(49, 51, 61, 0.8) !important;
}

.MagicScroll-vertical .mcs-button-arrow-prev::before {
    top: 57% !important;
}

.MagicScroll-vertical .mcs-button-arrow-next::before {
    top: 46% !important;
}


/*
.MagicToolboxMainContainer .magic-slide a{
  width: 100%;
}

.MagicToolboxMainContainer .magic-slide a .mz-figure{
  width: 100%;
  padding-bottom: 100%;
}

.MagicToolboxMainContainer .magic-slide a .mz-figure img{
  position: absolute !important;
  top: 0px;
  left: 0px;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
}
*/

.fal.fa-light.fa-shield-check::before {
    content: "\f2f7";
}

.terms-slider .swiper-slide {
    width: 100%;
}

@media screen and (min-width: 1200px) {
    .terms-slider .swiper-slide {
        width: 100%;
        --gap: calc(120px / 3);
        --container-width: calc(var(--desktop-breakpoint) * 1px);
        max-width: calc((var(--container-width) / 3) - var(--gap));
    }
    .terms-slider .slider-next {
        --container-width: calc(var(--desktop-breakpoint) * 1px);
        --side-width: calc(100vw - var(--container-width));
        --responsize-container-width: calc(100vw - var(--side-width));
        left: calc(var(--responsize-container-width) - 21px);
    }
}

@media screen and (max-width: 1199px) {
    .terms-slider .slider-next {
        right: 1em;
    }
}

.terms-slider .swiper-slide span.img-cover {
    background-color: #CCCCCC;
}

.terms-slider .swiper-slide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border: 1px solid #f2f2f2;
}

.terms-slider .slider-nav {
    position: absolute;
    top: 100px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #303030;
    z-index: 2;
    cursor: pointer;
    color: #FFF;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF;
}

.terms-slider .slider-prev {
    left: 1em;
    display: none;
}

.terms-slider .swiper-slide-visible:last-of-type {
    opacity: 0.5;
}

.terms-slider .swiper-slide {
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
}

.terms-slider .swiper-slide.swiper-slide-prev,
.terms-slider .swiper-slide.swiper-slide-next,
.terms-slider .swiper-slide.swiper-slide-active,
.terms-slider .swiper-slide.swiper-slide-next+.swiper-slide.swiper-slide-visible {
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.4s ease-in-out;
}

.swiper-lazy-preloader {
    border: 4px solid #f2682c !important;
    border-top-color: transparent !important;
}

.casestudies-section-container .col-4 img {
    border: 1px solid #f2f2f2;
}

.casestudies-section-container .row-container,
.inspirations-section-container .row-container {
    align-items: start;
}

.casestudies-section-container .row-container::after,
.inspirations-section-container .row-container::after {
    content: '';
    width: calc(((100% / 12) * 4) - 40px);
}

.header-img-row {
    display: flex;
    max-height: 500px;
    justify-content: space-between;
    gap: 5px;
}

.header-img-row div {
    flex-basis: 100%;
    flex-grow: 1;
}

@media screen and (max-width:767px) {
    .header-img-row div:last-of-type {
        display: none;
    }
}

@media screen and (max-width:500px) {
    .header-img-row div:not(:first-of-type) {
        display: none;
    }
}

.header-img-row img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0 !important;
}

.row-layout {
    margin-top: 4.5em;
    padding: 0em 1em;
}

@media screen and (max-width: 767px){
    .sm_hidden{
        display: none;
    }
}

article .row-layout:first-of-type {
    margin-top: 0;
}

.single-casestudies .content-area .row-layout,
.single-casestudies .content-area .row-layout:first-of-type {
    margin-top: 2.5em;
    padding: 0 !important;
}

.row-layout-title {
    margin-bottom: 0.8em !important;
    width: 100%;
}

.inspire-img {
    margin-bottom: 2em;
}

.inspire-img img {
    margin-bottom: 0.5em;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .inspirations-section-container .col-4,
    .casestudies-section-container .col-4 {
        margin-bottom: 2em
    }
}

@media screen and (min-width: 768px) {
    .casestudies-section-container .col-4 .img-cover,
    .inspirations-section-container .col-4 .img-cover {
        padding-bottom: 100%;
    }
    .casestudies-section-container .col-4 .img-cover img,
    .inspirations-section-container .col-4 .img-cover img {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.is-archive .col-4,
.is-archive .col-6 {
    margin-bottom: 2em
}

.terms-slider .medium-title,
.inspirations-section-container .col-4 .medium-title,
.casestudies-section-container .col-4 .medium-title {
    margin-top: 0.5em
}

.inspirations-section-container .col-4:hover,
.casestudies-section-container .col-4:hover {
    cursor: pointer;
}

span.img-cover {
    position: relative;
    overflow: hidden;
}

.terms-slider-section-container span.img-cover {
    display: block;
}

span.img-cover img {
    border-radius: 0px !important;
    width: 100%;
}

span.img-cover::before {
    content: '+';
    font-family: 'Font Awesome 5 Pro' !important;
    font-weight: 300;
    position: absolute;
    background-color: #ffffff;
    color: #000;
    padding: 30px 30px 31px 30px;
    font-size: 3em;
    border-radius: 4em;
    z-index: 4;
    left: calc(50% - 43px);
    top: calc(50% - 43px);
    line-height: 26px;
    width: auto;
    opacity: 0;
    transform: scale(0.3);
    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.10), 0 5px 2px rgba(0, 0, 0, 0.02);
    transition: opacity 0.4s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.4s ease-in-out;
}

.casestudies-section-container span.img-cover::before,
.terms-slider-section-container span.img-cover::before {
    content: '';
    font-size: 2em;
}

.col-4:hover span.img-cover::before,
.terms-slider-section-container .swiper-slide:hover span.img-cover::before,
.col-4:focus span.img-cover::before,
.terms-slider-section-container .swiper-slide:focus span.img-cover::before {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20), 0 10px 7px rgba(0, 0, 0, 0.12);
}

@media (hover: none) and (pointer: coarse) {
    span.img-cover::before {
        transform: scale(0.5);
        opacity: 1;
        left: auto !important;
        top: auto !important;
        bottom: 0px !important;
        right: 0px !important;
        padding: 28px 30px 33px 30px;
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.20), 0 15px 12px rgba(0, 0, 0, 0.12);
    }
    .col-4:hover span.img-cover::before .col-4:focus span.img-cover::before,
    .col-4:active span.img-cover::before {
        transform: scale(0.6);
    }
}

.featured-section-container .row-container {
    position: relative;
}

.featured-section-container img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
}

.featured-section-container .featured-callout-box {
    position: absolute;
    right: 2em;
    bottom: 2em;
    background-color: #FFFFFF;
    max-width: clamp(0px, 400px, 40vw);
    width: 100%;
    padding: 2em 1.65em 2em 2em;
}

@media screen and (max-width:767px) {
    .featured-section-container .featured-callout-box {
        position: relative;
        right: auto;
        bottom: auto;
        background-color: #FFFFFF;
        max-width: calc(100% - 4rem);
        width: 100%;
        padding: 2em 1.65em 2em 2em;
        margin: -7rem auto 0;
        border: 1px solid #f2682c;
    }
}

.jump-to-nav>span {
    color: #9c9c9c;
    display: block;
    font-weight: 500 !important;
}

.jump-to-nav ul {
    list-style: none;
    margin: 0;
}

.jump-to-nav ul li {
    border-top: 1px solid #f2f2f2;
    margin: 0 !important;
}

.jump-to-nav ul li:last-of-type {
    border-bottom: 1px solid #f2f2f2;
}

.jump-to-nav ul li a {
    padding: 10px 0;
    margin: 0 !important;
    display: block;
    font-size: 1rem;
}

@media screen and (max-width: 767px) {
    .jump-to-nav {
        margin-top: 2em;
    }
    .jump-to-nav.honey {
        display: none;
    }
}

.terms-slider-section-container {
    padding: 0 0 0 1em;
}

.terms-slider-section-container .row-container {
    margin: 0 0 0 auto;
    --container-width: calc(var(--desktop-breakpoint) * 1px);
    --side-width: calc((100vw - var(--container-width)) / 2);
    max-width: calc((100vw - var(--side-width)) - 0.5em) !important;
}


/*Tesstimonial row layout*/

.testimonials-section-container .row-layout-title::before {
    content: '“';
    display: block;
    color: #f2682c;
    font-size: 2.5em;
    line-height: 0;
    font-weight: bold;
    margin-bottom: 10px;
}

.testimonial-slider-section-container .row-layout-title {
    text-align: center;
}

.testimonial-slider-section-container .row-layout-title,
.testimonials-section-container .row-layout-title {
    padding-top: 1.5rem;
}

.-slider-section-container .row-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider {
    max-width: calc(100% - 70px);
    margin: 0 auto;
}

@media screen and (min-width: 450px) {
    .testimonials-slider {
        max-width: calc(100% - 110px);
        margin: 0 auto;
    }
}

@media screen and (min-width: 768px) {
    .testimonials-slider {
        max-width: calc(100% - 200px);
        margin: 0 auto;
    }
}

.testimonials-slider .swiper-slide * {
    text-align: center;
}

.testimonial-slider-section-container .row-container {
    position: relative;
    max-width: 850px;
}

.testimonial-slider-section-container .slider-nav {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #f2f2f2;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    cursor: pointer
}

.testimonial-slider-section-container .slider-nav.slider-next {
    right: 0;
}


/*Content + Video Layout */

.content-video-section-container .row-container {
    max-width: 850px;
    margin: 0 auto;
}

.content-video-section-container .inner-content-container {
    max-width: 700px;
    margin: 0 auto;
}

.content-video-section-container .inner-content-container * {
    text-align: center !important;
}


.content-video-section-container .embed-container {
    margin: 2.5em auto 0;
}

.extra-info-section-container .embed-container{
    width: 100%;
    height: 100%;
}

.content-video-section-container .embed-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.extra-info-section-container .embed-container{
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.extra-info-section-container .embed-container iframe,
.content-video-section-container .embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.content-video-section-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.extra-info-section-container .embed-container img{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.video-play-button {
    font-family: 'Font Awesome 5 Pro' !important;
    font-weight: 300;
    position: absolute;
    background-color: #ffffff;
    color: #000;
    padding: 9px 33px;
    font-size: 2em;
    border-radius: 4em;
    z-index: 1;
    left: calc(50% - 43px);
    top: calc(50% - 43px);
    width: auto;
    height: 86px;
    width: 86px;
    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.10), 0 5px 2px rgba(0, 0, 0, 0.02);
    transition: opacity 0.4s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.4s ease-in-out;
}


/*Latest News Post Card */

.latest-news-section-container .row-layout-title {
    text-align: center;
}

.latest-news-post-card {
    border: 1px solid #d1d1d1;
    padding: 1rem;
}

.latest-news-post-card .wp-post-image {
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: cover;
    margin-bottom: 1.2rem;
}

.post-card-inner-content {
    padding: 1em 1.5em;
}

@media screen and (max-width:767px) {
    .latest-news-post-card:not(:last-of-type) {
        margin-bottom: 2rem;
    }
}


/*Logo Row*/

.logo-row-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.logo-row-logo {
    max-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    max-width: 200px;
    flex: 1 0 0;
}

.logo-row-logo img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
}

.logo-row-section-container .title-row-container {
    padding-top: 3rem;
    border-top: 1px solid #d1d1d1;
}

.logo-row-section-container .title-row-container h2 {
    text-align: center;
    margin-bottom: 1.75rem;
}

.logo-row-section-container .logo-row-container {
    padding-bottom: 3.75rem;
    border-bottom: 1px solid #d1d1d1;
}

@media screen and (min-width: 550px) {
    .is-archive .top-content {
        max-width: 65%;
    }
}

.is-archive {
    margin-top: 3rem;
}

.is-archive .top-content,
header .top-content {
    margin-bottom: 3rem;
}

.wc-nested-category-layout-category-title a {
    color: #000 !important;
}

.paging-container {
    display: flex;
    justify-content: flex-end;
    gap: 2em;
}

.paging-container .theme-btn {
    max-width: 100% !important;
}


/*Icon Column*/

.icon-row-section-container .row-layout-title {
    text-align: center;
    margin-bottom: 2.5rem !important;
    width: 100%;
}

.icon-layout-col {
    padding: 2rem 0;
}

.icon-layout-col * {
    text-align: center;
}

.icon-layout-col i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.icon-layout-col:not(:last-of-type) {
    border-bottom: 2px solid #f2f2f2;
    border-right: none;
}

@media screen and (min-width: 768px) {
    .icon-layout-col:not(:last-of-type) {
        border-right: 2px solid #f2f2f2;
        border-bottom: none;
    }
    .icon-layout-col {
        padding: 0 3rem;
    }
}


/*Hero Carousel*/

.hero-carousel-section-container {
    padding: 0 !important;
    border-bottom: 1px solid #d6d6d6;
}

.hero-carousel-section-container .footer-icon-row {
    margin: 0 auto !important;
    padding-bottom: 1.5em;
}

.hero-carousel-slide {
    padding: clamp(15rem, 50vh, 25rem) 1rem 3rem;
    background-size: cover;
    background-position: center center;
    height: auto !important;
}

.hero-carousel-slide img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.hero-carousel-slide,
.hero-carousel-slide.bottom {
    padding: clamp(15rem, 50vh, 25rem) 1rem 3rem;
}

.hero-carousel-slide.top {
    padding: 3rem 1rem clamp(15rem, 50vh, 25rem);
}

.hero-carousel-slide.center {
    padding: clamp(7.5rem, 25vh, 12.5rem) 1rem clamp(7.5rem, 25vh, 12.5rem) 1rem;
}

.hero-slide-content {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    position: relative;
}

.hero-carousel-section-container.is-transparent .hero-slide-content{
    background-color: transparent;
    max-width: 767px !important;
    position: relative;
    z-index: 3;
}

.hero-carousel-section-container.is-transparent .hero-slide-content h1,
.hero-carousel-section-container.is-transparent .hero-slide-content h2{
/*    font-size: clamp(2rem, 0.5714rem + 4.5714vw, 4rem); */
    font-size: clamp(2rem, 0.5714rem + 4.5714vw, 4rem) !important;
    color: white !important;
    text-align: center;
    text-shadow: 0 0 4rem rgba(0,0,0,0.75);
    max-width: 767px;
}

.hero-carousel-section-container.is-transparent .hero-slide-content p{
    font-size: clamp(1rem, 0.6429rem + 1.1429vw, 1.5rem);
    color: white !important;
    font-weight: 400;
    text-align: center;
    text-shadow: 0 0 4rem rgba(0,0,0,0.75);
    max-width: 767px;
}

.hero-carousel-section-container.is-transparent .hero-slide-content > a{
    margin: 0 auto;
    font-size: 1rem !important;
    padding-inline: 2.5em !important;
    background-color: transparent  !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
}

.hero-carousel-section-container.is-transparent .hero-slide-content > a:hover{
    background-color: #FFFFFF  !important;
    color: #f2682c !important;
}

.hero-slide-content a {
    cursor: pointer !important;
}

.hero-carousel-slide .row-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-carousel-slide .row-container,
.hero-carousel-slide .row-container.right {
    justify-content: end;
}

.hero-carousel-slide .row-container.left {
    justify-content: start;
}

.hero-carousel-slide .row-container.center {
    justify-content: center;
}

.hero-carousel-section-container.is-transparent .hero-carousel-slide .hero-carousel-img{
    z-index: 1;
}

.hero-carousel-section-container.is-transparent .hero-carousel-slide::before,
.hero-carousel-section-container.is-transparent .hero-carousel-slide::after{
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-carousel-section-container.is-transparent .hero-carousel-slide::before{
    background: rgba(0,0,0,0.4);
    mix-blend-mode: soft-light;
}

.hero-carousel-section-container.is-transparent .hero-carousel-slide::after{
    background: rgba(0,0,0,0.2);
    mix-blend-mode: darken;
}

.hero-slide-content h1,
.hero-slide-content h2 {
    margin-bottom: 1rem !important;
}

.carousel-pagination-container,
.carousel-navigation-container {
    position: absolute;
    bottom: 1.2rem;
    left: 0;
    height: 10px;
    width: 100%;
    padding: 0 1em;
    z-index: 3;
}

.carousel-navigation-container {
    height: 30px;
    bottom: 0.4rem;
}

.carousel-pagination-container .row-container,
.carousel-navigation-container .row-container {
    height: 10px;
    position: relative;
}

.carousel-navigation-container .row-container {
    display: flex;
}

.carousel-pagination-container .swiper-pagination {
    bottom: 0 !important;
    left: auto !important;
    right: 0 !important;
    transform: none !important;
}

.swiper-pagination-bullet {
    background-color: #FFFFFF !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background-color: #f2682c !important;
}

.carousel-navigation-container .carousel-nav {
    width: 25px;
    height: 25px;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #f2f2f2;
    border-radius: 100%;
    cursor: pointer !important;
}

.carousel-navigation-container .carousel-nav.slider-prev {
    margin-right: 0.5rem;
}

@media screen and (max-width:767px) {
    .hero-carousel-section-container:not(.is-transparent) .hero-carousel-slide img{
        position: relative;
        flex-basis: 100%;
        height: auto !important;
    }

    .hero-carousel-section-container.is-transparent{
        height: 75vh;
    }

    .hero-carousel-section-container.is-transparent .hero-slider{
        height: 100%;
    }
    
    .hero-carousel-slide {
        padding: 0 !important;
    }
    .hero-carousel-slide .row-container {
        height: auto !important;
    }
    .hero-carousel-slide {
        display: flex;
        flex-direction: column;
    }
    .carousel-pagination-container,
    .carousel-navigation-container {
        bottom: 0.9rem;
    }
    .carousel-navigation-container {
        height: 26px;
        bottom: 0.7rem;
    }
    .hero-slide-content {
        max-width: 100%;
        padding: 2rem 1rem 4rem;
    }
    .swiper-pagination-bullet {
        background-color: #333 !important;
    }
    .swiper-pagination-bullet-active {
        background-color: #f2682c !important;
    }
    .hero-slider {
        border-bottom: 1px solid #d6d6d6;
    }
}

.case-study-article-header h2 {
    margin-top: 0.5em;
}

.case-study-article-header span {
    color: #414141;
}

.herschel-breadcrumbs {
    margin: 1.35em 0 1em;
}

.herschel-breadcrumbs span {
    color: #9c9c9c;
    font-size: 13px;
}

.herschel-breadcrumbs>span:not(:last-of-type)::after {
    content: '/';
    display: inline-block;
    margin: 0 0.5em;
}

.single-casestudies .content-area {
    padding: 0 1em;
}


/*Single Testimonials*/

.t-p-name {
    color: #5f5f5f;
    font-weight: 500;
    font-size: 13px;
}

.t-c-company {
    font-weight: 500;
    color: #f2682c;
    font-size: 13px;
}

.t-c-link {
    display: block;
    color: #7c7c7c;
    font-size: 13px;
}

.column-row-section-container .col-4 img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.column-row-section-container .col-4 h3 {
    margin-top: 0.8em !important;
}

@media screen and (max-width:767px) {
    .column-row-section-container .col-4 {
        margin-bottom: 2rem;
    }
}

.enquiry-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #FFFFFF;
    z-index: 999;
    border-top: 1px solid #f2682c;
    max-height: 0px;
}

.inner-enquiry-banner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    width: 100%;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.inner-enquiry-banner-container .small-title {
    margin-bottom: 0;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .inner-enquiry-banner-container {
        gap: 0.5rem;
        padding: 0.5rem 0.5rem 2.5rem;
    }
}

.woocommerce-result-count{
    display: none !important;
}

.woocommerce-ordering  .select2-container{
    width: 100% !important;
    max-width: 225px;
}
.woocommerce-ordering .select2-selection{
    background: #FFFFFF;
    box-shadow: none !important;
}
.woocommerce-ordering .select2-selection .select2-selection__rendered{
    background-color: #FFFFFF !important;
    border-radius: 100px !important;
    box-shadow: inset 0px 0px 0px 1px rgb(133, 133, 133) !important;
    color: rgb(133, 133, 133);
    text-transform: uppercase;
    padding-left: 1.2em;
    padding-right: calc(1.2em + 20px) !important;
    font-size: 0.8em;
    letter-spacing: 0.01em;
}

.woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__arrow b {
    left: 0% !important;
}

.select2-dropdown {
    margin-top: 7px;
    border-radius: 7px !important;
  }
  
  .select2-container--open .select2-dropdown--below {
    border: 1px solid #c7c7c7 !important;
    border-top: 1px solid #c7c7c7 !important;
  }
  
  .select2-container--default .select2-results__option--highlighted[aria-selected], 
  .select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: #f2682c !important;
    color: #fff;
  }
  .select2-container--default .select2-search--dropdown .select2-search__field{
    background-color: #f2f2f2;
    border-radius: 7px;
    box-shadow: inset 0px 0px 0px 1px #c7c7c7 !important;
    border: none;
    color: #333333;
    padding-left: 0.5em;
  }

#toggle-rad-banner{
    position: absolute;
    bottom: 100%;
    left: 0.5rem;
    background: #fff;
    border: 1px solid #f2682c;
    border-bottom-color: #FFF;
    padding: 0.5rem 0.7rem 1.5rem 0.7rem;
    height: 25px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px !important;
    letter-spacing: 0.03em;
    
}

#toggle-rad-banner:hover{
    color: #f2682c;
}

@media screen and (min-width: 768px){
    #toggle-rad-banner i{
        display: none;
    }
}

@media screen and (max-width: 767px){
    #toggle-rad-banner span{
        display: none;
    }
}

.cat-list{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cat-select{
    border: 1px solid #f2682c;
    background-color: #FFF;
    line-height: 40px !important;
    padding: 10px 1.2rem;
    border-radius: 100vw;
    cursor: pointer;
}

.cat-select:active,
.cat-select:focus{
    outline: 3px solid rgb(214, 214, 214) !important;
}

.filter-title{
    font-size: 12px;
    display: block;
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
}

.project-tiles.loading{
    pointer-events: none;
    opacity: 0.25;
}


.fullwidth-video-section-container{
    width: 100%;
    height: calc(100vh - 50px);
    position: relative;
    padding: 0;
}

.fullwidth-video-section-container .video-container{
    width: 100%;
    height: 100%;
    position: relative;
}

.fullwidth-video-section-container video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fullwidth-video-section-container .video-container .section-container{
    z-index: 2;
    position: relative;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
}

.fullwidth-video-section-container .video-container .section-container .featured-callout-box{
    margin: 2rem;
    background-color: #FFFFFF;
    max-width: clamp(0px, 400px, 100vw);
    width: 100%;
    padding: 2em 1.65em 2em 2em;
}

.fullwidth-video-section-container .video-container .section-container .content-container{
    height:100%;
    position: relative;
}

.fullwidth-video-section-container .video-container .section-container .row-container{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.fullwidth-video-section-container .video-container .section-container .row-container.top{
    align-items: flex-start;
}

.fullwidth-video-section-container .video-container .section-container .row-container.center--v{
    align-items: center;
}

.fullwidth-video-section-container .video-container .section-container .row-container.bottom{
    align-items: flex-end;
}

.fullwidth-video-section-container .video-container .section-container .row-container.left{
    justify-content: flex-start;
}

.fullwidth-video-section-container .video-container .section-container .row-container.center--h{
    justify-content: center;
}

.fullwidth-video-section-container .video-container .section-container .row-container.right{
    justify-content: flex-end;
}

.fullwidth-video-section-container .featured-callout-box.is-transparent{
    background-color: transparent !important;
    max-width: 500px !important;
    padding: 0 !important;
}

.fullwidth-video-section-container .row-container.center--h .featured-callout-box *{
    text-align: center !important;
    margin-inline: auto !important;
}

.fullwidth-video-section-container .row-container.right .featured-callout-box.is-transparent *{
    text-align: right !important;
    margin-left: auto !important;
    margin-right:0 !important;
}

.fullwidth-video-section-container .featured-callout-box.is-transparent h2{
    font-size: clamp(2rem, 0.5714rem + 4.5714vw, 4rem);
    color: white !important;
    text-shadow: 0 0 4rem rgba(0,0,0,0.75);
}

.fullwidth-video-section-container .featured-callout-box.is-transparent p{
    font-size: clamp(1rem, 0.6429rem + 1.1429vw, 1.5rem);
    color: white !important;
    font-weight: 400;
    text-shadow: 0 0 4rem rgba(0,0,0,0.75);
}

.fullwidth-video-section-container .featured-callout-box.is-transparent a{
    font-size: 1rem !important;
    background-color: transparent;
    text-shadow: 0 0 4rem rgba(0,0,0,0.75);
    font-weight: 700 !important;
    letter-spacing: 0.04em;
}

.fullwidth-video-section-container .featured-callout-box.is-transparent a:not(:hover){
    background-color: transparent !important;
    background: transparent !important;
    
}

.fullwidth-video-section-container .video-container.has-transparency .section-container{
    z-index: 3;
}

.fullwidth-video-section-container .video-container.has-transparency video{
    z-index: 1;
}

.fullwidth-video-section-container .video-container.has-transparency::before,
.fullwidth-video-section-container .video-container.has-transparency::after{
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.fullwidth-video-section-container .video-container.has-transparency::before{
    background: rgba(0,0,0,0.4);
    mix-blend-mode: soft-light;
}

.fullwidth-video-section-container .video-container.has-transparency::after{
    background: rgba(0,0,0,0.2);
    mix-blend-mode: darken;
}

.accordion-container{
    width: 100%;
    max-width: 100%;
}

.has-animation.content-video-section-container .embed-container,
.has-animation.extra-info-section-container .col-6:not(.content-col){
    position: relative;
}

.has-animation.content-video-section-container .embed-container::before,
.has-animation.extra-info-section-container .col-6:not(.content-col)::before{
    content: '';
    position: absolute;
    z-index: 3;
    inset: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: 100% 100%;
    background-color: #999999;
}

.has-animation.content-video-section-container .embed-container::after,
.has-animation.extra-info-section-container .col-6:not(.content-col)::after{
    content: '';
    position: absolute;
    z-index: 2;
    inset: 0;
    width:100%;
    height: 100%;
    transform: scaleX(1);
    transform-origin: 100% 100%;
    background-color: white;
}

.has-animation.content-video-section-container.animate .embed-container::before,
.has-animation.extra-info-section-container.animate .col-6:not(.content-col)::before{
    animation-duration: 1.5s;
    animation-name: revealSlideTop;
    animation-fill-mode: forwards;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: reverse;
}

.has-animation.content-video-section-container.animate .embed-container::after,
.has-animation.extra-info-section-container.animate .col-6:not(.content-col)::after{
    animation-duration: 0.75s;
    animation-name: revealSlideBottom;
    animation-fill-mode: forwards;
    animation-delay: 0.75s;
    animation-iteration-count: 1;
}

.has-animation,
.has-animation.up{
    --translate: translateY(50px);
}

.has-animation.right{
    --translate: translateX(50px);
}

.has-animation.down{
    --translate: translateY(-50px);
}

.has-animation.left{
    --translate: translateX(-50px);
}

.has-animation.logo-row-section-container,
.has-animation.editor-section-container,
.has-animation.content-video-section-container,
.shop-section-container .col-4.has-animation,
.products-section-container .col-4.has-animation,
.has-animation.inspirations-section-container .col-4,
.casestudies-section-container .col-4.has-animation,
.has-animation .title-row-container,
.has-animation .row-layout-title,
.has-animation.icon-row-section-container .col-4,
.has-animation.column-row-section-container .col-4,
.has-animation.latest-news-section-container .col-6,
.has-animation.hero-carousel-section-container .hero-slide-content,
.featured-section-container .featured-callout-box.has-animation,
.fullwidth-video-section-container .featured-callout-box.has-animation{
    opacity: 0;
    transform: var(--translate);
}

.has-animation.extra-info-section-container .col-6.content-col{
    opacity: 0;
}

.has-animation.logo-row-section-container.animate,
.shop-section-container .col-4.has-animation.animate[data-count="1"],
.products-section-container .col-4.has-animation.animate[data-count="1"],
.has-animation.inspirations-section-container.animate .col-4[data-count="1"],
.casestudies-section-container .col-4.has-animation.animate[data-count="1"],
.has-animation.editor-section-container.animate,
.has-animation.content-video-section-container.animate,
.has-animation.hero-carousel-section-container.animate .hero-slide-content,
.featured-section-container .featured-callout-box.has-animation.animate,
.fullwidth-video-section-container .featured-callout-box.has-animation.animate,
.has-animation.animate .title-row-container,
.has-animation.animate .row-layout-title,
.has-animation.latest-news-section-container.animate .col-6:nth-child(1),
.has-animation.icon-row-section-container.animate .col-4:nth-child(1),
.has-animation.column-row-section-container.animate .col-4:nth-child(1){
    animation-duration: 0.75s;
    animation-name: fadeInUp;
    animation-fill-mode: forwards;
    animation-delay: 0.35s;
    animation-iteration-count: 1;
}

.has-animation.extra-info-section-container.animate .col-6.content-col{
    animation-duration: 0.75s;
    animation-name: fadeIn;
    animation-fill-mode: forwards;
    animation-delay: 0.75s;
    animation-iteration-count: 1;
}

.shop-section-container .col-4.has-animation.animate[data-count="2"],
.products-section-container .col-4.has-animation.animate[data-count="2"],
.has-animation.inspirations-section-container.animate .col-4[data-count="2"],
.casestudies-section-container .col-4.has-animation.animate[data-count="2"],
.has-animation.icon-row-section-container.animate .col-4:nth-child(2),
.has-animation.latest-news-section-container.animate .col-6:nth-child(2),
.has-animation.column-row-section-container.animate .col-4:nth-child(2){
    animation-duration: 0.75s;
    animation-name: fadeInUp;
    animation-fill-mode: forwards;
    animation-delay: 0.7s;
    animation-iteration-count: 1;
}

.shop-section-container .col-4.has-animation.animate[data-count="3"],
.products-section-container .col-4.has-animation.animate[data-count="3"],
.has-animation.inspirations-section-container.animate .col-4[data-count="3"],
.casestudies-section-container .col-4.has-animation.animate[data-count="3"],
.has-animation.icon-row-section-container.animate .col-4:nth-child(3),
.has-animation.column-row-section-container.animate .col-4:nth-child(3){
    animation-duration: 0.75s;
    animation-name: fadeInUp;
    animation-fill-mode: forwards;
    animation-delay: 1.05s;
    animation-iteration-count: 1;
}


@keyframes revealSlideTop {
	0% {
		transform: scaleX(0);
		transform-origin: 100% 100%;
	}

	40% {
		transform: scaleX(1);
		transform-origin: 100% 100%;
	}

    41% {
		transform: scaleX(1);
		transform-origin: 0% 0%;
	}

    50% {
		transform: scaleX(1);
		transform-origin: 0% 0%;
	}

    100% {
		transform: scaleX(0);
		transform-origin: 0% 0%;
	}
}


@keyframes revealSlideBottom {
	0% {
		transform: scaleX(1);
		transform-origin: 100% 100%;
	}

    100% {
		transform: scaleX(0);
		transform-origin: 100% 100%;
	}
}


@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: var(--translate);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.productpage table.variations .value{
    padding: 0 !important;
    background-color: transparent;
}

.productpage table.variations .variation-table{
    margin: 0 !important;
}

.productpage table.variations .variation-table input{
    display: none;
}

.productpage table.variations .variation-table input + label{
    color: #f2682c;
    text-transform: uppercase;
    padding: 7px 14px;
    border: 1px solid #f2682c;
    border-radius: 100px;
    cursor: pointer;
    width: 100%;
    display: block;
    text-align: center;
    margin: 0 auto;
    max-width: 90%;
    white-space:nowrap;
}

.productpage table.variations .variation-table input + label::before{
    content: 'Select';
}

.productpage table.variations .variation-table input + label span{
    display: none;
}

.productpage table.variations .variation-table input:checked + label{
    background-color: #f2682c;
    color: #FFFFFF;
}

.productpage table.variations .variation-table input:checked + label::before{
    content: 'Selected' !important;
}

.productpage .woocommerce-variation.single_variation,
.productpage table.variations .label,
.productpage table.variations .reset_variations,
.productpage table.variations .value select{
    display: none !important;
}

.select2-dropdown{
    overflow: hidden;
    position: relative;
}

.productpage .cart:not(.variations_form),
.productpage .woocommerce-variation-add-to-cart{
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    flex-direction: row;
}

.productpage .cart{
    margin-top: 2rem;
}
.productpage .cart .attribute-select{
    margin-bottom: 2rem;
}

.productpage .cart .select2-container,
.productpage .cart .attribute-select{
    width: 100% !important;
}

.productpage .cart .attribute-select label{
    display: block !important;
    padding: 0px 3px 3px 0px;
    font-size:12px;
    text-transform: uppercase;
    color: #9c9c9c;
    background: transparent;
    border: none;
    font-weight:600;
    letter-spacing: 0.5px;
}

.productpage .cart .quantity.buttons_added{
    margin: 0 !important;
}

.productpage .cart .theme-btn{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 100% !important;
    flex-grow: 1 !important;
}


.productpage .cart .theme-btn::before{
    content: '\f291' !important;
    font-family: 'Font Awesome 5 Pro' !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    color: #f2682c;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.productpage .cart .theme-btn.open-enquiry::before{
    content: '\2b' !important;
    font-size: 18px !important;
}

.productpage .cart .theme-btn:hover::before{
    color: #ffffff !important;
}

.productpage .cart .theme-btn.loading::before{
    opacity: 0 !important;
}

dl.variation{
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
    align-items: baseline;
}

dl.variation dt{
    font-weight: 700 !important;
}

.select2-container--open .select2-dropdown--above{
    margin-top: 0px !important;
    margin-bottom: 7px !important;
    border: 1px solid #c7c7c7 !important;
    transform: translateY(-4px);
}

.productpage .cart .select2-selection__rendered{
    padding: 0px 1.35rem !important;
    border-radius: 100px !important;
}

.productpage .cart .select2-container--default .select2-selection--single{
    border-radius: 100px !important;
}

.productpage .cart .select2-container--default .select2-selection--single .select2-selection__arrow b{
    margin-left: -1.35rem;
    border:none !important;
}

.productpage .cart .select2-container--default .select2-selection--single .select2-selection__arrow b::before{
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 0.3;
    font-weight: 900;
    position: absolute;
    inset: 0;
}

.product-banner{
    min-height: calc(75vh - 150px);
    position: relative;
    display: flex;
    justify-content: center;
    padding: 1.5rem;
/*    margin-bottom: 10dvh; */
}

.product-banner::before,
.product-banner::after{
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.product-banner::before{
    background: rgba(0,0,0,0.4);
    mix-blend-mode: soft-light;
}

.product-banner::after{
    background: rgba(0,0,0,0.2);
    mix-blend-mode: darken;
}

.product-banner .inner{
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: calc(var(--desktop-breakpoint) * 1px);
    align-items: center;
    justify-content: center;
}

.product-banner img{
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
    z-index: 1;
}

.product-banner .inner h2{
/*    font-size: clamp(2rem, 0.5714rem + 4.5714vw, 4rem); */
    font-size: clamp(1.5rem, 0.4rem + 3vw, 3rem);
    color: white !important;
    text-align: center;
    text-shadow: 0 0 4rem rgba(0,0,0,0.75);
    max-width: 767px;
}

.product-banner .inner p{
    font-size: clamp(1rem, 0.6429rem + 1.1429vw, 1.5rem);
    color: white !important;
    font-weight: 400;
    text-align: center;
    text-shadow: 0 0 4rem rgba(0,0,0,0.75);
    max-width: 767px;
}

.product-banner .inner > a{
    margin: 0 auto;
    font-size: 1rem !important;
    padding-inline: 2.5em !important;
}

.product-banner.top .inner{
    justify-content: flex-start !important;
}

.product-banner.center--v .inner{
    justify-content: center !important;
}

.product-banner.bottom .inner{
    justify-content: flex-end !important;
}

.product-banner.left .inner{
    align-items: flex-start !important;
    text-align: left !important;
}

.product-banner.left *{
    text-align: left !important;
}

.product-banner.center--h .inner{
    align-items: center !important;
}

.product-banner.right .inner{
    align-items: flex-end !important;
    text-align: right !important;
}

.product-banner.right .inner *{
    text-align: right !important;
}