.main-page-title, .standard-page__header {
    display: none;
}

.vib-collections:empty {
    min-height: 20em;
}

.vib-collections {
    text-align: center;
    position: relative;
}

.vib-collections.loading {
    min-height: 150px;
}

body > span.loading {
    display: none;
}

.vib-collections .loading {
    display: none;
}

.vib-collections.loading .loading {
    padding: 1em;
    text-align: center;
    border: solid black 2px;
    border-radius: 10px;
    font-size: 1.3em;
    font-weight: 600;
    display: initial;
    position: absolute;
    left: 50%;
    top: 3em;
    background: white;
    z-index: 1;
    transform: translateX(-50%);
}

.vib-collections.loading .vib.collection {
    opacity: .5;
    pointer-events: none;
}

.vib.collection {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.33em;
    font-family: Muli, sans-serif;
    font-weight: 200;
    font-size: 1.5em;
    align-items: center;
    text-align: initial;
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

.vib.collection .collection-item {
    flex: 0 0 calc(33.33% - (1.33em * 2 / 3));
    cursor: pointer;
}

.vib.collection .collection-item:empty {
    display: initial;
}

.vib.collection .collection-item.collection {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.vib.collection .collection-item.collection .collection-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 10px;
    overflow: hidden;
    flex-grow: 1;
    gap: .2em;
    margin-top: .5em;
}

.vib.collection .collection-item.collection .collection-images .collection-preview-image {
    flex-basis: calc(33.33% - (.2em * 2 / 3));
    align-self: flex-end;
    line-height: 0;
    position: relative;
    overflow: hidden;
}

.vib.collection .collection-item.collection .collection-images .collection-preview-image:nth-child(1) {
    flex-basis: 100%;
    align-self: initial;
}

.vib.collection .collection-item.collection .collection-images .collection-preview-image .item-sizer {
    height: 0;
    padding-bottom: 74.5%;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.vib.collection .collection-item.collection .collection-images .collection-preview-image img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    object-fit: cover;
    transition: 100ms ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vib.collection .collection-item.collection .last-preview-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    font-weight: 500;
    color: white;
    background-color: rgba(100, 100, 100, .4);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .vib.collection .collection-item.collection {
        font-size: 0.7em;
    }
}

.vib.collection .collection-item.collection .last-preview-overlay + .item-sizer + img {
    filter: blur(1px);
}

.vib.collection .collection-item.image {
    line-height: 0;
}

.vib.collection .collection-item.image .outer-image-container {
    padding-top: 80%;
    position: relative;
    height: 0;
}

.vib.collection .collection-item.image .inner-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
}

.vib.collection .collection-item.image img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 0;
    border-radius: 10px;
}

.vib.collection .filter::before {
    font-family: FontAwesome;
    content: '\f002';
    position: absolute;
    left: .8em;
    top: 2px;
    font-size: .8em;
    color: #555;
    line-height: 2.5em;
}

.vib.collection .filter {
    flex-basis: 100%;
    position: relative;
    display: none;
}

.vib.collection .filter-input {
    padding-left: 1.9em;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid lightgrey;
    border-radius: 10px;
    font-size: 1em;
    line-height: 2em;
}

.vib.collection .filter-input::placeholder {
    color: #888;
}

.vib.collection .search::before {
    font-family: FontAwesome;
    content: '\f002';
    position: absolute;
    left: .8em;
    top: 2px;
    font-size: .8em;
    color: #555;
    line-height: 2.5em;
}

.vib.collection .search {
    flex-basis: 100%;
    position: relative;
    display: inline-block;
}

.vib.collection .search-input {
    padding-left: 1.9em;
    width: 100%;
    box-sizing: border-box;
    border: 3px solid lightgrey;
    border-radius: 10px;
    font-size: 1em;
    line-height: 2em;
}

.vib.collection .search-input::placeholder {
    color: #888;
}

.vib.collection > a.load-more {
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-size: .8em;
}

.vib.collection > a.load-more:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 767px) {
    .vib-builder {
        font-size: 0.8em;
    }
}

.vib .breadcrumbs {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    color: #131416;
    font-size: 14px;
    width: 100%;
    align-items: center;
}

.vib .breadcrumbs .breadcrumbs__link {
    color: #131416;
}

.vib .breadcrumbs__separator {
    display: inline-block;
    margin: 0 0.75rem;
    color: #131416;
    opacity: 0.6;
}

.vib .breadcrumbs__link {
    text-decoration: none;
    cursor: pointer;
}

.vib .breadcrumbs__link:visited {
    color: #131416;
}

.vib .breadcrumbs__link:hover, .breadcrumbs__link:active, .breadcrumbs__link:focus {
    color: #8d9095;
    text-decoration: underline;
}

