@font-face {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 400;
    /*src: url(https://happymaxballoons.com/wp-content/themes/twentytwenty/fonts/open-sans-v20-latin-regular.eot);*/
    /*src: local(""), url(https://happymaxballoons.com/wp-content/themes/twentytwenty/fonts/open-sans-v20-latin-regular.eot#iefix) format("embedded-opentype"), url(https://happymaxballoons.com/wp-content/themes/twentytwenty/fonts/open-sans-v20-latin-regular.woff2) format("woff2"), url(https://happymaxballoons.com/wp-content/themes/twentytwenty/fonts/open-sans-v20-latin-regular.woff) format("woff"), url(https://happymaxballoons.com/wp-content/themes/twentytwenty/fonts/open-sans-v20-latin-regular.ttf) format("truetype"), url(https://happymaxballoons.com/wp-content/themes/twentytwenty/fonts/open-sans-v20-latin-regular.svg#OpenSans) format("svg")*/
}

.no-scroll {
    overflow: hidden
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex
}

.flex > *.grow {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.flex.f-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center
}

.flex.f-vertical-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center
}

.flex.f-vertical-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start
}

.flex.f-vertical-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end
}

.flex.f-inline {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.flex.f-space-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start
}

.flex.f-space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between
}

.flex.f-space-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end
}

.flex.f-dir-column {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.flex.f-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.flex.f-equal-width > * {
    -webkit-flex-basis: 0;
    -moz-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

@media (max-width: 768px) {
    .flex.f-half-width {
        -webkit-box-direction: normal;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.flex.f-half-width > * {
    width: 50%
}

@media (max-width: 768px) {
    .flex.f-half-width > * {
        width: 100%
    }
}

@media (max-width: 768px) {
    .flex.f-third-width {
        -webkit-box-direction: normal;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.flex.f-third-width > * {
    width: 33.33%
}

@media (max-width: 768px) {
    .flex.f-third-width > * {
        width: 100%
    }
}

.anim-hover-bg {
    -webkit-transition: color .5s ease;
    -moz-transition: color .5s ease;
    -ms-transition: color .5s ease;
    -o-transition: color .5s ease;
    transition: color .5s ease;
    position: relative
}

.anim-hover-bg:before {
    background: #000;
    content: "";
    z-index: -1
}

.anim-hover-bg:hover {
    color: #fff
}

.anim-hover-bg.left-to-right:before {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 100%;
    -webkit-transition: right .5s ease;
    -moz-transition: right .5s ease;
    -ms-transition: right .5s ease;
    -o-transition: right .5s ease;
    transition: right .5s ease;
    height: 100%
}

.anim-hover-bg.left-to-right:hover:before {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0%
}

.anim-hover-bg.top-to-bottom:before {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 100%;
    -webkit-transition: bottom .5s ease;
    -moz-transition: bottom .5s ease;
    -ms-transition: bottom .5s ease;
    -o-transition: bottom .5s ease;
    transition: bottom .5s ease;
    width: 100%
}

.anim-hover-bg.top-to-bottom:hover:before {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0%
}

.anim-hover-bg.right-to-left:before {
    position: absolute;
    left: 100%;
    top: 0px;
    right: 0px;
    -webkit-transition: left .5s ease;
    -moz-transition: left .5s ease;
    -ms-transition: left .5s ease;
    -o-transition: left .5s ease;
    transition: left .5s ease;
    height: 100%
}

.anim-hover-bg.right-to-left:hover:before {
    position: absolute;
    left: 0%;
    top: 0px;
    right: 0px
}

.anim-hover-bg.bottom-to-top:before {
    position: absolute;
    left: 0px;
    top: 100%;
    bottom: 0px;
    -webkit-transition: top .5s ease;
    -moz-transition: top .5s ease;
    -ms-transition: top .5s ease;
    -o-transition: top .5s ease;
    transition: top .5s ease;
    width: 100%
}

.anim-hover-bg.bottom-to-top:hover:before {
    position: absolute;
    left: 0px;
    top: 0%;
    bottom: 0px
}

.anim-hover-border {
    position: relative
}

.anim-hover-border:before {
    background: #000;
    content: "";
    height: 1px
}

.anim-hover-border.left-to-right:before {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 100%;
    -webkit-transition: right .5s ease;
    -moz-transition: right .5s ease;
    -ms-transition: right .5s ease;
    -o-transition: right .5s ease;
    transition: right .5s ease
}

.anim-hover-border.left-to-right:hover:before {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0%
}

.anim-hover-border.right-to-left:before {
    position: absolute;
    bottom: 0px;
    left: 100%;
    right: 0px;
    -webkit-transition: left .5s ease;
    -moz-transition: left .5s ease;
    -ms-transition: left .5s ease;
    -o-transition: left .5s ease;
    transition: left .5s ease
}

.anim-hover-border.right-to-left:hover:before {
    position: absolute;
    bottom: 0px;
    left: 0%;
    right: 0px
}

.visually-hidden {
    display: none;
    opacity: 0;
    visibility: hidden
}

.button, button, input[type=submit], input[type=reset], input[type=button] {
    font-size: 14px;
    background: #bcdbc8;
    color:#fff !important;
}
.banner-info .button{
    background: #bcdbc8;
}
.container, .container--no-padding {
    margin-left: auto;
    margin-right: auto;
    width: 1440px;
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    margin-top:50px
}

@media (max-width: 1024px) {
    .container, .container--no-padding {
        padding-left: 30px;
        padding-right: 30px
    }
}

@media (max-width: 600px) {
    .container, .container--no-padding {
        padding-left: 20px;
        padding-right: 20px
    }

    .input-form-list{
        width:80%;
    }
}

.container--sm {
    margin-left: auto;
    margin-right: auto;
    width: 1210px;
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px
}

@media (max-width: 1024px) {
    .container--sm {
        padding-left: 30px;
        padding-right: 30px
    }
}

@media (max-width: 600px) {
    .container--sm {
        padding-left: 20px;
        padding-right: 20px
    }
}

.container--no-padding {
    padding-left: 0;
    padding-right: 0
}

@media (min-width: 321px) {
    .mobile-small-only {
        display: none !important
    }
}

@media (min-width: 481px) {
    .mobile-only {
        display: none !important
    }
}

@media (min-width: 601px) {
    .mobile-large-only {
        display: none !important
    }
}

@media (min-width: 769px) {
    .tablet-only {
        display: none !important
    }
}

@media (min-width: 1025px) {
    .small-desktop-only {
        display: none !important
    }
}

@media (min-width: 1201px) {
    .medium-desktop-only {
        display: none !important
    }
}

@media (min-width: 1441px) {
    .large-desktop-only {
        display: none !important
    }
}

@media (max-width: 1440px) {
    .above-large-desktop {
        display: none !important
    }
}

@media (max-width: 1200px) {
    .above-medium-desktop {
        display: none !important
    }
}

@media (max-width: 1024px) {
    .above-small-desktop {
        display: none !important
    }
}

@media (max-width: 768px) {
    .above-tablet {
        display: none !important
    }
}

@media (max-width: 600px) {
    .above-mobile-large {
        display: none !important
    }
}

@media (max-width: 480px) {
    .above-mobile {
        display: none !important
    }
}

@media (max-width: 320px) {
    .above-mobile-small {
        display: none !important
    }
}

.m-0 {
    margin: 0
}

.p-0 {
    padding: 0
}

.m-t-0 {
    margin-top: 0
}

.p-t-0 {
    padding-top: 0
}

.m-b-0 {
    margin-bottom: 0
}

.p-b-0 {
    padding-bottom: 0
}

.p-m {
    padding-top: 50px;
    padding-bottom: 50px
}

.p-l {
    padding-top: 60px;
    padding-bottom: 60px
}

.p-s {
    padding-top: 40px;
    padding-bottom: 40px
}

.p-t-s {
    padding-top: 40px
}

.p-t-m {
    padding-top: 50px
}

.p-t-l {
    padding-top: 60px
}

.p-b-s {
    padding-bottom: 40px
}

.p-b-m {
    padding-bottom: 50px
}

.p-b-l {
    padding-bottom: 60px
}

.p-l-s {
    padding-left: 40px
}

.p-l-m {
    padding-left: 50px
}

.p-l-l {
    padding-left: 60px
}

.p-r-s {
    padding-right: 40px
}

.p-r-m {
    padding-right: 50px
}

.p-r-l {
    padding-right: 60px
}

.m-a {
    margin: auto
}

.m-s {
    margin-top: 40px;
    margin-bottom: 40px
}

.m-m {
    margin-top: 50px;
    margin-bottom: 50px
}

.m-l {
    margin-top: 60px;
    margin-bottom: 60px
}

.m-t-s {
    margin-top: 40px
}

.m-t-m {
    margin-top: 50px
}

.m-t-l {
    margin-top: 60px
}

.m-b-xs {
    margin-bottom: 20px
}

.m-b-s {
    margin-bottom: 40px
}

.m-b-m {
    margin-bottom: 50px
}

.m-b-l {
    margin-bottom: 60px
}

.m-l-s {
    margin-left: 40px
}

.m-l-m {
    margin-left: 50px
}

.m-l-l {
    margin-left: 60px
}

.m-r-s {
    margin-right: 40px
}

.m-r-m {
    margin-right: 50px
}

.m-r-l {
    margin-right: 60px
}

.bundle-builder-app--bundle--name {
    color: #bcdbc8;
    font-family: Farnham Disp Lt It;
    font-style: italic;
    font-size: 38px
}

.bundle-builder-app--bundle--description span {
    font-family: futura-pt, sans-serif
}

.bundle-builder-app--bundle--total-price {
    color: #bcdbc8
}

.bundle-builder-app--product-modal--content .bundle-builder-app--bundle--product-name {
    font-size: 28px
}

.bundle-builder-app--bundle--product-price .money {
    color: #bcdbc8;
    font-family: futura-pt, sans-serif;
    font-weight: 600
}

.bundle-builder-app--product-modal--backdrop .bundle-builder-app--product-modal--content .bundle-builder-app--button.bundle-builder-app--bundle--product-add-button:not(.bundle-builder-app--button--increase):not(.bundle-builder-app--button--decrease):not(.bundle-builder-app--bundle--contents-subtract) {
    background-color: #bcdbc8 !important
}

.bundle-builder-app--product-modal--backdrop .bundle-builder-app--product-modal--content .bundle-builder-app--button.bundle-builder-app--bundle--product-add-button:not(.bundle-builder-app--button--increase):not(.bundle-builder-app--button--decrease):not(.bundle-builder-app--bundle--contents-subtract):hover {
    background-color: #bcdbc8 !important;
    opacity: .8
}

.bundle-builder-app--product--quantity, .bundle-builder-app--bundle--contents--quantity {
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    border-top: 1px solid #bcdbc8 !important;
    border-bottom: 1px solid #bcdbc8 !important
}

.bundle-builder-app--product--quantity, .bundle-builder-app--bundle--contents--quantity button {
    color: #bcdbc8
}

.bundle-builder-app--product--quantity:hover, .bundle-builder-app--bundle--contents--quantity button:hover {
    opacity: 1 !important;
    color: #bcdbc8 !important
}

#bundle-builder-app--bundle-contents-modal .bundle-builder-app--bundle--contents li.bundle-builder-app--bundle--contents-item button.bundle-builder-app--button.bundle-builder-app--bundle--contents-remove-button {
    background-color: #bcdbc8 !important;
    margin-top: 10px
}

#bundle-builder-app--bundle-contents-modal .bundle-builder-app--bundle--contents li.bundle-builder-app--bundle--contents-item button.bundle-builder-app--button.bundle-builder-app--bundle--contents-remove-button:hover {
    background-color: #bcdbc8 !important;
    opacity: .8
}

#bundle-builder-app--bundle-contents-modal .bundle-builder-app--bundle-contents-modal--footer button.bundle-builder-app--button.bundle-builder-app--bundle--add-to-cart-button {
    background-color: #bcdbc8 !important
}

#bundle-builder-app--bundle-contents-modal .bundle-builder-app--bundle-contents-modal--footer button.bundle-builder-app--button.bundle-builder-app--bundle--add-to-cart-button:hover {
    background-color: #bcdbc8 !important;
    opacity: .8
}

.bundle-builder-app--bundle--contents--quantity {
    max-width: 100% !important
}

.bundle-builder-app--bundle--contents-price {
    color: #bcdbc8 !important
}

.bundle-builder-app--bundle--product-auto-height img, .bundle-builder-app--bundle--product-auto-height .bundle-builder-app--bundle--contents-image, .bundle-builder-app--bundle--contents-auto-height img, .bundle-builder-app--bundle--contents-auto-height .bundle-builder-app--bundle--contents-image {
    height: auto !important;
    margin-bottom: 10px !important
}

#gsGroups {
    width: 100%;
    padding: 0
}

.gs__cart-col-2 {
    width: auto !important
}

.gridlock .row [class*=desktop-].review-feefo .feefowidget-viewport-desktop.feefowidget-viewport-desktop-tablet {
    float: none
}

#product-right #product-description .rte h2 {
    font-weight: 700
}

