/* ------------------------------------  */


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


/* ------------------------------------  */

:root {
    --mainColour: #464545;
    --secondaryColour: #881053;
    --tertiaryColour: #21A202;
    --background: #F8F8F8;
    --border: #E5E1E1;
    --topbarColour: #000000;
    --footerColour: #000000;
    --bylineColour: #222223;
    --productAspect: 1/1;
    --categoryAspect: 1/1;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    background: #fff;
    overflow: hidden;
}

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

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

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


/* APPRISE EDITS */

div.apprise {
    font-family: 'Open Sans', sans-serif;
    border-color: #D8E1EB;
}

div.apprise .apprise-buttons button {
    background: #4476BA;
    border: 1px solid #4476BA;
    color: #fff;
}

div.apprise .apprise-buttons button:hover {
    background: #fff;
    color: #4476BA;
}

div.apprise .apprise-buttons button:active {
    background: #fff;
    color: #4476BA;
}


/* 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: 'Open Sans';
}

textarea {
    font-family: 'Open Sans';
}

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;
    font-family: inherit;
}

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: 14px;
    color: var(--mainColour);
    transition: 0.2s ease-in-out all;
    font-family: inherit;
}

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: 16px;
    color: #3B3B3D;
    padding: 5px 0;
}


/* ----- TYPOGRAPHY ----- */

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-family: 'Roboto', sans-serif;
    color: var(--mainColour);
    margin: 0;
    padding: 0 0 10px 0;
    font-weight: 300;
}

h1 {
    font-size: 36px;
    line-height: 46px;
}

h2 {
    font-size: 32px;
    line-height: 42px;
}

h3 {
    font-size: 30px;
    line-height: 40px;
}

h4 {
    font-size: 26px;
    line-height: 36px;
}

h5 {
    font-size: 24px;
    line-height: 34px;
}

h6 {
    font-size: 20px;
    line-height: 30px;
}

p {
    padding: 5px 0 20px 0;
    font-size: 16px;
    color: var(--mainColour);
    line-height: 26px;
}

a {
    text-decoration: none;
    color: #33ABFB;
}

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

ul {
    list-style-position: outside;
    padding: 5px 0 20px 20px;
    font-size: 14px;
    color: var(--mainColour);
    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: 14px;
    color: var(--mainColour);
    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 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 20px;
    margin: 0;
    line-height: 1;
    height: 50px;
    background: var(--secondaryColour);
    border: 1px solid var(--secondaryColour);
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: 0.2s ease-in all;
    font-size: 17px;
    font-weight: 400;
    border-radius: 20px;
    font-weight: bold;
}

.button-primary:hover {
    background: #9B135F;
}

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

.button-secondary:hover {
    background: #9B135F;
    color: #fff;
}

.button-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 40px;
    margin: 0;
    line-height: 1;
    height: 50px;
    color: #fff;
    border: 1px solid var(--tertiaryColour);
    text-align: center;
    background: var(--tertiaryColour);
    text-decoration: none;
    transition: 0.2s ease-in all;
    font-size: 17px;
    font-weight: 600;
    border-radius: 20px;
}

.button-tertiary:hover {
    color: var(--tertiaryColour);
    background: #fff;
}

.button-black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 40px;
    margin: 0;
    line-height: 1;
    height: 50px;
    color: #fff;
    border: 1px solid #000;
    text-align: center;
    background: #000;
    text-decoration: none;
    transition: 0.2s ease-in all;
    font-size: 17px;
    font-weight: 600;
    border-radius: 20px;
}

.button-black:hover {
    background: #333;
}


/* Animations */

@keyframes wobble {
    0% {
        transform: rotate(0deg);
    }
    33% {
        transform: rotate(-8deg);
    }
    66% {
        transform: rotate(8deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

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

.empty-loader: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);
    }
}


/* ------------------------------------  */


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


/* ------------------------------------  */


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

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

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

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


/*-- HEADER WRAP --*/

.header-wrap {
    background: #fff;
    height: 140px;
    transition: 0.2s all ease-in-out;
}

.sticky .header-wrap {
    height: 80px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.header-wrap>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

header .logo {
    padding: 10px 0;
    display: flex;
    width: 400px;
    flex: 0 0 auto;
    max-height: 100%;
}

header .logo a {
    display: flex;
    align-items: center;
    max-height: 100%;
}

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

.header-mid {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-search {
    display: flex;
    height: 50px;
    background: #fff;
    border: 1px solid #E5E1E1;
    flex: 1;
}

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

.site-search input::placeholder {
    font-size: 14px;
    color: inherit;
}

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

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

header .favourites {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 70px;
    height: 100%;
    flex: 0 0 auto;
    gap: 5px;
    color: #000000;
    visibility: hidden;
}

header .favourites:not(.hidden) {
    visibility: visible;
}

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

.account-wrap {
    padding: 0 30px;
    flex: 0 0 auto;
}

.my-account {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30px;
    font-size: 12px;
    color: #000000;
    gap: 5px;
}

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

.shopping-cart {
    width: 30px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.small-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
    color: #000;
    font-size: 12px;
    gap: 5px;
}

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

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

.small-cart>span:after {
    content: '';
    width: 7px;
    height: 7px;
    background: url(../images/chevron-right-black.svg) no-repeat center;
    background-size: contain;
}

.small-cart>div {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tertiaryColour);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: -2px;
    left: 16px;
}

.small-cart>div span {
    display: none;
    font-size: 0px;
    text-align: center;
    color: #fff;
}


/*-- MENU WRAP --*/

.menu-wrap ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    align-items: center;
}

.menu-wrap ul li {
    padding: 0;
    list-style: none;
    margin: 0;
}

.main-menu-wrap{flex-grow: 1;}
.main-menu{width: 100%; justify-content: space-between;}

/*Shop Menu*/

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

.menu-wrap .shop-menu>li:first-child>a:before {
    content: "";
    height: 100%;
    width: 1000px;
    z-index: -1;
    background: transparent linear-gradient(180deg, var(--secondaryColour) 0%, #550934 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    right: 0;
    top: 0;
}

.menu-wrap .shop-menu>li:first-child>a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
}

.menu-wrap .shop-menu>li:first-child>a::after {
    content: "";
    height: 5px;
    width: 5px;
    transform: rotate(45deg);
    border: solid #fff;
    border-width: 0 1px 1px 0;
}

.menu-wrap .shop-menu>li>a {
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    height: 100%;
    padding-right: 80px;
    display: flex;
    align-items: center;
    transition: ease-in-out all .3s;
    font-size: 16px;
}

.menu-wrap .shop-menu .menu-main-cat {
    width: 280px;
    border-top: 6px solid var(--secondaryColour);
    box-sizing: border-box;
    background: #F9F9F9;
    /*display: flex;
    flex-direction: column;
    align-items: flex-start;*/
    position: relative;
    overflow-y: scroll; 
    overflow-x: hidden;
    height: calc(100vh - 200px);
}


.menu-wrap .shop-menu .menu-main-cat:before {
    content: '';
    z-index: -1;
    border-top: 6px solid var(--secondaryColour);
    width: 1000px;
    position: absolute;
    background: #F9F9F9;
    top: -6px;
    bottom: 0;
    right: 0px;
    pointer-events: none;
}

.menu-wrap .shop-menu .menu-children-cat {
    width: calc(100% - 200px);
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    padding: 12px 20px;
    box-sizing: border-box;
    height: calc(100vh - 100px);
    overflow-y: scroll;
    gap: 10px;
}

.menu-main-cat>li {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    height: 70px;
    align-items: center;
}

.menu-main-cat ul {
    display: none;
}

.menu-main-cat>li>a {
    height: 100%;
    font-size: 16px;
    color: #000000;
    padding: 0 10px;
    text-transform: uppercase;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    transition: ease-in-out all .3s;
    border: 1px solid #F1F1F1;
    border-color: transparent transparent #f1f1f1;
    flex: 0 0 auto;
}

.menu-main-cat>li.has-sub-items>a::after {
    content: "";
    height: 5px;
    width: 5px;
    border: solid #3C1B2D;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    transition: ease-in-out all .3s;
}

.menu-main-cat>li>a.active,
.menu-main-cat>li>a:hover {
    border-color: #f1f1f1;
    background: #fff;
    width: calc(100% + 5px);
}

.menu-children-cat>li {
    width: 100%;
    display: none;
}

.menu-children-cat>li>ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
}

.menu-children-cat>li>ul>li {
    width: calc(25% - 8px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-children-cat>li>ul>li>a {
    color: #515151;
    font-weight: bold;
    font-size: 15px;
}

.menu-children-cat>li>ul>li>ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

.menu-children-cat>li>ul>li>ul>li>a {
    color: #515151;
    font-size: 15px;
    line-height: 18px;
    text-transform: capitalize;
}

.menu-children-cat>li>ul>li>ul>li>a.viewall {
    color: #D1B470;
    display: flex;
    gap: 5px;
    align-items: center;
}

.menu-children-cat>li>ul>li>ul>li>a.viewall::after {
    content: "";
    height: 5px;
    width: 5px;
    border: solid #D1B470;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
}

.menu-children-cat li ul li a {
    transition: ease-in-out all .3s;
}

.menu-children-cat li ul li a:hover {
    color: #881053;
    text-decoration: underline;
}

.menu-wrap .shop-menu>li>ul {
    visibility: hidden;
    opacity: 0;
    width: 100vw;
    box-shadow: 0px 3px 6px #00000029;
    transition: ease-in-out all .3s;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
}

.menu-wrap .shop-menu>li>ul>div.container_16 {
    display: flex;
    align-items: stretch;
    z-index: 10;
}

.menu-wrap .shop-menu>li.has-sub-items>ul.active {
    visibility: visible;
    opacity: 1;
    z-index: 1000;
}

.menu-wrap {
    height: 60px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #E5E1E1;
    border-top: 1px solid #E5E1E1;
    z-index: 1000;
    background: #F9F9F9;
}

.menu-wrap>div {
    padding: 0 10px;
    display: flex;
    height: 100%;
    align-items: center;
    gap: 40px;
    z-index: 10;
}

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

.hide-menu-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}


/*Effect on sub menu*/

.menu-wrap :is(ul.main-menu, ul.shop-menu) {
    height: 100%;
}


/* Main Menu */

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

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

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

.main-menu>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--mainColour);
    font-weight: 600;
    text-align: center;
    font-size: 16px;
    width: 100%;
    text-decoration: none;
}

