/* ------------------------------------  */
/* ---------- SITE FRAMEWORK ----------  */
/* ------------------------------------  */

:root {
    --mainFont: "Montserrat", serif;
    --secondaryFont: "Roboto Slab", serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    font-size: 1rem;
    line-height: 1.4;
    overflow: hidden;
}

body.site_body {
    font-family: var(--mainFont);
    background: var(--siteBackground);
}

:is(.site-header, .content-wrap, .site-footer) * {
    box-sizing: border-box;
}

.content-div {
    min-height: 600px;
}

.ui-autocomplete {
    z-index: 10001 !important;
}

/* DISPLAY CLASSES */
.full-width-fix {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hidden {
    display: none;
}

.hideImportant {
    display: none !important;
}

/* SITE FORMS */
input::placeholder {
    font-family: inherit;
}

textarea {
    font-family: inherit;
}

select {
    width: 100%;
    border: 1px solid #DBDBDB;
    height: 50px;
    padding: 0 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(../images/chevron-down-black.svg) no-repeat 98% center #fff;
}

input[type=text],
input[type=date],
input[type=tel],
input[type=number],
input[type=email],
input[type=password],
textarea {
    width: 100%;
    height: 50px;
    background-color: #fff;
    border: 1px solid #DBDBDB;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 0.875rem;
    color: var(--textColour);
    transition: 0.2s ease-in-out all;
}

:is(input[type=text], input[type=date], input[type=tel], input[type=number], input[type=email], input[type=password], textarea, select):focus {
    border-color: #000;
}

textarea {
    height: 100px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

:is(input, select, textarea).input-error {
    border-color: #a30e0e !important;
}

.site-form-field {
    padding: 10px 0;
}

.site-form-label {
    font-size: 1rem;
    color: #3B3B3D;
    padding: 5px 0;
}

img {
    max-width: 100%;
    max-height: 100%;
}

/* ----- TYPOGRAPHY ----- */
h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    color: var(--headingColour);
    font-family: var(--secondaryFont);
    margin: 0;
    padding: 0 0 10px 0;
    font-weight: 400;
}

h1 {
    font-size: 2.375rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.625rem;
}

h5 {
    font-size: 1.5rem;
}

h6 {
    font-size: 1.25rem;
}

p {
    padding: 0;
    font-size: 1rem;
    color: var(--textColour);
    line-height: 26px;
}

a {
    text-decoration: none;
    color: #2A3724;
}

.content-wrap p a:not([class]) {
    text-decoration: underline;
    color: #2A3724;
}

a:focus-visible {
    background-color: #f9dc4a;
    color: #000;
    outline: 1px solid #000;
}

ul {
    list-style-position: outside;
    padding: 5px 0 20px 20px;
    font-size: 1rem;
    color: var(--textColour);
    list-style-type: disc;
    line-height: 24px;
}

ul li {
    padding: 0 0 15px 0;
    line-height: 20px;
}

ol {
    list-style-position: outside;
    padding: 5px 0 20px 20px;
    font-size: 1rem;
    color: var(--textColour);
    list-style-type: decimal;
    line-height: 24px;
}

ol li {
    padding: 0 0 5px 0;
}

hr {
    color: #D8D8D8;
    background: #D8D8D8;
    height: 1px;
    border: 0;
    margin-bottom: 20px;
    position: relative;
}

/* Button Classes */
.button-primary:not(.hidden) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 20px;
    margin: 0;
    line-height: 1;
    height: 44px;
    background: var(--mainColour);
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: 0.2s ease-in all;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    border: 1px solid var(--mainColour);
}

.button-primary:hover {
    color: #fff !important;
    text-decoration: none;
}

.button-secondary:not(.hidden) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 20px;
    margin: 0;
    line-height: 1;
    height: 44px;
    background: #fff;
    text-align: center;
    color: var(--mainColour);
    text-decoration: none;
    transition: 0.2s ease-in all;
    font-size: 1rem;
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid var(--mainColour);
}

.button-secondary:hover {
    color: var(--mainColour) !important;
    text-decoration: none;
}

.button-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 20px;
    margin: 0;
    line-height: 1;
    height: 44px;
    background: transparent;
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: 0.2s ease-in all;
    font-size: 1rem;
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid #fff;
}

.button-tertiary:hover {
    color: #fff !important;
    text-decoration: none;
}

.empty-loader:not(.hidden):empty {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.empty-loader:not(.hidden):empty:after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-color: var(--mainColour) transparent transparent;
    border-radius: 50%;
    animation: spin 1s infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

a.skiptocontent {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 1px;
    height: 1px;
}

a.skiptocontent:focus,
a.skiptocontent:active {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 20px;
    border: 1px solid #000;
    background: #f9dc4a;
    color: #000;
    font-size: 0.875rem;
    font-weight: bold;
    opacity: 1;
    width: auto;
    z-index: 10000;
}

/* ------------------------------------  */
/* ------------ SITE DESIGN -----------  */
/* ------------------------------------  */

/* ----- SITE HEADER ----- */

.admin_panel+.site-header {
    margin-top: 31px;
}

header.site-header {
    position: relative;
    z-index: 1000;
}

.mobile-menu-overlay {
    display: none;
}

/*-- TOP STRAP --*/
.top-wrap {
    height: 55px;
    background: var(--mainColour);
}

.top-wrap>div {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    padding: 0 10px;
    justify-content: space-between;
}

.top-wrap>div>div {
    color: #fff;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 5px;
    width: calc(100%/3)
}

.top-wrap>div>div.delivery-link {
    gap: 5px;
}

.top-wrap a {
    color: #fff;
}

.top-phone {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
}

.top-wrap .delivery-link {
    display: flex;
    align-items: center;
    text-decoration: underline;
}

.top-wrap .delivery-link::before {
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/delivery.svg) no-repeat left center;
}

.top-wrap>div>div.top-centre {
    justify-content: center
}

.top-wrap>div>div.top-right {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: flex-end;
}

.top-menu {
    height: 100%;
}

.top-menu ul {
    display: flex;
    gap: 15px;
    height: 100%;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-menu ul li {
    list-style: none;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
}

.top-menu ul li a {
    color: #FFFFFF;
    font-size: 0.9375rem;
    text-transform: capitalize;
    text-decoration: none;
}

/*-- HEADER WRAP --*/
.header-wrap {
    background: #fff;
    height: 100px;
}

.header-wrap>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    height: 100%;
    padding: 0 10px;
}

.logo {
    padding: 10px 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    flex-grow: 1;
}

.site-search {
    display: flex;
    height: 50px;
    background: #F3FFF9;
    border: 1px solid var(--mainColour);
    flex: 1;
    border-radius: 50px;
    position: relative;
}

.site-search input {
    flex: 1;
    height: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    background: none;
    border: 0;
    font-size: 0.875rem;
    font-family: inherit;
    border: none;
}

.site-search input::placeholder {
    font-size: 0.875rem;
    color: inherit;
}

.site-search .search-button {
    width: 50px;
    height: 100%;
    background: url(../images/icon-search.svg) no-repeat center;
    border: 0;
    outline: 0;
}

.site-search .search-auto-complete {
    position: absolute;
    width: calc(100% - 30px);
    padding: 10px;
    border: solid var(--mainColour);
    border-width: 0 1px 1px 1px;
    background: #F3FFF9;
    position: absolute;
    top: calc(100% + 1px);
    left: 15px;
    display: none;
    border-radius: 0 0 5px 5px;
}

.site-search.display .search-auto-complete {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1000;
    gap: 5px;
}

.search-auto-complete .autoProductItem {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #E0DBDB;
}

.search-auto-complete .autoProductItem>a {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.search-auto-complete .autoProductItem .autoProductImage {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-auto-complete .autoProductItem .autoProductImage img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    max-width: auto;
}

.search-auto-complete .autoProductItem .autoProductTitle {
    flex-grow: 1;
    color: var(--textColour);
    text-transform: capitalize;
    font-size: 0.875rem;
}

.search-auto-complete .autoProductItem.view-all-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    border: 0;
    background: none;
    padding: 0;
}

.search-auto-complete a.suggest-close {
    color: var(--mainColour);
    text-decoration: underline;
}