[src="https://giftship.app/build/assets/images/gift.d69f1629.svg"] {
    display: none
}

body.about-us .shopify-section--about-us:not(.shopify-section--image-with-text-overlay):not(.shopify-section--full-width-banner) {
    margin-left: auto;
    margin-right: auto;
    width: 1460px;
    max-width: 100%;
    padding-left: 70px;
    padding-right: 70px
}

@media (max-width: 1024px) {
    body.about-us .shopify-section--about-us:not(.shopify-section--image-with-text-overlay):not(.shopify-section--full-width-banner) {
        padding-left: 30px;
        padding-right: 30px
    }
}

@media (max-width: 600px) {
    body.about-us .shopify-section--about-us:not(.shopify-section--image-with-text-overlay):not(.shopify-section--full-width-banner) {
        padding-left: 30px;
        padding-right: 30px
    }
}

body.about-us .shopify-section--image-with-text-overlay {
    position: relative
}

@media (min-width: 769px) {
    body.about-us .shopify-section--image-with-text-overlay {
        margin-left: auto;
        margin-right: auto;
        width: 1460px;
        max-width: 100%;
        padding-left: 70px;
        padding-right: 70px
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    body.about-us .shopify-section--image-with-text-overlay {
        padding-left: 30px;
        padding-right: 30px
    }
}

@media (min-width: 769px) and (max-width: 600px) {
    body.about-us .shopify-section--image-with-text-overlay {
        padding-left: 20px;
        padding-right: 20px
    }
}

body.about-us .shopify-section--image-with-text-overlay .image-with-text-overlay__image-container {
    position: relative;
    width: 100%;
    height: 100%
}

body.about-us .shopify-section--image-with-text-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

body.about-us .shopify-section--image-with-text-overlay .image-with-text-overlay__image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

body.about-us .shopify-section--image-with-text-overlay .image-with-text-overlay__text-overlay {
    position: absolute;
    left: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translateY(-50%);
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
    font-weight: 400;
    font-family: Farnham Disp Lt It;
    font-style: italic
}

body.about-us .shopify-section--copy .copy__main-copy-wrapper {
    margin: auto;
    max-width: 946px
}

body.about-us .shopify-section--copy .copy__main-copy-wrapper p {
    margin-bottom: 20px;
    line-height: 27px;
    font-weight: 400
}

body.about-us .shopify-section--copy .copy__end-note, body.about-us .shopify-section--copy .copy__link, body.about-us .shopify-section--copy .copy__signed-by-text-wrapper p {
    line-height: normal;
    font-weight: 600
}

body.about-us .shopify-section--copy .copy__link {
    text-decoration: underline
}

body.about-us .shopify-section--copy .copy__signature-image {
    margin: auto;
    width: 100%
}

body.about-us .shopify-section--image-with-text-to-side .image-with-text-to-side__section-heading, body.about-us .shopify-section--image-with-text-to-side .image-with-text-to-side__title {
    font-family: Farnham Disp Lt It;
    font-style: italic
}

body.about-us .shopify-section--image-with-text-to-side .image-with-text-to-side__section-heading, body.about-us .shopify-section--image-with-text-to-side img, body.about-us .shopify-section--image-with-text-to-side .image-with-text-to-side__text {
    margin-bottom: 40px
}

@media (min-width: 769px) {
    body.about-us .shopify-section--image-with-text-to-side .image-with-text-to-side__block-container {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex
    }
}

@media (min-width: 769px) {
    body.about-us .shopify-section--image-with-text-to-side .image-with-text-to-side__block-container.image-to-left .image-with-text-to-side__text-container {
        margin-left: auto;
        padding-left: 55px
    }
}

@media (min-width: 769px) {
    body.about-us .shopify-section--image-with-text-to-side .image-with-text-to-side__block-container.image-to-right img {
        order: 1
    }
}

@media (min-width: 769px) {
    body.about-us .shopify-section--image-with-text-to-side .image-with-text-to-side__block-container.image-to-right .image-with-text-to-side__text-container {
        margin-right: auto;
        padding-right: 55px
    }
}

@media (min-width: 769px) {
    body.about-us .shopify-section--image-with-text-to-side img {
        margin-bottom: 10px;
        width: 50%;
        object-fit: cover
    }
}

@media (min-width: 890px) {
    body.about-us .shopify-section--image-with-text-to-side img {
        width: 593px;
        height: 486px
    }
}

@media (min-width: 769px) {
    body.about-us .shopify-section--image-with-text-to-side .image-with-text-to-side__text-container {
        width: 50%;
        padding-top: 49px
    }
}

body.about-us .shopify-section--image-with-text-to-side .image-with-text-to-side__title {
    margin-bottom: 20px
}

body.about-us .shopify-section--image-with-text-to-side .image-with-text-to-side__text {
    line-height: 27px;
    font-weight: 400
}

body.about-us .shopify-section--full-width-banner {
    padding: 35px 43px;
    text-align: center
}

@media (min-width: 769px) {
    body.about-us .shopify-section--full-width-banner {
        padding-top: 70px;
        padding-bottom: 70px
    }
}

body.about-us .shopify-section--full-width-banner .full-width-banner__quote {
    max-width: 946px;
    margin: 0 auto 40px;
    line-height: 40px;
    font-family: Farnham Disp Lt It;
    font-style: italic
}

body.about-us .shopify-section--full-width-banner .full-width-banner__signed-by-text-wrapper {
    font-weight: 600;
    line-height: normal
}

body.about-us .shopify-section--image-with-text-to-bottom .image-with-text-to-bottom__section-heading, body.about-us .shopify-section--image-with-text-to-bottom .image-with-text-to-bottom__title {
    font-family: Farnham Disp Lt It;
    font-style: italic
}

@media (min-width: 769px) {
    body.about-us .shopify-section--image-with-text-to-bottom .image-with-text-to-bottom__container {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex
    }
}

body.about-us .shopify-section--image-with-text-to-bottom .image-with-text-to-bottom__section-heading, body.about-us .shopify-section--image-with-text-to-bottom img, body.about-us .shopify-section--image-with-text-to-bottom .image-with-text-to-bottom__text {
    margin-bottom: 40px
}

body.about-us .shopify-section--image-with-text-to-bottom .image-with-text-to-bottom__block-container {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex
}

@media (min-width: 769px) {
    body.about-us .shopify-section--image-with-text-to-bottom .image-with-text-to-bottom__block-container {
        width: 47%
    }
}

@media (min-width: 1360px) {
    body.about-us .shopify-section--image-with-text-to-bottom .image-with-text-to-bottom__block-container {
        width: 595px
    }
}

body.about-us .shopify-section--image-with-text-to-bottom img {
    width: 100%
}

@media (min-width: 769px) {
    body.about-us .shopify-section--image-with-text-to-bottom img {
        height: 499px;
        object-fit: cover
    }
}

body.about-us .shopify-section--image-with-text-to-bottom .image-with-text-to-bottom__title {
    margin-bottom: 20px
}

body.about-us .shopify-section--image-with-text-to-bottom .image-with-text-to-bottom__text {
    line-height: 27px;
    font-weight: 400
}

body.about-us .shopify-section--dual-img-with-txt-below .dual-img-with-txt-below__section-heading {
    margin-bottom: 40px;
    font-family: Farnham Disp Lt It;
    font-style: italic
}

body.about-us .shopify-section--dual-img-with-txt-below .dual-img-with-txt-below__img-container img {
    margin-bottom: 41px
}

@media (min-width: 769px) {
    body.about-us .shopify-section--dual-img-with-txt-below .dual-img-with-txt-below__img-container img {
        width: 47%;
        height: 100%;
        object-fit: cover
    }
}

@media (min-width: 769px) {
    body.about-us .shopify-section--dual-img-with-txt-below .dual-img-with-txt-below__img-container {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex
    }
}

body.about-us .shopify-section--dual-img-with-txt-below .dual-img-with-txt-below__text {
    margin: auto;
    max-width: 1051px;
    line-height: 27px;
    font-weight: 400
}

body.collection #image-collection-banner.image-with-text-overlay .image-overlay p {
    letter-spacing: 1px;
    max-width: 460px;
    margin: 15px auto
}