.main-menu>li:after {
    content: '';
    width: 30px;
    height: 3px;
}

.main-menu>li:first-child {
    padding-left: 0;
}

.main-menu>li:last-child {
    padding-right: 0;
}

.main-menu>li>ul {
    width: 300px;
    padding: 0 10px;
    box-sizing: border-box;
    background: var(--background);
    border: 1px solid var(--border);
    border-width: 0 1px 1px;
    position: absolute;
    left: 0;
    z-index: -1;
    top: 100%;
    opacity: 0;
    transition: 0.2s ease-in-out all;
}

.main-menu>li ul.active {
    z-index: 10;
    opacity: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}

.main-menu>li:last-child>ul {
    left: initial;
    right: 0;
}

.main-menu>li>ul>li {
    padding: 0;
    position: relative;
    line-height: 30px;
    width: 100%;
}

.main-menu>li>ul>li>a {
    display: flex;
    align-items: center;
    padding: 5px 0;
    color: var(--mainColour);
    text-decoration: none;
}

.main-menu>li>ul li a:hover {
    color: #881053;
    text-decoration: underline;
}

.main-menu>li>ul>li>ul {
    width: 300px;
    padding: 10px;
    box-sizing: border-box;
    position: absolute;
    left: 100%;
    z-index: -1;
    top: 0;
    opacity: 0;
    transition: 0.2s ease-in-out all;
    background: var(--background);
    border: 1px solid var(--border);
}

.main-menu>li>ul>li>ul.active {
    z-index: 10;
    opacity: 1;
}

.main-menu>li:last-child>ul>li>ul {
    left: initial;
    right: 100%;
}

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

.main-menu>li>ul>li>ul>li>a {
    display: flex;
    align-items: center;
    padding: 5px 0;
    color: #000;
    text-decoration: none;
}

body:not([data-page=checkout]) .content-wrap {
    transition: all 0.2s ease-in-out;
    padding-top: 200px;
}

.sticky:not([data-page=checkout]) .content-wrap {
    padding-top: 140px;
}


/*-- FOOTER WRAP --*/

.footer-wrap {
    background: #0C0007;
}

.footer-container {
    display: flex;
    align-items: flex-start;
    padding: 30px 0;
}

.footer-col {
    flex: 1;
}

.footer-col:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-col:last-child img:first-child {
    height: 90px;
}

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

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

.footer-contact {
    font-size: 16px;
    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;
}

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

.footer-contact a.call:before {
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/call.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: 15px;
    padding: 10px 0;
}

.footer-social>a {
    display: block;
    width: 26px;
    height: 26px;
}

.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: 20px;
}

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

.footer-menu>li>a {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    text-decoration: none;
}


/*-- BYLINE --*/

.byline-wrap {
    background: transparent linear-gradient(0deg, #3C1B2D 0%, #0C0007 100%) 0% 0% no-repeat padding-box;
}

.byline-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 10px;
}

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

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

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

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

.byline-container>a {
    color: #b0b0b0;
    text-decoration: none;
}


/* ------------------------------------  */


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


/* ------------------------------------  */

.youtube-iframe {
    width: 100%;
    aspect-ratio: 16/9;
}


/* ----- TEXT MODULE ----- */

.text-wrap {}

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

.text-wrap:not(.bg-on) {
    background: none !important;
}

.text-container {
    padding: 0 10px;
    box-sizing: border-box;
}


/* -- 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: 24px;
    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;
}


/* ----- CONTACT FORM ----- */

form.contact-form {
    border: 1px solid var(--border);
    width: 100%;
    margin: 20px auto 20px auto;
    padding: 5px 10px 20px 10px;
    background-color: #fff;
    box-sizing: border-box;
}

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

.cf-title span {
    font-size: 20px;
    line-height: 26px;
    color: var(--mainColour);
    font-weight: 300;
    padding-bottom: 10px;
    position: relative;
}

.cf-line {
    clear: both;
    line-height: 30px;
    color: #393838;
    font-size: 14px;
    line-height: 26px;
}

.cf-line p {
    color: var(--mainColour);
    font-size: 16px;
    text-transform: uppercase;
    line-height: 20px;
    margin: 0 0 5px;
    padding: 10px 5px 10px 0;
}

.cf-label {
    float: left;
    width: 100%;
    font-size: 15px;
    line-height: 36px;
    color: var(--mainColour);
}

.cf-label .cf-field {
    width: 100%;
    box-sizing: border-box;
}

:is(.cf-checkbox, .cf-radio) .cf-label {
    float: left;
    width: auto;
    font-size: 14px;
    padding: 5px 0;
    line-height: 24px;
    color: #696969;
    font-weight: normal;
}

:is(.cf-checkbox, .cf-radio) .cf-field {
    float: left;
    width: auto;
    padding: 5px;
    line-height: 24px;
}

:is(.cf-checkbox, .cf-radio) input {
    width: 15px;
    height: 15px;
    accent-color: #4476BA;
    font-family: inherit;
}

.cf-button-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 5px 0;
}

.cf-submit input[type=submit] {
    display: block;
    width: 225px;
    height: 45px;
    line-height: 45px;
    text-transform: uppercase;
    padding: 0;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
}

p.denotes {
    font-size: 11px;
    color: #696969;
    padding: 0;
    font-weight: normal;
}


/* ----- GALLERY ----- */

div.fullscreen-fade {
    opacity: 0;
    display: flex;
    justify-content: center;
    transition: opacity 0.3s ease-in-out 0s;
    position: relative;
}

div.fullscreen-fade::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}

div.fullscreen-fade.full-width-fix {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

div.fullscreen-fade:not(.full-width-fix) div.slide {
    background-size: contain;
}

div.fullscreen-fade div.slide {
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}

div.fullscreen-fade.parallax-on div.slide {
    background-attachment: fixed;
}

div.fullscreen-fade div.slide .banner {
    margin: 0 auto;
    width: 1200px;
}

div.fullscreen-fade div.slide .frame {
    height: 100%;
    align-self: center;
    display: inline-block;
    padding: 16px 20px;
}

div.fullscreen-fade div.slide .frame.frame-on {
    background: #00000080;
}

div.fullscreen-fade div.slide .frame.frame-on * {
    color: #fff;
}

div.fullscreen-fade div.slide .frame h1,
div.fullscreen-fade div.slide .frame h2,
div.fullscreen-fade div.slide .frame h3,
div.fullscreen-fade div.slide .frame h4 {
    position: relative;
}

div.fullscreen-fade div.slide .frame p {
    padding: 15px 0;
    margin: 0;
    line-height: initial;
}


/* pagination */


/* div.fullscreenfade .pagination {display: none !important;} */

div.fullscreen-fade .pagination {
    position: absolute;
    bottom: 15px;
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 1;
}

div.fullscreen-fade .pagination a {
    height: 16px;
    width: 16px;
    box-sizing: border-box;
    transition: ease-in-out all .5s;
    background: #fff;
    border: 1px solid var(--mainColour);
    border-radius: 50%;
}

div.fullscreen-fade .pagination a.selected {
    background: var(--mainColour);
    border-color: #fff;
}


/* navigation */


/* div.fullscreenfade .arrows { display:none !important;} */

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

div.fullscreen-fade .arrows:after {
    content: "";
    width: 10px;
    height: 10px;
    border: solid var(--mainColour);
    transform: rotate(45deg);
}

div.fullscreen-fade .arrows.prev {
    left: 20px;
}

div.fullscreen-fade .arrows.next {
    right: 20px;
}

div.fullscreen-fade .arrows.prev:after {
    border-width: 0 0 3px 3px;
    margin-left: 5px;
}

div.fullscreen-fade .arrows.next:after {
    border-width: 3px 3px 0 0;
    margin-right: 5px;
}

.shop-button {
    display: block;
    padding: 15px 40px;
    background: #4476BA;
    border: 1px solid #4476BA;
    box-sizing: border-box;
    font-size: 16px;
    color: #fff;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: 0.2s ease-in all;
}

.shop-button:hover {
    background: #fff;
    color: #4476BA;
}

.shop-button.rounded {
    border-radius: 20px;
}


/* ----------------------- */


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


/* ----------------------- */

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

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

.search-page {
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* search header */

.search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 10px;
    background: var(--background);
    width: 100%;
}

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

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

.search-results-found {
    font-size: 16px;
    color: var(--mainColour);
}

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

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

.sort-search {
    width: 180px;
}


/* Search Results */

.search-results-wrap {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.search-categories {
    width: calc((100% - 60px) / 4);
    flex: 0 0 auto;
    background: #F9F9F9;
    border: 1px solid #F1F1F1;
    margin: 20px 0;
}

.search-categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: "Roboto", 'sans-serif';
    font-weight: 300;
}

.search-categories ul li:not(.active) ul {
    display: none;
}

.search-categories ul li {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #000;
}

.search-categories ul li:hover,
.search-categories ul li.active {
    color: var(--secondaryColour);
}

.search-categories>ul>li:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.search-categories>ul>li>a {
    height: 66px;
    background: #fff;
    font-size: 18px;
}

.search-categories>ul>li>ul>li>a {
    height: 40px;
    font-size: 16px;
}

.search-categories>ul>li>ul>li>ul>li>a {
    height: 40px;
    font-size: 15px;
}

.search-categories ul li li {
    padding: 0 0 0 10px;
}

.search-categories ul li a {
    color: inherit;
    display: flex;
    width: 100%;
    padding: 0 10px;
    align-items: center;
    justify-content: space-between;
}

.search-categories ul li.has-sub-items>a:after {
    content: '';
    background: url(../images/chevron-down-black.svg) no-repeat center;
    background-size: contain;
    width: 10px;
    height: 10px;
}

.search-categories ul li.has-sub-items.active>a:after {
    background: url(../images/chevron-down-pink.svg) no-repeat center;
}

.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;
}