.search-auto-complete a.suggest-view-all {
    width: 100%;
    background: var(--mainColour);
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 48px;
    font-weight: bold;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.header-wrap .favourites {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex: 0 0 auto;
    gap: 5px;
    height: 50px;
    border-radius: 50px;
    background: #FAFAFA;
    padding: 0 10px;
    color: var(--tertiaryColour);
    font-size: 0.75rem;
}

.header-wrap .favourites::before {
    content: '';
    width: 22px;
    height: 22px;
    background: url(../images/heart.svg) no-repeat center;
}

.account-wrap {}

.my-account {
    display: flex;
    padding: 0 10px;
    height: 50px;
    background: #F3FFF9;
    border-radius: 50px;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.my-account::before {
    content: "";
    height: 25px;
    width: 22px;
    background: url(../images/account-green.svg) no-repeat center;
    background-size: contain;
}

.my-account::after {
    content: "";
    height: 8px;
    width: 8px;
    transform: rotate(45deg);
    border: solid var(--mainColour);
    border-width: 2px 2px 0 0;
}

.shopping-cart {
    width: 130px;
    flex: 0 0 auto;
    border-radius: 50px;
    height: 50px;
    background: #F3FFF9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.small-cart {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--mainColour);
}

.small-cart:before {
    content: '';
    width: 24px;
    height: 24px;
    background: url(../images/cart-green.svg) no-repeat center;
    background-size: contain;
}

.small-cart:after {
    content: "";
    height: 8px;
    width: 8px;
    transform: rotate(45deg);
    border: solid var(--mainColour);
    border-width: 2px 2px 0 0;
}

.small-cart>div {
    display: flex;
    align-items: center;
    gap: 3px;
}

/*-- MENU WRAP --*/
.menu-wrap {
    background: #FAFAFA;
    position: relative;
    height: 54px;
}

.menu-wrap>div {
    height: 100%;
}

.menu-wrap>div>nav {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Main Menu */
.main-menu {
    display: flex;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 40px;
}

.main-menu ul {
    list-style: none;
    padding: 0;
}

.main-menu>li {
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 8px);
    color: var(--mainColour);
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
    width: 100%;
    text-decoration: none;
    padding: 0 10px;
    gap: 5px;
    transition: ease-in-out all .2s;
    border-radius: 10px;
}

.main-menu>li>a:hover,
.main-menu>li.menu_open>a {
    background: #F3FFF9;
}

.main-menu>li.has-sub-items>a::after {
    content: "";
    height: 6px;
    width: 9px;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    background: var(--mainColour);
    flex-shrink: 0;
}

.main-menu>li>ul {
    width: 100vw !important;
    max-width: 100vw !important;
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    top: 100%;
    background: #FAFAFA;
    padding: 10px 0 20px 0;
    transition: ease-in-out all .2s;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transform: translateY(-10px);
}

.main-menu>li>ul.active {
    opacity: 1;
    z-index: 1000;
    visibility: visible;
    transform: translateY(0);
}

.main-menu>li>ul>div {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.main-menu>li>ul>div>li {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(20% - 16px);
    padding: 0;
}

.main-menu>li>ul>div>li>a {
    color: var(--mainColour);
    font-size: 0.875rem;
    font-weight: bold;
}

.main-menu>li>ul>div>li>ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-menu>li>ul>div>li>ul>li {
    padding: 0;
}

.main-menu>li>ul>div>li>ul>li>a {
    color: #000;
    font-size: 0.875rem;
    transition: ease-n-out all .3s;
}

.main-menu>li>ul>div>li>ul>li>a:hover {
    text-decoration: underline;
    color: var(--mainColour);
}

.main-menu .viewall {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: underline;
}

.main-menu .viewall::after {
    content: "";
    height: 6px;
    width: 6px;
    transform: rotate(45deg);
    border: solid var(--mainColour);
    border-width: 1px 1px 0 0;
}

/*-- FOOTER WRAP --*/
.footer-wrap {
    background: var(--footerColour);
    padding: 40px 0;
}

.footer-wrap>div {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0 15px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-col-title {
    color: #fff;
    font-weight: bold;
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0 0 20px;
    line-height: 30px;
    gap: 10px;
}

.dafm-logo {
    margin-top: 20px;
}

.footer-col .footer-col-title:after {
    content: '';
    width: 20px;
    height: 3px;
    background: #fff;
    border-radius: 50px;
}

.footer-col:last-child .footer-col-title {
    margin: 15px 0;
    font-size: 1.125rem;
}

.footer-col:last-child .footer-col-title::after {
    content: none;
}

.footer-contact {
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact .location {
    display: flex;
    align-items: flex-start;
    line-height: 26px;
}

.footer-contact .location:before {
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/pin.svg) no-repeat left center;
}

.footer-contact * {
    color: #fff;
    font-size: 0.875rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-contact a.call:before {
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/phone-white.svg) no-repeat left center;
}

.footer-contact a.mail {
    text-decoration: underline;
}

.footer-contact a.mail:before {
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/mail.svg) no-repeat left center;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.footer-social>a {
    display: block;
    width: 26px;
    height: 26px;
    transition: ease-in-out all .3s;
}

.footer-social>a:hover {
    transform: translateY(-5px);
}

.footer-social>a.fb {
    background: url(../images/icon-fb.svg) no-repeat center;
    background-size: contain;
}

.footer-social>a.ig {
    background: url(../images/icon-ig.svg) no-repeat center;
    background-size: contain;
}

.footer-social>a.tw {
    background: url(../images/icon-x.svg) no-repeat center;
    background-size: contain;
}

.footer-social>a.li {
    background: url(../images/icon-in.svg) no-repeat center;
    background-size: contain;
}

.footer-social>a.yt {
    background: url(../images/icon-yt.svg) no-repeat center;
    background-size: contain;
}

.footer-social>a.tk {
    background: url(../images/icon-tt.svg) no-repeat center;
    background-size: contain;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-menu>li {
    padding: 0;
    margin: 0;
}

.footer-menu>li>a {
    color: #fff;
    font-size: 0.875rem;
    transition: ease-in-out all .3s;
    text-decoration: none;
}

.footer-menu>li>a:hover {
    text-decoration: underline;
}

.footer-menu ul {
    display: none;
}

.payment-logos-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

/*-- BYLINE --*/
.byline-wrap {
    background: var(--bylineColour);
    padding: 30px 0;
}

.byline-wrap>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
    gap: 15px;
}

.byline-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    row-gap: 10px;
}

.byline-menu>li {
    padding: 0 10px;
    font-size: 0.875rem;
    border-right: 1px solid #fff;
}

.byline-menu>li:last-child {
    border: 0;
}

.byline-menu>li>a {
    color: #fff;
    text-decoration: none;
}

.byline-wrap>div>span {
    color: #fff;
    font-size: 0.875rem;
}

.byline-wrap>div>a {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
}

.pop-overlay {
    position: absolute;
    z-index: 10000;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.74);
    opacity: 0;
    display: flex;
    justify-content: center;
}

.pop-overlay>div>a {
    position: absolute;
    width: 30px;
    height: 30px;
    background: url(../images/close-blade.svg) no-repeat center;
    z-index: 5;
    top: 5px;
    right: 5px;
}

.pop-overlay>div {
    background: #fff;
    position: absolute;
    background: #fff;
    padding: 20px;
    margin: 10px;
    max-width: 600px;
    min-width: 300px;
    flex: 0 0 auto;
    font-size: 1rem;
    line-height: 26px;
    border-radius: 5px;
}

.pop-overlay.pop-image>div {
    max-width: 100vw;
    max-height: 100vh;
}

.pop-overlay.pop-image>div img {
    max-width: 100%;
    max-height: 100%;
}

.pop-buttons {
    display: flex;
    margin: 10px 0;
    align-items: center;
    justify-content: space-between;
}

/* -- TEXT MODULE -- */
.text_module_wrap {
    position: relative;
}

.text_module_container {
    position: relative;
    z-index: 1;
}

.text_module_before {
    position: absolute;
    left: calc(-1140px / 2);
    width: 100vw;
    top: 0;
    height: 100%;
    z-index: -1;
}

.text_module_after {
    position: absolute;
    width: 100vw;
    top: 0;
    height: 100%;
    z-index: -1;
}

/* -- SPACING MODULE -- */
.spacing_module {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    z-index: 1;
    transition: 0.2s ease-in-out all;
}

.spacing_module span {
    opacity: 0;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    transition: 0.2s ease-in-out all;
}

.spacing_module.admin_logged:hover {
    background: #efefef;
}

.spacing_module.admin_logged:hover span {
    opacity: 1;
}

/*Fullscreen Gallery*/
.flexslider {
    height: auto;
    position: relative;
}

.flexslider:not(.full-width-fix) .flex-direction-nav {
    display: none;
}

.flex-viewport {
    height: 100% !important;
}

.flexslider .slides {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.flexslider .slides>li {
    display: none;
    -webkit-backface-visibility: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    min-height: 100px;
}

.flexslider .slides {
    height: 100%;
}

.flexslider .slides>li.flex-active-slide {
    display: flex !important;
    flex-direction: column
}

.flexslider .slides>li>a {
    display: block;
    height: 100%;
}

.flexslider .slides>li>img,
.flexslider .slides>li>a>img {
    width: 100%;
    display: block;
    z-index: 4;
}

.flexslider .slides:after {
    content: "\0020";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

html[xmlns] .flexslider .slides {
    display: block;
}

* html .flexslider .slides {
    height: 1%;
}

.no-js .flexslider .slides>li:first-child {
    display: block;
}

.flexSliderContainer.arrow {
    position: relative;
}

.flexSliderContainer.arrow .flexslider {
    margin-bottom: -30px;
}

.flexSliderContainer.arrow .slides>li,
.flexSliderContainer.arrow .slides>li>a {
    clip-path: polygon(0 calc(100% - 30px), calc(50% - 30px) calc(100% - 30px), calc(50% - 1px) 100%, calc(50% + 1px) 100%, calc(50% + 30px) calc(100% - 30px), 100% calc(100% - 30px), 100% 0, 0 0);
    -webkit-clip-path: polygon(0 calc(100% - 30px), calc(50% - 30px) calc(100% - 30px), calc(50% - 1px) 100%, calc(50% + 1px) 100%, calc(50% + 30px) calc(100% - 30px), 100% calc(100% - 30px), 100% 0, 0 0);
}

.flexSliderContainer.parallax .slides>li {
    background-attachment: fixed;
}

.flex-caption {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0 auto;
    gap: 30px;
    z-index: 1;
}

.flex-caption>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    height: auto;
}

.flex-caption>div.background {
    background: rgba(255, 255, 255, .9);
    padding: 30px;
    border-radius: 5px;
}

.flex-caption>div.background * {
    margin: 0;
}

.flex-caption:empty {
    display: none;
}

.flex-caption.halign-right {
    align-items: flex-end;
}

.flex-caption.halign-left {
    align-items: flex-start;
}

.flex-caption.halign-center {
    align-items: center;
}

.flex-caption.valign-top {
    justify-content: flex-start;
}

.flex-caption.valign-center {
    justify-content: center;
}

.flex-caption.valign-bottom {
    justify-content: flex-end;
    padding-bottom: 40px;
}

/*Fullscreen gallery paging buttons*/
.flex-control-paging {
    position: absolute;
    bottom: 20px;
    display: flex;
    left: calc(50% - 800px);
    width: 1600px;
    align-items: center;
    gap: 8px;
    justify-content: center;
    z-index: 60;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 15px;
}

.flex-control-paging>li {
    padding: 0;
    margin: 0;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-control-paging>li>a {
    width: 16px;
    height: 16px;
    box-sizing: border-box;
    border: 1px solid var(--mainColour);
    background: #fff;
    transition: ease-in-out all .3s;
    border-radius: 50%;
}

.flex-control-paging>li>a.flex-active {
    background: var(--mainColour);
}

/*Fullscreen gallery arrows*/
.flex-direction-nav {
    position: absolute;
    top: 50%;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
}

.flex-direction-nav li {
    position: absolute;
    z-index: 10;
    top: calc(50% - 30px);
    width: 40px;
    height: 60px;
    cursor: pointer;
    transition: ease-in-out all .3s;
    padding: 0;
    left: 20px;
    background: rgba(255, 255, 255, 0.62);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-direction-nav li a {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.flex-direction-nav li a:after {
    content: "";
    height: 27px;
    width: 15px;
    background: url(../images/gallery-nav.svg) no-repeat center;
}

.flex-direction-nav li.flex-nav-next {
    right: 20px;
    transform: rotate(180deg);
    left: initial;
}

.flex-direction-nav li:hover {
    background: rgba(255, 255, 255, .8);
}

/*Contact Form*/
.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    padding: 20px;
    margin: 20px 0;
}

.contact-form .cf_header {
    color: var(--headingColour);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.625rem;
    margin-bottom: 15px;
}

.contact-form .cf-input {
    line-height: 30px;
    padding-bottom: 10px;
}

.contact-form .cf-select {
    line-height: 30px;
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.contact-form .cf-text {
    font-size: 1.25rem;
    color: var(--headingColour);
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-form label,
.contact-form legend {
    width: 100%;
    color: var(--textColour);
    font-size: 1rem;
    margin: 0;
    margin-bottom: 5px;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=date],
.contact-form textarea,
.contact-form select {
    width: 100%;
    height: 42px;
    font-size: 0.875rem;
    border: 1px solid var(--border);
    box-sizing: border-box;
    padding: 0 10px;
    transition: ease-in-out all .3s;
    color: var(--textColour);
}

.contact-form :is(input[type=text], .contact-form input[type=email], .contact-form input[type=date], .contact-form textarea, .contact-form select):focus {
    border-color: var(--mainColour);
}

.contact-form input[type=checkbox]:focus {
    border-color: #f9dc4a;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
}

.contact-form input[type=radio]:focus {
    border-color: #f9dc4a;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
}

.contact-form select option {
    color: #000;
}

.contact-form label span,
.denotes span {
    color: #DC0D37;
    font-size: 0.75rem;
    position: relative;
    top: -5px;
}

.contact-form textarea {
    resize: none;
    height: 130px;
    font-family: inherit;
}

.contact-form :is(.cf-radiobox, .cf-checkbox) {
    padding-bottom: 10px;
}

.contact-form :is(.cf-radiobox, .cf-checkbox)>span {
    display: flex;
    align-items: center;
    color: var(--textColour);
    font-size: 0.875rem;
}

.contact-form :is(.cf-radiobox input[type=radio], .cf-checkbox input[type=checkbox]) {
    margin-right: 10px;
    accent-color: var(--mainColour);
}

.contact-form .cf-validation {
    text-align: center;
    height: 0;
    padding: 10px 0;
    box-sizing: border-box;
    font-size: 1rem;
    color: var(--textColour);
    font-weight: bold;
    transition: all .2s ease-in-out;
}

.contact_form_footer {
    display: flex;
    justify-content: space-between;
}

.contact-form .cf-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.contact-form .cf-buttons .denotes {
    color: var(--textColour);
    font-size: 0.813rem;
}

.contact-form .cf-buttons a.cf-reset {
    display: none;
}

.contact-form .cf-input>label,
.contact-form .cf-select>label,
.contact-form .cf-checkbox legend {
    font-weight: bold;
}

/*Layout Block Module*/
.block-layout-module {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}

.block-layout-module .layout-block {
    margin: 0;
    display: flex;
}

.block-layout-module .layout-image {
    width: 50%;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.block-layout-module .layout-image img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.block-layout-module .layout-content {
    width: 50%;
    display: flex;
    position: relative;
}

.block-layout-module .layout-inner {
    width: 800px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    gap: 20px;
    z-index: 10;
    justify-content: center;
}

.block-layout-module .layout-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.block-layout-module .layout-heading * {
    font-size: 2rem;
    position: relative;
    display: flex;
    font-weight: bold;
    color: var(--headingColour);
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

.block-layout-module .layout-text * {
    margin: 0;
}

/*Layout Button*/
.block-layout-module .layout-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

/*Layout Position*/
.block-layout-module .layout-pos-left {
    flex-direction: row-reverse;
}

.block-layout-module .layout-pos-left .layout-image {
    justify-content: flex-start;
}

.block-layout-module .layout-pos-left .layout-content {
    justify-content: flex-end;
}

.block-layout-module .layout-pos-right .layout-content {
    justify-content: flex-start;
}

/*Layout Theme*/
.block-layout-module .layout-theme-dark {
    background: var(--mainColour);
}

.block-layout-module .layout-theme-dark .layout-heading * {
    color: #fff;
}

.block-layout-module .layout-theme-dark .layout-text * {
    color: #fff;
}

.block-layout-module .layout-theme-dark .layout-buttons {}

.block-layout-module .layout-theme-dark .layout-buttons a {
    color: var(--headingColour);
    background: #fff;
}

/*System edit controls*/
.AB-editContentContainer {
    display: flex;
    align-items: flex-end;
}

.AB-editing .__contentbox {
    z-index: 3000;
}

/*Animation*/
@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, .6);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

.sr-alert {
    position: fixed;
    left: 100%;
}

/* ----------------------- */
/* ----- SEARCH PAGE ----- */
/* ----------------------- */

.search-page.category-page .cat-hidden {
    display: none !important;
}

.search-page.product-page .prod-hidden {
    display: none !important;
}

.search-page {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

/* search header */
.search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 5px;
}

.search-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.search-title h1 {
    font-size: 1.5rem;
    line-height: 24px;
    font-weight: 600;
    padding: 0;
}

.search-results-found {
    font-size: 1rem;
    color: var(--textColour);
}

.search-order {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-order span {
    font-size: 1rem;
    color: var(--mainColour);
    font-weight: 600;
    width: 100px;
    text-align: right;
}

.sort-search {
    width: 300px;
}

.sort-search:focus {
    border-color: var(--mainColour);
}

/* Search Results */
.search-results-wrap {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.search-filters {
    width: 280px;
    flex: 0 0 auto;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 5px;
}

.search-filters-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 10px;
}

.filter {
    border-bottom: 1px solid var(--border);
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    height: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: #212529;
}

.filter-header:after {
    content: '';
    transition: 0.3s all ease-in-out;
    width: 20px;
    height: 20px;
    background: url(../images/chevron-down-black.svg) no-repeat center;
}

.filter.active .filter-header:after {
    transform: rotate(180deg);
}

.filter-list {
    display: none;
}

.filter.active .filter-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 10px;
}

.filter-list a {
    color: #000;
    text-decoration: none;
    padding: 0 8px;
    display: flex;
    align-items: center;
    height: 34px;
    font-size: 0.9375rem;
    gap: 5px;
    text-transform: capitalize;
    border: 1px solid transparent;
}

.filter-list a.active {
    border-radius: 3px;
    border-color: #EEECEC;
    background: #fff;
}

.filter-list a.active:after {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/tick-green.svg) no-repeat center;
}

.apply-filters {
    width: 100%;
}

.clear-filters {
    text-align: center;
    text-decoration: underline;
    line-height: 30px;
    color: #000;
}

.search-results {
    flex: 1;
    max-width: 100%;
    width: 0;
}

.product-list,
.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0px 0 20px;
    flex: 1;
    width: 100%;
}

.active-filters {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0px 0 20px;
}

.active-filters:empty {
    display: none;
}

.active-filters a {
    color: #000;
    text-decoration: none;
    padding: 0 8px;
    display: flex;
    align-items: center;
    height: 36px;
    font-size: 0.938rem;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 5px;
    text-transform: capitalize;
}

.active-filters a:before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/cancel.svg) no-repeat center;
}

.search-filters.cat-hidden+.product-list {
    width: 100%;
}

/* -- Product Block -- */
.product-block {
    width: calc((100% - 60px) / 4);
    background: #fff;
    border: 1px solid var(--border);
    height: auto;
    box-sizing: border-box;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.search-filters+.search-results .product-block {
    width: calc((100% - 40px) / 3);
}

.product-block .product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: var(--productAspect);
    position: relative;
    overflow: hidden;
}

.product-block .product-in-cart {
    position: absolute;
    left: 0;
    top: 0;
    background: #00A24B;
    color: #fff;
    font-weight: bold;
    font-size: 1.125rem;
    padding: 10px 15px;
    border-radius: 0 20px 20px 0;
    z-index: 10;
}

.product-block .product-image a {
    border: 1px solid transparent;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.product-block .product-image a:focus {
    border-color: #000;
}

.product-block .product-image img {
    transition: ease-in-out all .2s;
}

.product-block:hover .product-image img {
    transform: scale(1.05);
}

.product-block .product-image .product-sticker {
    font-weight: 600;
    position: absolute;
    top: 0;
    left: 0;
}

.product-block .product-image .product-no-stock {
    background: #E5E1E1;
    color: #000;
    font-size: 1rem;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 50px;
    text-align: center;
}

.product-block .product-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    position: relative;
}

.product-block .product-image a:focus-visible::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(249, 220, 74, 0.3);
    pointer-events: none;
}

.product-block .product-image img {
    width: auto;
    height: 100% !important;
    max-width: none !important;
}

.product-block .product-image a.add-to-favourites {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 22px;
    height: 22px;
    background: url(../images/heart-white.svg) no-repeat center;
    display: none;
}

.product-block .product-image a.add-to-favourites.is-favourite {
    background-image: url(../images/heart.svg);
}

.product-block:hover .product-image a.add-to-favourites {
    display: flex;
}

.product-block .product-info {
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.product-block .product-title {
    display: flex;
    align-items: flex-start;
}

.product-block .product-title a {
    color: #000;
    font-size: 1.25rem;
    text-decoration: none;
}

.product-block .product-price-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-block .product-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #000;
}

.product-block .product-price .main-price {
    font-size: 1.125rem;
    font-weight: bold;
}

.product-block .product-price .was-price {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 12px;
}

.product-block .product-price .was-price span {
    text-decoration: line-through;
}

.product-block .product-price .was-price:not(.hidden)+.main-price {
    color: var(--tertiaryColour);
}

.product-quantity-wrap .quantity {
    display: flex;
    border-radius: 5px;
    border: 1px solid #EEECEC;
    height: 50px;
}

.product-quantity-wrap .quantity input {
    display: flex;
    border: solid #EEECEC;
    border-width: 0 1px;
    width: 50px;
    height: 100%;
    text-align: center;
}

.product-quantity-wrap .quantity a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    font-size: 2.125rem;
    height: 100%;
    background: #EEECEC;
}

.product-quantity-wrap .quantity a:hover {
    color: #000;
}

.product-block .product-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-block .product-buttons a {
    width: 100%;
    height: 48px;
    transition: ease-in-out all .3s;
}

.product-block .product-buttons .pb-add-to-cart.disabled {
    background: #636363;
}
}

.product-block:hover .product-buttons a {
    background: #025E33;
}


/* -- Category Block -- */
.category-block {
    width: calc((100% - 60px) / 4);
    cursor: pointer;
    box-sizing: border-box;
    background: #fff;
    color: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.category-block .cat-image {
    width: 100%;
    aspect-ratio: var(--categoryAspect);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-block .cat-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.category-block .cat-title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    box-sizing: border-box;
    transition: 0.2s ease-in all;
    font-size: 1.25rem;
    color: #fff;
    background: var(--mainColour);
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    padding: 0 10px;
    overflow: hidden;
}

/* -- PAGER -- */
.search-pager {
    display: flex;
    align-items: center;
    width: auto;
    height: 60px;
    justify-content: center;
    position: relative;
    background: var(--background);
    border-radius: 5px;
    overflow: hidden;
}

.pager-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #848484;
}

.pager-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    width: 100%;
    height: 100%;
    font-size: 1rem;
    color: #000;
    text-decoration: none;
}

