:root {
    /* Font sizes */
    --primary-font-size: 17px;
    --secondary-font-size: 19px;
    --primary-heading-font-size: 60px;
    --secondary-heading-font-size: 45px;
    --tertiary-heading-font-size: 27px;
    --quaternary-heading-font-size: 18px;
    --primary-hero-heading-font-size: 50px;
    /* Font Colors */
    --primary-font-color: rgb(0,0,0);
    --secondary-font-color: #3a3a3a;
    --tertiary-font-color: #aaabaa;
    /* Font weights*/
    --primary-font-weight: 400;
    --primary-bold-font-weight: 700;
    --secondary-font-weight-light: 300;
    --scondary-font-weight-medium: 500;
    /* Colors */
    --primary-bg-color: #fff;
    --secondary-bg-color: #aaabaa;
    --tertiary-bg-color: #e6ddca;
    --quaternary-bg-color: #141414;
    /* Line Height */
    --primary-font-line-height: 28px;
    --primary-heading-font-line-height: 1.22;
    --secondary-heading-font-line-height: 1.28;
    --tertiary-heading-font-line-height: 1.33;
    --quaternary-heading-font-line-height: 1.38;
    /* Font families */
    --primary-font-family: "adobe-caslon-pro", serif;
    --secondary-font-family: "Excecutive-light", sans-serif;
    /* Border colors */
    --primary-border-colors: #3a3a3a;
    --secondary-border-colors: #aaabaa;
}

h1 {
    font-size: var(--primary-heading-font-size);
    font-family: var(--primary-font-family);
    color: var(--primary-font-color);
    font-weight: var(--primary-font-weight);
    line-height: var(--primary-heading-font-line-height);
}

h2 {
    font-size: var(--secondary-heading-font-size);
    color: var(--primary-font-color);
    font-weight: var(--primary-font-weight);
    line-height: var(--secondary-heading-font-line-height);
    font-family: var(--primary-font-family);
}

h3 {
    font-size: var(--tertiary-heading-font-size);
    color: var(--primary-font-color);
    font-weight: var(--primary-font-weight);
    line-height: var(--tertiary-heading-font-line-height);
    font-family: var(--primary-font-family);
}

h4 {
    font-family: var(--primary-font-family);
    font-size: var(--quaternary-heading-font-size);
    line-height: var(--quaternary-heading-font-line-height);
}

h5 {
    font-family: var(--primary-font-family);
}

h6 {
    font-family: var(--primary-font-family);
}

p {
    font-size: var(--primary-font-size);
    color: var(--primary-font-color);
    font-weight: var(--secondary-font-weight-light);
    line-height: var(--primary-font-line-height);
    margin: 0px;
    font-family: var(--secondary-font-family);
}

a {
    font-family: var(--primary-font-family);
}

a:hover {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; 
}

img, video, iframe, table {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-size: 1.25rem;
    background: var(--primary-bg-color);
    min-height: 100%;
    position: relative;
    margin: 0;
    font-size: 1rem;
    font-weight: var(--primary-font-weight);
    line-height: 1.5;
    color: var(--primary-font-color);
    text-align: left;
    box-sizing: inherit;
    font-family: var(--primary-font-family);
}

.row {
    margin-bottom: 110px;
}

header{
    position: relative;
}

a{
    text-decoration: none;
}

p a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;          /* space below text */
    width: 100%;
    height: 1px;           /* line thickness */
    background-color: currentColor;
}

p a{
    text-decoration: none;
    position: relative;
}

.fa-long-arrow-right:before {
    content: "\f178";
}


/* FOOTER */
footer {
    margin-top: 0;
    background: var(--quaternary-bg-color);
}

footer .bottomFooter {
    padding-bottom: 115px;
    border-top: 1px solid var(--primary-border-colors);
}

footer .bottomFooter__content {
    padding-left: 0;
    padding-right: 0;
}

    footer .bottomFooter p {
        margin-top: 0px;
        font-size: 16px;
        color: var(--tertiary-font-color);
        font-weight: var(--primary-font-weight);
        margin-bottom: 0;
        padding-top: 15px;
    }

    footer .topFooter .footerSection p a:hover {
        color: var(--tertiary-font-color);
    }

footer .topFooter {
    padding-bottom: 75px;
    padding-top: 100px;
}

footer .topFooter .logosection {
    display: none;
}