.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: var(--mainColour);
    text-decoration: none;
    padding: 0 5px;
    display: flex;
    align-items: center;
    height: 25px;
    font-size: 15px;
    gap: 5px;
    text-transform: uppercase;
}

.filter-list a.active {
    border-radius: 3px;
    border: 1px solid #F1F1F1;
    background: #fff;
}

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

.apply-filters {
    width: 100%;
}

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

.search-results {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    flex: 1;
    width: 0;
}

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

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

.active-filters a {
    color: var(--mainColour);
    text-decoration: none;
    padding: 0 10px;
    display: flex;
    align-items: center;
    height: 44px;
    font-size: 15px;
    gap: 5px;
    text-transform: uppercase;
    border: 1px solid var(--border);
}

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

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

.backToTop {
    margin: 30px auto;
}

.cat-header,
.cat-footer {
    width: 100%;
}


/* -- Product Block -- */

.product-block {
    width: calc((100% - 40px) / 3);
    background: #fff;
    border: 1px solid #EFEFEF;
    box-sizing: border-box;
    border-radius: 5px;
    height: initial;
}

.favourites-page .product-block {
    width: calc((100% - 60px) / 4);
}

.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-image .product-sale-sticker {
    background: #D20730;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 44px;
    padding: 0 10px;
    border-radius: 5px;
}

.quantity-in-cart {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--tertiaryColour);
    display: none;
    align-items: center;
    height: 42px;
    gap: 5px;
    padding: 0 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 16p;
    font-weight: 600;
    box-shadow: 0px 3px 6px #00000029;
}

.quantity-in-cart.active {
    display: flex;
}

.quantity-in-cart:before {
    width: 15px;
    height: 15px;
    content: '';
    background: url(../images/cart-white.svg) no-repeat left center;
    background-size: contain;
}

.product-block .product-image .product-no-stock {
    background: #fff;
    border: 1px solid #000;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 40px;
    text-align: center;
}

.product-block .product-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
    text-decoration: 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: 20px;
    height: 20px;
    background: url(../images/heart-white.svg) no-repeat center;
    background-size: contain;
    font-size: 0;
    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: 5px;
}

.product-block .product-title {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 66px;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    overflow: hidden;
    text-align: center;
}

.product-block .product-sku {
    display: flex;
    align-items: flex-start;
    color: #464545;
    justify-content: center;
    height: 20px;
    font-size: 15px;
    font-weight: 400;
    overflow: hidden;
    text-align: center;
}

.product-block .product-label-wrap {
    justify-content: center;
}

.product-block .product-title a {
    color: #464545;
    text-decoration: none;
}

.product-block .product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    font-weight: 600;
    color: #464545;
    height: 40px;
}

.product-block .product-price .main-price {
    font-size: 18px;
    line-height: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-block .product-price .main-price:before {
    content: "Cost:";
    font-size: 12px;
    font-weight: 400;
}

.product-block .product-price .was-price {
    font-size: 16px;
    font-weight: 400;
}

.product-block .product-price .was-price:before {
    content: "RRP:";
    font-size: 12px;
    font-weight: 400;
}

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

.product-block .product-buttons a {
    width: 80%;
    height: 60px;
    padding: 0 10px;
    border-radius: 5px;
}

.product-buttons.no-stock {
    flex-direction: column;
}

.product-buttons .out-of-stock {
    line-height: 24px;
    font-weight: bold;
}

.product-buttons a.view-similar {
    height: 44px;
}

.product-block .product-image .product-previously-purchased {
    color: #881053;
    font-size: 10px;
    font-weight: 600;
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 40px;
    padding: 2px;
    border-radius: 5px;
    display: flex;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 1px solid #F1F1F1;
}


/* -- Category Block -- */

.category-block {
    width: calc((100% - 60px) / 4);
    cursor: pointer;
    box-sizing: border-box;
    background: #fff;
    color: #fff;
}

.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% !important;
    width: auto !important;
    max-width: none !important;
}

.category-block .cat-title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    box-sizing: border-box;
    transition: 0.2s ease-in all;
    font-size: 16px;
    font-weight: 600;
    color: var(--mainColour);
    text-align: center;
    text-decoration: none;
    transition: 0.2s ease-in all;
    border: solid #EBEBEB;
    border-width: 0 1px 1px 1px;
    border-radius: 0 0 5px 5px;
    background: #FEFEFE;
}

.category-block:hover .cat-title {
    background: var(--secondaryColour);
    color: #fff;
}


/* -- PAGER -- */

.search-pager {
    display: flex;
    align-items: center;
    width: auto;
    height: 60px;
    justify-content: center;
    gap: 10px;
    position: relative;
    background: var(--background);
}

.pager-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

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

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

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

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

.pager-next-button {
    margin-right: initial;
    margin-left: auto;
}

.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;
    box-sizing: border-box;
}

.product-module.bg-on {
    background: var(--background);
}

.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;
}

.pm-container {
    padding: 0;
    box-sizing: border-box;
}

.product-module.full-width-fix .pm-container {
    padding: 0 10px;
}

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


/* titles */

.pm-title {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pm-title span {
    font-size: 32px;
    line-height: 40px;
    color: var(--mainColour);
    font-weight: 300;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

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

.pm-subtitle span {
    font-size: 18px;
    line-height: 26px;
    color: var(--mainColour);
    text-align: center;
}


/* gallery */

.pm-gal-wrap {
    position: relative;
    padding: 20px 0;
}

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


/* List View */

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


/* Carousel View */


/* navigation */

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

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

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

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

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

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

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


/* pagination */

.pm-gal-wrap.carousel .pm-gal-pagination {
    overflow: hidden;
    margin: 15px 0;
    position: relative;
}

.pm-gal-wrap.bullets .pm-gal-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 30px 0;
    position: relative;
    gap: 20px;
}

.pm-gal-wrap.carousel .swiper-pagination-bullet {
    height: 20px;
    width: 20px;
    background: #fff;
    border: 1px solid var(--mainColour);
    border-radius: 100%;
    font-size: 0;
    opacity: 1;
    transition: ease-in-out all .3s;
    cursor: pointer;
    margin: 0;
}

.pm-gal-wrap.carousel .swiper-pagination-bullet-active {
    background: var(--mainColour);
}

.pm-gal-wrap.carousel .swiper-pagination-bullet-active-prev,
.pm-gal-wrap.carousel .swiper-pagination-bullet-active-next {
    opacity: 0.6
}


/* scrollbar */

.pm-gal-scrollbar {
    width: 100%;
    height: 8px;
    background: #4475ba2c;
    margin: 10px 0;
}

.pm-gal-scrollbar-drag {
    width: 100px;
    height: 100%;
    background: #4476BA;
    border-radius: 5px;
    cursor: grab;
}

.pm-gal-wrap.list .pm-gal-nav {
    display: none;
}

.pm-gal-wrap.list .pm-gal-scrollbar {
    display: none;
}

.pm-gal-wrap.list .pm-gal-pagination {
    display: none;
}

.pm-gal-wrap.scrollbar .pm-gal-pagination {
    display: none;
}

.pm-gal-wrap:not(.scrollbar) .pm-gal-scrollbar {
    display: none;
}


/* -- Category Module -- */

.category-module {
    padding: 20px 0;
    box-sizing: border-box;
}

.category-module.bg-on {
    background: var(--background);
}

.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;
}

.cm-container {
    padding: 0;
    box-sizing: border-box;
}

.category-module.full-width-fix .cm-container {
    padding: 0 10px;
}

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


/* titles */

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

.cm-title span {
    font-size: 32px;
    line-height: 40px;
    color: var(--mainColour);
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

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

.cm-subtitle span {
    font-size: 18px;
    line-height: 26px;
    color: var(--mainColour);
    text-align: center;
}


/* gallery */

.cm-gal-wrap {
    position: relative;
    padding: 20px 0;
}

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


/* List View */

.cm-gal.list .cm-gal-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
}


/* Carousel View */


/* navigation */

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

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

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

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

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

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

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


/* pagination */

.cm-gal-wrap.carousel .cm-gal-pagination {
    overflow: hidden;
    margin: 15px 0;
    position: relative;
}

.cm-gal-wrap.bullets .cm-gal-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 30px 0;
    position: relative;
    gap: 20px;
}

.cm-gal-wrap.carousel .swiper-pagination-bullet {
    height: 20px;
    width: 20px;
    margin: 0;
    background: #fff;
    border: 1px solid var(--mainColour);
    border-radius: 100%;
    font-size: 0;
    opacity: 1;
    transition: ease-in-out all .3s;
    cursor: pointer;
}

.cm-gal-wrap.carousel .swiper-pagination-bullet-active {
    background: var(--mainColour);
}

.cm-gal-wrap.carousel .swiper-pagination-bullet-active-prev,
.cm-gal-wrap.carousel .swiper-pagination-bullet-active-next {
    opacity: 0.6
}