.pager-link.hidden {
    display: none !important;
}

.pager-current-page a {
    text-decoration: underline;
    color: var(--headingColour);
    font-weight: 700;
}

.pager-prev-button,
.pager-next-button {
    background: var(--mainColour);
    color: #fff;
    height: 100%;
    width: 180px;
}

.pager-prev-button {
    position: absolute;
    left: 0;
}

.pager-next-button {
    position: absolute;
    right: 0;
}

.pager-next-button a,
.pager-prev-button a {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 5px;
}

.pager-next-button.disabled a,
.pager-prev-button.disabled a {
    background: #B1B4B2;
}

.pager-next-button a:after,
.pager-prev-button a:before {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../images/chevron-right-white.svg) no-repeat center;
    background-size: contain;
}

.pager-prev-button a:before {
    transform: rotate(180deg);
}

/* ------------------- */
/* ----- MODULES ----- */
/* ------------------- */

/* -- Product Module -- */
.product-module {
    padding: 20px 0;
}

.product-module.bg-on {
    background: var(--background);
    padding: 40px 0;
}

.product-module.full-width-fix {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.product-module .pm-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-sizing: border-box;
    padding: 0 15px;
}

.product-module:not(.full-width-fix) .pm-container {
    width: 100%;
}

.product-module .product-list {
    padding: 0;
}

.pm-title-wrap-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pm-title-wrap-container>a {
    color: var(--headingColour);
    font-weight: bold;
    text-decoration: underline;
}

/* titles */
.pm-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
}

.pm-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pm-title span {
    font-size: 2rem;
    font-weight: bold;
    color: var(--headingColour);
    text-align: center;
    font-family: var(--secondaryFont);
}

.pm-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-subtitle span {
    font-size: 1rem;
    color: var(--textColour);
    text-align: center;
}

/* gallery */
.pm-gal-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pm-gal {
    width: 100%;
}

.pm-slide {
    display: flex;
    justify-content: center;
    width: 25%;
}

/* List View */
.product-module.list :is(.pm-gal-nav, .pm-gal-pagination, .pm-gal-scrollbar) {
    display: none !important;
}

/* Carousel View */
.product-module.carousel .product-list {
    gap: 0;
    flex-wrap: nowrap;
}

/* navigation */
.pm-gal-wrap .pm-gal-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 60px;
    position: absolute;
    top: calc(50% - 30px);
    cursor: pointer;
    background: #F3FFF9;
}

.pm-gal-wrap .pm-nav-disabled {
    opacity: 0.3;
    cursor: default;
}

.pm-gal-wrap .pm-gal-nav::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border: solid var(--mainColour);
    transform: rotate(45deg);
}

.pm-gal-wrap .pm-gal-prev {
    left: -60px;
}

.pm-gal-wrap .pm-gal-prev::after {
    border-width: 0 0 3px 3px;
    margin-left: 5px;
}

.pm-gal-wrap .pm-gal-next {
    right: -60px;
}

.pm-gal-wrap .pm-gal-next::after {
    border-width: 3px 3px 0 0;
    margin-right: 5px;
}

.pm-gal-wrap .swiper-button-lock {
    display: none;
}

.product-module.list .pm-gal-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}


/* -- Category Module -- */
.category-module {
    padding: 20px 0;
}

.category-module.bg-on {
    background: var(--background);
    padding: 40px 0;
}

.category-module.full-width-fix {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.category-module .cm-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-sizing: border-box;
    padding: 0 15px;
}

.category-module:not(.full-width-fix) .cm-container {
    width: 100%;
}

.category-module .category-list {
    padding: 0;
}

.category-module .category-block .cat-title {
    background: #fff;
    color: var(--textColour);
    font-size: 1rem;
}

.category-module .cat-image {
    border-radius: 5px;
    aspect-ratio: 1/1;
}

/* titles */
.cm-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
}

.cm-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cm-title span {
    font-size: 2rem;
    font-weight: bold;
    color: var(--headingColour);
    text-align: center;
    font-family: var(--secondaryFont);
}

.cm-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cm-subtitle span {
    font-size: 1rem;
    color: var(--textColour);
    text-align: center;
}

/* gallery */
.cm-gal-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cm-gal {
    width: 100%;
}

.cm-slide {
    display: flex;
    justify-content: center;
    width: 25%;
}

/* List View */
.category-module.list :is(.cm-gal-nav, .cm-gal-pagination, .cm-gal-scrollbar) {
    display: none !important;
}

/* Carousel View */
.category-module.carousel .category-list {
    gap: 0;
    flex-wrap: nowrap;
}

.cm-gal-wrap.carousel .cm-gal-inner {
    flex-wrap: nowrap;
    gap: 20px 0;
}

/* navigation */
.cm-gal-wrap .cm-gal-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 60px;
    position: absolute;
    top: calc(50% - 30px);
    cursor: pointer;
    background: #F3FFF9;
}

.cm-gal-wrap .cm-nav-disabled {
    opacity: 0.3;
    cursor: default;
}

.cm-gal-wrap .cm-gal-nav::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border: solid var(--mainColour);
    transform: rotate(45deg);
}

.cm-gal-wrap .cm-gal-prev {
    left: -60px;
}

.cm-gal-wrap .cm-gal-prev::after {
    border-width: 0 0 3px 3px;
    margin-left: 5px;
}

.cm-gal-wrap .cm-gal-next {
    right: -60px;
}

.cm-gal-wrap .cm-gal-next::after {
    border-width: 3px 3px 0 0;
    margin-right: 5px;
}

.cm-gal-wrap .swiper-button-lock {
    display: none;
}


/* ------------------------ */
/* ----- DETAILS PAGE ----- */
/* ------------------------ */

.details-page {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.details-header {
    display: flex;
    align-items: center;
    height: 60px;
    gap: 20px;
}

.details-header>a {
    color: #000;
    text-decoration: underline;
    font-size: 0.9375rem;
    text-transform: capitalize;
}

.details-page-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.details-page-left {
    width: 50%;
    padding-right: 10px;
    box-sizing: border-box;
}

/* product thumbnails */
.small-images-gal-wrap {
    margin: 10px 0;
}

.small-image {
    width: 80px;
    height: 80px;
    aspect-ratio: var(--productAspect);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
}

.video-toggle {
    height: 100%;
    width: 100%;
}

.small-images-gal .small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-image.swiper-slide-thumb-active {
    border-color: var(--mainColour);
}

.video-toggle {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
}

.video-toggle::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
}

.video-toggle::after {
    content: "";
    height: 30px;
    width: 42px;
    background: url(../images/play.svg) center no-repeat;
    position: absolute;
    top: calc(50% - 15px);
}

.product-video {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    display: none;
    z-index: 1000;
}

.product-video .close-video {
    height: 30px;
    width: 30px;
    background: url(../images/cancel.svg) center no-repeat;
    background-size: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 100;
}

.product-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.product-video.active {
    display: block;
}


/* Product Images with carousel */
.product-image-gal-wrap {
    position: relative;
    min-height: 200px;
}

.product-image-gal-wrap .product-sticker {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.product-image-gal {
    max-width: 600px;
}

.product-image-gal .product-image a {
    width: 100%;
    aspect-ratio: var(--productAspect);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image-gal .product-image a:focus-visible::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(249, 220, 74, 0.3);
    pointer-events: none;
}

.product-image-gal .product-image a img {
    width: auto;
    height: 100% !important;
    max-width: none !important;
}

/* product image gallery nav */
.pi-gal-nav {
    display: flex;
    align-items: center;
    background: #fff;
    justify-content: center;
    width: 40px;
    height: 60px;
    position: absolute;
    top: calc(50% - 30px);
    cursor: pointer;
    z-index: 100;
}

.pi-gal-nav-disabled {
    display: none;
}

.pi-gal-nav::after {
    content: "";
    display: block;
    width: 13px;
    height: 22px;
    background: url(../images/chevron-right-black.svg) no-repeat center;
}

.pi-gal-prev {
    left: 0px;
}

.pi-gal-prev::after {
    transform: rotate(180deg);
}

.pi-gal-next {
    right: 0px;
}

.pi-gal-next.swiper-button-disabled::after,
.pi-gal-prev.swiper-button-disabled::after {
    opacity: 0.2;
}

.product-image-gal-wrap .swiper-button-lock {
    display: none;
}

.details-page-right {
    width: 50%;
    padding-left: 10px;
    box-sizing: border-box;
}

/* Product Details */
.product-sku-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.product-sku {
    font-size: 0.75rem;
}

.product-sku-wrap a.add-to-favourites {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    gap: 5px;
    text-decoration: underline;
}

.product-sku-wrap a.add-to-favourites::before {
    content: "";
    height: 22px;
    width: 22px;
    background: url(../images/heart-white.svg) center no-repeat;
}

.product-sku-wrap a.add-to-favourites.is-favourite:before {
    background-image: url(../images/heart.svg);
}

.product-sku-wrap a.add-to-favourites:after {
    content: 'Save';
}

.product-sku-wrap a.add-to-favourites.is-favourite:after {
    content: 'Remove';
}

h1.product-title {
    font-weight: bold;
    font-size: 2.375rem;
}

.product-sale-title {
    font-size: 1.5rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    font-weight: 700;
    background: var(--tertiaryColour);
    line-height: 50px;
    border-radius: 0 10px;
}

.product-price {
    gap: 20px;
}

.product-price .product-price {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--textColour);
}

.product-price .product-rrp-price {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--textColour);
}

.product-price .product-rrp-price span {
    text-decoration: line-through;
}

.product-price .product-rrp-price:not(.hidden)+.product-price {
    color: var(--tertiaryColour);
    font-weight: bold;
}

.product-price .product-rrp-price:not(.hidden)+.product-price:before {
    content: "NOW ";
}

.product-short-description {
    padding: 10px 0;
    font-size: 0.875rem;
    line-height: 24px;
}

.product-short-description:empty {
    display: none;
}

.product-form-wrap:not(.hidden) {
    padding: 10px 15px;
    margin-top: 20px;
    background: #F6F6F6;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 20px;
    width: 60%;
}

.product-form-wrap .product-form-toggle:before {
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/callback-green.svg) no-repeat center;
}

.product-form-wrap .product-form-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    width: 100%;
    line-height: 40px;
    text-transform: uppercase;
    color: var(--headingColour);
    font-size: .875rem;
    font-family: var(--secondaryFont);
}

.product-form-wrap .product-form-toggle::after {
    content: "";
    border: solid var(--mainColour);
    border-width: 0 2px 2px 0;
    height: 10px;
    width: 10px;
    transform: rotate(45deg);
    transition: ease-in-out all .3s;
    position: absolute;
    right: 10px;
    top: 10px;
}

.product-form-wrap .product-form-toggle.active::after {
    transform: rotate(225deg);
    top: 15px;
}

.product-form-wrap .product-form {
    margin: 10px 0;
    display: none;
}

.product-form-wrap .product-form-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-form-wrap .form-button {
    display: flex;
    justify-content: flex-end;
}

.product-form-wrap .form-button button {
    width: 100%;
}

.in-store-notice {
    text-align: center;
    font-weight: bold;
    font-size: 1.25rem;
    margin: 20px 0;
}