body.collection #image-collection-banner.image-with-text-overlay .image-overlay h1 {
    font-weight: 400
}

body.collection .image-with-text-overlay.image-with-text-overlay--noimage .image-wrapper {
    height: auto
}

body.collection .image-with-text-overlay.image-with-text-overlay--noimage .image-wrapper:after {
    display: none
}

@media (max-width: 768px) {
    body.collection .image-with-text-overlay.image-with-text-overlay--noimage .image-wrapper {
        height: auto !important;
        padding-bottom: 0
    }
}

body.collection .image-overlay.image-overlay--noimage {
    margin-top: 50px;
    position: static;
    transform: none
}

body.collection div.so.icn {
    text-transform: uppercase
}

body.collection .readmore__cta, body.collection .readless__cta {
    display: none
}

body.collection #image-collection-banner .image-wrapper.readmore {
    height: auto !important
}

body.collection #image-collection-banner .image-wrapper.readmore:after {
    display: none
}

body.collection #image-collection-banner .image-wrapper.readmore .readless__cta, body.collection #image-collection-banner .image-wrapper.readmore .readmore__cta {
    display: block;
    color: #bcdbc8;
    font-weight: 800;
    text-align: center
}

body.collection #image-collection-banner .image-wrapper.readmore .readless__cta.hidden, body.collection #image-collection-banner .image-wrapper.readmore .readmore__cta.hidden {
    display: none
}

body.collection #image-collection-banner .image-wrapper.readmore .image-overlay {
    position: static
}

body.collection #image-collection-banner .image-wrapper.readmore .banner__content {
    height: 33px;
    overflow: hidden
}

body.collection #image-collection-banner .image-wrapper.readmore .banner__content.active {
    height: auto
}

.collection-filter {
    display: block
}

.collection-slider {
    position: relative;
    margin: auto;
    max-width: 1300px;
    overflow: hidden
}

.collection-slider .slick-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex
}

.collection-slider .slick-slide {
    height: auto;
    width: 100%;
    margin: 0 5px
}

.contact-page .flexbox .col-50 h1.page-title {
    font-family: Farnham Disp Lt It;
    font-style: italic
}

body.blog #page .article-info h2 {
    font-family: Farnham Disp Lt It;
    font-style: italic;
    font-weight: 400
}

#article-body .share-icons {
    display: flex
}

#article-body .share-icons a {
    max-width: 30px
}

.cart-container h2 {
    font-weight: 700
}

.search-open {
    overflow-y: hidden
}

#shopify-section-header {
    position: relative;
    z-index: 100
}

.header-wrapper {
    position: relative
}

.stuckMenu {
    background-color: #ddede3
}

.search-open #sticky_search {
    display: block;
    z-index: 999
}

#search_box input {
    margin-bottom: 0;
    padding-left: 15px;
    font-family: Farnham Disp Lt It;
    font-style: italic;
    position: relative;
    z-index: 1
}

#search_icon {
    background: white;
    display: block;
    height: auto;
    line-height: 0;
    margin-bottom: 0;
    padding: 0;
    transition: 0s;
    width: auto
}
.user-icon{
    height: 25px;
    width: 25px
}
#search_icon:hover{
    background: none  !important;
}
#search_icon img {
    height: 25px;
    width: 25px !important;
}

#search_icon2 img {
    height: 25px;
    width: 25px !important;
}
.user-icon img{
    height: 25px;
    width: 24px
}
.header-section .header-wrapper .my-cart-link img{
    height: 25px;
    width: 24px
}
.search-open #search_icon {
    background: transparent;
    position: relative;
    z-index: 100
}

.search-open .overlay#search-overlay {
    opacity: 1;
    visibility: visible;
    z-index: 99
}

.sticky-search-container .search-input {
    margin-top: 0
}

@media only screen and (max-width: 1199px) {
    #sticky_search .mini-cart, #sticky_search i {
        display: none
    }
}

@media only screen and (min-width: 1200px) {
    nav > ul {
        display: flex;

    }

    nav > ul:after {
        display: none !important
    }

    .header-wrapper ul#main-nav, .header-wrapper .stuckMenu #main-nav {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between
    }

    ul#main-nav li a {
        padding: 0 10px
    }

    nav > ul {
        display: flex;
        justify-content: space-between
    }

    nav.isStuck {
        top: 0px !important
    }

    nav.isStuck ~ #sticky_search #search_box input {
        border: none;
        margin: 0 auto;
        padding: 0 50px 0 0
    }

    nav:not(.isStuck) ~ #sticky_search #search_box .fa-search {
        display: none
    }

    nav.isStuck ~ #sticky_search #search_box .fa-search {
        background-image: url(../../../../s/files/1/0254/2030/0362/files/search-icon.svg);
        font-size: 0;
        height: 20px;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px
    }

    #sticky_search .mini-cart {
        display: none
    }

    #sticky_search #search_box {
        width: 100%;
        position: relative
    }

    #search_box i {
        padding: 10px
    }

    #sticky_search {
        background: white;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        display: none;
        flex-flow: nowrap;
        z-index: 9999
    }

    .isStuck ~ #sticky_search {
        display: none
    }

    .isStuck .megamenu {
    }

    .sticky-search-container {
        display: none
    }

    .isStuck .sticky-search-container {
        height: 36px;
        display: none;
        background-color: #fff
    }

    .search-open #sticky_search {
        position: absolute;
        top: 100%;
        display: block
    }

    #sticky_search > div {
        display: flex;
        max-width: 1200px;
        margin: 0 auto
    }

    .isStuck ~ #sticky_search .mini-cart {
        display: flex;
        align-items: center;
        padding: 10px 15px 10px 10px;
        flex: 0 0 38px;
        position: relative
    }

    #sticky_search div#crt {
        position: absolute;
        top: 20px;
        right: 0
    }

    #sticky_search .overlay.active {
        display: none
    }
}