.vib .breadcrumbs__current {
    opacity: 0.6;
}


.vib * {
    box-sizing: border-box;
}

.vib.image {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
}

.product-img-box {
    width: 670px;
    text-align: center;
    display: inline-block;
}

.product-options {
    display: inline-block;
    padding: 2em;
    text-align: left;
}

.product-img-box ul {
    padding-inline-start: 0;
}

.product-img-box ul.small-images > li img {
    width: 730px;
    object-fit: contain;
}

.product-shop, div.product-options {
    flex: 30% 1 1;
}

@media only screen and (max-height: 810px) and (min-width: 1200px) {
    .product-img-box {
        width: 610px;
    }

    .product-img-box ul.small-images > li img {
        width: 600px;
    }
}

@media only screen and (max-height: 699px) and (min-width: 1200px) {
    .product-img-box {
        width: 460px;
    }

    .product-shop, div.product-options, .product-options-bottom {
        width: 580px;
    }

    .product-img-box ul.small-images > li img {
        width: 450px;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .product-img-box {
        width: 410px;
    }

    .product-shop, div.product-options, .product-options-bottom {
        width: 515px;
    }

    .product-img-box ul.small-images > li img {
        width: 400px;
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    .product-img-box {
        width: 310px;
        float: left;
    }

    .product-shop, div.product-options, .product-options-bottom {
        width: 380px;
    }

    .product-img-box ul.small-images > li img {
        width: 300px;
    }
}

@media only screen and (max-width: 767px) {
    .product-img-box {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    div.product-options {
        width: 90%;
    }

    .product-shop {
        width: 100%;
    }

    .product-img-box ul.small-images > li img {
        width: 100%;
    }

    .vib.collection {
        gap: 1em;
    }

    .vib.collection .collection-item {
        flex: 0 0 calc(50% - (1em / 0.7 * 1 / 2));
    }

    .vib.collection .search {
        font-size: 0.7em;
    }
}

@media only screen and (max-width: 334px) {
    .product-img-box {
        width: 285px;
    }

    div.product-options {
        width: 90%;
    }

    .product-shop {
        width: 100%;
    }

    .product-img-box ul.small-images > li img {
        width: 275px;
    }

    .product-img-box ul.thumbnail-images li {
        width: 93px;
    }
}

div.col-main.col-xs-12.col-sm-9 {
    width: 100%
}

.product-img-box > ul {
    overflow: hidden;
    white-space: nowrap;
}

.product-img-box ul > li {
    display: inline-block;
    padding: 1px;
}

.product-img-box ul.small-images {
    display: inline-block;
    position: relative;
    width: 100%;
}

.product-img-box ul.small-images > li {
    padding: 5px;
    cursor: pointer;
}

.product-img-box ul.thumbnail-images {
    position: relative;
    font-size: 0;
    overflow-x: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.product-img-box ul.thumbnail-images::-webkit-scrollbar {
    display: none;
}

.product-img-box ul.thumbnail-images li {
    width: 102px;
    opacity: 0.8;
    transition: opacity 0.4s ease-in-out;
    object-fit: contain;
    max-width: 28%;
    cursor: pointer;
    margin-bottom: 0;
}

.product-img-box ul.thumbnail-images li.selected {
    opacity: 1;
}

.product-img-box ul.thumbnail-images > li img {
    width: 100px;
}

.product-img-box ul.thumbnail-images li.selection-indicator {
    position: absolute;
    border: 2px dashed rgba(20, 20, 20, 0.7);
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
    height: 100%;
}

div.large-image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: rgba(128, 128, 128, 0.75);
    z-index: 1000;
    text-align: center;
}

div.large-image-popup .large-image-container {
    display: inline-block;
    position: relative;
    top: 50vh;
    transform: translateY(-50%);
}

div.large-image-popup .large-image-container .close {
    position: absolute;
    top: 0;
    right: 0;
    margin: -12px;
    padding: 20px;
    opacity: 1;
    cursor: pointer;
    font-family: FontAwesome;
    font-size: 20px;
    font-weight: 100;
    color: darkred;
    transition: color 0.2s ease-in-out;
}

div.large-image-popup .large-image-container .close:hover {
    color: red;
}

div.large-image-popup .large-image-container .scroll {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: 5px 5px 5px -12px;
    padding: 20px;
    opacity: 1;
    cursor: pointer;
    font-family: FontAwesome;
    font-size: 40px;
    font-weight: 100;
    color: #777;
    transition: color 0.2s ease-in-out;
    text-shadow: 2px 0 1px #fff, -2px 0 1px #fff, 0 2px 1px #fff, 0 -2px 1px #fff;
}

div.large-image-popup .large-image-container .scroll:hover {
    color: black;
}

div.large-image-popup .large-image-container .scroll.right {
    left: initial;
    right: 0;
    margin: 5px -12px 5px 5px;
}

div.large-image-popup .large-image-container img.large-image {
    max-width: 70vw;
    max-height: 70vh;
    border: 30px solid white;
}

@media only screen and (max-width: 600px) {
    div.large-image-popup .large-image-container img.large-image {
        max-width: 90vw;
        max-height: 90vh;
        border: 10px solid white;
    }
}

.extra-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0;
}

.extra-details span {
    flex: 1 1 33%;
    width: 33%;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.8em;
    padding: 2% 4%;
    line-height: 1em;
}

.extra-details span img {
    display: block;
    margin: 0 auto;
    max-width: 70%;
}

.extra-details p {
    flex: 0 0 100%;
}

.product-options-bottom {
    padding-bottom: 50px;
}

.product-shop p.required, .product-options-bottom .price-box {
    display: none;
}

#product-options-wrapper dl {
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .product-options-bottom {
        padding-bottom: 20px;
    }
}

.product-options dt label em {
    display: none;
}

@media only screen and (max-width: 991px) {
    .product-shop > .price-box .price {
        display: none;
    }
}

.afterpay-installments-amount {
    margin-bottom: 0.5em;
}

div.product-options dd {
    margin: 0;
    float: none;
}

.product-options dd.product-type {
    margin-bottom: 1em;
}

.product-options dd.product-type .scroll-area {
    display: flex;
    justify-content: space-between;
}

.product-options dd.product-type .product-type-option {
    text-align: center;
    display: inline-block;
    flex: 0 0 23%;
    cursor: pointer;
    font-size: 0.8em;
    text-transform: uppercase;
    color: black;
}

.product-options dd.product-type .product-type-option:hover {
    color: black;
}

.product-options dd.product-type .product-type-option img {
    display: inline-block;
    width: 100%;
    border: 1px solid lightgrey;
    margin: 1px 1px 6px;
    padding: 1px;
}

.product-options dd.product-type .product-type-option.selected img {
    display: inline-block;
    width: 100%;
    border: 2px solid black;
    padding: 0;
}

.product-options dd.product-type .scroll-left, .product-options dd.product-type .scroll-right {
    display: none;
}

.product-options dd.product-type .scroll-area {
    overflow: scroll;
    /* Hide scrollbars: */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.product-options dd.product-type .scroll-area::-webkit-scrollbar {
    display: none;
}

.product-options dd.product-type > div {
    position: relative;
}

.product-options dd.product-type .scroll-left {
    font-family: FontAwesome;
    left: -.8em;
    top: 0;
    height: 100%;
    position: absolute;
    font-size: 2em;
    cursor: pointer;
    padding: 0 0.2em 0.8em;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

.product-options dd.product-type .scroll-right {
    font-family: FontAwesome;
    right: -.8em;
    top: 0;
    height: 100%;
    vertical-align: middle;
    position: absolute;
    font-size: 2em;
    cursor: pointer;
    padding: 0 0.2em 0.8em;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

.product-options dd.product-type .product-type-option:not(:last-child) {
    margin-right: 2%;
}

.product-options .frame-controls {
    width: 100%;
    display: flex;
}

.product-options .frame-controls > span {
    padding-right: 15px;
    margin: 1em 0;
    flex: 1 1 60%;
}

.product-options .frame-controls > span.border-color {
    border-left: 1px solid lightgrey;
    padding-left: 15px;
    padding-right: 0;
    flex: 1 1 40%;
}

.product-options .frame-controls > span p {
    font-weight: bold;
    padding-bottom: 3px;
    margin-bottom: 5px;
}

.product-options .frame-controls > span .options {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.product-options .frame-controls > span .options .color-option {
    text-transform: uppercase;
    color: black;
    font-size: 0.8em;
    text-align: center;
    flex: 0 0 33%;
    cursor: pointer;
}

.product-options .frame-controls .frame-color.no-border {
    padding: 0;
}

.product-options .frame-controls > .frame-color.no-border p {
    text-align: left;
}

.product-options .frame-controls > .frame-color.no-border .options {
    justify-content: left;
}

.product-options .frame-controls > .frame-color.no-border .options .color-option {
    flex: initial;
}

.product-options .frame-controls > .frame-color.no-border .options .color-option button {
    margin: 0 5px;
}

.product-options .frame-controls > span .options .color-option.black > button {
    background-color: black;
}

.product-options .frame-controls > span .options .color-option.white > button {
    background-color: white;
}

.product-options .frame-controls > span .options .color-option.raw-oak > button {
    background-color: tan;
    background-position: center;
    background-size: cover;
}

.product-options .frame-controls > span .options .color-option > button {
    display: block;
    margin: 0 auto;
    width: 4em;
    height: 4em;
    border-radius: 2em;
    border: 1px solid lightgrey;
    padding: 0;
}

.product-options .frame-controls > span .options .color-option > button:hover {
    box-shadow: none;
}

.product-options .frame-controls > span .options .color-option.selected > button {
    border: 2px solid black;
}

@media only screen and (max-width: 500px) {
    .product-options .frame-controls > span .options .color-option > button {
        width: 3em;
        height: 3em;
        border-radius: 1.5em;
    }

    .product-options .frame-controls > span {
        padding-right: 10px;
    }

    .product-options .frame-controls > span.border-color {
        padding-left: 10px;
    }
}

.product-options button {
    cursor: pointer;
    width: 100%;
    margin-top: 1.5rem;
    position: relative;
}

.product-options .product-quantity {
    display: none;
}

.product-options .product-quantity input.quantity-field {
    box-sizing: content-box;
    width: 5ch;
    padding-right: .25rem;
    margin-bottom: 0;
}

.rte .vib-builder img {
    border: none;
}

div.standard-page--width-regular {
    max-width: 1080px;
}

div.standard-page--width-regular .standard-page__content {
    margin-top: 0;
}

section.standard-page__wrapper {
    border-top: none;
}

#main-content > .main__wrapper > .breadcrumbs {
    display: none;
}

.vib .product-options .add-to-cart .update {
    display: none;
}

.vib .product-options .add-to-cart .out-of-stock {
    display: none;
}

.vib .product-options .add-to-cart.out-of-stock {
    opacity: .5;
    pointer-events: none;
}

.vib .product-options .add-to-cart.update .add {
    display: none;
}

.vib .product-options .add-to-cart.update .update {
    display: initial;
}

.vib .product-options .add-to-cart.out-of-stock .add {
    display: none;
}

.vib .product-options .add-to-cart.out-of-stock .update {
    display: none;
}

.vib .product-options .add-to-cart.out-of-stock .out-of-stock {
    display: initial;
}

.wall-art-product-details-show-more {
    display: none;
}

@media only screen and (max-width: 767px) {
    .wall-art-product-details {
        overflow: hidden;
        max-height: 105px;
        position: relative;
        transition: max-height 0.5s ease-in-out;
    }

    .wall-art-product-details .fade-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 20px; /* Adjust this value based on how much you want to fade */
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
    }

    .wall-art-product-details-show-more {
        display: block;
        z-index: 1;
        text-align: center;
        width: 100%;
    }
}

@media only screen and (min-width: 768px) {
    .wall-art-product-details {
        max-height: initial!important;
    }
}

.flex-products-details {
    display: flex;
    flex-direction: column;
}

.flex-products-details > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1em;
    padding-bottom: 1.6em;
    border-bottom: solid 1px lightgrey;
}

.flex-products-details > div:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.flex-products-details > div > span {
    flex: 0 0 20%;
}

.flex-products-details > div > span > span {
    font-size: 1.1em;
    font-weight: bold;
    padding-left: 15px;
}

.flex-products-details > div > span > img {
    width: 94%;
    border: 1px solid grey;
    margin: 3% 3% 0;
}

.flex-products-details > div > ul {
    padding-right: 1em;
    list-style: initial;
    padding-left: 30px;
    margin-top: calc(1.3em + 1%);
    flex: 0 0 40%;
}

@media only screen and (max-width: 767px) {
    .flex-products-details {
        display: flex;
        flex-wrap: wrap;
    }

    .flex-products-details > div {
        flex: 0 0 50%;
        margin-bottom: 2em;
    }

    .flex-products-details > div > ul li {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 992px) {
    .flex-products-details > div > span > span {
        padding-left: 0;
        display: inline-block;
    }
}

.vib.collection .search-suggestion {
    width: 100%;
    background-color: darkgrey;
    color: white;
    font-size: 0.7em;
    text-align: center;
    font-weight: 400;
}

.vib.collection .search-suggestion span {
    padding: 0.5em;
    margin: 0.5em;
    border: solid 1px white;
    display: inline-block;
    width: calc(100% - 1em);
}

.vib.collection .search-suggestion span::before {
    font-family: FontAwesome;
    content: '\f0eb';
    font-size: 1.7em;
    vertical-align: sub;
    padding-right: .3em;
    line-height: 0;
}

.vib.collection .search-suggestion a {
    color: white;
}