/* variations */
.product-selector {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-selector>div:not(.hidden) {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
}

.product-selector>div:not(.hidden)>label {
    font-weight: bold;
    text-transform: capitalize;
}

.product-selector>div:not(.hidden)>div {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.product-selector>div:not(.hidden)>div>a:not(.hidden) {
    display: flex;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    opacity: .5;
    height: 40px;
    font-size: 0.875rem;
    border-radius: 15px;
    transition: 0.2s ease-in-out all;
}

.product-selector>div:not(.hidden)>div>a.active {
    opacity: 1;
}

/* quantity */
.quantity-wrap {
    width: 180px;
    flex-shrink: 0;
}

.quantity-wrap .quantity-label {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    padding: 5px 0;
}

.quantity-wrap .quantity {
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
}

.quantity-wrap .quantity a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 100%;
    font-size: 1.313rem;
    color: #000;
    font-weight: bold;
    border: 1px solid var(--border);
    background: var(--background);
}

.quantity-wrap .quantity input {
    flex: 1;
    height: 100%;
    background: none;
    border: solid var(--border);
    border-width: 1px 0;
    box-sizing: border-box;
    font-size: 1rem;
    color: #000;
    text-align: center;
}

/* add to cart */
.add-to-cart-row:not(.hidden) {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    padding: 10px 0;
}

.add-to-cart {
    flex: 1;
    text-transform: uppercase;
    height: 50px;
    gap: 10px;
    padding: 0 10px;
}

.add-to-cart.disabled {
    background: #636363;
}

.add-to-cart:before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/cart-white.svg) no-repeat center;
    background-size: contain;
    transition: 0.2s all ease-in-out;
}


/* Added to cart */
.added-to-cart {
    max-width: 600px;
    width: 100%;
}

.added-to-cart-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.625rem;
    line-height: 28px;
    color: #000;
    font-weight: 600;
}

.added-to-cart-product {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.added-to-cart-image {
    width: 100px;
    aspect-ratio: var(--productAspect);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.added-to-cart-image img {
    width: auto;
    height: 100% !important;
    max-width: none !important;
}

.added-to-cart-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.added-to-cart-info>div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.added-to-cart-info>div>span {
    width: 100px;
    flex: 0 0 auto;
}

.out-of-stock-wrap:not(.hidden) {
    height: 50px;
    background: #E5E1E1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--textColour);
    text-transform: capitalize;
    flex-grow: 1;
    border-radius: 5px;
    width: 100%;
}

.product-delivery-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 25px 0;
}

.product-delivery-info>div:not(.hidden) {
    padding: 15px 20px;
    border: 1px solid;
    border-radius: 5px;
    text-align: center;
    color: #000;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.product-delivery-info>div>strong {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-delivery-info>div>strong::before {
    content: "";
    height: 20px;
    width: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.product-delivery-info>div.product-delivery-time {
    background: #F9F9F9;
    border-color: #F9F9F9;
}

.product-delivery-info>div.product-delivery-time>strong {
    color: var(--mainColour);
}

.product-delivery-info>div.product-delivery-time>strong::before {
    background-image: url(../images/clock.svg);
}

.product-delivery-info>div.product-surcharge {
    background: #EFEFEF;
    border: 1px solid #EFEFEF;
}

.product-delivery-info>div.product-surcharge>strong::before {
    background-image: url(../images/info.svg);
}

.product-delivery-info>div.product-free-delivery {
    background: #F3FFF9;
    border-color: #77CDA2;
}

.product-delivery-info>div.product-free-delivery>strong {
    color: var(--mainColour);
}

.product-delivery-info>div.product-free-delivery>strong::before {
    background-image: url(../images/delivery-green.svg);
}

.product-free-delivery-country {
    font-size: 0.75rem;
    text-align: center;
}


/* Description */
.product-description-wrap {
    margin: 20px 0;
}

.product-description-tabs {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-description-tabs a {
    padding: 20px;
    color: #000;
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: 10px 10px 0 0;
    margin-bottom: -1px;
}

.product-description-tabs a.active {
    border: 1px solid #ECEBEB;
    border-bottom: 0;
    background: #fff;
    color: var(--mainColour);
}

.product-description-tab-content>div:not(.active) {
    display: none;
}

.product-description-tab-content {
    padding: 20px;
    border: 1px solid #ECEBEB;
}

.product-description-tab-content * {
    margin: 0;
}

/*-- Associations --*/
.associations-wrap {
    padding: 40px 0px;
    background: var(--background);
}

.associations-container {
    padding: 0px 10px;
}

.associations-wrap h2 {
    font-size: 2rem;
    color: var(--mainColour);
    font-weight: bold;
    display: flex;
    flex-direction: column;
}

/*-- Associations (Carousel) --*/
.associations-wrap {
    padding: 40px 0;
    background: #F4F4F4;
}

.associations-gal-wrap {
    position: relative;
}

.associations-gal {
    width: 100%;
    padding: 20px 0;
}

.ag-gal-nav {
    display: flex;
    align-items: center;
    background: #fff;
    justify-content: center;
    width: 40px;
    height: 60px;
    position: absolute;
    top: calc(50% - 30px);
    cursor: pointer;
}

.ag-gal-nav-disabled {
    display: none;
}

.ag-gal-nav::after {
    content: "";
    height: 12px;
    width: 12px;
    border: solid var(--mainColour);
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
}

.ag-gal-prev {
    left: -50px;
}

.ag-gal-prev::after {
    transform: rotate(225deg);
}

.ag-gal-next {
    right: -50px;
}

/*Cart Blade*/
.AB-parent~.cart-blade-overlay .cart-blade {
    top: 50px;
    height: calc(100% - 50px);
}

.cart-blade-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 9999;
    opacity: 0;
}

.cart-blade {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 650px;
    background: #fff;
    transform: translateX(100%);
    transition: transform .3s ease;
}

.cart-blade.open {
    transform: translateX(0);
}

.cart-blade-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cart-blade-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
}

.cart-blade-header>span {
    color: var(--headingColour);
    font-size: 1.125rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-blade-header>span::before {
    content: "";
    height: 12px;
    width: 14px;
    background: url(../images/check.svg) center no-repeat;
}

.cart-blade-close {
    height: 28px;
    width: 28px;
    background: url(../images/close-blade.svg) center no-repeat;
}

.cart-blade-product {
    display: flex;
    padding: 0 15px;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.cart-blade-product img {
    height: 80px;
    width: 80px;
    object-fit: cover;
}

.cart-blade-product .cart-blade-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-blade-product .cart-blade-info span {
    font-size: 1rem;
    font-weight: bold;
}

.cart-blade-product .cart-blade-info p {
    margin: 0;
    font-size: 0.75rem;
}

.cart-blade-info .cart-blade-info-small {
    display: flex;
    flex-wrap: wrap;
}

.cart-blade-info .cart-blade-info-small p {
    padding-right: 5px;
    margin-right: 5px;
    border-right: 1px solid #000;
    line-height: 1;
}

.cart-blade-info .cart-blade-info-small p:last-of-type {
    border: 0;
    margin: 0;
    padding: 0;
}

.cart-blade-footer {
    border-top: 1px solid #E5E1E1;
}

.cart-blade-price {
    padding: 15px;
    color: #000;
    display: flex;
    flex-direction: column;
}

.cart-blade-price span {
    font-size: 1.375rem;
}

.cart-blade-price p {
    margin: 0;
    padding: 0;
}

.cart-blade-actions {
    padding: 0 15px 20px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-blade-actions .button-primary,
.cart-blade-actions .button-secondary {
    border-radius: 50px;
    font-size: 0.875rem;
}

.cart-blade-actions .cart-continue {
    font-size: 0.75rem;
    text-transform: uppercase;
    text-decoration: underline;
    color: var(--headingColour);
    font-weight: bold;
}

/*Upsell Block*/
.cart-blade-upsell {
    padding: 20px 15px;
    background: #F3F3F3;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-blade-upsell>span {
    font-size: 1.125rem;
    color: #000;
    font-weight: bold;
}

.upsell-products {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: scroll;
    max-height: 450px;
}

.upsell-products .product-block-upsell {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #ADADAD;
    border-radius: 15px;
    padding: 10px;
}

.product-block-upsell .product-image {
    width: 90px;
    width: 90px;
    flex-shrink: 0;
}

.product-block-upsell .product-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    gap: 20px;
}

.product-block-upsell .product-info-inner {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-grow: 1;
    align-items: flex-start;
}

.product-block-upsell .product-title {
    font-size: 1rem;
    font-weight: bold;
    text-transform: capitalize;
    color: #000;
}

.product-block-upsell .product-price {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-block-upsell .product-price .was-price {
    text-decoration: line-through;
    font-size: 0.875rem;
}

.product-block-upsell .product-price .main-price {
    font-weight: bold;
    font-size: 1rem;
}

.product-block-upsell .product-price .was-price+.main-price {
    color: #A80039;
}

.product-block-upsell .product-selector {
    width: 100%;
}

.product-block-upsell .product-selector>div {
    padding: 0;
    margin-bottom: 5px;
}

.product-block-upsell .product-selector select {
    border: 1px solid #6B6767;
    border-radius: 10px;
    height: 40px;
}

.product-block-upsell .product-selector select[disabled] {
    opacity: .4;
}

.product-block-upsell .upsell-quantity {
    width: 100px;
}

.product-block-upsell .quantity {
    display: flex;
    border-radius: 10px;
    border: 1px solid #ADADAD;
    height: 40px;
}

.product-block-upsell .quantity input {
    display: flex;
    width: 40px;
    height: 100%;
    text-align: center;
    border: 0;
}

.product-block-upsell .quantity a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    font-size: 1.75rem;
    height: 100%;
}

.product-block-upsell .quantity a:hover {
    color: #000;
}

.product-block-upsell .upsell-quantity.disabled {
    opacity: .4;
    pointer-events: none;
}

.product-block-upsell .product-buttons a {
    font-weight: 400;
    border-radius: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--mainColour);
}

.product-block-upsell .product-buttons a.upsell-remove-product {
    background: #fff;
    color: var(--mainColour);
}

.product-block-upsell .product-buttons a.upsell-remove-product:hover {
    color: var(--mainColour) !important;
}

.product-block-upsell .product-buttons a.upsell-remove-product::after {
    content: "";
    flex-shrink: 0;
    height: 20px;
    width: 20px;
    background: url(../images/cancel.svg) center no-repeat;
}

/*Cart Blade Basket*/
.cart-blade-header>div {
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-blade-header>div>span {
    color: #fff;
    background: var(--mainColour);
    height: 36px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
}

.cart-delivery-limit {
    padding: 0 15px 10px 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-limit-bar {
    width: 100%;
    height: 6px;
    position: relative;
    background: #E1E1E1;
    overflow: hidden;
    border-radius: 3px;
    display: flex;
}

.cart-limit-bar>span {
    background: #00A24B;
    height: 100%;
}

.cart-based-country {
    font-size: 0.75rem;
}

.cart-blade-products {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 15px;
    max-height: 450px;
    overflow-y: scroll;
}

.cart-blade-products .cart-blade-product {
    margin: 0;
    padding: 0 0 10px 0;
    gap: 10px;
    border: 1px solid #E5E1E1;
    border-width: 0 0 1px 0;
}

.cart-blade-products .cart-blade-product:last-of-type {
    border: 0;
}

.cart-blade-basket .cart-blade-info {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.cart-blade-basket .cart-product-left {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cart-blade-basket .cart-product-left>span {}

.cart-blade-basket .cart-product-left>div {
    width: initial;
}

.cart-blade-basket .cart-product-left>div>span {
    font-weight: 400;
}

.cart-blade-basket .cart-product-right {
    flex-shrink: 0;
}

.cart-blade-basket .cart-product-quantity-wrap {
    margin-right: 10px;
    padding-right: 10px;
    position: relative;
}

.cart-blade-basket .cart-product-quantity-wrap::after {
    content: "";
    height: 26px;
    width: 1px;
    background: #EEECEC;
    position: absolute;
    right: 0;
    top: calc(50% - 13px);
}

.cart-blade-product .cart-product-quantity {
    width: 140px;
    height: 50px;
    border: 1px solid #D6D6D6;
    border-radius: 10px;
}

.cart-blade-product .cart-product-quantity a {
    width: 45px;
    flex-shrink: 0;
    height: 100%;
    color: #000;
}

.cart-blade-product .cart-product-quantity input {
    width: 50px;
    flex-shrink: 0;
    height: 100%;
    background: #fff;
    border: 1px solid #D6D6D6;
    border-width: 0 1px;
}

.cart-blade-product .cart-product-remove {
    background: none;
}

.cart-blade-basket .cart-blade-actions .button-primary {
    width: 300px;
    height: 50px;
}

.cart-blade-payment {
    padding: 0 15px 15px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

/*Group pop up*/
.group-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 600px;
}

.group-options>span {
    color: var(--headingColour);
    font-size: 1.125rem;
    font-weight: bold;
}

.group-options-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E5E1E1;
}

.group-options-title {
    font-size: 0.875rem;
    font-weight: bold;
    color: #000;
}

.group-options-header .product-image {
    height: 60px;
    width: 60px;
    flex-shrink: 0;
}

.group-options-header .product-image a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.group-options-details {
    display: flex;
    gap: 10px;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.group-options-details>span {
    font-weight: bold;
    color: var(--headingColour);
    font-size: 1.5rem;
}

.group-options .group-quick-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.group-options .group-quick-info label {
    font-weight: bold;
}

.group-options .product-selector>div:not(.hidden) {
    gap: 0;
}

.group-options .group-quick-price {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    width: 100%;
}

.group-options .group-quick-price .quantity-wrap {
    flex-shrink: 0;
}

.group-options .group-quick-price .quantity-wrap .quantity-label {
    font-weight: bold;
}

.group-options .group-quick-price .product-price {
    font-weight: bold;
    font-size: 1rem;
    flex-grow: 1;
    display: flex;
    gap: 0;
}

.group-options .group-quick-price .product-price>span {
    font-weight: 400;
    margin-right: 10px;
}

.group-options .product-selector {
    width: 100%;
    gap: 10px;
}

.group-quick-info .add-to-cart-row {
    width: 100%;
    align-items: center;
}

.group-quick-info .add-to-cart:not(.hidden) {
    border-radius: 50px;
    font-size: 0.875rem;
    background: var(--mainColour);
    font-weight: bold;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.group-quick-info .out-of-stock-wrap:not(.hidden) {
    border-radius: 50px;
    font-size: 0.875rem;
}

.group-quick-info .add-to-cart:before {
    content: none;
}

.group-quick-info .add-to-cart-close {
    text-decoration: underline;
    color: var(--headingColour);
    font-size: 0.875rem;
    font-weight: bold;
}


/* ---------------------- */
/* ------ CHECKOUT ------ */
/* ---------------------- */

/*----- LARGE CART -----*/

body[data-page=checkout] .top-wrap,
body[data-page=checkout] .header-wrap,
body[data-page=checkout] .menu-wrap,
body[data-page=checkout] .footer-wrap,
body[data-page=checkout] .byline-wrap {
    display: none;
}

.shopping-checkout {
    flex-direction: column;
}

.cart-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 0;
}

.cart-title span {
    font-size: 1.125rem;
    color: var(--headingColour);
    font-weight: bold;
    text-transform: capitalize;
}

.cart-title::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/cart-green.svg) no-repeat center;
    background-size: contain;
}

.cart-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #D8E1EB;
    box-sizing: border-box;
    margin: 10px 0;
    padding: 10px;
    gap: 4px;
}

.cart-product-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.cart-product-image {
    box-sizing: border-box;
    width: 60px;
}

.cart-product-image img {
    max-width: 50px;
    max-height: 50px;
    width: auto;
    height: auto;
}

.cart-product-details {
    box-sizing: border-box;
    height: 100%;
}

.cart-product-title span {
    font-size: 0.75rem;
    line-height: 18px;
    color: #393A3D;
    font-weight: bold;
}

.cart-product-variations span {
    font-size: 0.625rem;
    line-height: 16px;
    color: #393A3D;
}

.cart-product-sku span {
    font-size: 0.75rem;
    line-height: 16px;
    color: #393A3D;
}

.cart-discount {
    font-size: 0.625rem;
    line-height: 14px;
    color: #dc3545;
    font-weight: bold;
}

.cart-product-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-product-quantity-wrap {
    box-sizing: border-box;
}

.cart-product-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 35px;
    background: var(--background);
}

.cart-product-quantity a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 60%;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--mainColour);
}