@media screen and (min-width: 1680px) {
    #sticky_search > div {
        max-width: 1400px
    }
}

#sticky_search {
    display: none
}

@media only screen and (max-width: 1199px) {
    #sticky_search {
        z-index: 99;
        position: relative
    }
}

#minicart-dropdown .contents ol.items li.item {
    position: relative
}

.header-section .header-wrapper .my-cart-link span {
    position: absolute;
    top: 11px;
    transform: translate(2px)
}

@media (max-width: 768px) {
    .header-section .header-wrapper .header-wrapper__container > img {
        display: none
    }
}

@media (max-width: 768px) {
    .header-section .header-wrapper .header-wrapper__container #logo {
        padding: 0
    }
}

@media (max-width: 768px) {
    .header-section .header-wrapper .cust {
        display: none
    }
}

.header-section header {
    padding: 0
}

.header-section .row .desktop-4:not(#logo) {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1
}

#crt {
    display: none
}

.popup-opener.active + #crt {
    display: block
}

.isScrolled {
    width: 100%;
    position: fixed !important
}

.isScrolledCon {
    justify-content: flex-end;
    display: flex !important;
    align-items: center
}

.isScrolledCon .my-cart-link {
    margin-left: 18px;
    margin-right: 8.5%
}

@media (min-width: 1600px) {
    .isScrolledCon .my-cart-link {
        margin-right: 13.5%
    }
}

.show {
    display: block !important
}

.show #minicart-dropdown {
    position: fixed;
    right: 8.5%
}

.hidden {
    display: none
}

.info-usp-section {
    background-color: #ffdf20;
    padding: 10px 2%;
    display: flex;
    align-items: center;
    justify-content: space-around
}

@media (max-width: 480px) {
    .info-usp-section {
        display: none
    }
}

.info-usp-section .info-usp-section__item {
    text-align: center;
    color: #f17b84;
    padding: 0 10px;
    margin: 5px auto;
    width: 100%;
    font-size: 12px;
    text-transform: uppercase
}

.info-usp-section .info-usp-section__item:not(:first-child) {
    border-left: 1px solid #f17b84
}

.info-usp-section .info-usp-section__item a {
    color: #f17b84
}

@media (max-width: 768px) {
    .info-usp-section {
        flex-wrap: wrap;
        padding: 0 2%
    }

    .info-usp-section .info-usp-section__item {
        margin: 0 auto;
        padding: 10px 0
    }

    .info-usp-section .info-usp-section__item:not(:first-child) {
        border-left: none;
        border-top: 1px solid #ffda00
    }
}

.header-wrapper__container {
    position: relative
}

.header-dot {
    position: absolute;
    display: block;
    z-index: 1
}
.header-dot__blue--one,.header-dot__blue--two,.header-dot__blue--three{
    background: #bcdbc8;
    width: 15px;
    height: 15px;
    border-radius: 100%;
}
.header-dot__pink--two,.header-dot__pink--one,.header-dot__pink--three{
    background: #f9e0de;
    width: 15px;
    height: 15px;
    border-radius: 100%;
}
.header-dot__pink--one{
    width: 20px;
    height: 20px;
}

.header-dot__yellow--two,.header-dot__yellow--one,.header-dot__yellow--three{
    background: #fef49f;
    width: 15px;
    height: 15px;
    border-radius: 100%;
}
.header-dot__blue--one {
    width: 15px;
    top: 30%;
    left: 5%
}

.header-dot__blue--two {
    width: 15px;
    top: 50%;
    left: 10%
}

.header-dot__blue--three {
    width: 15px;
    top: 40%;
    left: 76%
}

.header-dot__pink--one {
    width: 20px;
    top: 30%;
    left: 15%
}

.header-dot__pink--two {
    width: 15px;
    top: 60%;
    left: 30%
}

.header-dot__pink--three {
    width: 15px;
    top: 30%;
    left: 65%
}

.header-dot__yellow--one {
    width: 15px;
    top: 35%;
    left: 21%
}

.header-dot__yellow--two {
    width: 15px;
    top: 62%;
    left: 69%
}

.header-dot__yellow--three {
    width: 15px;
    top: 25%;
    left: 84%
}

@media (max-width: 768px) {
    .header-dot__blue--one, .header-dot__pink--one, .header-dot__pink--three, .header-dot__yellow--two {
        display: none
    }
}

.header-wrapper .stuckMenu #main-nav .dropdown .megamenu .menu-cover h4 {
    font-size: 14px
}

#footer-wrapper {
    position: relative
}

.footer-dot {
    position: absolute;
    display: block;
    opacity: .4;
    z-index: -1
}

.footer-dot__blue--one {
    width: 15px;
    top: 30%;
    left: 10%
}

.footer-dot__blue--two {
    width: 15px;
    top: 40%;
    left: 45%
}

.footer-dot__blue--three {
    width: 15px;
    top: 55%;
    left: 73%
}

.footer-dot__pink--one {
    width: 20px;
    top: 70%;
    left: 20%
}

.footer-dot__pink--two {
    width: 15px;
    top: 60%;
    left: 80%
}

.footer-dot__pink--three {
    width: 15px;
    top: 30%;
    left: 40%
}

.footer-dot__yellow--one {
    width: 15px;
    top: 35%;
    left: 55%
}

.footer-dot__yellow--two {
    width: 15px;
    top: 38%;
    left: 77%
}

.footer-dot__yellow--three {
    width: 15px;
    top: 25%;
    left: 16%
}

@media (max-width: 768px) {
    .footer-dot__blue--one, .footer-dot__pink--one, .footer-dot__pink--three, .footer-dot__yellow--two {
        display: none
    }
}

.footer-media img {
    width: 30px;
    max-width: 30px
}

@media (min-width: 741px) {
    .cart-template--tablet-only {
        display: none !important
    }
}

@media (max-width: 740px) {
    .cart-template--desktop-only {
        display: none !important
    }
}

@media (max-width: 767px) {
    .item-box {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex
    }
}

@media (max-width: 767px) {
    .cart-image img {
        max-width: 110px
    }
}

.cart-title {
    width: 100%
}

@media (max-width: 767px) {
    .cart-title {
        text-align: left
    }
}

#shopping-cart td, #shopping-cart th {
    padding: 10px;
    border-bottom: 0
}

@media (min-width: 768px) {
    #shopping-cart td, #shopping-cart th {
        border-bottom: 1px solid #f0f0f0
    }
}

#shopping-cart tr {
    border-bottom: 1px solid #c5c5c5
}

@media (max-width: 767px) {
    .cart-quantity {
        margin-left: 120px;
        width: 159px
    }
}

@media (max-width: 767px) {
    .cart-quantity .qtyBox {
        width: 159px
    }
}

@media (max-width: 767px) {
    .cart-quantity .qtyBox span {
        padding: 0 !important
    }
}

@media (max-width: 740px) {
    .cart-total {
        display: none !important
    }
}

.item-inventory {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 20px 0
}

.item-inventory .qtyBox {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex: 1;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #bcdbc8
}

.item-inventory .qtyBox span {
    padding: 8px;
    font-size: 14px;
    text-align: center;
    color: #bcdbc8
}

.item-inventory .qtyBox span.adjust {
    cursor: pointer
}

.item-inventory .qtyBox span.qtyinput {
    cursor: not-allowed
}

.item-inventory .cart-remove {
    flex: 1;
    text-align: center
}

.featured-collection-block {
    text-align: center
}

@media (max-width: 739px) {
    .featured-collection-block:not(.featured-collection-block--full-width) {
        margin-bottom: 30px !important
    }
}

@media (min-width: 740px) {
    .featured-collection-block {
        margin-bottom: 30px !important;
        padding: 34px
    }
}

@media (max-width: 739px) {
    .featured-collection-block--half-width {
        padding: 24px
    }
}

@media (max-width: 739px) {
    .featured-collection-block--full-width {
        width: 100% !important;
        padding: 60px 70px !important
    }
}

.featured-collection-block__background-image, .featured-collection-block__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.featured-collection-block__title, .featured-collection-block__subtitle {
    margin-bottom: 30px
}

.featured-collection-block__title, .featured-collection-block__subtitle, .featured-collection-block__cta {
    z-index: 1
}