/* scrollbar */

.cm-gal-scrollbar {
    width: 100%;
    height: 8px;
    background: #4475ba2c;
    margin: 10px 0;
}

.cm-gal-scrollbar-drag {
    width: 100px;
    height: 100%;
    background: #4476BA;
    border-radius: 5px;
    cursor: grab;
}

.cm-gal-wrap.list .cm-gal-nav {
    display: none;
}

.cm-gal-wrap.list .cm-gal-scrollbar {
    display: none;
}

.cm-gal-wrap.list .cm-gal-pagination {
    display: none;
}

.cm-gal-wrap.scrollbar .cm-gal-pagination {
    display: none;
}

.cm-gal-wrap:not(.scrollbar) .cm-gal-scrollbar {
    display: none;
}


/* ------------------------ */


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


/* ------------------------ */

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

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

.details-header>a {
    color: var(--mainColour) !important;
    text-decoration: underline !important;
    text-transform: uppercase;
}

.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 {
    height: 80px;
}

.small-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

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


/* Product Images with carousel */

.product-image-gal-wrap {
    position: relative;
    min-height: 200px;
}

.product-image-gal-wrap .product-sale-sticker {
    background: #D20730;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 44px;
    padding: 0 10px;
    z-index: 100;
    border-radius: 5px;
}

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

.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;
}


/* product thumbnails */


/* 
.small-images-wrap {display:flex; align-items: center; justify-content: center;}
.small-images-gal-wrap {position:relative;}
.small-images-gal {width:100%;}
.small-image {height:80px; margin: 0 5px; position:relative; padding: 10px 0;}
.small-image.slick-slide {height:80px;}
.small-image a {display:flex; align-items: center; justify-content: center; width:100%; height:100%; cursor:pointer;}
.small-image a img {max-height:100%; max-width: 100%; height: auto; width:auto;} */


/* product thumbnails gallery nav */


/* 
.psi-gal-nav {display:flex; align-items: center; justify-content: center; width:20px; height:30px; background: #ffffffb3; position:absolute; top:calc(50% - 15px); z-index:1;}
.psi-gal-nav.swiper-button-disabled {display: none;}
.psi-gal-nav::after {content:""; display: block; width:8px; height:8px; border: solid #3A3A39; transform:rotate(45deg);}
.psi-gal-prev {left:0;}
.psi-gal-prev::after {border-width:0 0 1px 1px;}
.psi-gal-next {right:0;}
.psi-gal-next::after {border-width:1px 1px 0 0;}  
*/

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


/* product details */

.product-sku {
    font-size: 15px;
    line-height: 20px;
}

.product-title {
    justify-content: center;
}

.product-title h1 {
    font-weight: 300;
    font-size: 32px;
}

.product-sale-title {
    font-size: 32px;
    color: #D20730;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 40px;
}

.product-details-wrap .product-price {
    gap: 20px;
    background: var(--background);
    display: flex;
    width: fit-content;
    align-items: stretch;
}

.product-details-wrap .product-price .main-price {
    flex: 1;
}

.product-details-wrap .product-price .was-price {
    flex: 0 0 auto;
    width: 180px;
    border-left: 1px solid var(--border);
}

.product-details-wrap .product-price>div:not(.hidden) {
    font-size: 12px;
    color: var(--mainColour);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    justify-content: center;
    gap: 5px;
}

.product-details-wrap .product-price>div>div:nth-child(2) {
    font-size: 24px;
}

.product-details-wrap .product-price .main-price>div:nth-child(2) {
    font-weight: 600;
}

.product-pack {
    background: var(--background);
    display: flex;
    align-items: stretch;
    padding: 0 5px;
    gap: 10px;
    height: 50px;
    border: 1px solid #f1f1f1;
}

.product-pack>label {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--mainColour);
}


}
.product-pack>label:last-child {
    border-left: 1px solid #f1f1f1;
    padding-left: 10px;
}
.product-label-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 0;
}
.product-label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    background: var(--background);
    padding: 0 25px;
    font-size: 13px;
    color: #464545;
}
.product-short-description {
    padding: 10px 0;
    font-size: 14px;
    line-height: 24px;
}
.product-short-description:empty {
    display: none;
}

/* bom list */
.bom-variations.variation-wrap {
    background: #FAF8F8;
    padding: 5px 10px 15px 10px;
    font-size: 12px;
    line-height: 22px;
}
.bom-variations .variation-label {
    font-weight: bold;
    font-size: 14px;
    line-height: 28px;
}

/* variations */
.variations {
    width: 100%;
}
.variation-wrap {
    padding: 10px 0;
    width: 100%
}
.variation-label {
    font-size: 17px;
    color: var(--mainColour);
    padding: 5px 0;
}
.variation-wrap select {
    width: 100%;
    height: 50px;
    background-color: #fff;
    border: 1px solid #A3A3A3;
    font-size: 17px;
    padding: 0 10px;
    box-sizing: border-box;
    cursor: pointer;
}

/* quantity */
.quantity-wrap {
    width: 130px;
}
.quantity-wrap .quantity-label {
    font-size: 17px;
    color: #464545;
    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: 40px;
    height: 100%;
    font-size: 21px;
    color: #464545;
    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: 16px;
    color: #464545;
    text-align: center;
}
.product-buttons .quantity-wrap .quantity input {
    height: 60px;
}
.product-buttons .quantity-wrap .quantity a {
    background: var(--secondaryColour);
    border-color: var(--secondaryColour);
    color: #fff;
    height: 60px;
    width: 60px;
}
.product-buttons .quantity-wrap .quantity a:first-child {
    border-radius: 5px 0 0 5px;
}
.product-buttons .quantity-wrap .quantity a:last-child {
    border-radius: 0 5px 5px 0;
}
.product-buttons .quantity-wrap .quantity input {
    border-color: var(--secondaryColour);
}
.product-buttons .quantity-wrap {
    width: 70%;
    height: 60px;
}
.product-buttons .quantity-wrap .quantity {
    height: 60px;
}

/* add to cart */
.add-to-cart-row {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    padding: 10px 0;
}
.add-to-cart-row.guest a {
    width: calc(50% - 10px);
    flex: 0 0 auto;
}
.add-to-cart-row.guest a {
    border-radius: 5px;
}
.add-to-cart {
    flex: 1;
    text-transform: uppercase;
    gap: 10px;
    padding: 0 10px;
    width: 100%;
    border-radius: 5px;
    font-weight: 600;
}
.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;
}

/* View Similar */
.view-similar {
    width: 100%;
    gap: 10px;
    padding: 0 10px;
    width: 100%;
    border-radius: 5px;
    font-weight: 600;
}

/* Added to cart */
.added-to-cart-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    text-transform: uppercase;
    color: #464545;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    gap: 0px;
    font-size: 20px;
    height: 30px;
}
.added-to-cart-header:before {
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/tick-circle.svg) no-repeat center left;
}
.added-to-cart-body {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0;
}
.added-image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.added-image>img {
    max-height: 100%;
    width: auto;
}
.added-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 600px;
}
.added-title {
    font-size: 16px;
    font-weight: 400;
}
.added-price {
    font-size: 14px;
    font-weight: 600;
}
.added-to-cart-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 20px 0;
    gap: 20px;
}
.added-to-cart-buttons a {
    padding: 0;
    width: 150px;
}
.out-of-stock-wrap {
    height: 60px;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--mainColour);
    text-transform: uppercase;
    margin: 10px 0;
}

/* Delivery */
.product-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
    gap: 20px;
}
.product-meta a {
    font-size: 14px;
    color: var(--mainColour);
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: underline;
}
.product-meta a:before {
    content: '';
    width: 25px;
    height: 15px;
    background: url(../images/delivery-black.svg) no-repeat center;
    background-size: contain;
}
.product-meta a.add-to-favourites:before {
    background-image: url(../images/heart-white.svg);
}
.product-meta a.add-to-favourites.is-favourite:before {
    background-image: url(../images/heart.svg);
}

/* Description */
.product-description-wrap {
    background: var(--background);
    padding: 20px;
    margin: 20px 0;
}
.product-description-title,
.associations-wrap h2 {
    font-size: 24px;
    color: var(--secondaryColour);
    font-weight: 600;
    display: flex;
    flex-direction: column;
}
.product-description-title:after,
.associations-wrap h2:after {
    content: '';
    width: 30px;
    height: 4px;
    background: var(--secondaryColour);
    margin: 10px 0;
}

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

/*-- 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: "";
    display: block;
    width: 13px;
    height: 22px;
    background: url(../images/chevron-right-black.svg) no-repeat center;
}
.ag-gal-prev {
    left: -50px;
}
.ag-gal-prev::after {
    transform: rotate(180deg);
}
.ag-gal-next {
    right: -50px;
}

/* ---------------------- */

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

/* ---------------------- */

/*----- LARGE CART -----*/
.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: 18px;
    color: #393A3D;
    font-weight: bold;
    text-transform: capitalize;
}
.cart-title::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/cart.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: 12px;
    line-height: 18px;
    color: #393A3D;
    font-weight: bold;
}
.cart-product-variations span {
    font-size: 10px;
    line-height: 16px;
    color: #393A3D;
}
.cart-product-sku span {
    font-size: 10px;
    line-height: 14px;
    color: #393A3D;
}
.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: 20px;
    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: 12px;
    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: 14px;
    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;
}
.cart-line>div {
    font-size: 18px;
    color: #3B3B3D;
    text-transform: capitalize;
}
.cart-line.discount-line>div {
    color: #4476BA;
}
.cart-line.total>div {
    font-weight: bold;
}