.cart-product-quantity input {
    width: 40%;
    height: 100%;
    text-align: center;
    background: none;
    border: 0;
}

.cart-product-update {
    padding-top: 5px;
}

.cart-product-update a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.cart-product-update a {
    font-size: 0.75rem;
    color: #575757;
    text-decoration: underline;
}

.cart-product-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 100%;
    width: 110px;
}

.cart-product-price span {
    font-size: 0.875rem;
    color: #393A3D;
    font-weight: bold;
}

.cart-product-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--background);
}

.cart-product-remove a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: url(../images/icon-delete.svg) no-repeat center;
    background-size: 15px;
}

.cart-lines {
    padding: 20px 0;
}

.cart-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #E3E3E3;
}

.cart-line.total {
    border: 0;
    margin-bottom: 40px;
}

.cart-line>div {
    font-size: 18px;
    color: #3B3B3D;
    text-transform: capitalize;
}

.cart-line.discount-line {
    margin-bottom: 40px;
}

.cart-line.discount-line>div {
    color: #4476BA;
    font-size: 0.75rem;
}

.cart-line.total>div {
    font-weight: bold;
}

.cart-line.vat-line>div {
    font-size: 0.75rem;
}

.remove-voucher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    background: url(../images/cancel-purple.svg) no-repeat center;
    background-size: contain;
}

/*----- CHECKOUT -----*/
.site-body[data-page=checkout] .site-header,
.site-body[data-page=checkout] .site-footer {
    display: none;
}

.checkout-page {
    display: flex;
    min-height: 1000px;
}

.checkout-left {
    padding: 40px 20px 200px 20px;
    padding-left: calc((100vw - 1200px) / 2);
    width: 50%;
    box-sizing: border-box;
    background: #fff;
}

.checkout-right {
    padding: 130px 20px 200px 20px;
    padding-right: calc((100vw - 1200px) / 2);
    width: 50%;
    box-sizing: border-box;
    background: #f8f8f8;
}

.back-to-shopping-wrap {
    padding: 10px 0 20px;
}

.back-to-shopping-wrap a {
    font-size: 1rem;
    color: var(--headingColour);
    text-decoration: underline;
}

.checkout-logo {
    padding: 20px 0;
}

.checkout-logo img {
    max-width: 225px;
}

.checkout-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 35px;
    width: 265px;
    background: #fff;
    border: 1px solid #74AF43;
    border-radius: 3px;
}

.checkout-button span {
    font-size: 0.75rem;
    color: #393A3D;
}

.checkout-button.tick::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: url(../images/tick-green.svg) no-repeat center;
    background-size: contain;
}

.checkout-logger {
    padding: 10px 0;
}

.checkout-logger-title {
    padding: 5px 0;
}

.checkout-logger-title span {
    font-size: 1rem;
    color: var(--headingColour);
    font-weight: bold;
}

.checkout-logger-title span a {
    color: var(--headingColour);
    text-decoration: underline;
    font-weight: normal;
}

/* logger popup */
.login-popup {}

.login-popup-title {
    padding: 10px 0;
}

.login-popup-title span {
    font-size: 18px;
    color: #3B3B3D;
    font-weight: 600;
}

.login-popup .login-form {}

.login-popup .login-form-field {
    padding: 10px 0;
}

.login-popup .login-form-label {
    font-size: 0.875rem;
    color: #3B3B3D;
    font-weight: 600;
    padding: 5px 0;
}

.login-popup .login-form-input {
    width: 60%;
}

.login-popup .login-form-input input {
    width: 100%;
    height: 35px;
    border: 1px solid #D8E1EB;
    padding: 0 10px;
    box-sizing: border-box;
}

.checkout-section-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
}

.checkout-section-title span,
.checkout-section-title h1 {
    font-size: 2rem;
    padding: 0;
    color: var(--mainColour);
    font-weight: bold;
}

.checkout-card {
    background: #F8F8F8;
    border: 1px solid #EEEAEA;
    width: 100%;
    margin: 10px 0;
    padding: 20px;
    box-sizing: border-box;
}

.checkout-card-header {}

.checkout-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 60px;
    width: 100%;
}

.checkout-card-title>label {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    width: 100%;
}

.checkout-card-title>label>span {
    margin-left: auto;
    display: flex;
    align-items: center;
    font-weight: normal;
}

.checkout-card-title>span {
    font-size: 18px;
    line-height: 28px;
    color: var(--mainColour);
    font-weight: bold;
    display: flex;
    align-items: center;
    width: 100%;
}

.checkout-card-title>span>span {
    margin-left: auto;
    display: flex;
    align-items: center;
    font-weight: normal;
}

.checkout-card-inner {
    padding: 10px 0;
    box-sizing: border-box;
}

.checkout-card-inner-title {
    font-size: 0.875rem;
    line-height: 24px;
}

.checkout-card-subtitle span {
    font-size: 1rem;
    color: #3B3B3D;
}

.checkout-card-field {
    padding: 10px 0;
}

.checkout-card-input {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.checkout-card-input span {
    font-size: 1rem;
    line-height: 18px;
    color: #3B3B3D;
}

.checkout-card-input input[type=checkbox] {
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
    border-color: #000;
    border-radius: 2px;
    accent-color: #4476BA;
}

.checkout-card-input input[type=checkbox]:focus {
    outline: 1px solid #000;
}

.checkout-card-input.checkbox span {
    font-size: 0.875rem;
    color: #393A3D;
}

.delivery-select-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.delivery-selector {
    width: 60%;
}

.delivery-price {}

.delivery-price span {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
}

.free-delivery-wrap {
    padding: 10px 0;
}

.checkout-card.expandable .checkout-card-header {
    position: relative;
    cursor: pointer;
    display: flex;
}

.checkout-card.expandable:not(.noarrow) .checkout-card-header::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border: solid #393A3D;
    border-width: 0 2px 2px 0;
    transform: scale(1, 1) rotate(45deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 6px);
    transition: 0.2s ease-in-out all;
}

.checkout-card.expandable .checkout-card-header.active::after {
    transform: scale(-1, -1) rotate(45deg);
}

.checkout-card.expandable .checkout-card-content {
    display: none;
}

.checkout-card[data-card=promo] .checkout-card-content {
    padding-top: 10px;
    position: relative;
}

.checkout-card[data-card=promo] .checkout-card-subtitle span {
    font-size: 0.75rem;
}

.checkout-card[data-card=details] .checkout-card-title span {
    font-size: 1.5rem;
}

.checkout-card[data-card=details] .checkout-card-subtitle {
    padding: 10px 0;
}

.checkout-card[data-card=details] .checkout-card-subtitle span {
    font-size: 1rem;
    color: #393A3D;
    font-weight: bold;
}

.checkout-form {
    padding: 10px 0;
}

.checkout-form-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
}

.checkout-form-title span {
    font-size: 0.875rem;
    color: #393A3D;
    font-weight: bold;
}

.checkout-form-field {
    padding: 10px 0;
    position: relative;
}

.checkout-form-label {
    font-size: 1rem;
    color: #3B3B3D;
    padding: 5px 0;
}

.checkout-form-input {
    margin: 5px 0;
}

.checkout-form[data-form=billing] {
    display: none;
}

.checkout-card[data-card=tnc] {
    padding: 0 20px;
}

.checkout-card[data-card=tnc] .checkout-card-input span a {
    color: #4476BA;
    text-decoration: underline;
}

.checkout-card[data-card=paymethods] {
    padding: 0px 20px 20px;
}

.checkout-card[data-card=paymethods] .checkout-card-subtitle {
    padding: 10px 0;
}

.checkout-card[data-card=paymethods] .checkout-card-subtitle span {
    font-size: 1rem;
    color: #393A3D;
    font-weight: bold;
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.delivery-option {
    border: 1px solid #D8E1EB;
    padding: 10px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    color: #3B3B3D;
}

.delivery-option:hover {
    color: #3B3B3D;
}

.deliveryopt-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.deliveryopt-title {
    font-size: 0.938rem;
    line-height: 24px;
}

.deliveryopt-radio {
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 2px solid #000;
    border-radius: 50%;
    padding: 3px;
    cursor: pointer;
}

.delivery-option.active .deliveryopt-radio::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    border-radius: inherit;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.payment-option {
    border: 1px solid #D8E1EB;
    padding: 10px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: #000000;
}

.payment-option.active {
    border-color: var(--secondaryColour);
}

.payopt-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.payopt-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.payopt-title {
    font-size: 0.938rem;
    display: flex;
    align-items: center;
    height: 40px;
}

.payopt-description {
    width: 100%;
}

.payopt-radio {
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 2px solid #000;
    border-radius: 50%;
    padding: 3px;
    cursor: pointer;
    margin: 10px 0;
}

.payment-option.active .payopt-radio::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    border-radius: inherit;
}

.payopt-image {
    align-self: center;
    width: 100px;
}

.payment-option img {
    width: 100%;
    max-height: auto;
}

.save-order {
    width: 100%;
    text-transform: uppercase;
    height: 60px;
}

.continue-button-wrap button:focus-visible {
    background: #f9dc4a;
    color: #000;
}

/*Payment Page*/
.payment-header {
    margin: 0 0 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.payment-header>div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-header h1 {
    color: #000000;
    font-weight: bold;
    font-size: 1.875rem;
    margin: 0 0 15px;
    padding: 0;
}

.payment-header>div>div {
    width: calc((100% - 20px) /3);
    font-size: 0.75rem;
    color: #000;
    line-height: 24px;
}

.payment-content {
    margin: 0 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.payment-content h3 {
    color: #000;
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 10px;
    padding: 0;
    position: relative;
}

.payment-content .payment-order-summary {
    width: calc(33% - 10px);
    padding: 10px;
    box-sizing: border-box;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
}

.payment-content .payment-delivery {
    width: calc(33% - 10px);
    padding: 10px;
    box-sizing: border-box;
    font-size: 0.75rem;
    background: #f9f9f9;
}

.payment-content .payment-delivery p {
    font-size: 0.75rem;
    color: #000;
    padding: 0 0 15px;
    line-height: 20px;
}

.payment-content .payment-order-summary span {
    font-weight: bold;
    font-size: 0.75rem;
    line-height: 28px;
}

.payment-content .payment-order-summary .payment-cart-products>div {
    border-bottom: 1px solid #F2EFEF;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-content .payment-order-summary .payment-cart-products>div>div {
    line-height: 20px;
    padding: 5px 0;
    font-size: 0.75rem;
    color: #000;
}

.payment-content .payment-cart-calculations {
    border-bottom: 1px solid #F2EFEF;
    padding: 5px 0;
}

.payment-content .payment-cart-calculations>div {
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #000;
    line-height: 20px;
}

.payment-content .payment-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
}

.payment-content .payment-total>div {
    padding: 5px 0;
    font-size: 0.75rem;
    color: #000;
    line-height: 20px;
    font-weight: bold;
}

.payment-pay {
    box-sizing: border-box;
}

.payment-pay h1 {
    color: #000000;
    font-weight: bold;
    font-size: 1.875rem;
    margin: 0;
    padding: 0;
}

.payment-pay label {
    font-size: 1rem;
    color: #000000;
    font-weight: normal;
}

.payment-pay .payment-button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-pay .payment-button-container p {
    line-height: 24px;
    color: #000000;
    font-size: 1rem;
    padding: 0;
}

.payment-pay .payment-button-container img {
    margin: 10px 0 0;
}

.payment-pay .payment-button {
    cursor: pointer;
    line-height: 40px;
    padding: 0 20px;
}

.payment-pay .payment-fields {
    margin-bottom: 25px;
}

.payment-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    margin: 20px 0 30px;
    box-sizing: border-box;
    background: #f9f9f9;
}

.payment-footer p {
    font-size: 1rem;
    color: #000;
    line-height: 24px;
    text-align: center;
    padding: 0;
}

.group-area,
.icon-group-area {
    border: 1px solid #aaa;
    margin: 5px 0;
    padding: 2px;
}

/* ------------------------ */
/* ------ MEMBERSHIP ------ */
/* ------------------------ */
/* ----- SIGNUP PAGE ----- */

.signup-page {
    padding: 50px 0 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.signup-header {
    background: var(--mainColour);
    height: 120px;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
}

.signup-header .container {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--secondaryFont);
}

.signup-header .container::before {
    content: "";
    height: 24px;
    width: 20px;
    background: url(../images/account-icon.svg) center no-repeat;
    flex-shrink: 0;
}

.signup-tab-headers {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.signup-tab-header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    padding: 0 30px;
    background: var(--mainColour);
    border: solid var(--mainColour);
    border-width: 1px 1px 0;
    position: relative;
    z-index: 0;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    color: #fff;
    border-radius: 5px 5px 0 0;
}

.signup-tab-header:hover {
    color: #fff;
}