footer .topFooter .footerWrapper {
    display: flex;
    justify-content: space-between;
}

footer .topFooter .footerSection {
    width: 20%;
    padding-right: 40px;
}

    footer .topFooter .footerSection .footer_overskrift {
        font-size: 19px;
        font-weight: var(--primary-font-weight);
        font-family: var(--primary-font-family);
        color: var(--tertiary-font-color);
        text-transform: uppercase;
        border-bottom: 1px solid var(--secondary-border-colors);
        margin-bottom: 28px;
        line-height: 26px;
    }

footer .topFooter .footerSection .tekst p {
    margin-bottom: 10px;
    line-height: 24px;
    transition: 200ms all 
ease-in-out;
    color: var(--tertiary-font-color);
}

footer .topFooter .footerSection .tekst p a {
    transition: 200ms all 
ease-in-out;
    position: relative;
    color: var(--tertiary-font-color);
}

    footer .topFooter .footerSection .tekst a.footerLink--Subscribe {
        border: 1px solid var(--secondary-border-colors);
        display: inline-block;
        text-align: center;
        padding: 8px 70px;
        line-height: 24px;
        padding-top: 10px;
        color: var(--tertiary-font-color);
        font-size: 16px;
        font-weight: var(--primary-font-weight);
    }

footer .topFooter .footerSection .tekst a.footerLink--Subscribe:hover  {
    background: var(--secondary-bg-color);
    color: #fff;
    transition: 200ms all 
ease-in-out;
    text-decoration: none;
}

footer .topFooter .footerSection h3 {
    line-height: 26px;
}

footer .topFooter .footerSection h3 {
    font-size: 19px;
    font-weight: var(--primary-font-weight);
    font-family: var(--primary-font-family);
    color: var(--tertiary-font-color);
    text-transform: uppercase;
    border-bottom: 1px solid var(--primary-border-colors);
    margin-bottom: 28px;
}

footer .topFooter .footerSection .tekst p:hover a:after {
    opacity: 1;
    transition: 150ms all 
ease-in-out;
}

footer .topFooter .footerSection .tekst p a:after {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    background: var(--secondary-bg-color);
    bottom: -1px;
    width: 100%;
    opacity: 0;
    transition: 150ms all 
ease-in-out;
}

@media(max-width: 991px) {
    footer .topFooter .footerSection {
        padding-right: 40px;
        flex: 0 0 50%;
        padding-top: 60px;
    }
}

/* HERO CSS */
/*-- Video Banner*/
    .videoHeroBanner__container h1 {
        font-size: 40px;
        font-weight: var(--primary-font-weight);
        max-width: 530px;
    }
.videoHeroBanner__container a, .videoHeroBanner__container p, .videoHeroBanner__container h1, .videoHeroBanner__container h2, .videoHeroBanner__container h3, .videoHeroBanner__container h4, .videoHeroBanner__container h5, .videoHeroBanner__container h6, .videoHeroBanner__container span {
    color: #fff;
}

.videoHeroBanner__container a {
    font-size: 19px;
}

.videoHeroBanner__container p {
    color: #fff;
    line-height: 27px;
    font-size: 19px;
    margin-bottom: 17px;
}
    .videoHeroBanner__container video {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
    }

    .videoHeroBanner__container .hero-content {
        left: 100px;
        top: 50%;
        transform: translateY(-50%);
        position: absolute;
    }

    .videoHeroBanner__container .heroContentWrapper {
        max-width: 405px;
    }

    .videoHeroBanner__container .hero__linkContainer {
        position: relative;
        display: inline;
    }
    .videoHeroBanner__container .hero__linkContainer span:after {
        content: '';
        display: block;
        position: absolute;
        height: 1px;
        background: #fff;
        bottom: -1px;
        width: 74px;
        transition: 200ms all ease-in-out;
        left: 0;
    }

        .videoHeroBanner__container .hero__linkContainer i {
            margin-left: 5px;
            font-size: 19px;
        }

        .videoHeroBanner__container a:hover .hero__linkContainer span:after {
            width: 100%;
        }

        /*-- Hero Text Banner */

.hero-text {
    margin-top: 260px;
}

h1#TextHero-heading {
    font-size: var(--primary-hero-heading-font-size);
    font-weight: var(--primary-font-weight);
}