.featured-collection-block__background-image {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.featured-collection-block__title {
    font-size: 30px;
    font-family: Farnham Disp Lt It;
    font-style: italic
}

@media (max-width: 739px) {
    .featured-collection-block--half-width .featured-collection-block__title {
        margin-bottom: 10px;
        font-size: 18px
    }
}

.featured-collection-block__subtitle {
    font-size: 15px
}

@media (max-width: 739px) {
    .featured-collection-block--half-width .featured-collection-block__subtitle {
        margin-bottom: 20px;
        font-size: 12px
    }
}

.featured-collection-block__cta {
    display: inline-block;
    -webkit-transition: background .5s ease;
    -moz-transition: background .5s ease;
    -ms-transition: background .5s ease;
    -o-transition: background .5s ease;
    transition: background .5s ease;
    border-width: 1px 0;
    border-style: solid;
    margin: 0 auto;
    padding: 7px 40px
}

@media (max-width: 739px) {
    .featured-collection-block--half-width .featured-collection-block__cta {
        padding: 1px 15px;
        font-size: 12px
    }
}

.collection-tiles .tile-wrapper .flexbox .item-tile {
    display: block;
    max-width: inherit;
    -webkit-box-flex: inherit;
    -webkit-flex: inherit;
    -moz-box-flex: inherit;
    -moz-flex: inherit;
    -ms-flex: inherit;
    flex: inherit
}

.collection-tiles__carousel .owl-controls.clickable {
    top: calc(50% - 10px)
}

.homepage-promo .btn-border {
    font-weight: 700 !important
}

.story__image img {
    width: 100%
}

.story__title {
    font-family: Farnham Disp Lt It;
    font-style: italic;
    font-weight: 400;
    font-weight: 400 !important;
    font-size: 48px;
    display: block;
    color: #bcdbc8;
    padding: 0 20px;
    margin-top: 20px
}

@media (max-width: 768px) {
    .story__title {
        font-size: 34px;
        text-align: center
    }
}

.story__content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 10px 30px
}

.story__copy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center
}

.story__text {
    font-family: futura-pt, sans-serif;
    font-size: 16px !important;
    color: #58595b;
    font-weight: 400;
    margin: 30px 0;
    padding: 0 20px;
    line-height: 1.2
}

.story__text p, .story__text span {
    font-family: futura-pt, sans-serif;
    font-size: 16px !important;
    color: #58595b;
    font-weight: 400;
    line-height: 1.2
}

@media (max-width: 768px) {
    .story__text {
        text-align: center;
        margin: 15px 0
    }
}

.story__signature {
    padding: 30px 40px;
    text-align: right
}

@media (max-width: 768px) {
    .story__signature {
        padding: 10px 30px
    }
}

.story__signature .signature-text {
    font-family: relation-one;
    font-size: 35px;
    color: #bcdbc8;
    text-align: right;
    transform: rotate(-10deg)
}

.story__text, .story__title, .story__signature {
    width: 100%
}

.trustpilot-widget:not(.row) {
    margin-left: 1%;
    margin-right: 1%
}

.welcome__wrap {
    float: initial !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 10px 0 20px
}

@media (max-width: 480px) {
    .welcome__image {
        padding-top: 10px
    }
}

.welcome__image img {
    width: 100%;
    border-radius: 100%
}

.welcome__title {
    font-family: Farnham Disp Lt It;
    font-style: italic;
    font-weight: 400 !important;
    font-size: 40px;
    display: block;
    color: #bcdbc8;
    padding: 0 20px;
    margin-top: 20px;
    text-align: center;
    width: 100%
}

@media (max-width: 480px) {
    .welcome__title {
        font-size: 28px
    }
}

.welcome__content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 10px 30px
}

@media (max-width: 480px) {
    .welcome__content {
        padding: 0
    }
}

.welcome__copy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center
}

.welcome__text {
    font-family: futura-pt, sans-serif;
    font-size: 16px !important;
    color: #58595b;
    font-weight: 400;
    margin: 30px 0;
    padding: 0 20px;
    line-height: 1.2
}

@media (max-width: 480px) {
    .welcome__text {
        margin: 10px 0
    }
}

.welcome__text p, .welcome__text span {
    font-family: futura-pt, sans-serif;
    font-size: 16px !important;
    color: #58595b;
    font-weight: 400;
    line-height: 1.2
}

.welcome__signature {
    padding: 30px 40px;
    text-align: right
}

@media (max-width: 480px) {
    .welcome__signature {
        padding: 15px 30px
    }
}

.welcome__signature .signature-text {
    font-family: relation-one;
    font-size: 35px;
    color: #bcdbc8;
    text-align: right;
    transform: rotate(-10deg)
}

@media (max-width: 480px) {
    .welcome__signature .signature-text {
        font-size: 28px
    }
}

.welcome__text, .welcome__title, .welcome__signature {
    width: 100%
}

.cart_table-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end
}

@media (max-width: 768px) {
    .cart_table-footer {
        -webkit-box-direction: normal;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.cart_table-footer .special_instruct {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center
}

@media (max-width: 480px) {
    .cart_table-footer .special_instruct {
        -webkit-box-direction: normal;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.cart_table-footer .special_instruct label {
    width: 40%;
    color: #58595b
}

@media (max-width: 480px) {
    .cart_table-footer .special_instruct label {
        width: 100%
    }
}

.cart_table-footer .special_instruct textarea {
    width: 60%;
    height: 30px;
    margin: 0 15px;
    border: 1px solid #58595b
}

@media screen and (min-width: 992px) and (max-width: 1220px) {
    .cart_table-footer .special_instruct textarea {
        min-width: 260px
    }
}

@media (max-width: 480px) {
    .cart_table-footer .special_instruct textarea {
        width: 100%;
        margin: 0
    }
}

.cart_table-footer .cart_continue-btn, .cart_table-footer #continue-shopping {
    width: 260px
}

@media screen and (min-width: 992px) and (max-width: 1220px) {
    .cart_table-footer .cart_continue-btn, .cart_table-footer #continue-shopping {
        width: 170px
    }
}

@media screen and (min-width: 768px) and (max-width: 790px) {
    .cart_table-footer .cart_continue-btn, .cart_table-footer #continue-shopping {
        max-width: 100%
    }
}

@media screen and (max-width: 767px) {
    .cart_table-footer .cart_continue-btn, .cart_table-footer #continue-shopping {
        display: none
    }
}

.cart_table-footer #continue-shopping {
    color: #fff;
    background-color: #f9e0de;
    transition: all linear .15
}

.cart_table-footer #continue-shopping:hover {
    background: #f17b84;
}

.free-delivery-prompt {
    padding: 10px 30px;
    text-align: center;
    background-color: #f17b84;
    color: #fff;
    font-family: futura-pt, sans-serif;
    font-size: 14px;
    line-height: 1.25em
}

.free-delivery-prompt.hidden {
    display: none
}

.category-landing-page-blogs__header {
    text-align: center;
    position: relative;
    margin-bottom: 30px
}

.category-landing-page-blogs__pre-heading {
    font-family: futura-pt, sans-serif;
    max-width: 150px;
    margin: 0 auto 6px;
    display: block;
    text-align: center;
    color: #bcdbc8 !important;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    background-color: #fff;
    z-index: 1;
    position: relative
}

.category-landing-page-blogs__heading {
    color: #bcdbc8 !important;
    font-family: Farnham Disp Lt It;
    font-style: italic;
    font-size: 48px !important
}

.category-landing-page-blogs__blog-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.category-landing-page-blogs__blog-item {
    width: calc(33.33% - 10px)
}

.category-landing-page-blogs__image-link {
    display: block;
    width: 100%
}

.category-landing-page-blogs__image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: all linear .15s
}

.category-landing-page-blogs__image:hover {
    filter: opacity(80%)
}

.category-landing-page-blogs__title {
    font-family: futura-pt, sans-serif;
    text-align: center;
    color: #58595b;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 20px
}

.category-landing-page-blogs__link {
    display: block;
    font-family: futura-pt, sans-serif;
    text-align: center;
    text-transform: uppercase;
    color: #58595b !important;
    font-size: 12px;
    line-height: 16px
}

.category-landing-page-blogs__link:hover {
    color: #f88379 !important
}

@media (max-width: 768px) {
    .category-landing-page-blogs__blog-item {
        width: 100%
    }

    .category-landing-page-blogs__blog-item:not(:last-child) {
        margin-bottom: 15px
    }
}

.category-landing-page-collection-block {
    width: 100%;
    margin-bottom: 25px;
    float: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: relative
}

@media (min-width: 769px) {
    .category-landing-page-collection-block--half {
        width: calc(50% - 10px)
    }
}

@media (min-width: 769px) {
    .category-landing-page-collection-block--one-third {
        width: calc(33.33% - 10px);
        max-width: calc(33.33% - 10px);
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 33%;
        -moz-box-flex: 1;
        -moz-flex: 1 0 33%;
        -ms-flex: 1 0 33%;
        flex: 1 0 33%
    }
}

@media (min-width: 769px) {
    .category-landing-page-collection-block--quarter {
        width: calc(25% - 10px)
    }
}

@media (min-width: 769px) {
    .category-landing-page-collection-block--full-width {
        width: 100%
    }
}

.category-landing-page-collection-block__image-link {
    display: block;
    width: 100%;
    margin-bottom: 15px
}

.category-landing-page-collection-block__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all linear .15s
}

.category-landing-page-collection-block__image:hover {
    filter: opacity(80%)
}