.signup-tab-header.active {
    background: #fff;
    color: var(--mainColour);
    z-index: 2;
}

.signup-tab-content {
    border: 1px solid var(--mainColour);
    background: #fff;
    margin-top: -1px;
    z-index: 1;
    position: relative;
}

.signup-tab {
    display: none;
    padding: 20px;
}

.signup-tab.active {
    display: block;
    position: relative;
    z-index: 1;
}

.signup-tab-left {
    flex: 1;
    box-sizing: border-box;
}

.signup-tab-right {
    width: 400px;
    flex: 0 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signup-right-header {
    margin-top: 50px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 26px;
}

.signup-right-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.signup-right-bullets>div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    height: 40px;
}

.signup-right-bullets>div:before {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: url(../images/tick.svg) no-repeat center;
}

.signup-tab-text {
    color: #000;
    font-size: 1rem;
}

.signup-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
    font-size: 1rem;
}

.signup-bottom a {
    color: inherit;
    text-decoration: underline;
}

.signup-page .signup-form,
.signup-page .login-form {
    padding: 10px 0;
}

.signup-form-field {
    padding: 10px 0;
}

.signup-form-label {
    font-size: 1rem;
    color: #3B3B3D;
    padding: 5px 0;
}

.signup-form-input {
    width: 100%;
}

.signup-page-button {
    margin: 10px 0;
    width: 100%;
    height: 60px;
}

.forgot-button {
    color: #255E99;
}

.login-error {
    text-align: center;
    font-size: 1rem;
    color: #990000;
    line-height: 40px;
}

.login-form {
    margin-bottom: 20px;
}

/* forgot password popup */
.forgot-password.login-form {
    flex-direction: column;
    align-items: center;
}

.forgot-password.login-form span {
    display: block;
    font-size: 1.25rem;
    color: #1C1B1B;
    margin: 0 0 10px;
    text-align: center;
}

/* ----- DASHBOARD ----- */
.dashboard-header {
    background: var(--background);
    border: 1px solid var(--border);
    border-width: 0 0 1px 0;
    color: var(--mainColour);
}

.dashboard-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 5px;
    padding: 0 10px;
    font-size: 1rem;
}

.dashboard-header span:nth-child(1) {
    font-size: 1.5rem;
    font-weight: 600;
}

.dashboard-header span:nth-child(2) {
    margin-left: auto;
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 5px;
}

.dashboard-header span:nth-child(2):before {
    content: '';
    width: 15px;
    height: 17px;
    background: url(../images/account.svg) no-repeat center;
    background-size: contain;
}

.dashboard-header a {
    color: var(--mainColour);
    text-decoration: underline;
}

.dash-tabs {
    display: flex;
    align-items: stretch;
    min-height: 700px;
}

.dash-tab-titles {
    background: var(--background);
    width: 40%;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
}

.dash-tab-titles a {
    height: 80px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    background: #fff;
    color: #302F2F;
    transition: 0.2s all ease-in-out;
}

.dash-tab-titles a span {
    width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #302F2F;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.2s all ease-in-out;
}

.dash-tab-titles a span:before {
    content: '';
    width: 20px;
    height: 20px;
    background: transparent no-repeat center;
    transition: 0.2s all ease-in-out;
}

.dash-tab-titles a[data-tab='orders'] span:before {
    background-image: url(../images/dash-order.svg);
}

.dash-tab-titles a[data-tab='orders'].active span:before {
    background-image: url(../images/dash-order-white.svg);
}

.dash-tab-titles a[data-tab='details'] span:before {
    background-image: url(../images/dash-account.svg);
}

.dash-tab-titles a[data-tab='details'].active span:before {
    background-image: url(../images/dash-account-white.svg);
}

.dash-tab-titles a[data-tab='delivery-addresses'] span:before {
    background-image: url(../images/dash-address.svg);
}

.dash-tab-titles a[data-tab='delivery-addresses'].active span:before {
    background-image: url(../images/dash-address-white.svg);
}

.dash-tab-titles a[data-tab='password'] span:before {
    background-image: url(../images/dash-password.svg);
}

.dash-tab-titles a[data-tab='password'].active span:before {
    background-image: url(../images/dash-password-white.svg);
}

.dash-tab-titles a.active span {
    color: #fff;
}

.dash-tab-titles a.active {
    background: #242424;
}

.dash-tab-titles a:hover {
    text-decoration: underline;
}

.dash-tab-content>div {
    display: none;
}

.dash-tab-inner.active {
    display: block;
    padding: 20px 0 0 20px;
}

.dash-order-row-wrap {
    border: 1px solid var(--border);
    border-bottom: 0;
    overflow: hidden;
}

.dash-order-row-wrap:first-of-type {
    border-radius: 5px 5px 0 0;
}

.dash-order-row-wrap .dash-order-headings {
    background: var(--background);
    padding: 0 10px;
    height: 50px;
    color: #25242B;
    font-weight: 600;
    font-size: 1rem;
}

.dash-order-row-wrap:last-child {
    border-bottom: 1px solid var(--border);
    border-radius: 0 0 5px 5px;
}

.dash-order-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 50px;
}

.dash-order-row-wrap:nth-child(even) {
    background: var(--background);
}

.dash-order-row>div {
    width: 20%;
}

.dash-order-row>div.ref {
    flex: 1;
    width: auto;
}

.dash-order-info {
    padding: 0 10px;
    font-size: 0.875rem;
}

.dash-order-info>div span {
    color: #25242B;
}

.dash-order-row .view {
    width: 60px;
}

.dash-order-info .view-invoice {
    display: flex;
    align-items: center;
}

.dash-order-info .view-invoice:before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/order-blue.svg) no-repeat center;
}

.dash-forms-wrap {
    display: flex;
}