.TextHero-Content {
    padding-bottom: 110px;
    margin: auto;
    text-align: center;
    max-width: 735px;
}

    .TextHero-Content p {
        font-size: var(--secondary-font-size);
        font-weight: 400;
        color: #3a3a3a;
        line-height: 28px;
        margin-bottom: 25px;
    }



   /*-- Hero Image Banner */
.hero-imageText {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-imageTextContent {
    max-width: 1015px;
    width: 100%;
    margin: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

    .hero-imageTextContent h1 {
        color: #fff;
        font-size: var(--primary-hero-heading-font-size);
        font-weight: var(--primary-font-weight);
        margin-bottom: 35px;
    }

    .hero-imageTextContent p {
        font-size: 19px;
        color: #fff;
        font-weight: var(--primary-font-weight);
        line-height: 28px;
    }
@media (max-width: 991px) {
    .hero-imageText {
        height: auto;
        padding: 80px 20px;
        margin-bottom: 50px;
    }

    .hero-imageTextContent {
        position: static;
        transform: none;
        left: auto;
        top: auto;
    }
}
.hero-jumpLinks {
    margin-top: 40px;
}
.hero-jumpLinks a{
    color: #fff;
}

/* NAVGATION */
#menu .container {
    max-width: 100%;
}
nav#menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    width: 100%;
    height: 110px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .3);
    display: flex;
    background-color: var(--primary-bg-color);
}

    nav#menu li a{
        color: var(--primary-font-color);
    }

    nav#menu.active li a {
        color: var(--secondary-font-color);
    }

    nav#menu:hover li a {
        color: var(--secondary-font-color);
    }

    nav#menu li a {
        font-size: 19px;
    }

    nav#menu .navbar-brand img {
        height: 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

        header .arrowDown {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            transition: 200ms all ease-in-out;
        }

header .arrowDown:hover {
    cursor: pointer;
    transform: translateX(-50%) translateY(7px);
    transition: 200ms all ease-in-out;
}

        header .arrowDown svg #Path_39 {
            fill: transparent;
        }

/* Sub menu */
.submenu {
    display: none;
    position: absolute;
    background: #dedddc;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    top: 100%; 
    left: 0;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: 200ms all ease-in-out;
}

.nav-item.has-submenu:hover > .submenu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.subpage__navItem a {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.subpage__navItem a::after {
    content: "" !important;
    display: block;
    position: absolute;
    bottom: 4px;
    left: 0;
    height: 1px;
    width: 0;
    background: #3a3a3a;
    transition: all 200ms ease-in-out;
}

.subpage__navItem a:hover::after {
    width: 100%;
}

.nav-item.has-submenu {
    position: relative;
}

.submenu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
}

.nav-item.has-submenu:hover > .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Hero Elements */

.hero__topSeparator{
    margin-top: 360px;   
}

.site-header.subpage-spacing{
    margin-bottom: 110px;
}

.subpage-spacing nav#menu li a {
    color: var(--secondary-font-color);
    font-size: 19px;
}

.subpage-spacing nav#menu .navbar-brand img.logo, nav#menu:hover .navbar-brand img.logo {
    display: inline;
}

.subpage-spacing nav#menu .navbar-brand img.logo__negative {
    display: none;
}

.videoHeroBanner__container {
    position: relative;
}

/* PRODUCT CSS */

.product__information {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
    row-gap: .25rem;
}

.product-accordion span:after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background-image: url(/media/j3pnnhhi/arrow_down.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-left: 10px;
}

details[open].product-accordion span:after {
    background-image: url(/media/dvxj21hj/arrow_up.svg);
}

    /* Flatten wrappers so their children (dt/dd) participate directly in the grid */
    .product__information > .product__DetailsWrapper,
    .product__information > .product__modelsDimensions {
        display: contents;
    }

    .product__information dt {
        grid-column: 1;
        margin: 0;
        padding: 0.25rem 0;
        font-weight: 600; /* optional */
    }

    .product__information dd {
        grid-column: 2;
        margin: 0;
        padding: 0.25rem 0;
    }

.product__description {
    font-size: var(--secondary-font-size);
    line-height: var(--primary-font-line-height);
    margin-bottom: 30px;
}

.product__heading {
    margin-bottom: 20px;
    font-size: 27px;
}

.productNoticeContainer p {
    margin-top: 30px;
    margin-bottom: 30px;
}

.productNoticeContainer p, .productNoticeContainer a {
    color: var(--tertiary-font-color)
}