.category-landing-page-collection-block__overlay {
    position: absolute;
    padding: 50px 30px;
    text-align: center;
    width: calc(100% - 60px);
    max-width: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.category-landing-page-collection-block__overlay--mobile {
    color: #fff;
    font-family: Farnham Disp Lt It;
    font-style: italic;
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    display: none
}

@media (max-width: 768px) {
    .category-landing-page-collection-block__overlay--mobile {
        display: block
    }
}

.category-landing-collections-card__title, .category-landing-collections-card__supporting-text, .category-landing-collections-card__link, .category-landing-collections-card__link:visited {
    font-family: futura-pt, sans-serif;
    color: #58595b;
    text-align: center;
    display: block
}

.category-landing-collections-card__title {
    font-family: futura-pt !important;
    font-size: 22px;
    line-height: normal;
    margin-bottom: 10px;
    color: #58595b;
    font-weight: 400
}

.category-landing-collections-card__supporting-text {
    font-size: 16px;
    line-height: 16px;
    color: #58595b;
    max-width: 380px;
    margin: 0 auto 25px
}

.category-landing-collections-card__link-container {
    width: 100%;
    text-align: center
}

.category-landing-collections-card__link-container .button.btn-border {
    color: #bcdbc8;
    max-width: 230px;
    font-weight: 700 !important
}

.category-landing-collections-card__link {
    text-transform: none;
    font-size: 16px;
    line-height: 18px;
    position: relative;
    display: inline-block;
    transition: all linear .15s
}

.category-landing-collections-card__link:hover {
    color: #f88379
}

.category-landing-collections-card__link:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: currentColor
}

@media (max-width: 768px) {
    .category-landing-page-collection-block--mobile-half {
        width: calc(50% - 10px)
    }

    .category-landing-page-collection-block--mobile-full-width {
        width: 100%
    }
}

.category-landing-page-cta-block {
    width: 100%;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 25px
}

.category-landing-page-cta-block__title {
    font-family: futura-pt, sans-serif;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 6px;
    letter-spacing: 1px
}

.category-landing-page-cta-block__supporting-text {
    font-family: futura-pt, sans-serif;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 6px;
    display: block;
    opacity: .6;
    letter-spacing: 1px
}

.category-landing-page-cta-block__link {
    font-family: futura-pt, sans-serif;
    font-size: 12px;
    line-height: 16px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px
}

.category-landing-page-navigation {
    border-top: none
}

.category-landing-page-navigation__toggle {
    display: none
}

.category-landing-page-navigation__title, .category-landing-page-navigation__link {
    font-family: futura-pt, sans-serif;
    display: block;
    transition: all linear .15s
}

.category-landing-page-navigation__title:hover, .category-landing-page-navigation__link:hover {
    color: #f88379 !important
}

.category-landing-page-navigation__group {
    max-height: 220px;
    overflow-y: auto
}

.category-landing-page-navigation__group:not(:last-child) {
    margin-bottom: 40px
}

.category-landing-page-navigation__title {
    color: #58595b !important;
    line-height: 22px;
    margin-bottom: 8px;
    font-weight: 600
}

.category-landing-page-navigation__link {
    color: #58595b !important;
    line-height: 16px;
    margin-bottom: 5px
}

@media (max-width: 768px) {
    .category-landing-page-navigation .category-landing-page-navigation__toggle {
        display: block;
        width: 100%;
        margin-bottom: 20px;
        text-transform: uppercase;
        font-size: 16px;
        line-height: 20px;
        font-family: futura-pt, sans-serif;
        letter-spacing: 1px;
        color: #f88379;
        cursor: pointer
    }

    .category-landing-page-navigation .category-landing-page-navigation__toggle-open {
        display: block
    }

    .category-landing-page-navigation .category-landing-page-navigation__toggle-close, .category-landing-page-navigation .category-landing-page-navigation__links, .category-landing-page-navigation.active .category-landing-page-navigation__toggle-open {
        display: none
    }

    .category-landing-page-navigation.active .category-landing-page-navigation__toggle-close {
        display: block
    }

    .category-landing-page-navigation.active .category-landing-page-navigation__links {
        display: block;
        margin-bottom: 50px
    }
}

body.category-landing-page-v2 #content {
    width: 100% !important;
    padding: 0 10px;
    max-width: 1200px
}

body.category-landing-page-v2 #breadcrumb {
    display: none
}

.category-landing-page-v2-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%
}

.category-landing-intro-text {
    width: 100%;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 30px
}

.category-landing-intro-text__heading {
    font-family: Farnham Disp Lt It;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto 15px;
    font-size: 48px;
    color: #bcdbc8 !important
}

.category-landing-intro-text__body {
    font-family: futura-pt, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 20px;
    color: #58595b
}

.category-landing-page-v2-wrapper__nav-col {
    width: 180px
}

.category-landing-page-v2-wrapper__grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    max-width: 100%
}

@media (max-width: 768px) {
    body.category-landing-page-v2 #content {
        padding: 0 30px
    }

    .category-landing-intro-text {
        padding-left: 0;
        padding-right: 0
    }

    .category-landing-page-v2-wrapper__nav-col {
        width: 100%
    }
}

.category-landing-page-v2-wrapper__collections-cta-col {
    width: 100%;
    max-width: 100%
}

.category-landing-page-hero-block {
    position: relative;
    width: 100%;
    margin-bottom: 40px
}

.category-landing-page-hero-block img {
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    position: absolute;
    width: 100vw;
    left: 50%;
    right: 50%
}

@media (min-width: 769px) {
    .category-landing-page-hero-block img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        max-width: none;
        margin-left: 0;
        margin-right: 0
    }
}

.category-landing-page-hero-block.f-space-start {
    text-align: left
}

.category-landing-page-hero-block.f-center {
    text-align: center
}

.category-landing-page-hero-block.f-space-end {
    text-align: right
}

.category-landing-page-hero-block__caption {
    padding: 10px 20px;
    position: relative;
    z-index: 2;
    max-width: 50%
}

@media (max-width: 1024px) {
    .category-landing-page-hero-block__caption {
        max-width: 62.5%
    }
}

@media (max-width: 768px) {
    .category-landing-page-hero-block__caption {
        max-width: 75%
    }
}

@media (max-width: 480px) {
    .category-landing-page-hero-block__caption {
        max-width: 100%
    }
}

.category-landing-page-hero-block__caption-title {
    font-family: Farnham Disp Lt It;
    font-style: italic
}

.category-landing-page-hero-block__caption-subtitle {
    margin-top: 15px;
    margin-bottom: 15px
}

.category-landing-page-hero-block__caption-button {
    padding: 10px 20px;
    height: auto;
    width: auto
}

.category-landing-page-v3-wrapper .page__hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 0;
    margin-bottom: 95px;
    position: relative;
    height: 647px;
    width: 100%
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .page__hero {
        height: 400px
    }
}

.category-landing-page-v3-wrapper .image-overlay {
    position: absolute;
    text-align: center;
    top: 45%;
    width: 100%;
    top: 50%;
    transform: translateY(-50%)
}

.category-landing-page-v3-wrapper .page__hero-pre {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #142b40;
    font-style: italic;
    font-family: Farnham Disp Lt It;
    margin-bottom: 0
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .page__hero-pre {
        font-size: 18px
    }
}

.category-landing-page-v3-wrapper .page__hero-title {
    font-size: 70px;
    letter-spacing: 3.5px;
    font-weight: 700;
    font-family: futura-pt;
    margin-bottom: 20px
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .page__hero-title {
        font-size: 40px
    }
}

.category-landing-page-v3-wrapper .page__hero-logo {
    margin: 30px 0
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .page__hero-logo {
        width: 50%
    }
}

.category-landing-page-v3-wrapper .page__hero-sub {
    font-size: 70px;
    font-weight: 500;
    letter-spacing: 3.5px;
    font-family: futura-pt;
    color: #142b40
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .page__hero-sub {
        font-size: 30px
    }
}

.category-landing-page-v3-wrapper .collections {
    margin-bottom: 65px
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .collections {
        margin-bottom: 60px
    }
}