.dash-form {
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
    background: var(--background);
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.dash-form-field {
    padding: 10px 0;
}

.dash-form-label {
    font-size: 1rem;
    color: #3B3B3D;
    padding: 5px 0;
}

.dash-form-input {
    width: 100%;
}

.dash-form-button-row {
    padding: 10px 0;
}

/* logged in addresses */
.member-addresses {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

:is(.billing-address, .delivery-address) {
    display: flex;
    box-sizing: border-box;
    gap: 10px;
    flex-wrap: wrap;
}

:is(.billing-address, .delivery-address) input {
    height: 20px;
    margin: 0 5px;
}

:is(.billing-address, .delivery-address) div {
    font-size: 0.875rem;
    line-height: 18px;
    color: #393A3D;
}

:is(.billing-address, .delivery-address) div span {
    font-weight: bold;
    font-size: 1rem;
    color: #1871B4;
}

.address-button-row {
    display: flex;
    width: 100%;
}

.pop-overlay {
    position: absolute;
    z-index: 10000;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    display: flex;
    justify-content: center;
}

.pop-overlay>div {
    background: #fff;
    position: absolute;
    background: #fff;
    padding: 20px;
    margin: 10px;
    max-width: 90%;
    max-height: 90%;
    width: fit-content;
    height: fit-content;
    flex: 0 0 auto;
    font-size: 1rem;
    line-height: 26px;
}

.pop-overlay>div>a {
    position: absolute;
    width: 30px;
    height: 30px;
    background: url(../images/close-blade.svg) no-repeat center;
    z-index: 5;
    top: 5px;
    right: 5px;
}

.pop-overlay.pop-image>div {
    max-width: 100vw;
    max-height: 100vh;
}

.pop-overlay.pop-image>div img {
    max-width: 100%;
    max-height: 100%;
}

.pop-buttons {
    display: flex;
    margin: 10px 0;
    align-items: center;
    justify-content: space-between;
}

/* new address popup */
.add-address-popup h2 {
    color: #1871B4;
}

.edit-address-box :is(input, select) {
    width: 100%;
    height: 35px;
    padding: 0 10px;
    box-sizing: border-box;
    background: #FBF9F5;
    border: 1px solid #ECEBEA;
    margin: 5px 0;
    color: #393A3D;
}

.address-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 600px;
}

.address-form>div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.address-form>div:nth-child(2),
.address-form>div:last-child {
    align-items: center;
    flex-direction: row;
    gap: 5px;
}

.address-form>div>input {
    width: 100%;
}

.address-form>div>input::placeholder {
    text-transform: capitalize;
}

.address-form>div>input:focus,
.address-form>div>select:focus,
.address-form>div>textarea:focus {
    border-color: #071B3A;
}

.address-form>div>textarea {
    height: 100px;
    width: 100%;
}

.address-form button {
    border: 0;
    background: #5EB229;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 40px;
    padding: 0 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.address-form button:focus {
    outline: 1px solid #071B3A;
}

.address-form button:nth-child(1) {
    margin-right: auto;
    background: #65707D;
}

.member-address {
    border: 1px solid var(--border);
    background: #fff;
    font-size: 0.875rem;
    line-height: 18px;
    padding: 20px 5px 5px;
    width: calc((100% - 20px) / 2);
    height: 240px;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.dash-tab-inner .member-address {
    width: calc((100% - 40px) / 4);
}

.member-address>div:first-child {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--mainColour);
    padding: 3px;
    margin: 0 10px;
}

.dash-tab-inner .member-address>div:first-child {
    display: none;
}

.checkout-card .member-address.chosen>div:first-child:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: var(--mainColour);
    border-radius: 50%;
}

.checkout-card .member-address:not(.chosen) {
    cursor: pointer;
}

.billing-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.billing-check input:focus {
    outline: 1px solid #000;
}

.member-address .address-buttons {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.add-address {
    width: 100%;
}

.edit-address:not(.add-address) {
    width: 30px;
    height: 30px;
    background-image: url(../images/icon-edit.svg);
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.delete-address {
    width: 30px;
    height: 30px;
    background-image: url(../images/icon-delete.svg);
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.use-address {
    width: 30px;
    height: 30px;
    background-image: url(../images/icon-use.svg);
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.checkout-card .member-address:not(.chosen) {
    cursor: pointer;
}


.vet-warning {
    display: flex;
    padding: 10px 10px;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
    background: #FFEEEF;
    margin: 10px 0;
}

.vet-warning:before {
    content: '';
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    background: url(../images/alert.svg) no-repeat center;
}

.vet-warning>div {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 5px;
}

.vet-warning>div>span {
    font-size: 12px;
}


.checkout-veterinary {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-veterinary__title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}


.checkout-veterinary__title:before {
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/vet.svg) no-repeat center;
}

.checkout-veterinary__title>span {
    font-size: 1.875;
    font-weight: bold;
}

.checkout-veterinary div {
    min-width: 70%;
}

.checkout-veterinary input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #777;
    height: 50px;
    margin: 5px 0;
}

.checkout-veterinary>span {}


.POM_popup::backdrop {
    background-color: #00000026;
    backdrop-filter: blur(3px);
}

.POM_popup {
    position: fixed;
    inset: 0;
    margin: auto;
    padding: 0;
    color: inherit;
    width: 600px;
    max-width: calc(100% - 32px);
    box-sizing: border-box;
    min-height: 100px;
    max-height: 80vh;
    max-height: 80dvh;
    background-color: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow-y: auto;
    box-shadow: #999 0 0 20px 5px;

}

.POM_popup__close__button {
    width: 28px;
    height: 28px;
    padding: 0;
    margin: 0;
    border-radius: 50px;
    background-image: url("../images/close-blade.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 20px;
    left: calc(100% - 50px);
    position: relative;
    background-color: transparent;
    border: none;
}

.POM_popup__content {
    padding: 20px;
    overflow-wrap: anywhere;
}

.POM_popup__content img {
    max-width: 100%;
    height: auto;
}

.POM_popup__continue_button {
    padding: 12px 20px;
    margin: 0 0 20px 20px;
    border-radius: 50px;
    border: 1px transparent solid;
    background-color: #c2ef77;
    font-size: 18px;
    color: #00733d;
    font-weight: bold;
    font-family: 'Montserrat';
    cursor: pointer;
    transition: 0.2s all ease;
}

.POM_popup__continue_button:hover {
    border: 1px #00733d solid;
}


.consultRequired {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.consultRequired__checkout_field {
    padding: 0;
}


.consultRequired__checkout_field label {
    text-align: left;
}

.checkout-veterinary-form_swap {
    font-size: 16px;
    color: #00733d;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

.checkout-veterinary-form_swap:hover {
    text-decoration: none;
}


@media (min-width:768px) {
    .footer-menu-wrap {
        display: block !important;
    }

    .footer-col-title {
        pointer-events: none !important;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1560px;
    }
}

@media (min-width:992px) and (max-width: 1599px) {
    .top-wrap>div>div {
        width: initial;
    }

    .top-wrap>div>div.top-right {
        flex-grow: 1;
    }

    /*Category Block*/
    .category-block .cat-title {
        font-size: 1rem;
    }
}


/*---------LARGE DESKTOP < 1199px---------*/
@media (min-width:1200px) {

    .mobile:not(.desktop-large),
    .tablet:not(.desktop-large),
    .desktop:not(.desktop-large) {
        display: none !important;
    }

    .content_wrap {
        min-height: 600px;
    }

}

/*---------DESKTOP < 1199px---------*/
@media (min-width:992px) and (max-width:1199px) {

    .mobile:not(.desktop),
    .tablet:not(.desktop),
    .desktop-large:not(.desktop) {
        display: none !important;
    }

    .block-layout-module .layout-inner {
        width: 100%;
    }

    .block-layout-module .layout-image {
        align-items: flex-start;
    }

    .swipe {
        height: 575px;
    }

    /*Header*/
    .top-wrap,
    .top-menu ul li a {
        font-size: 0.875rem;
    }

    .top-wrap>div>div.top-right {
        gap: 15px;
    }

    .header-right {
        gap: 15px;
    }

    .main-menu {
        gap: 20px;
    }

    /*Footer*/
    .footer-wrap>div {
        gap: 0;
    }

    /* ----- MODULES ----- */

    /*Product Module*/
    .pm-gal-wrap .pm-gal-prev {
        left: -40px;
    }

    .pm-gal-wrap .pm-gal-next {
        right: -40px;
    }

    /*category Module*/
    .cm-gal-wrap .cm-gal-prev {
        left: -40px;
    }

    .cm-gal-wrap .cm-gal-next {
        right: -40px;
    }


    /* ----- SEARCH PAGE ----- */
    .product-list {
        gap: 12px;
    }

    /*Product Block*/
    .product-block .product-info {
        padding: 5px;
    }

    .product-block .product-image .product-no-stock {
        font-size: 0.875rem;
    }

    .product-block .product-title a {
        font-size: 1rem;
    }

    .product-block .product-price-quantity {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .product-quantity-wrap .quantity {
        width: 100%;
    }

    .product-quantity-wrap .quantity input {
        width: 100%;
        flex-grow: 1;
    }

    .product-quantity-wrap .quantity a {
        width: 40px;
        flex-shrink: 0;
    }

    .product-block .product-buttons a {
        padding: 0;
    }

    /* ----- DETAILS PAGE ---- */

    /* associations */
    .associations-gal .product-block {}

    /* ----- CHECKOUT ---- */
    .checkout-left {
        padding-right: 10px;
        padding-left: calc((100vw - 950px) / 2);
    }

    .checkout-right {
        padding-left: 10px;
        padding-right: calc((100vw - 950px) / 2);
    }

    .cart-product-quantity {
        width: 100px;
        height: 35px;
    }

    .dash-tab-inner .member-address {
        width: calc((100% - 30px) / 3);
    }
}

/* -------------------------------------------------------------------------------------------------------- DESKTOP END  */

/* ------------------------------------------------- */
/* --------------TABLET & MOBILE ------------------- */
/* ------------------------------------------------- */

/*---------Tablet & Mobile---------*/
@media (max-width:991px) {

    /* ----- MODULES ----- */

    /* -- Fullscreen Gallery -- */
    .flex-direction-nav li {
        left: 0;
    }

    .flex-direction-nav li.flex-nav-next {
        right: 0;
    }

    /* ----- SITE HEADER ----- */
    .top-wrap>div,
    .header-wrap>div {
        max-width: 100%;
    }

    /* -- HEADER WRAP -- */
    .header-wrap {
        height: 80px;
    }

    .header-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .header-wrap {
        margin-bottom: 50px;
    }

    .site-search {
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        border-width: 1px 0;
        background: #F3FFF9;
        border-radius: 0;
    }

    .site-search .search-button {
        background-image: url(../images/search-green.svg);
    }

    .site-search .search-auto-complete {
        width: 100%;
        left: 0;
    }

    .menu-toggle {
        display: block;
        width: 26px;
        height: 19px;
        position: relative;
    }

    .menu-toggle>div {
        width: 100%;
        height: 3px;
        border-radius: 5px;
        background: var(--mainColour);
        position: absolute;
        transition: 0.2s ease-in-out all;
    }

    .menu-toggle>div.top {
        top: 0;
    }

    .menu-toggle>div.mid {
        top: calc(50% - 1.5px);
        opacity: 1;
    }

    .menu-toggle>div.btm {
        bottom: 0;
    }

    .menu-toggle.active>div.top {
        transform: rotate(-45deg);
        top: 40%;
    }

    .menu-toggle.active>div.mid {
        opacity: 0;
    }

    .menu-toggle.active>div.btm {
        transform: rotate(45deg);
        bottom: 45%;
    }

    /* ----- Responsive MENU ----- */
    .menu-header {
        height: 80px;
        background: #F8F8F8;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
    }

    .menu-header .toggle-menu {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--mainColour);
    }

    .menu-header .toggle-menu::before {
        content: "";
        height: 25px;
        width: 25px;
        background: url(../images/close-round.svg) center no-repeat;
    }

    .menu-header-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .responsive-menu-wrap {
        position: absolute;
        left: 0;
        top: 55px;
        width: 100%;
        background: #fff;
        z-index: -1;
        visibility: hidden;
        opacity: 0;
        transition: ease-in-out all .3s;
    }

    .responsive-menu-wrap.active {
        visibility: visible;
        opacity: 1;
        z-index: 2000;
    }

    .responsive-menu-wrap>div {
        padding: 0;
        max-width: 100%;
    }

    .responsive-main-menu-wrap {
        position: relative;
    }

    .responsive-main-menu-wrap .container {
        background: #fff;
        padding: 0;
        max-width: 100%;
    }

    .responsive-main-menu {
        padding: 0;
        margin: 0;
    }

    .responsive-main-menu ul {
        padding: 0;
        list-style: none;
    }

    .responsive-main-menu li {
        padding: 0;
        list-style: none;
        border-bottom: 1px solid #EEECEC;
        height: 40px;
        display: flex;
        align-items: center;
        padding: 0 10px;
    }

    .responsive-main-menu li>a {
        font-size: 0.875rem;
        color: var(--textColour);
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .responsive-main-menu>li>a {
        font-size: 1rem;
        color: var(--mainColour);
        font-weight: bold;
    }

    .responsive-main-menu ul {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        transform: translateX(-100%);
        transition: transform .3s ease;
    }

    .responsive-main-menu ul.active {
        transform: translateX(0);
        height: 100vh;
        overflow-y: scroll;
        z-index: 10;
    }

    .responsive-main-menu li.has-sub-items>a::after {
        content: "";
        height: 9px;
        width: 6px;
        clip-path: polygon(0 0, 0% 100%, 100% 50%);
        background: var(--mainColour);
        flex-shrink: 0;
    }

    .responsive-main-menu .submenu-title>a {
        font-weight: bold;
        color: var(--headingColour);
        font-size: 1rem;
    }

    .menu-footer {
        background: #F8F8F8;
        height: 65px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
    }

    .menu-footer a {
        color: #000;
        font-size: 0.9375rem;
    }

    .menu-footer .close-menu {
        text-decoration: underline;
    }

    .responsive-main-menu .viewall a {
        color: var(--headingColour);
        text-decoration: underline;
    }

    .responsive-main-menu li.menu-back {
        border-bottom: 0;
    }

    .responsive-main-menu li.menu-back a::before {
        content: "";
        height: 9px;
        width: 6px;
        clip-path: polygon(100% 0, 0 50%, 100% 100%);
        background: var(--mainColour);
        flex-shrink: 0;
    }

    .responsive-main-menu li.menu-back a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        color: var(--headingColour);
        gap: 20px;
        position: relative;
    }

    .responsive-main-menu li.menu-back a::after {
        content: "";
        height: 24px;
        width: 1px;
        background: #EEECEC;
        position: absolute;
        left: 16px;
        top: calc(50% - 12px);
    }

    .overlay {
        background: rgba(0, 0, 0, .4);
        position: fixed;
        top: 0;
        height: 100vh;
        width: 100%;
        left: 0;
        z-index: -1;
        visibility: hidden;
        opacity: 0;
        transition: ease-in-out all .4s;
    }

    .overlay.hover {
        visibility: visible;
        opacity: 1;
        z-index: 999;
    }

    /*Footer*/
    .footer-container {
        flex-wrap: wrap;
        padding: 30px 10px 0;
    }

    /*Saerch Page*/
    .search-title h1 {
        padding: 0;
    }

    .search-results-wrap {
        flex-direction: column;
        gap: 0;
    }

    .search-results {
        width: 100%;
        margin-top: 10px;
    }

    .search-page {
        gap: 0;
        padding-top: 0;
    }

    .search-filters {
        width: 100%;
    }

    .search-order span {
        display: none;
    }

    .filter-button {
        color: #fff;
        font-weight: bold;
        text-transform: capitalize;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 60px;
        padding: 0 10px;
        background: var(--mainColour);
    }

    .filter-button:hover {
        color: #fff;
    }

    .search-filters .filter-button:after {
        content: '';
        transition: 0.3s all ease-in-out;
        width: 20px;
        height: 20px;
        background: url(../images/chevron-down-white.svg) no-repeat center;
        margin-left: auto;
    }

    .search-filters.active .filter-button:after {
        transform: rotate(180deg);
    }

    .search-filters:not(.active) .filters,
    .search-filters:not(.active) .search-filters-buttons {
        display: none;
    }

    /*Details Page*/
    .product-delivery-info {
        margin: 10px 0;
    }

    .product-delivery-info>div {
        padding: 14px 5px;
    }

    .product-description-tab-content {
        padding: 0;
        border: 0;
    }

    .product-description-tabs a {
        width: 100%;
        position: relative;
        border: 1px solid #ECEBEB;
        border-radius: 10px;
        padding: 20px 10px;
        margin-bottom: 15px;
    }

    .product-description-tabs a.active {
        margin-bottom: 0;
        border-width: 1px 1px 0 1px;
        border-radius: 10px 10px 0 0;
    }

    .product-description-tabs a::before {
        content: "";
        height: 12px;
        width: 12px;
        border: solid var(--mainColour);
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
        position: absolute;
        right: 15px;
        top: 25px;
        transition: ease-in-out all .3s;
    }

    .product-description-tabs a.active::before {
        transform: rotate(225deg);
        top: 30px;
    }

    .product-description-tabs a::after {
        content: "";
        height: 3px;
        width: 30px;
        background: var(--mainColour);
        position: absolute;
        left: 10px;
        bottom: 10px;
        opacity: 0;
    }

    .product-description-tabs a.active::after {
        opacity: 1;
    }

    .product-description-tab-content>div {
        border: solid transparent;
        border-width: 0 1px 1px 1px;
        margin-bottom: 15px;
    }

    .product-description-tab-content>div.active {
        border-radius: 0 0 10px 10px;
        padding: 0 10px 10px 10px;
        border-color: #ECEBEB;
    }

    .product-form-wrap {
        padding: 5px 10px;
    }

    .product-form-wrap .product-form-toggle,
    .in-store-notice {
        font-size: 1rem;
    }

    /*Checkout*/
    .back-to-shopping-wrap {
        padding: 0;
    }

    .checkout-logo {
        padding: 0;
    }

    .dash-tab-content {
        width: 100% !important;
    }

    .dash-tab-inner.active {
        padding: 0;
        border-bottom: 1px solid var(--border);
    }

    .tab-link {
        padding: 0 10px;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        height: 60px;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.938rem;
        color: var(--mainColour);
    }

    .tab-link:after {
        content: '';
        width: 10px;
        height: 10px;
        background: url(../images/chevron-down-black.svg) no-repeat center;
        background-size: contain;
        margin-left: auto;
    }

    .tab-link.active {
        border-bottom: 0;
    }

    .tab-link.active:after {
        transform: rotate(180deg);
    }

    .dash-order-row-wrap {
        border-radius: 0 !important;
    }

    .dash-form {
        width: 100%;
        border-width: 0;
        background: none;
        padding-top: 0;
    }

    .delivery-address {
        padding: 0 10px 10px;
    }

    /* ----- MODULES ----- */

    /*Product Module*/
    .product-module.carousel {
        padding-bottom: 80px;
    }

    .product-module.carousel .pm-gal-wrap {
        position: initial;
    }

    .pm-gal-wrap .pm-gal-prev {
        bottom: 10px;
        top: initial;
        left: calc(50% - 50px);
    }

    .pm-gal-wrap .pm-gal-next {
        bottom: 10px;
        top: initial;
        right: calc(50% - 50px);
    }

    /*Category Module*/
    .category-module.carousel {
        padding-bottom: 80px;
    }

    .category-module.carousel .cm-gal-wrap {
        position: initial;
    }

    .cm-gal-wrap .cm-gal-prev {
        bottom: 10px;
        top: initial;
        left: calc(50% - 50px);
    }

    .cm-gal-wrap .cm-gal-next {
        bottom: 10px;
        top: initial;
        right: calc(50% - 50px);
    }

    /* -- Fullscreen Gallery -- */
    div.fullscreen-fade .arrows {
        display: none !important;
    }

    /* ----- CHECKOUT ---- */
    .checkout-page {
        flex-wrap: wrap;
    }

    .checkout-top {
        width: 100%;
        padding: 20px 10px 20px;
        order: 1;
    }

    .checkout-left {
        width: 100%;
        padding: 20px 10px 20px;
        order: 3;
    }

    .checkout-right {
        width: 100%;
        padding: 20px 10px 20px;
        order: 2
    }

    .signup-page {
        width: 100vw !important;
        max-width: 100vw !important;
        position: relative !important;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding: 20px 10px;
        flex-direction: column;
    }

    .signup-tab-left {
        width: 100%;
    }

    .signup-bottom {
        width: 100vw !important;
        max-width: 100vw !important;
        position: relative !important;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 20px 10px;
    }

    .signup-header .container {
        width: 100%;
        padding: 0 10px;
    }

    .product-block .product-image a.add-to-favourites {
        display: flex;
    }
}

/* -------------------------------------------------------------------------------------------------------- TABLET & MOBILE END  */

/* --------------------------------------- */
/* --------------TABLET------------------- */
/* --------------------------------------- */
@media (min-width:768px) and (max-width:991px) {

    .desktop-large:not(.tablet),
    .desktop:not(.tablet),
    .mobile:not(.tablet),
    .tablet-hidden {
        display: none !important;
    }

    /*Header*/
    .top-wrap {
        font-size: 0.875rem;
    }

    .top-wrap>div>div {
        width: initial;
    }

    .top-wrap>div>div.top-right {
        flex-grow: 1;
    }

    /*Footer*/
    .footer-wrap>div {
        flex-wrap: wrap;
    }

    .footer-outro {
        flex: initial;
        width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-col:last-child .footer-col-title {
        align-items: center;
    }

    /* ----- Search Page ----- */

    .product-list {
        gap: 10px;
        row-gap: 20px;
    }

    .category-list {
        gap: 10px;
        row-gap: 20px;
    }

    .search-results .product-list .product-block,
    .product-module.list .pm-gal-inner .product-block {
        width: calc((100% - 20px) / 3) !important;
    }

    .product-module.list .pm-gal-inner {
        gap: 10px;
        row-gap: 20px;
    }

    /*Product Block*/
    .product-block .product-price .main-price {
        font-size: 0.875rem;
    }

    .product-quantity-wrap .quantity a {
        width: 35px;
    }

    .product-quantity-wrap .quantity input {
        width: 40px;
    }

    /*Category Block*/
    .category-block {
        width: calc((100% - 20px) / 3);
    }

    .category-block .cat-title {
        height: 70px;
        font-size: 1rem;
    }

    /*Details Page*/
    .add-to-cart-row:not(.hidden) {
        flex-wrap: wrap;
        gap: 10px;
    }

    .add-to-cart {
        width: 100%;
        flex: initial;
    }

    /*Cart Blade*/
    .upsell-products {
        max-height: 400px;
    }

    /* ---------------------- */
    /* ----- MEMBERSHIP ----- */
    /* ---------------------- */

    /* ----- Dashboard ------ */
    .product-title h1 {
        font-size: 1.75rem;
        line-height: 38px;
    }

    .footer-container .footer-col:last-child {
        width: 100%;
        flex: 0 0 auto;
        align-items: center;
        text-align: center;
        margin: 20px 0;
    }

    .footer-container .footer-col:last-child .footer-col-title {
        align-items: center;
    }

    .signup-header {
        height: 110px;
        font-size: 1.875rem;
    }

    .footer-container .footer-col:last-child {
        margin: 40px 0;
    }

    /*Text Module*/
    .text_module_before {
        left: calc(-768px / 2);
    }

    .header-wrap>div>a {
        margin-left: auto;
    }

    /*Layout Block*/
    .block-layout-module .layout-inner {
        width: 100%;
        padding: 15px 20px;
    }

    .block-layout-module .layout-block {
        align-items: flex-start;
    }
}

/* -------------------------------------------------------------------------------------------------------- TABLET END  */

/* --------------------------------------- */
/* --------------MOBILE------------------- */
/* --------------------------------------- */
@media (max-width:767px) {

    .tablet:not(.mobile),
    .desktop:not(.mobile),
    .desktop-large:not(.mobile),
    .mobile-hidden {
        display: none !important;
    }

    /* -------------------------------------------------------------------- */

    /* ----- TYPOGRAPHY ----- */
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.5rem;
    }

    h5 {
        font-size: 1.375rem;
    }

    h6 {
        font-size: 1.125rem;
    }

    p {
        font-size: 0.875rem;
        padding: 5px 0 15px 0;
    }

    img {
        max-width: 100%;
        vertical-align: middle;
    }

    .button-primary,
    .button-secondary,
    .button-tertiary {
        font-size: 0.875rem;
        padding: 0 15px;
    }

    /*Header*/
    .top-wrap>div>div {
        width: inherit;
    }

    .top-wrap>div>div.top-centre {
        justify-content: flex-end;
        font-size: 0.75rem;
    }

    .top-wrap>div>div.top-left {
        width: 180px;
    }

    .header-right {
        gap: 20px;
    }

    .shopping-cart {
        width: initial;
    }

    .small-cart {
        gap: 7px;
    }

    .small-cart span {
        position: absolute;
        height: 10px;
        width: 10px;
        border-radius: 100%;
        background: var(--tertiaryColour);
        right: 10px;
        top: -2px;
    }

    .my-account {
        font-weight: bold;
        color: var(--mainColour);
        font-weight: bold;
        font-size: 0.75rem;
    }

    .header-left {
        gap: 10px;
    }

    .header-wrap {
        margin-bottom: 60px;
    }

    .header-wrap>div {
        gap: 10px;
    }

    .header-right {
        gap: 10px;
    }

    .site-search {
        border-radius: 50px;
        width: calc(100% - 10px);
        left: 5px;
        border-width: 1px;
        top: calc(100% + 4px);
    }

    header .logo {
        width: 125px;
    }

    header .menu-wrap.active {
        width: 100%;
    }

    /*Footer*/
    .footer-wrap {
        padding: 30px 0;
    }

    .footer-wrap>div {
        flex-direction: column;
        max-width: 600px;
        gap: 0;
    }

    .footer-col {
        width: 100%;
    }

    .footer-col-title,
    .footer-menu {
        width: 100%;
    }

    .footer-intro {
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
    }

    .footer-outro {
        margin-top: 30px;
    }

    .footer-outro img {
        max-width: 180px;
    }

    .footer-contact {
        gap: 10px;
    }

    .footer-menu-container>span {
        border-top: 1px solid #4a9b76;
        border-bottom: 1px solid #4a9b76;
        line-height: 50px;
        position: relative;
        transition: ease-in-out all .3s;
        margin: 0;
    }

    .footer-col.footer-menu-container>span::after {
        content: "";
        height: 10px;
        width: 10px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
        position: absolute;
        right: 10px;
        top: calc(50% - 9px);
        background: #fff;
        transition: ease-in-out all .3s;
        border-radius: 0;
        background: none;
    }

    .footer-wrap>div>div:nth-child(3)>span {
        border-top: 0;
    }

    .footer-menu-container.active span {
        border-bottom-color: transparent;
    }

    .footer-menu-container.active>span::after {
        transform: rotate(225deg);
    }

    .footer-menu-wrap {
        display: none;
    }

    .footer-menu {
        gap: 15px;
        margin: 10px 0;
    }

    /*Byline*/
    .byline-wrap>div>a {
        font-size: 0.75rem;
    }

    /* ----- MODULES ----- */

    /* -- Full Screen Gallery -- */
    .frame.main {
        background: none;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .fsg,
    .fullscreen-fade {
        min-width: 100%;
        height: auto;
        max-width: 100vw !important;
    }

    div.fullscreen-fade div.slide {
        background-repeat: no-repeat;
        background-size: cover;
    }

    div.fullscreen-fade div.slide .banner {
        padding: 20px 10px;
        width: 100%;
        box-sizing: border-box;
    }

    div.fullscreen-wrap,
    div.fullscreen-wrap div {
        max-width: initial !important;
    }

    .label {
        float: none;
        width: 100%;
    }

    .value {
        float: none;
        width: 100%;
    }

    /* ----- MODULES ----- */
    .cm-title span,
    .pm-title span {
        font-size: 1.75rem;
        line-height: 38px;
        font-weight: 600;
    }

    .cm-subtitle span,
    .pm-subtitle span {
        font-size: 1rem;
        line-height: 26px;
        font-weight: 400;
    }

    /* ----- Search Page ----- */


    /*Fullscreen Gallery*/
    .full-width-fix .flex-caption.halign-center {
        left: calc(50% - 150px);
        right: initial;
        width: 300px;
        max-width: 100%;
    }

    .full-width-fix .flex-caption.halign-left {
        left: calc(50% - 150px);
        right: initial;
        width: 300px;
        max-width: 100%;
    }

    .full-width-fix .flex-caption.halign-right {
        left: calc(50% - 150px);
        right: initial;
        width: 300px;
        max-width: 100%;
    }

    .flex-control-paging {
        left: 0;
        width: 100%;
        padding: 0 10px;
    }

    .flex-caption>div.background {
        padding: 20px;
    }

    .flex-direction-nav li {
        width: 21px;
        height: 32px;
    }

    .flex-direction-nav li a:after {
        width: 8px;
        height: 14px;
        background-size: contain;
    }

    /*Contact Form*/
    .contact-form {
        padding: 20px 10px;
    }

    .contact-form .cf_header {
        font-size: 1.5rem;
    }

    .contact-form .cf-text {
        font-size: 0.875rem;
        margin-bottom: 10px;
    }

    .contact-form label {
        font-size: 0.875rem;
    }

    .contact-form .cf-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-form .cf-buttons a {
        margin-left: auto;
    }

    /*Text Module*/
    .text_module_before {
        left: calc(-320px / 2);
    }

    /*Layout Module*/
    .block-layout-module {
        gap: 0;
    }

    .block-layout-module .layout-block {
        flex-direction: column;
        padding: 0;
    }

    .block-layout-module :is(.layout-image, .layout-content) {
        width: 100%;
    }

    .block-layout-module .layout-image {
        justify-content: center !important;
    }

    .block-layout-module .layout-inner {
        width: 100%;
        padding: 25px 10px;
        gap: 20px;
    }

    .block-layout-module .layout-heading * {
        font-size: 1.75rem;
    }

    .block-layout-module .layout-text * {
        font-size: 0.875rem;
        padding: 0;
        margin: 0;
    }

    /*Search Page*/
    .search-header {
        width: 100vw !important;
        max-width: 100vw !important;
        position: relative !important;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 5px;
        height: auto;
        gap: 10px;
    }

    .search-order,
    .sort-search {
        width: 100%;
    }

    .search-filters {
        width: 100vw !important;
        max-width: 100vw !important;
        position: relative !important;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        flex-direction: column;
        align-items: flex-start;
        border-width: 1px 0;
    }

    .product-list {
        width: 100vw !important;
        max-width: 100vw !important;
        position: relative !important;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding: 0 5px;
        gap: 6px;
        row-gap: 15px;
    }

    .category-list {
        gap: 10px;
        row-gap: 15px;
    }

    .search-results .product-list .product-block,
    .product-module.list .pm-gal-inner .product-block {
        width: calc((100% - 6px) / 2) !important;
    }

    .product-module.list .pm-gal-inner {
        gap: 3px;
        row-gap: 20px;
    }

    .pm-title-wrap-container {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .pm-title-wrap-container>a {
        font-size: 0.75rem;
    }


    /*Pager*/
    .pager-link:not(.pager-prev-button):not(.pager-next-button):not(.pager-current-page) {
        display: none;
    }

    .pager-link {
        border: 0;
    }

    .pager-prev-button,
    .pager-next-button {
        width: 90px;
    }

    .pager-prev-button a,
    .pager-next-button a {
        font-size: 1rem;
    }

    /*Product Block*/
    .product-block .product-info {
        padding: 5px;
    }

    .product-block .product-in-cart {
        font-size: 0.875rem;
        padding: 5px 10px;
    }

    .product-block .product-image .product-no-stock {
        font-size: 0.875rem;
    }

    .product-block .product-title a {
        font-size: 0.875rem;
    }

    .product-block .product-price-quantity {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .product-quantity-wrap .quantity {
        width: 100%;
    }

    .product-quantity-wrap .quantity input {
        width: 100%;
        flex-grow: 1;
    }

    .product-quantity-wrap .quantity a {
        width: 40px;
        flex-shrink: 0;
    }

    .product-block .product-buttons a.pb-add-to-cart-options {
        padding: 0;
        background: none;
        color: var(--mainColour);
        text-decoration: underline;
        font-size: 0.875rem;
        font-weight: 400;
        border: none;
        justify-content: flex-start;
    }

    /*Category Block*/
    .category-block {
        width: calc((100% - 10px) / 2);
    }

    .category-block .cat-image {
        aspect-ratio: 3/2;
    }

    .category-block .cat-title {
        height: 50px;
        padding: 0 5px;
        font-size: 0.875rem;
    }

    /*Details Page*/
    .details-header {
        flex-wrap: wrap;
    }

    .details-header:not(:empty) {
        padding: 10px 0;
    }

    .details-page-container {
        flex-direction: column;
    }

    .details-page {
        padding: 0 5px;
    }

    .details-page-left,
    .details-page-right,
    .product-description-wrap {
        width: 100vw !important;
        max-width: 100vw !important;
        position: relative !important;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding: 0 5px;
    }

    .product-title h1 {
        font-size: 1.75rem;
        line-height: 36px;
    }

    .product-sale-title {
        font-size: 1.5rem;
    }

    .product-price .was-price {
        font-size: 0.75rem;
    }

    .product-price .main-price {
        font-size: 1.5rem;
    }

    .product-meta a {
        font-size: 0.75rem;
    }

    .add-to-cart-row:not(.hidden) {
        flex-direction: column;
        align-items: flex-start;
    }

    .add-to-cart {
        flex: 0 0 auto;
        width: 100%;
    }

    .ag-gal-nav {
        display: none;
    }

    /*Cart Blade*/
    .cart-blade {
        width: 100%;
    }

    .cart-blade-header {
        padding: 10px;
    }

    .cart-blade-products {
        max-height: 300px;
    }

    .cart-blade-price {
        padding: 10px;
    }

    .cart-blade-actions,
    .cart-blade-payment {
        padding: 0 10px 10px 10px;
    }

    .cart-blade-payment img {
        max-width: 50px;
    }

    .cart-blade-price span {
        font-size: 1.125rem;
    }

    .cart-blade-product img {
        height: 45px;
        width: 45px;
    }

    .cart-blade-basket .cart-product {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cart-blade-product .cart-blade-info {
        flex-wrap: wrap;
    }

    /*Upsells*/
    .upsell-products {
        max-height: 200px;
    }

    .upsell-products .product-block-upsell {
        align-items: flex-start;
    }

    .upsell-products .product-buttons {
        height: 100%;
    }

    .product-block-upsell .product-image {
        height: 50px;
        width: 50px;
    }

    .product-block-upsell .product-info {
        gap: 10px;
        align-items: flex-end;
    }

    .product-block-upsell .product-title {
        font-size: 0.875rem;
    }

    .product-block-upsell .product-price .was-price {
        font-size: 0.75rem;
    }

    .product-block-upsell .product-price .main-price {
        font-size: 0.875rem;
    }

    .product-block-upsell .product-buttons a {
        height: 40px;
        padding: 0 10px;
    }

    /*Group Option Pop up*/
    .group-options {
        width: 100%;
    }

    .group-options .group-quick-price {
        flex-wrap: wrap;
    }

    .group-quick-info .add-to-cart-row {
        flex-direction: row;
    }

    .group-quick-info .add-to-cart:not(.hidden) {
        flex: initial;
    }

    /*Dashboard*/
    .dash-order-row>div {
        width: 30%;
    }

    .dash-order-row .view {
        width: 20px;
    }

    .dashboard-header .container {
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 10px;
        width: 100vw !important;
        max-width: 100vw !important;
        position: relative !important;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .dashboard-header .container>span:first-child {
        width: 100%;
    }

    .dashboard-header .container>span:nth-child(2) {
        margin-left: 0;
    }

    .cart-product {
        flex-direction: column;
        gap: 5px;
    }

    .cart-product-left {
        width: 100%;
        height: auto;
    }

    .cart-product-quantity-wrap {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .free-delivery-wrap {
        line-height: 22px;
    }

    .checkout-card-inner-title {
        margin-bottom: 5px;
    }

    .checkout-card-input.checkbox span {
        font-size: 0.75rem;
    }

    .payment-header>div>div {
        width: 100% !important;
    }

    .payment-content {
        flex-direction: column;
        gap: 10px;
    }

    .payment-content>div {
        width: 100% !important;
    }

    .signup-tab-header {
        padding: 0 10px;
    }

    .signup-page {
        padding: 20px 5px;
    }

    .signup-tab {
        padding: 10px;
    }

    .signup-tab-text {
        font-size: 0.875rem;
    }

    .signup-header {
        height: 90px;
        font-size: 1.25rem;
    }

    .signup-bottom {
        padding: 0 5px;
    }

    .byline-menu>li {
        font-size: 0.875rem;
    }

    .byline-container>a {
        font-size: 0.75rem;
    }

    .member-address {
        width: 100%;
    }

    .pop-buttons {
        flex-direction: column-reverse;
        gap: 20px;
        align-items: stretch;
    }

    .address-form {
        width: auto;
    }
}

/* ------- MOBILE END ------- */