/*----- 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-page a[class*='button-'] {
    border-radius: 5px;
}
.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: #F8F7F6;
}
.back-to-shopping-wrap {
    padding: 10px 0 20px;
}
.back-to-shopping-wrap a {
    font-size: 12px;
    color: #575757;
    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: 12px;
    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: 16px;
    line-height: 20px;
    color: #393A3D;
    font-weight: bold;
}
.checkout-logger-title span a {
    color: #4476BA;
    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: 14px;
    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: 32px;
    line-height: 48px;
    color: var(--mainColour);
    font-weight: bold;
}
.checkout-card {
    background: #FFFCFC;
    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;
}
.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: 14px;
    line-height: 24px;
}
.checkout-card-subtitle span {
    font-size: 16px;
    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: 16px;
    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.checkbox span {
    font-size: 14px;
    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: 16px;
    font-weight: bold;
    color: #000;
}
.free-delivery-wrap {
    padding: 10px 0;
}
.checkout-card.expandable .checkout-card-header {
    position: relative;
    cursor: pointer;
}
.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: 12px;
}
.checkout-card[data-card=details] .checkout-card-title span {
    font-size: 24px;
}
.checkout-card[data-card=details] .checkout-card-subtitle {
    padding: 10px 0;
}
.checkout-card[data-card=details] .checkout-card-subtitle span {
    font-size: 16px;
    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: 14px;
    color: #393A3D;
    font-weight: bold;
}
.checkout-form-field {
    padding: 10px 0;
    position: relative;
}
.checkout-form-label {
    font-size: 16px;
    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: 16px;
    color: #393A3D;
    font-weight: bold;
}
.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;
}
.payopt-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.payopt-row.payopt-image {
    padding: 10px 0 0;
}
.payopt-title {
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
}
.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;
}
.payment-option.payment-option-selected .payopt-radio::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    border-radius: inherit;
}
.payment-option img {
    max-width: 80%;
    max-height: 35px;
    margin-left: 30px;
}
.continue-button {
    width: 100%;
    text-transform: uppercase;
    height: 60px;
}

/*Payment Page*/
.payment-header {
    padding: 0 10px;
    margin: 0 0 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.payment-header>div {
    display: flex;
    flex-wrap: wrap;
}
.payment-header h1 {
    color: #000000;
    font-weight: bold;
    font-size: 30px;
    margin: 0 0 15px;
    padding: 0;
}
.payment-header>div>div {
    width: 30%;
    font-size: 12px;
    color: #000;
    line-height: 24px;
}
.payment-header>div>div:nth-child(3),
.payment-header>div>div:nth-child(6) {
    width: 50%;
}
.payment-header>div>div:first-child,
.payment-header>div>div:nth-child(4) {
    width: 20%;
}
.payment-content {
    padding: 0 10px;
    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: 12px;
    background: #f9f9f9;
}
.payment-content .payment-delivery p {
    font-size: 12px;
    color: #000;
    padding: 0 0 15px;
    line-height: 20px;
}
.payment-content .payment-order-summary span {
    font-weight: bold;
    font-size: 12px;
    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: 12px;
    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: 12px;
    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: 12px;
    color: #000;
    line-height: 20px;
    font-weight: bold;
}
.payment-pay {
    padding: 0 10px;
    box-sizing: border-box;
}
.payment-pay h1 {
    color: #000000;
    font-weight: bold;
    font-size: 30px;
    margin: 0;
    padding: 0;
}
.payment-pay label {
    font-size: 16px;
    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: 16px;
    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;
    margin: 20px 0 30px;
    box-sizing: border-box;
    background: #f9f9f9;
}
.payment-footer p {
    font-size: 16px;
    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: #3C1B2D;
    height: 140px;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-top: -1px;
}
.signup-header .container_16 {
    height: 100%;
    display: flex;
    align-items: center;
}
.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: 55px;
    padding: 0 30px;
    background: var(--background);
    border: solid var(--border);
    border-width: 1px 1px 0;
    position: relative;
    z-index: 0;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--mainColour);
}
.signup-tab-header.active {
    background: #fff;
    color: var(--secondaryColour);
    z-index: 2;
}
.signup-tab-header.active:after {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--secondaryColour);
    bottom: 0;
    left: calc(50% - 15px);
    position: absolute;
}
.signup-tab-content {
    border: 1px solid var(--border);
    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: 350px;
    flex: 0 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #231F20;
}

.signup-new{margin: 60px 0 10px 0;}
.signup-new span{font-family: 'Roboto', sans-serif; color: #515050; font-weight: 300; font-size: 32px;}
.signup-new p{padding: 10px 0 15px 0; margin: 0; color: #231F20; font-size: 16px; line-height: 24px;}

.signup-right-header {
    color: #231F20;
    font-size: 16px;
    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;
    color: #231F20;
}
.signup-right-bullets>div:before {
    content: '';
    width: 15px;
    height: 15px;
    background: url(../images/tick.svg) no-repeat center;
}
.signup-tab-text {
    color: var(--mainColour);
    font-size: 15px;
    line-height: 26px;
}
.signup-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
    font-size: 16px;
}
.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: 16px;
    color: #3B3B3D;
    padding: 5px 0;
}
.signup-form-input {
    width: 100%;
}
.signup-page-button {
    margin: 10px 0;
    width: 100%;
    text-transform: uppercase;
}
.forgot-button {
    color: #255E99;
}
.login-error {
    text-align: center;
    font-size: 16px;
    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: 20px;
    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_16 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 5px;
    padding: 0 10px;
    font-size: 16px;
}
.dashboard-header span:nth-child(1) {
    font-size: 24px;
    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='invoices'] span:before {
    background-image: url(../images/dash-order.svg);
}
.dash-tab-titles a[data-tab='invoices'].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: 16px;
}
.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: 14px;
}
.dash-order-info>div span {
    color: #25242B;
}
.dash-order-row .view {
    width: 60px;
    display: flex;
    align-items: center;
}
.dash-order-info .view-invoice,
.dash-order-info .reorder {
    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-order-info .reorder:before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/reorder.svg) no-repeat center;
    background-size: 80%;
}
.dash-order-info .reorder.spin {
    animation: spin 1s infinite;
}
.dash-forms-wrap {
    display: flex;
}
.dash-form {
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
    background: var(--background);
    border: 1px solid var(--border);
}
.dash-form-field {
    padding: 10px 0;
}
.dash-form-label {
    font-size: 16px;
    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: 14px;
    line-height: 18px;
    color: #393A3D;
}
:is(.billing-address, .delivery-address) div span {
    font-weight: bold;
    font-size: 16px;
    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: 600px;
    min-width: 300px;
    flex: 0 0 auto;
    font-size: 16px;
    line-height: 26px;
}
.pop-overlay>div>a {
    position: absolute;
    width: 30px;
    height: 30px;
    background: url(../images/close.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;
    font-family: 'Baloo 2';
}
.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;
    max-width: 400px;
}
.address-form>div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.address-form>div:first-child,
.address-form>div:last-child {
    align-items: center;
    flex-direction: row;
    gap: 5px;
}
.address-form>div:first-child>input:first-child {
    width: 100px;
    flex: 0 0 auto;
}
.address-form>div>input {
    width: 100%;
}
.address-form>div>input::placeholder {
    text-transform: capitalize;
}
.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:nth-child(1) {
    margin-right: auto;
    background: #65707D;
}
.member-address {
    border: 1px solid var(--border);
    background: #fff;
    font-size: 14px;
    line-height: 18px;
    padding: 20px 5px 40px;
    width: calc((100% - 20px) / 2);
    display: flex;
    align-items: flex-start;
    position: relative;
    gap: 1
}
.member-address>div:first-child {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--mainColour);
    padding: 3px;
    margin: 0 10px;
    flex: 0 0 auto;
}
.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;
}
.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;
}