/* COLLECTION CSS */

.collection-items {
    margin-bottom: 65px;
}

.collection-items p{
    font-size: var(--secondary-font-size);
}

.collection-item img{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 450px;
    object-fit: cover;
    width: 100%;
    transition: 200ms all ease-in-out;
}

@media (min-width: 991px) and (max-width: 1199.98px) {
    .collection-item img {
        height: 300px;
    }
}

@media(max-width: 990px) {
    .collection-item img {
        height: 200px;
    }
}

@media(max-width: 767px) {
    .collection-item img {
        height: auto;
    }
}

/* TWO IMAGES CSS */

.twoImages-Container {
    display: flex;
    align-items: center;
}

.twoImages-large img {
    height: 800px;
    margin-bottom: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.twoImages-small, .twoImages-large {
    margin-top: 52px;
    padding-left: 20px;
    padding-right: 20px;
}

.twoImages-right {
    margin-left: 8.3333%;
}

.twoImages-small img {
    height: 640px;
    width: 477px;
    margin-bottom: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* TEXT & HEADING CSS */

.txt-withHeading {
    padding-bottom: 110px;
    margin: auto;
    text-align: center;
}
.txt-withHeading.slimTextWidth {
    max-width: 735px;
}

.headlineLabel {
    line-height: var(--secondary-heading-font-line-height);
    padding-bottom: 8px;
}

@media (min-width: 1500px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1509px;
    }
}

/* Swatches */
.swatch-group {
    border-bottom: unset;
    margin: 0 0 4px;
    padding-bottom: 4px;
    font-family: Arial, sans-serif;
}


.swatch-group__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 4px 0;
    line-height: 1.2;
    margin-bottom: 10px;
}


    .swatch-group__header h3 {
        margin: 0;
        font-size: 18px;
    }


.swatch-group__header {
    position: relative;
    padding-right: 20px; /* space for icon */
}

    /* default = CLOSED state */
    .swatch-group__header::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        width: 18px;
        height: 18px;
        transform: translateY(-50%);
        background-image: url("/media/j3pnnhhi/arrow_down.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }

/* OPEN state */
.swatch-group.is-open .swatch-group__header::after {
    background-image: url("/media/dvxj21hj/arrow_up.svg");
}



.swatch-group .swatch-list {
    display: none;
}


.swatch-group.is-open .swatch-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 10px 0 6px;
    padding: 0;
    list-style: none;
}


.swatch {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}


.swatch__img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #333;
    display: block;
}


.swatch__label {
    margin-top: 4px;
}

.swatch-group .swatch-list,
.swatch-group .swatch-brand {
    display: none;
}

.swatch-group {
    margin-bottom: 20px;
}

.product-accordion {
    margin-bottom: 20px;
    list-style: none;
}

summary::marker {
    content: "";
}

summary::-webkit-details-marker {
    display: none;
}


/* OPEN state � show brands + their swatch lists */
.swatch-group.is-open .swatch-brand {
    display: block;
}

.swatch__img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #fff; /* subtle inner border */
    box-shadow: 0 0 0 1px rgba(0,0,0,.15); /* default subtle ring */
    transition: box-shadow .15s ease, transform .15s ease;
}

/* Hover / focus */
.swatch:hover .swatch__img,
.swatch:focus-visible .swatch__img {
    transform: translateZ(0) scale(1.03);
    box-shadow: 0 0 0 2px rgba(0,0,0,.25);
}

/* Keyboard accessibility */
.swatch:focus {
    outline: none;
}

.swatch:focus-visible {
    outline: 1px solid rgba(0,0,0,.4);
    outline-offset: 4px;
    border-radius: 10px;
}

/* Disabled state */
.swatch[aria-disabled="true"] {
    pointer-events: none;
    opacity: .45;
}

    .swatch[aria-disabled="true"]::before {
        opacity: 0; /* ensure line stays hidden if disabled */
    }

li.swatch.is-active .swatch__img {
    transform: translateZ(0) scale(1.03);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .25);
}

.swatch-group__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 4px 0;
    line-height: 1.2;
    border-bottom: 1.5px solid #444;
}

.swatch-group.is-open {
    border-bottom: 1.5px solid #444;
    padding-bottom: 10px;
}

h4.swatch-brand__title {
    font-size: 16px;
    font-weight: 400;
}

.swatch-brand {
    margin-bottom: 20px;
    margin-top: 30px;
}