.category-landing-page-v3-wrapper .collections__container {
    max-width: 1290px;
    margin: 0 auto 40px
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .collections__container {
        -webkit-box-direction: normal;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.category-landing-page-v3-wrapper .category-landing-page-collection-block {
    max-width: 390px;
    width: 33%
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .category-landing-page-collection-block {
        width: 100%;
        max-width: unset
    }
}

.category-landing-page-v3-wrapper .collections__container--four .category-landing-page-collection-block {
    width: 24%
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .collections__container--four .category-landing-page-collection-block {
        width: 100%
    }
}

.category-landing-page-v3-wrapper .category-landing-page-collection-block__overlay--mobile {
    top: 44% !important
}

.category-landing-page-v3-wrapper .category-landing-collections-card__title {
    font-family: Farnham Disp Lt It !important;
    font-style: italic;
    color: #58595b;
    font-size: 22px !important
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .category-landing-collections-card__title {
        color: #bcdbc8
    }
}

.category-landing-page-v3-wrapper .category-landing-collections-card__supporting-text {
    font-family: futura-pt;
    font-size: 16px !important;
    color: #58595b;
    font-weight: 400;
    max-width: 380px;
    margin: 0 auto 25px;
    line-height: 1.6em
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .category-landing-collections-card__supporting-text {
        display: none
    }
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .category-landing-collections-card__link-container {
        display: none
    }
}

.category-landing-page-v3-wrapper .category-landing-collections-card__link-container .button:hover {
    color: #fff
}

.category-landing-page-v3-wrapper .collections__footer-image {
    display: block;
    margin: auto
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .collections__footer-image {
        width: 80%;
        margin: auto
    }
}

.category-landing-page-v3-wrapper .page__section-divider {
    width: 100%;
    max-width: 1160px;
    margin: auto;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    font-family: futura-pt;
    color: #4a5f8d;
    font-weight: 400
}

.category-landing-page-v3-wrapper .page__section-divider p {
    display: inline-block;
    padding: 0 55px
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .page__section-divider p {
        padding: 0 20px
    }
}

.category-landing-page-v3-wrapper .page__section-divider-line {
    display: inline-block;
    background-color: #f0f0f0;
    height: 1px;
    width: 35%;
    vertical-align: middle
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .page__section-divider-line {
        width: 20%
    }
}

.category-landing-page-v3-wrapper .page__section-title {
    color: #445a8a;
    font-family: Farnham Disp Lt It;
    font-style: italic;
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px
}

.category-landing-page-v3-wrapper .page__message-block {
    margin-bottom: 120px
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .page__message-block {
        margin-bottom: 60px
    }
}

.category-landing-page-v3-wrapper .page__message-block-image {
    display: block;
    width: 100%;
    max-width: 1410px;
    margin: auto
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .page__message-block-image {
        display: none
    }
}

.category-landing-page-v3-wrapper .page__message-block-image--mobile {
    display: none;
    width: 100%
}

@media (max-width: 768px) {
    .category-landing-page-v3-wrapper .page__message-block-image--mobile {
        display: block
    }
}

.page_video-block-video {
    position: relative;
    width: 100%;
    max-width: 1150px;
    margin: auto auto 110px
}

.page_video-block-video video {
    width: 100%
}

@media (max-width: 768px) {
    .page_video-block-video {
        margin-bottom: 60px
    }
}

.page_video-block-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 99%;
    text-align: center;
    background-color: #00000040;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.page_video-block-overlay svg {
    width: 60px;
    height: 60px
}

.page_video-block-overlay svg path {
    fill: #fff
}

.page__range {
    width: 100%;
    margin: 0 auto 65px;
    max-width: 1150px
}

.page__range-section {
    margin-bottom: 90px
}

@media only screen and (max-width: 1240px) {
    .page__range-section {
        padding: 0 20px
    }
}

@media (max-width: 768px) {
    .page__range-section {
        padding: 0;
        margin-bottom: 60px
    }
}

@media (max-width: 768px) {
    .page__range-section .category-landing-collections-card__link-container {
        display: block
    }
}

.page__range-section-content {
    text-align: center;
    margin: auto
}

@media (max-width: 768px) {
    .page__range-section-row {
        flex-direction: column
    }
}

.page__range-section-title {
    font-family: Farnham Disp Lt It;
    font-style: italic;
    color: #58595b;
    font-size: 22px !important;
    margin-bottom: 20px
}

.page__range-section-text {
    font-family: futura-pt;
    font-size: 16px !important;
    color: #58595b;
    font-weight: 400;
    line-height: 1.6em
}

.page__range-section-text--sub {
    max-width: 393px;
    text-align: center;
    margin: auto
}

@media (max-width: 768px) {
    .page__range-image-main, .page__range-image-one, .page__range-image-two, .page__range-image-three, .page__range-image-four {
        width: 100%
    }
}

@media (max-width: 768px) {
    .page__range-image-main.desktop-only, .page__range-image-one.desktop-only, .page__range-image-two.desktop-only, .page__range-image-three.desktop-only, .page__range-image-four.desktop-only {
        display: none
    }
}

.page__range-image-main.mobile-only, .page__range-image-one.mobile-only, .page__range-image-two.mobile-only, .page__range-image-three.mobile-only, .page__range-image-four.mobile-only {
    display: none
}

@media (max-width: 768px) {
    .page__range-image-main.mobile-only, .page__range-image-one.mobile-only, .page__range-image-two.mobile-only, .page__range-image-three.mobile-only, .page__range-image-four.mobile-only {
        display: block !important
    }
}

.page__range-section--one .page__range-section-content {
    margin-bottom: 30px;
    max-width: 315px
}

.page__range-section--one .page__range-section-text--sub {
    margin: 20px auto 30px
}

@media (max-width: 768px) {
    .page__range-section--one .page__range-section-text--sub {
        padding: 0 20px
    }
}

.page__range-section--one .page__range-section-row {
    margin-bottom: 10px
}

.page__range-section--one .page__range-section-column--right {
    padding-left: 20px
}

@media (max-width: 768px) {
    .page__range-section--one .page__range-section-column--right {
        padding-left: 0
    }
}

@media (max-width: 768px) {
    .page__range-section--one .page__range-image-one {
        margin-bottom: 45px
    }
}

.page__range-section--two .page__range-section-content {
    margin-bottom: 30px;
    max-width: 498px
}

@media (max-width: 768px) {
    .page__range-section--two .page__range-section-content {
        width: 100%;
        max-width: unset;
        padding: 0 20px
    }
}

.page__range-section--two .page__range-section-text--sub {
    margin: 20px auto 30px
}

@media (max-width: 768px) {
    .page__range-section--two .page__range-section-text--sub {
        padding: 0 20px
    }
}

.page__range-section--two .page__range-section-column {
    max-width: 50%
}

@media (max-width: 768px) {
    .page__range-section--two .page__range-section-column {
        max-width: 100%
    }
}

.page__range-section--two .page__range-section-column--right {
    text-align: center;
    padding-left: 30px
}

@media (max-width: 768px) {
    .page__range-section--two .page__range-section-column--right {
        padding-left: 0
    }
}

.page__range-section--two .page__range-section-row {
    margin-bottom: 20px
}

.page__range-section--three .page__range-section-row {
    margin-bottom: 60px
}

@media (max-width: 768px) {
    .page__range-section--three .page__range-section-row {
        margin-bottom: 20px
    }
}

.page__range-section--three .page__range-section-content {
    margin-bottom: 30px;
    max-width: 394px
}

@media (max-width: 768px) {
    .page__range-section--three .page__range-section-content {
        width: 100%;
        max-width: unset;
        padding: 0 20px
    }
}

.page__range-section--three .page__range-section-text--sub {
    margin: 20px auto 30px
}

@media (max-width: 768px) {
    .page__range-section--three .page__range-section-text--sub {
        padding: 0 20px
    }
}

.page__range-section--three .page__range-section-column--left {
    max-width: 60%
}

@media (max-width: 768px) {
    .page__range-section--three .page__range-section-column--left {
        max-width: 100%
    }
}

.page__range-section--three .page__range-section-column--right {
    text-align: center;
    padding-left: 30px;
    max-width: 40%
}

@media (max-width: 768px) {
    .page__range-section--three .page__range-section-column--right {
        padding-left: 0;
        max-width: 100%
    }
}

@media (max-width: 768px) {
    .page__range-section--three .page__range-image-main {
        margin-bottom: 45px
    }
}

body.category-landing-page #content {
    padding-top: 0;
    width: 100%
}

body.category-landing-page #breadcrumb {
    display: none
}

.category-landing-header {
    padding: 250px 30px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative
}

.category-landing-header:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background-color: #0000004d;
    top: 0;
    bottom: 0;
    z-index: 0
}

.category-landing-header .category-landing-header__heading {
    color: #fff;
    margin-bottom: 30px;
    font-family: futura-pt, sans-serif;
    font-weight: 100;
    font-size: 48px;
    z-index: 1
}

.category-landing-header .category-landing-header__text {
    color: #fff;
    font-family: futura-pt, sans-serif;
    font-size: 16px;
    font-weight: 100;
    max-width: 460px;
    z-index: 1
}

@media (max-width: 768px) {
    .category-landing-header {
        padding: 150px 30px
    }

    .category-landing-header .category-landing-header__heading {
        font-size: 40px
    }
}

@media (max-width: 480px) {
    .category-landing-header {
        padding: 110px 30px
    }
}

.category-landing-collections {
    padding: 60px 30px 40px
}

.category-landing-collections .category-landing-collections__wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.category-landing-collections .category-landing-collections__pre-heading-container {
    position: relative;
    text-align: center
}

.category-landing-collections .category-landing-collections__pre-heading-container:after {
    content: "";
    width: 100%;
    display: inline-block;
    border-bottom: 1px solid #f0f0f0;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 0
}

.category-landing-collections .category-landing-collections__pre-heading {
    display: inline-block;
    padding: 8px 23px;
    margin: 0;
    background-color: #fff;
    position: relative;
    z-index: 1;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: futura-pt, sans-serif;
    color: #58595b
}

.category-landing-collections .category-landing-collections__heading {
    font-size: 48px;
    font-family: futura-pt, sans-serif;
    text-align: center;
    margin-top: 15px
}