/* ---- Content Layout Module ---- */
.content-layout-module {}
.content-layout-block {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.content-layout-block .layout-image {
    width: 50%;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}
.content-layout-block .layout-image iframe {
    width: 100%;
    height: 580px;
}
.content-layout-block .layout-texts {
    padding: 0 30px;
    width: 50%;
    display: flex;
    flex-direction: column;
    width: 580px;
}
.content-layout-block .layout-texts>.layout-description {
    width: 100%;
}
.content-layout-block .layout-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.content-layout-block .layout-texts {
    position: relative;
}
.content-layout-block .layout-texts h2 {
    font-size: 42px;
    line-height: 46px;
    margin: 0;
}
.content-layout-block .layout-texts div:first-child {
    width: 100%;
}
.content-layout-block .layout-texts p {
    color: var(--mainColour);
    font-size: 16px;
    line-height: 28px;
    padding: 0;
}

/*Layout Side*/
.content-layout-module.layout-left .content-layout-block {
    flex-direction: row-reverse;
}
.content-layout-module.layout-left .content-layout-block .layout-texts {
    align-items: flex-end;
}
.content-layout-module.layout-right .content-layout-block .layout-image {
    justify-content: flex-end;
}

/*Layout Buttons*/
.content-layout-block .layout-buttons {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.content-layout-block .layout-buttons a {
    margin: 0;
}

/* Popups */
.popup-overlay {
    display: none;
    position: fixed;
    z-index: 100000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.popup-overlay.active {
    display: flex;
    opacity: 1;
}
.popup-overlay>div {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.popup-close {
    position: relative;
    top: 20px;
    right: -20px;
    align-self: flex-end;
    width: 40px;
    height: 40px;
    background: #fff url(../images/close.svg) no-repeat center;
    border-radius: 50%;
    flex: 0 0 auto;
}
.popup-overlay>div>a>img {
    max-width: 80vw;
    max-height: calc(80vh - 40px);
    width: auto;
    height: auto;
    flex: 0 0 auto;
}

/* BRANDS MODULE */
.brand-title {
    font-size: 42px;
    line-height: 42px;
    margin: 0px 0 50px 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #464545;
    text-align: center;
    display: block;
}
.brand-module {
    position: relative;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    background: #F5F4F4;
    padding: 50px 0;
}
.brand-module.loading .brand:nth-child(n+5) {
    display: none;
}
.brand-module.loading .brand:nth-child(n+4) {
    margin-right: 0;
}
.brand-module .grid_16 {
    position: relative;
}
.brand {
    height: 230px;
    margin-right: 10px;
    float: left;
    margin-right: 20px;
    display: block;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    line-height: 20px;
    color: #464545;
    gap: 10px;
}
.brand>a {
    width: 220px;
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffff;
}
.brand:hover>a {
    box-shadow: 0px 0px 6px #00000029;
}
.brand-module .grid_16>a {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 60px;
    left: -50px;
    top: calc(50% - 30px);
    z-index: 10;
    background: #fff;
}
.brand-module .grid_16>a:after {
    content: "";
    width: 15px;
    height: 15px;
    border: solid var(--mainColour);
    border-width: 0 0 3px 3px;
    transform: rotate(45deg);
    margin-left: 5px;
}
.brand-module .grid_16>a.brand-next {
    left: initial;
    right: -50px;
}
.brand-module .grid_16>a.brand-next:after {
    border-width: 3px 3px 0 0;
    margin-left: 0;
    margin-right: 5px;
}
.loader {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader:after {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 4px solid #fff;
    border-color: var(--secondaryColour) transparent transparent;
    animation: .3s linear spin;
}

/* --------------------------------------- */

/* -------- LARGE SCREEN >1200px --------- */

/* --------------------------------------- */
@media only screen and (min-width:1200px) {
    .mobile:not(.desktop-large),
    .tablet:not(.desktop-large),
    .desktop:not(.desktop-large),
    .desktop-hidden {
        display: none !important;
    }
    /* ----- GRID STRUCTURE ----- */
    
    .container_16 {
        margin-left: auto;
        margin-right: auto;
        width: 1200px;
    }
    
    .container_16 .grid_1 {
        width: 55px;
    }
    
    .container_16 .grid_2 {
        width: 130px;
    }
    
    .container_16 .grid_3 {
        width: 205px;
    }
    
    .container_16 .grid_4 {
        width: 280px;
    }
    
    .container_16 .grid_5 {
        width: 355px;
    }
    
    .container_16 .grid_6 {
        width: 430px;
    }
    
    .container_16 .grid_7 {
        width: 505px;
    }
    
    .container_16 .grid_8 {
        width: 580px;
    }
    
    .container_16 .grid_9 {
        width: 655px;
    }
    
    .container_16 .grid_10 {
        width: 730px;
    }
    
    .container_16 .grid_11 {
        width: 805px;
    }
    
    .container_16 .grid_12 {
        width: 880px;
    }
    
    .container_16 .grid_13 {
        width: 955px;
    }
    
    .container_16 .grid_14 {
        width: 1030px;
    }
    
    .container_16 .grid_15 {
        width: 1105px;
    }
    
    .container_16 .grid_16 {
        width: 1180px;
    }
    
    .swipe {
        height: 575px;
    }
    
    .brand>a {
        width: 280px;
        height: 200px;
    }
}

/* -------------------------------------------------------------------------------------------------------- LARGE DESKTOP END  */

/* --------------------------------------- */

/*-------------DESKTOP < 1199px------------*/

/* --------------------------------------- */
@media (min-width:960px) and (max-width:1199px) {
    .mobile:not(.desktop),
    .tablet:not(.desktop),
    .desktop-large:not(.desktop),
    .desktop-hidden {
        display: none !important;
    }
    /* ----- GRID STRUCTURE ----- */
    
    .grid_1 img,
    .grid_2 img,
    .grid_3 img,
    .grid_4 img,
    .grid_5 img,
    .grid_6 img,
    .grid_7 img,
    .grid_8 img,
    .grid_9 img,
    .grid_10 img,
    .grid_11 img,
    .grid_12 img,
    .grid_13 img,
    .grid_14 img,
    .grid_15 img,
    .grid_16 img {
        max-width: 100% !important;
        height: auto !important;
    }
    /* ----- MODULES ----- */
    /* -- Product Module -- */
    
    .pm-gal.list .product-block {
        width: 226px;
    }
    
    .pm-gal.list .product-image {
        height: 170px;
    }
    
    .pm-gal.carousel .product-block {
        width: 100%;
    }
    
    .pm-gal.carousel .product-image {
        height: 170px;
    }
    /* -- Category Module -- */
    
    .cm-gal.list .category-block {
        width: 226px;
    }
    
    .cm-gal.carousel .category-block {
        width: 100%;
    }
    /* ----- SEARCH PAGE ----- */
    
    .search-results {
        gap: 12px;
    }
    /* -- Product Block -- */
    /* ----- 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;
    }
}

/* -------------------------------------------------------------------------------------------------------- DESKTOP END  */

/* ------------------------------------------------- */

/* --------------TABLET & MOBILE ------------------- */

/* ------------------------------------------------- */
@media (max-width:959px) {
    .container_16.resp-full-width {
        width: 100vw !important;
        max-width: 100vw !important;
        position: relative !important;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        box-sizing: border-box;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    div:not(.container_16).resp-full-width {
        width: 101vw !important;
        max-width: 101vw !important;
        position: relative !important;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .alpha,
    .omega {
        margin-left: 0;
        margin-right: 0;
    }
    /* ----- SITE HEADER ----- */
    
    .top-wrap>div,
    .header-wrap>div {
        width: 100%;
    }
    /* -- HEADER WRAP -- */
    
    header .logo {
        width: 270px;
    }
    
    .header-wrap {
        height: 90px;
        border-bottom: 1px solid var(--border);
    }
    
    .my-account {
        width: auto;
        background: url(../images/account-white.svg) no-repeat left center;
        align-items: center;
        font-size: 12px;
    }
    
    .menu-toggle {
        display: block;
        width: 26px;
        height: 20px;
        position: relative;
        z-index: 1002;
        margin-left: 30px;
    }
    
    .menu-toggle>div {
        width: 100%;
        height: 3px;
        border-radius: 5px;
        background: var(--secondaryColour);
        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%;
    }
    /* ----- MOBILE MENU ----- */
    
    .mobile-menu-overlay {
        width: 100vw;
        height: 100%;
        background: #071b3a6c;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        opacity: 0;
        pointer-events: none;
        transition: 0.2s ease-in-out all;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        z-index: 1000;
        opacity: 1;
        pointer-events: initial;
    }
    
    .mobile-menu-wrap {
        width: 100%;
        background: #efefef;
        padding: 10px;
        box-sizing: border-box;
        position: absolute;
        top: 0;
        right: -50%;
        opacity: 0;
        transition: 0.2s ease-in-out all;
    }
    
    .mobile-menu-overlay.active .mobile-menu-wrap {
        right: 0;
        opacity: 1;
    }
    
    header .menu-wrap.active {
        display: flex !important;
        position: absolute;
        right: 0;
        top: 0px;
        width: 75%;
        background: #fff;
        height: auto;
        z-index: 1001;
    }
    
    header .menu-wrap.active .container_16 {
        width: 100%;
    }
    
    header .delivery-link {
        display: flex;
        align-items: center;
        height: 80px;
        gap: 5px;
        border-bottom: 1px solid var(--border);
        color: var(--mainColour);
        padding: 0 10px;
        width: 100%;
    }
    
    header .delivery-link a {
        color: inherit;
        flex-direction: row;
    }
    
    header .delivery-link a:after {
        content: " Saved";
    }
    
    .menu-wrap>div {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    header .menu-wrap.active .container_16 .main-menu-wrap {
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        overflow-y: scroll;
        max-height: calc(100vh - 80px);
    }
    
    header .menu-wrap.active .container_16 .main-menu-wrap .mobile-shop-menu {
        width: 100%;
        list-style: none;
        padding: 0;
        margin: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    header .menu-wrap.active .container_16 .main-menu-wrap .mobile-shop-menu>li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0 10px;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }
    
    header .menu-wrap.active .container_16 .main-menu-wrap .mobile-shop-menu>li.active {
        background: #F9F9F9;
    }
    
    header .menu-wrap.active .container_16 .main-menu-wrap .mobile-shop-menu>li>a {
        color: #071b3a;
        font-size: 14px;
        line-height: 18px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 600;
    }
    
    header .menu-wrap.active .container_16 .main-menu-wrap .mobile-shop-menu>li.has-sub-items>a span {
        content: "";
        width: 30px;
        height: 30px;
        background: url(../images/chevron-down-black.svg) no-repeat center;
        transition: 0.2s ease-in-out all;
        background-size: 60%;
    }
    
    header .menu-wrap.active .container_16 .main-menu-wrap .mobile-shop-menu>li.has-sub-items.active>a span {
        transform: scale(-1, -1);
    }
    
    header .menu-wrap.active .container_16 .main-menu-wrap .mobile-shop-menu>li>ul {
        display: none;
        width: 100%;
        list-style: none;
        padding: 10px;
        margin: 0;
        box-sizing: border-box;
        position: relative;
        top: initial;
        left: initial;
        right: initial;
        border: 0;
        z-index: 1;
    }
    
    header .menu-wrap.active .container_16 .main-menu-wrap .mobile-shop-menu>li.active>ul {
        display: flex;
        flex-direction: column;
        opacity: 1;
    }
    
    header .menu-wrap.active .container_16 .main-menu-wrap .mobile-shop-menu>li>ul>li {
        padding: 0;
    }
    
    header .menu-wrap.active .container_16 .main-menu-wrap .mobile-shop-menu>li>ul>li>a {
        font-size: 14px;
    }
    
    header .menu-wrap.active .container_16 .main-menu-wrap .mobile-shop-menu>li>ul>li>ul {
        display: none;
    }
    
    header .menu-wrap.active .container_16 .main-menu-wrap .mobile-shop-menu>li>ul>li.active>ul {
        display: flex;
        flex-direction: column;
        opacity: 1;
        width: 100%;
        list-style: none;
        padding: 10px;
        margin: 0;
        box-sizing: border-box;
        position: relative;
        top: initial;
        left: initial;
        right: initial;
        background: #fff;
        border: 0;
        z-index: 1;
    }
    
    header .menu-wrap.active .container_16 .main-menu-wrap .main-menu:not(.mobile-shop-menu) {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin: 10px;
    }
    
    header .menu-wrap.active .container_16 .main-menu-wrap .main-menu:not(.mobile-shop-menu) a {
        font-weight: normal !important;
    }
    
    .menu-wrap .shop-menu {
        display: none;
    }
    
    .menu-wrap .shop-menu>li>ul {
        opacity: 1;
        visibility: visible;
        position: static;
    }
    
    .main-menu-wrap .my-account {
        margin: 10px 0;
        flex-direction: row;
    }
    
    .page-menu {
        list-style: none;
        padding: 10px;
        margin: 0;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .page-menu>li {
        padding: 0;
        margin: 0;
        font-size: 14px;
    }
    
    .page-menu>li>a {
        color: var(--mainColour);
        text-decoration: none;
        height: 30px;
        display: flex;
        align-items: center;
    }
    
    .page-menu>li ul {
        display: none;
    }
    
    .close-menu {
        margin: 20px 20px 20px auto;
        display: flex;
        align-items: center;
        height: 30px;
        font-size: 12px;
        text-decoration: underline;
    }
    
    .shopping-cart {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 20px;
    }
    
    .small-cart:after {
        display: none;
    }
    
    .small-cart>div {
        left: auto;
        right: -8px;
    }
    
    .footer-container {
        flex-wrap: wrap;
        padding: 30px 10px;
    }
    
    .top-wrap {
        position: relative;
        z-index: 1001;
    }
    
    .search-title h1 {
        padding: 0;
    }
    
    .search-results-wrap {
        flex-direction: column;
        gap: 0;
    }
    
    .search-results {
        width: 100%;
    }
    
    .search-categories {
        width: 100%;
        display: none;
    }
    
    .search-order span {
        display: none;
    }
    
    .account-wrap {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 20px;
    }
    
    .filter-button {
        color: var(--mainColour);
        font-weight: bold;
        text-transform: uppercase;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 50px;
    }
    
    .filter-button:before {
        content: '';
        width: 30px;
        height: 30px;
        background: transparent no-repeat center;
    }
    
    .search-filters.active .filter-button:before {
        background-image: url(../images/cancel.svg);
    }
    
    .search-filters:not(.active) .filter-button:after {
        content: '';
        transition: 0.3s all ease-in-out;
        width: 20px;
        height: 20px;
        background: url(../images/chevron-down-black.svg) no-repeat center;
        margin-left: auto;
        margin-right: 10px;
    }
    
    .search-filters:not(.active) .filters,
    .search-filters:not(.active) .search-filters-buttons {
        display: none;
    }
    
    .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: 15px;
        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 ----- */
    /* -- Fullscreen Gallery -- */
    
    div.fullscreen-fade .arrows {
        display: none !important;
    }
    /* ----- MODULES ----- */
    /* -- Product Module -- */
    
    .pm-slide {
        width: calc(100% / 3);
    }
    
    .pm-gal-wrap.carousel .pm-gal-nav {
        display: none;
    }
    
    .pm-gal.carousel .product-block {
        width: 100%;
    }
    
    .pm-gal.carousel .product-image {
        height: 180px;
    }
    /* -- Category Module -- */
    
    .cm-slide {
        width: calc(100% / 3);
    }
    
    .cm-gal.list .category-block {
        width: 244px;
    }
    
    .cm-gal-wrap.carousel .cm-gal-nav {
        display: none;
    }
    
    .cm-gal.carousel .category-block {
        width: 100%;
    }
    /* ----- CHECKOUT ---- */
    
    .checkout-page {
        flex-wrap: wrap;
    }
    
    .checkout-top {
        width: 100%;
        padding: 20px 20px 20px;
        order: 1;
    }
    
    .checkout-left {
        width: 100%;
        padding: 20px 20px 20px;
        order: 3;
    }
    
    .checkout-right {
        width: 100%;
        padding: 20px 20px 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_16 {
        width: 100%;
        padding: 0 10px;
    }
    
    .product-block .product-image a.add-to-favourites {
        display: flex;
    }
    
    .footer-container .footer-col:last-child {
        width: 100%;
        flex: 0 0 auto;
        align-items: center;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .footer-container .footer-col:last-child .footer-col-title {
        align-items: center;
    }
}

/* -------------------------------------------------------------------------------------------------------- TABLET & MOBILE END  */

/* --------------------------------------- */

/* --------------TABLET------------------- */

/* --------------------------------------- */
@media (min-width:768px) and (max-width:959px) {
    .desktop-large:not(.tablet),
    .desktop:not(.tablet),
    .mobile:not(.tablet),
    .tablet-hidden {
        display: none !important;
    }
    /* ----- GRID STRUCTURE ----- */
    
    .container_16 {
        margin-left: auto;
        margin-right: auto;
        width: 768px;
    }
    
    .container_16 .grid_1 {
        width: 32px;
    }
    
    .container_16 .grid_2 {
        width: 80px;
    }
    
    .container_16 .grid_3,
    .container_16 .grid_tab_3 {
        width: 128px;
    }
    
    .container_16 .grid_4,
    .container_16 .grid_tab_4 {
        width: 176px;
    }
    
    .container_16 .grid_5,
    .container_16 .grid_tab_5 {
        width: 224px;
    }
    
    .container_16 .grid_6,
    .container_16 .grid_tab_6 {
        width: 272px;
    }
    
    .container_16 .grid_7,
    .container_16 .grid_tab_7 {
        width: 320px;
    }
    
    .container_16 .grid_8,
    .container_16 .grid_tab_8 {
        width: 368px !important;
    }
    
    .container_16 .grid_9,
    .container_16 .grid_tab_9 {
        width: 416px;
    }
    
    .container_16 .grid_10,
    .container_16 .grid_tab_10 {
        width: 464px;
    }
    
    .container_16 .grid_11,
    .container_16 .grid_tab_11 {
        width: 512px;
    }
    
    .container_16 .grid_12,
    .container_16 .grid_tab_12 {
        width: 560px;
    }
    
    .container_16 .grid_13,
    .container_16 .grid_tab_13 {
        width: 608px;
    }
    
    .container_16 .grid_14,
    .container_16 .grid_tab_14 {
        width: 656px;
    }
    
    .container_16 .grid_15,
    .container_16 .grid_tab_15 {
        width: 704px;
    }
    
    .container_16 .grid_16,
    .container_16 .grid_tab_16 {
        width: 752px;
    }
    
    .grid_1,
    .grid_2,
    .grid_3,
    .grid_4,
    .grid_5,
    .grid_6,
    .grid_7,
    .grid_8,
    .grid_9,
    .grid_10,
    .grid_11,
    .grid_12,
    .grid_13,
    .grid_14,
    .grid_15,
    .grid_16 {
        margin-left: 8px;
        margin-right: 8px;
    }
    
    .grid_1 img,
    .grid_2 img,
    .grid_3 img,
    .grid_4 img,
    .grid_5 img,
    .grid_6 img,
    .grid_7 img,
    .grid_8 img,
    .grid_9 img,
    .grid_10 img,
    .grid_11 img,
    .grid_12 img,
    .grid_13 img,
    .grid_14 img,
    .grid_15 img,
    .grid_16 img {
        max-width: 100% !important;
        height: auto !important;
    }
    /* ----- Search Page ----- */
    
    .search-header {
        padding: 20px;
    }
    
    .search-results {
        gap: 10px;
    }
    
    body:not([data-page="checkout"]) .content-wrap {
        padding-top: 90px;
    }
    
    .search-results .product-block {
        width: calc((100% - 20px) / 3) !important;
    }
    
    .product-block .product-price .main-price {
        font-size: 16px;
    }
    
    .product-block .product-price .was-price:not(.hidden)+.main-price:before {
        content: '';
    }
    
    .product-block .product-buttons a {
        padding: 0;
    }
    
    .category-block {
        width: calc((100% - 40px) / 3);
    }
    
    .category-block .catTitle {
        height: 70px;
    }
    
    .category-block .catTitle a {
        font-size: 18px;
    }
    /* ---------------------- */
    /* ----- MEMBERSHIP ----- */
    /* ---------------------- */
    /* ----- Dashboard ------ */
    
    .product-title h1 {
        font-size: 28px;
        line-height: 38px;
    }
    
    .signup-header {
        height: 110px;
        font-size: 30px;
    }
}

/* -------------------------------------------------------------------------------------------------------- TABLET END  */

/* --------------------------------------- */

/* --------------MOBILE------------------- */

/* --------------------------------------- */
@media (max-width:767px) {
    .tablet:not(.mobile),
    .desktop:not(.mobile),
    .desktop-large:not(.mobile),
    .mobile-hidden {
        display: none !important;
    }
    /* ----- GRID STRUCTURE ----- */
    
    .container_16 {
        margin-left: auto;
        margin-right: auto;
        width: 320px;
    }
    
    .grid_1,
    .grid_2,
    .grid_3,
    .grid_4,
    .grid_5,
    .grid_6,
    .grid_7,
    .grid_8,
    .grid_9,
    .grid_10,
    .grid_11,
    .grid_12,
    .grid_13,
    .grid_14,
    .grid_15,
    .grid_16 {
        margin-left: 5px;
        margin-right: 5px;
        width: 310px !important;
    }
    
    .grid_1 img,
    .grid_2 img,
    .grid_3 img,
    .grid_4 img,
    .grid_5 img,
    .grid_6 img,
    .grid_7 img,
    .grid_8 img,
    .grid_9 img,
    .grid_10 img,
    .grid_11 img,
    .grid_12 img,
    .grid_13 img,
    .grid_14 img,
    .grid_15 img,
    .grid_16 img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .prefix_1,
    .prefix_2,
    .prefix_3 {
        padding: 0 !important;
    }
    /* -------------------------------------------------------------------- */
    /* ----- TYPOGRAPHY ----- */
    
    h1 {
        font-size: 34px;
        line-height: 42px;
    }
    
    h2 {
        font-size: 30px;
        line-height: 40px;
    }
    
    h3 {
        font-size: 28px;
        line-height: 36px;
    }
    
    h4 {
        font-size: 26px;
        line-height: 32px;
    }
    
    h5 {
        font-size: 24px;
        line-height: 30px;
    }
    
    h6 {
        font-size: 24px;
        line-height: 28px;
    }
    
    p {
        font-size: 14px;
        line-height: 24px;
        padding: 5px 0 15px 0;
    }
    
    img {
        max-width: 100%;
        vertical-align: middle;
    }
    
    header .logo {
        width: 120px;
    }
    
    header .menu-wrap.active {
        width: 100%;
    }
    
    .header-wrap {
        margin-bottom: 50px;
    }
    
    body:not([data-page="checkout"]) .content-wrap {
        padding-top: 140px;
    }
    
    .sticky .header-wrap {
        margin: 0;
        height: 60px;
    }
    
    .sticky .content-wrap {
        padding-top: 60px;
    }
    
    .sticky .site-search {
        display: none;
    }
    
    .sticky .small-cart>span {
        display: none !important;
    }
    
    .sticky .account-wrap .my-account {
        font-size: 0;
    }
    
    .site-search {
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        border-width: 1px 0;
    }
    
    .shopping-cart {
        margin: 0;
    }
    /* ----- MODULES ----- */
    /*Contact From*/
    
    .cf-title span {
        font-size: 18px;
    }
    /* -- 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 ----- */
    
    .category-module .container_16,
    .product-module .container_16 {
        width: 100%;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .cm-title span,
    .pm-title span {
        font-size: 36px;
        line-height: 40px;
    }
    
    .cm-subtitle span,
    .pm-subtitle span {
        font-size: 16px;
        line-height: 26px;
        font-weight: 400;
    }
    /* ----- Search Page ----- */
    /* search header */
    
    .footer-col {
        width: 100vw !important;
        max-width: 100vw !important;
        position: relative !important;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        border-bottom: 1px solid #212121;
        padding: 0 10px 0px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-col:nth-child(2) .footer-col-title,
    .footer-col:nth-child(3) .footer-col-title {
        height: 60px;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        margin: 0;
    }
    
    .footer-col:nth-child(2) .footer-col-title:after,
    .footer-col:nth-child(3) .footer-col-title:after {
        content: '';
        width: 10px;
        height: 10px;
        background: url(../images/chevron-right-white.svg) no-repeat center;
        background-size: contain;
        transform: rotate(90deg);
    }
    
    .footer-col:not(.active) .footer-menu {
        display: none;
    }
    
    .footer-col.active .footer-col-title:after {
        transform: rotate(-90deg);
    }
    
    .footer-col .footer-menu,
    .footer-contact {
        padding-bottom: 20px;
    }
    
    .footer-col:last-child {
        padding: 20px 10px;
    }
    
    .footer-col:last-child .footer-col-title {
        font-size: 14px;
    }
    
    .byline-menu {
        flex-wrap: wrap;
        height: auto;
    }
    
    .byline-menu li {
        margin: 5px 0;
    }
    
    .search-page {
        padding: 10px 5px;
    }
    
    .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;
        align-self: flex-start;
    }
    
    .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;
    }
    
    .search-results {
        width: 100vw !important;
        max-width: 100vw !important;
        position: relative !important;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding: 0 5px;
    }
    
    .search-categories {
        display: none;
    }
    
    .search-results .product-block {
        width: calc((100% - 20px) / 2) !important;
    }
    
    .pager-link:not(.pager-prev-button):not(.pager-next-button):not(.pager-current-page) {
        display: none;
    }
    
    .pager-prev-button,
    .pager-next-button {
        width: 91px;
        font-size: 18px;
    }
    
    .category-block {
        width: calc((100% - 20px) / 2);
    }
    
    .product-block .product-title {
        font-size: 12px;
    }
    
    .product-block .product-sku {
        font-size: 10px;
    }
    
    .product-block .product-price {
        align-items: center;
        justify-content: space-between;
    }
    
    .product-block .product-price>div {
        align-items: center;
        flex-direction: column;
        display: flex;
        gap: 4px;
        line-height: 16px;
    }
    
    .product-buttons .quantity-wrap {
        width: 100%;
    }
    
    .product-buttons .quantity-wrap .quantity {
        width: 100%;
    }
    
    .product-buttons .quantity-wrap .quantity a {
        max-width: 40px;
    }
    
    .product-buttons a.view-similar {
        font-size: 12px;
    }
    
    .product-block .product-price .main-price {
        font-size: 14px;
    }
    
    .product-block .product-label-wrap {
        padding: 0;
    }
    
    .product-block .product-label {
        font-size: 10px;
    }
    
    .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,
    .associations-container {
        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: 28px;
        line-height: 36px;
    }
    
    .product-sale-title {
        font-size: 24px;
    }
    
    .product-price .was-price {
        font-size: 12px;
    }
    
    .product-price .main-price {
        font-size: 24px;
    }
    
    .product-details-wrap .product-price {
        width: 100%;
    }
    
    .product-pack {
        flex: 1;
    }
    
    .product-meta a {
        font-size: 12px;
    }
    
    .add-to-cart {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .added-details {
        flex: 1;
        width: auto;
    }
    
    .product-description-wrap.limit-reached .product-description {
        max-height: 250px;
        position: relative;
        overflow: hidden;
    }
    
    .product-description-wrap.limit-reached .product-description::after {
        content: "";
        height: 50px;
        width: 100%;
        background: linear-gradient(180deg, rgba(248, 248, 248, 0.5) 0%, rgba(248, 248, 248, 1) 100%);
        position: absolute;
        left: 0;
        bottom: 0;
    }
    
    .product-description-more:not(.hidden) {
        color: #2A2A2A;
        display: flex;
        gap: 5px;
        font-weight: bold;
        font-size: 16px;
    }
    
    .product-description-more span {
        height: 14px;
        width: 14px;
        position: relative;
    }
    
    .product-description-more span::before {
        content: "";
        height: 2px;
        width: 14px;
        position: absolute;
        top: calc(50% - 1px);
        left: 0;
        background: var(--secondaryColour);
    }
    
    .product-description-more span::after {
        content: "";
        height: 14px;
        width: 2px;
        position: absolute;
        left: calc(50% - 1px);
        top: 0;
        background: var(--secondaryColour);
        transition: ease-in-out all .3s;
    }
    
    .product-description-more.active span::after {
        opacity: 0;
    }
    
    .product-description-more::after {
        content: "more";
    }
    
    .product-description-more.active::after {
        content: "less";
    }
    
    .product-description-wrap,
    .associations-container {
        padding: 10px;
    }
    
    .add-to-cart-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .add-to-cart-row.guest a {
        width: 100%;
    }
    
    .ag-gal-nav {
        display: none;
    }
    
    .dash-order-row>div {
        width: 30%;
    }
    
    .dash-order-row .view {
        width: 20px;
    }
    
    .dashboard-header .container_16 {
        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_16>span:first-child {
        width: 100%;
    }
    
    .dashboard-header .container_16>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: 12px;
    }
    
    .payment-header>div>div {
        width: 100% !important;
    }
    
    .payment-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .payment-content>div {
        width: 100% !important;
    }
    /** Content Layout **/
    
    .content-layout-block {
        flex-direction: column !important;
    }
    
    .content-layout-block .layout-image {
        width: 100%;
    }
    
    .content-layout-block .layout-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .content-layout-block .layout-buttons a {
        width: 100%;
    }
    
    .content-layout-block .layout-inner {
        text-align: center;
        align-items: center;
        gap: 30px;
    }
    
    .content-layout-block .layout-texts {
        width: 100%;
        padding: 20px 10px;
    }
    
    .content-layout-block .layout-texts h2 {
        font-size: 36px;
        line-height: 40px;
    }
    
    .signup-page {
        padding: 20px 5px;
    }
    
    .signup-header {
        height: 90px;
        font-size: 20px;
    }
    
    .signup-bottom {
        padding: 0 5px;
    }
    
    .byline-menu>li {
        font-size: 14px;
    }
    
    .byline-container>a {
        font-size: 12px;
    }
    
    .member-address {
        width: 100%;
    }
    /*Brands*/
    
    .brand-module.loading .brand:nth-child(n+2) {
        margin-right: 0;
    }
    
    .brand-module .brand>a {
        width: 150px;
        height: 107px;
        margin-right: 10px;
        background-size: contain;
    }

    .product-label-wrap {
       flex-wrap: wrap;
    }
    
}

/* ------- MOBILE END ------- */