.swatch-group--wood .swatch {
    margin: 15px 0px;
}
/* Blogs & Projects */
img.news-item__image {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.news-item__title {
    margin-top: 8px;
    margin-bottom: 22px;
}

.news-item__read-more {
    margin-top: 18px;
    display: inline-flex;
    align-items: center; 
    border-style: solid;
    padding: 5px 20px;
}

.news-item__read-more:hover {
    color: #aaabaa;
}

@media (max-width: 991px){
    .news-item_Featured{
        flex-direction: column;
    }
    .news-item_Featured .news-item__image{
        height: auto;
    }
}


.news-item_Featured {
    display: flex;
    margin-bottom: 60px;
    align-items: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    row-gap: 60px;
    align-items: stretch;
}

    .news-grid .news-item {
        display: flex;
        flex-direction: column;
    }

    .news-grid .news-item__image-wrapper {
        height: 500px;
        overflow: hidden;
    }

    .news-item:not(.news-item--featured):hover .news-item__title {
        color: #aaabaa;
    }


    .news-grid .news-item__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* TWO IMAGES */

.twoImages-Container {
    display: flex;
    align-items: center;
}

.twoImages-large img {
    height: 800px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 0px;
}

.twoImages-small, .twoImages-large {
    margin-top: 52px;
    padding-left: 20px;
    padding-right: 20px;
}

.twoImages-right {
    margin-left: 8.3333%;
}

.twoImages-small img {
    height: 640px;
    width: 477px;
    margin-bottom: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.twoImages-Container p {
    color: var(--tertiary-font-color);
}

/* IMAGE TEXT */

.imageText-text h2, .imageText-text h3, .imageText-text h4, .imageText-text h5, .imageText-text h6 {
    margin-top: 5px;
}

.imageText-Container {
    display: flex;
    align-items: center;
}

    .imageText-Container h2, .imageText-Container h3, .imageText-Container h4, .imageText-Container h5 {
        margin-bottom: 31.5px;
    }

    .imageText-Container.imageText-rowReverse {
        flex-direction: row-reverse;
    }

.link-caption {
    font-size: 19px;
    position: relative;
}

    .link-caption .fal {
        margin-top: 37px;
    }

a.imageText-Container .link-caption:after {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    background: #000;
    bottom: -1px;
    width: 74px;
    transition: 200ms all ease-in-out;
    left: 0;
}

a.imageText-Container:hover .link-caption:after {
    width: 100%;
    transition: 200ms all ease-in-out;
}

.imageText-image p {
    color: var(--tertiary-font-color);
}

/* CUSTOM LIGHTBOX */

/* overlay */
.lb-overlay {
    position: fixed;
    inset: 0;
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: auto;
}

    .lb-overlay.lb-open {
        display: flex;
    }

    /* dim background */
    .lb-overlay .lb-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.8);
    }

    /* popup box */
.lb-backdrop {
    position: relative;
}
    .lb-overlay .lb-dialog {
        max-width: 90vw;
        max-height: 90vh;
        padding: 1.5rem;
        z-index: 1;
    }

    .lb-overlay .lb-image {
        display: block;
        max-width: 100%;
        max-height: 80vh;
        margin: 0 auto;
    }

    /* arrows / close */
    .lb-overlay .lb-arrow,
    .lb-overlay .lb-close {
        position: absolute;
        border: none;
        background: rgba(255,255,255,0.9);
        cursor: pointer;
        padding: 0.5rem 0.75rem;
        font-size: 1.5rem;
        line-height: 1;
    }

    .lb-overlay .lb-close {
        top: 0.5rem;
        right: 0.5rem;
    }

    .lb-overlay .lb-prev {
        top: 50%;
        left: 50px;
        transform: translateY(-50%);
    }

    .lb-overlay .lb-next {
        top: 50%;
        right: 50px;
        transform: translateY(-50%);
    }

/* optional: hide arrows on small screens */
@media (max-width: 600px) {
    .lb-overlay .lb-prev,
    .lb-overlay .lb-next {
        display: none;
    }
}

.link-page {
    display: inline-flex;
}

.product-retailerLink {
    margin-bottom: 20px;
}

.link-page:after {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(/media/ciypo5zo/arrow_right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-left: 8px;
    display: inline-block;
}

.swatch p {
    margin-top: 10px;
    max-width: 70px;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
}