@media (max-width: 768px) {
    .category-landing-collections {
        padding: 45px 30px 25px
    }

    .category-landing-collections .category-landing-collections__heading {
        font-size: 32px
    }
}

@media (max-width: 480px) {
    .category-landing-collections {
        padding: 25px 30px
    }

    .category-landing-collections .category-landing-collections__heading {
        margin-top: 5px
    }
}

.category-landing-collections__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px
}

@media (max-width: 480px) {
    .category-landing-collections__grid {
        margin-top: 25px
    }
}

.category-landing-collections-card, .category-landing-collections-card-mob {
    width: calc(33.33% - 10px);
    margin-bottom: 20px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 15px;
    height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    position: relative
}

.category-landing-collections-card.one-third, .category-landing-collections-card-mob.one-third {
    width: calc(33.33% - 10px)
}

.category-landing-collections-card.two-thirds, .category-landing-collections-card-mob.two-thirds {
    width: calc(66.66% - 10px)
}

.category-landing-collections-card.half, .category-landing-collections-card-mob.half {
    width: calc(50% - 10px)
}

.category-landing-collections-card.full-width, .category-landing-collections-card-mob.full-width {
    width: 100%
}

.category-landing-collections-card .category-landing-collections-card__link, .category-landing-collections-card-mob .category-landing-collections-card__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #0000004d;
    transition: all linear .15s
}

.category-landing-collections-card .category-landing-collections-card__link:hover, .category-landing-collections-card-mob .category-landing-collections-card__link:hover {
    opacity: 1
}

.category-landing-collections-card .category-landing-collections-card__title, .category-landing-collections-card-mob .category-landing-collections-card__title {
    padding: 5px 10px;
    background: rgba(255, 255, 255, .8)
}

@media (max-width: 950px) {
    .category-landing-collections-card, .category-landing-collections-card-mob, .category-landing-collections-card.one-third, .category-landing-collections-card-mob.one-third, .category-landing-collections-card.two-thirds, .category-landing-collections-card-mob.two-thirds {
        width: calc(50% - 10px)
    }
}

@media (max-width: 670px) {
    .category-landing-collections-card, .category-landing-collections-card-mob {
        width: 100%;
        height: 300px
    }

    .category-landing-collections-card.one-third, .category-landing-collections-card-mob.one-third, .category-landing-collections-card.two-thirds, .category-landing-collections-card-mob.two-thirds {
        width: 100%
    }
}

@media (max-width: 480px) {
    .category-landing-collections-card {
        display: none
    }
}

.category-landing-collections-card-mob {
    height: 200px
}

@media (min-width: 481px) {
    .category-landing-collections-card-mob {
        display: none
    }
}

.add-to-cart-modal {
    visibility: visibile;
    opacity: 1
}

.add-to-cart-modal .slick-slide {
    margin: 0 !important
}

.add-to-cart-modal .slick-slide .nosto-add-to-cart {
    width: 80%
}

@media (min-width: 420px) {
    .add-to-cart-modal .slick-slide .nosto-add-to-cart {
        top: 43%
    }
}

.add-to-cart-modal--hidden {
    visibility: hidden;
    opacity: 0
}

.add-to-cart-modal__info-container {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 102;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 6px;
    max-width: 800px;
    width: calc(100% - 40px);
    max-height: 97%;
    padding: 20px 15px;
    background-color: #fff
}

@media (min-width: 481px) {
    .add-to-cart-modal__info-container {
        padding: 40px 15px
    }
}

@media (min-width: 769px) {
    .add-to-cart-modal__info-container {
        padding: 20px
    }
}

.add-to-cart-modal__close-button {
    position: absolute;
    top: -20px;
    right: -20px
}

@media (min-width: 481px) {
    .add-to-cart-modal__close-button {
        position: absolute;
        top: -15px;
        right: -15px
    }
}

@media (min-width: 769px) {
    .add-to-cart-modal__close-button {
        position: absolute;
        top: 0;
        right: 0
    }
}

.add-to-cart-modal__close-button svg {
    cursor: pointer
}

.add-to-cart-modal__product-add-to-cart-message {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #5a5a5a
}

@media (min-width: 481px) {
    .add-to-cart-modal__product-add-to-cart-message {
        margin-bottom: 40px
    }
}

.add-to-cart-modal__buttons-container {
    margin-bottom: 10px
}

@media (min-width: 481px) {
    .add-to-cart-modal__buttons-container {
        margin-bottom: 33px
    }
}

@media (max-width: 768px) {
    .add-to-cart-modal__buttons-container {
        -webkit-box-direction: normal;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.add-to-cart-modal__checkout, .add-to-cart-modal__continue-shopping-button {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: normal
}

@media (min-width: 769px) {
    .add-to-cart-modal__checkout {
        margin-right: 20px
    }
}

.add-to-cart-modal__checkout span {
    color: #fff
}

.add-to-cart-modal__continue-shopping-button {
    background-color: #f39096
}

.add-to-cart-modal__recommendations-title {
    font-size: 24px;
    font-family: Farnham Disp Lt It;
    font-style: italic;
    text-align: center;
    color: #435a8a
}

@media (min-width: 769px) {
    .add-to-cart-modal__recommendations-title {
        font-size: 30px
    }
}

.add-to-cart-modal__slick-prev {
    left: -5px !important
}

.add-to-cart-modal__slick-next {
    right: -5px !important
}

.add-to-cart-modal__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 101
}

.gs__product-option {
    padding: 7px 0 18px !important
}

.gs__option-input-wrap legend, .gs__option-input-wrap label {
    font-size: 16px;
    line-height: normal !important;
    font-weight: 600;
    color: #5a5a5a
}

.gs__option-input-wrap legend {
    margin-bottom: 0 !important
}

.gs__option-input-wrap label {
    margin: 0 0 8px !important
}

[data-child-type=upsell] ul {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex
}

[data-child-type=upsell] ul li {
    margin-right: 8px;
    margin-bottom: 0 !important;
    width: auto !important;
    padding: 0 !important
}

[data-child-type=upsell] ul li label {
    position: static !important;
    width: 79px !important;
    height: 79px !important
}

.gs__option-upsell-label div[data-child-attribute=label] {
    display: none
}

.nosto__slick-container {
    position: relative;
    margin: auto;
    max-width: 1300px
}

.nosto__slick-container .nosto-block {
    position: relative;
    padding: 0 3% !important
}

.nosto__slick-container .nosto-block .nosto-list {
    position: relative;
    display: block;
    overflow: hidden
}

.nosto__slick-container .nosto-block .nosto-list .slick-list .slick-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex
}

.nosto__slick-container .nosto-block .nosto-list .slick-list .slick-track .slick-slide {
    height: auto;
    width: 100%;
    margin: 0 5px
}

.nosto__slick-container .nosto-block .nosto-list .slick-list .slick-track .slick-slide > div {
    height: 100%
}

.nosto__slick-container .nosto-block .nosto-list .slick-list .slick-track .slick-slide .nosto-list-item {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    float: none;
    margin: 0 !important;
    height: 100% !important
}

.nosto__slick-container .nosto-block .nosto-list .slick-list .slick-track .slick-slide .nosto-list-item > div, .nosto__slick-container .nosto-block .nosto-list .slick-list .slick-track .slick-slide .nosto-list-item .sca-qv-image, .nosto__slick-container .nosto-block .nosto-list .slick-list .slick-track .slick-slide .nosto-list-item .nosto-add-to-cart, .nosto__slick-container .nosto-block .nosto-list .slick-list .slick-track .slick-slide .nosto-list-item .main-img {
    width: 100%
}

.nosto__slick-container .nosto-block .nosto-list .slick-list .slick-track .slick-slide .nosto-list-item .add-to-cart {
    margin: 0 !important;
    max-width: none !important
}

.slick-arrow {
    position: absolute;
    top: 41%;
    z-index: 1;
    border: solid #bcdbc8;
    border-width: 0 3px 3px 0;
    width: auto;
    height: 0;
    padding: 3px;
    background: none;
    font-size: 0;
    letter-spacing: normal
}

.slick-arrow:hover {
    background: transparent !important
}

.slick-arrow.slick-prev {
    left: 1.04166667%;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-left: 2px
}

.slick-arrow.slick-next {
    right: 1.04166667%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-right: 2px
}

@media (max-width: 510px) {
    div#ajax-cart-nosto div.nosto-block ul.nosto-list div.slick-list div.slick-track li.nosto-list-item:nth-child(n+5) {
        display: block !important
    }
}

/*# sourceMappingURL=/s/files/1/0254/2030/0362/t/241/assets/theme.css.map?v=7910611908113434409 */

@media screen and (min-width: 740px) {
    #logo img {
        max-width: 500px;
    }
}

#hello {
    font-size: 12px;
}

#hello,
#hello a {
    color: #444;
}

header .row {
    background-color: #f9e0de;
}

@media screen and (min-width: 740px) {
    ul#cart li.mm-trigger {
        display: none;
    }
}

ul#main-nav li {
    line-height: 50px;
}

ul#main-nav li ul.submenu {
    top: 50px;
}

ul.megamenu {
    top: 50px;
}