main {
    opacity: 0;
    transition: opacity 1000ms ease-in-out;
}

#header {
    width: 100%;
    height: 4rem;
    height: var(--header-height);
    max-width: 2300px;
    max-width: var(--page-max-width);
    left: 0;
    right: 0;
    margin: 0 auto;
    border-bottom: 1px solid rgb(229, 229, 229);
    display: flex;
    -moz-box-pack: start;
    justify-content: flex-start;
    -moz-box-align: start;
    align-items: flex-start;
    flex-direction: column;
    position: fixed;
    z-index: 4;
    background: rgb(255, 255, 255) none repeat scroll 0 0;
    user-select: none;
}
#header.info-line-on {
    height: 7rem;
    height: var(--header-height);
}

#content {
    padding-top: 7rem;
}
#content {
    width: 100%;
    max-width: 2300px;
    max-width: var(--page-max-width);
    padding-top: var(--header-height);
}

#footer {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
}

#page {
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}
.page-header {
    top: 3.7rem;
    border-bottom: 1px solid rgb(229, 229, 229);
    height: 4rem;
    width: 100%;
    text-align: center;
}
.page-header h1 {
    margin: 0;
    line-height: 4rem;
    font-size: var(--font-size-3xl);
    font-family: var(--font-family-lg);
}
.page-subheader {
    width: 70%;
    text-align: center;
    padding: 3rem 0;
}
.page-subheader h3 {
    margin: 0;
    font-size: var(--font-size-xl);
    font-family: var(--font-family-sm);
    text-align: justify;
    -moz-text-align-last: center;
    text-align-last: center;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

.form-check-input {
    background-color: var(--text-color-main);
}
.form-check-input[type="checkbox"] {
    border-radius: unset;
    border-color: var(--text-color-main);
}
.form-check-input:checked {
    background-color: var(--text-color-main);
    border-color: var(--text-color-main);
}

button {
    background: none;
    outline: none;
    border: none;
    box-shadow: none !important;
}

button.real-button {
    padding: 1rem 3rem;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    height: 3.5rem;
}
a.real-button {
    padding: 2rem 3rem;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    text-decoration: none;
    text-align: center;
}

#header .logo {
    width: 9rem;
    min-width: 9rem;
}
#header .logo img {
    width: 100%;
    height: 100%;
}

.separator-bottom {
    border-bottom: 1px solid rgb(229, 229, 229);
}
.separator-top {
    border-top: 1px solid rgb(229, 229, 229);
}

#info-line {
    height: 4rem;
    height: var(--info-line-height);
    position: relative;
    width: 100%;
    background-color: #faedbc;
}
#info-line-content {
    height: 100%;
    padding: 0 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    line-height: var(--info-line-height);
    height: var(--info-line-height);
}

#menu,
#menu-mobile {
    display: flex;
    width: 100%;
    position: relative;
    height: 4rem;
    height: var(--top-menu-height);
}
.menu-item {
    display: flex;
    height: 100%;
    padding: 0 1rem;
    align-items: center;
    cursor: pointer;
}
.menu-item-root,
.menu-mobile-opener.menu-root-item {
    font-size: var(--font-size-lg);
    font-family: var(--font-family-md);
}
.menu-item a {
    text-decoration: none;
}
.menu-item a:hover,
.menu-item button:hover {
    text-decoration: underline;
}
.menu-item a:hover {
    text-decoration: underline;
}
.menu-item:hover .menu-expand {
    display: flex;
}
.menu-item:hover button {
    text-decoration: underline;
}
.menu-expand {
    display: none;
    position: absolute;
    width: 100vw;
    max-width: var(--page-max-width);
    background: rgb(255, 255, 255) none repeat scroll 0 0;
    left: 0;
    top: var(--top-menu-height);
    z-index: 2;
    border-bottom: 1px solid rgb(229, 229, 229);
    scrollbar-width: none;
    flex-direction: row;
    flex: 1 1 0;
    line-height: var(--line-height-md);
    overflow: hidden auto;
}
.menu-expand ul:first-child {
    border-left: medium none;
}
.menu-expand ul {
    flex: 0.25 1 0;
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    margin: 0;
    list-style-type: none;
    border-left: 1px solid rgb(229, 229, 229);
}
.menu-expand li {
    margin: 0;
}
.menu-expand li:hover {
    background: rgb(247, 247, 247) none repeat scroll 0 0;
}
.menu-expand li:hover a {
    text-decoration: none;
}
.menu-expand a {
    padding: 0.7rem 2rem;
    display: block;
    font-family: var(--font-family-md);
}
.menu-expand li.menu-subcat {
    margin-bottom: 1rem;
}
.menu-expand li.menu-subcat-view-all {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
}
.menu-expand li.menu-subcat-view-all a {
    text-decoration: underline;
}
.menu-expand li img {
    margin: 0 0 0.6rem;
    width: 10rem;
}
.menu-items-right {
    display: flex;
    margin-left: auto;
    height: 100%;
}
#footer {
    border-top: 1px solid rgb(216, 216, 216);
}
#footer a {
    text-decoration: none;
}
#footer a:hover {
    text-decoration: underline;
}
#footer ul {
    flex: 1;
    padding: 2rem 5rem;
    margin: 0;
}
#footer ul li {
    margin: 0.6rem 0;
    white-space: nowrap;
}
#footer ul li#newsletter-cont {
    white-space: normal;
    position: relative;
    text-align: justify;
}
#newsletter-cont label {
    margin: 1.6rem 0;
    display: flex;
}
#newsletter-cont input {
    border: none;
    border-bottom: 1px solid #000;
    flex: 1;
    padding: 0;
    margin-left: 2rem;
    outline: none;
}
#search {
    display: none;
    width: 100%;
    position: absolute;
    border-bottom: 1px solid rgb(229, 229, 229);
    top: var(--header-height);
    height: var(--top-menu-height);
    left: 0;
    background: rgb(255, 255, 255) none repeat scroll 0 0;
    z-index: 3;
}
#search form {
    display: inline;
}
#search div {
    align-items: center;
    width: 100%;
    height: 100%;
}
#search input {
    display: flex;
    border: none;
    flex: 1;
    padding: 0;
    margin-left: 2rem;
    outline: none;
}
#search .btn-close {
    display: flex;
    width: 4rem;
    height: 100%;
    border: none;
    padding: 0;
    margin-right: 1rem;
}
#search #btn-search {
    margin-right: 1rem;
}
#btn-menu-mobile-show {
    width: 2rem;
}
#btn-menu-mobile-show img.closed {
    width: 1.8rem;
}
#btn-menu-mobile-show img.open {
    width: 1rem;
    opacity: 0.7;
}
#menu-mobile-head {
    height: 100%;
    display: flex;
}
#menu-mobile-body {
    background-color: #FFFFFF;
    display: none;
    height: 100vh;
    width: 100%;
    z-index: 2;
    overflow-y: auto;
}
#menu-mobile-body ul {
    background-color: #FFFFFF;
    padding: 0;
}
#menu-mobile-root li {
    padding: 1rem 0;
}
#menu-mobile-root > li {
    padding: 1rem 2rem;
}
#menu-mobile-root {
    font-size: var(--font-size-lg);
}
#menu-mobile-root a {
    text-decoration: none;
}
#menu-mobile-root button {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    text-align: left;
}
#menu-mobile-body a {
    width: 100%;
    text-align: left;
    display: inline-block;
}
#menu-mobile-root a:hover,
#menu-mobile-root button:hover {
    text-decoration: underline;
}
.menu-mobile-opener {
    display: flex;
    flex-direction: column;
}
.menu-mobile-opener + div {
    display: none;
    padding-left: 2rem;
}
.menu-mobile-opener + div .menu-mobile-opener {
    padding: 1rem 0;
}
.menu-mobile-opener ul li:last-child {
    padding-bottom: 0;
}
#menu-mobile-body .menu-subcat-view-all a {
    text-decoration: underline;
}
#menu-mobile-body .menu-solo-item {
    padding: 1rem 0;
}
#socials-cont {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 2rem !important;
}
#socials-cont a:hover {
    text-decoration: none;
}
#socials-cont svg {
    height: 100%;
    width: 2rem;
}

#mini-cart {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
    padding-top: 4rem;
    padding-top: var(--header-height);
}
#mc-container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    -moz-box-pack: end;
    justify-content: flex-end;
    height: 100%;
    position: relative;
}
#mc-background {
    background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
    width: 100%;
    max-width: var(--page-max-width);
    pointer-events: auto;
    height: 100%;
}
#mc-overlay {
    height: 100%;
    width: 50%;
    max-width: 35rem;
    min-width: 33rem;
    background: rgb(255, 255, 255) none repeat scroll 0 0;
    position: relative;
}
#mc-overlay.loading:before {
    content: '';
    background-color: rgba(255,255,255, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    pointer-events: none;
    transition: background-color 2s;
}
#mc-overlay-inner {
    height: 100%;
    display: flex;
    width: 100%;
    pointer-events: auto;
    flex-direction: column;
    position: relative;
    font-size: var(--font-size-lg);
}
#mc-header {
    display: flex;
    flex-direction: row;
    -moz-box-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgb(229, 229, 229);
    min-height: 4rem;
    width: 100%;
}
#mc-header div {
    display: flex;
    padding: 0 1.4rem;
    align-items: center;
}
#mc-totals {
    display: flex;
    align-items: center;
    min-height: 4rem;
    justify-content: center;
    font-family: var(--font-family-xl);
    font-size: var(--font-size-2xl);
}
#mc-products {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-bottom: 1px solid rgb(229, 229, 229);
}
#mc-products.empty {
    border-bottom: none;
}
#mc-products-empty {
    min-height: 4rem;
    text-align: center;
    height: 4rem;
    line-height: 4rem;
    border-bottom: 1px solid rgb(229, 229, 229);
    font-size: var(--font-size-sm);
}
.mc-product {
    display: flex;
    border-bottom: 1px solid rgb(229, 229, 229);
    align-items: center;
    flex-direction: row;
    padding: 0;
    position: relative;
}
.mc-product:last-child {
    border-bottom: none;
}
.mc-product-image {
    display: flex;
    width: 50%;
    align-items: center;
    padding: 0;
    justify-content: center;
}
.mc-product-image img {
    max-width: 90%;
    max-height: 10rem;
}
.mc-product-info {
    display: flex;
    width: 50%;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    border-left: 1px solid rgb(229, 229, 229);
    padding: 0;
    height: 100%;
}
.mc-product-info-cont {
    padding: 1.5rem 1.4rem 1.5rem 1rem;
    /*text-align: justify;*/
}
.mc-product-info-cont div {
    margin-top: 0.6rem;
}
.mc-btn-product-remove {
    position: absolute;
    right: 1rem;
    top: .6rem;
    margin: 0;
    cursor: pointer;
    padding: 0;
}

.spinner-border {
    position: absolute;
    color: var(--bs-dark);
    margin: -1.5rem 0 0 -1.5rem;
    width: 3rem;
    height: 3rem;
    top: 50%;
    left: 50%;
}

#mini-cart .spinner-border {
    margin: -3rem 0 0 -3rem;
    width: 6rem;
    height: 6rem;
}

.save-success {
    position: absolute;
    opacity: 1;
    text-align: center;
    background-color: var(--bs-dark);
    color: #FFFFFF;
    padding: 0.5rem 0.7rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
}
.alert {
    display: none;
    font-size: var(--font-size-sm);
    text-align: center;
    margin: 1rem 0;
    border-radius: 0;
}
#newsletter-cont .alert {
    margin: 0 0 1.6rem 0;
}

.modal-footer button {
    width: 10rem !important;
}
.modal-body {
    font-size: var(--font-size-lg);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.p-prices {
    margin: 0.4rem 0 0;
    font-size: var(--font-size-xl);
}
.p-prices span {
    text-decoration: none;
}
.p-prices.discounted .original {
    position: relative;
    text-decoration: line-through;
    text-decoration-color: #DC3545;
    text-decoration-thickness: 2px;
}
.cp-price.p-prices.discounted .original {
    text-decoration-thickness: 1px;
}
.p-prices .sale {
    margin-left: 0.6rem;
    color: #DC3545;
}

.additional-info {
    position: absolute;
    display: inline;
    width: 1.2rem;
    height: 1.2rem;
    background: url(/images/icons/info-circle-fill.svg) center/cover no-repeat transparent;
    margin: 0 0 0 .8rem;
}
.additional-info:hover {
    background-image: url(/images/icons/info-circle.svg);
}
.tooltip {
    font-size: 1rem;
    font-family: var(--font-family-md);
    pointer-events: none;
}
.tooltip-inner {
    border-radius: 0;
}

.slick-next {
    background: url(/images/icons/arrow-left.svg) no-repeat center/cover transparent;
    right: 1rem;
}
.slick-prev {
    background: url(/images/icons/arrow-left.svg) no-repeat center/cover transparent;
    left: 1rem;
}
.slick-prev,
.slick-next {
    background-size: cover;
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 50%;
    margin-top: -3rem;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    pointer-events: all;
    z-index: 1;
}
.slick-next {
    transform: scale(-1, 1) translate(0, -50%);
}
.slick-dots {
    position: absolute;
    bottom: 1rem;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li.slick-active button::before {
    opacity: .75;
    color: black;
}
.slick-dots li button::before {
    font-size: 3rem;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .6;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.p-wishlist {
    position: absolute;
    width: 2rem;
    height: 2rem;
    top: 1.2rem;
    right: 1rem;
    z-index: 1;
    background: url(/images/icons/heart.svg) no-repeat center/contain transparent;
}
.p-wishlist.added {
    background: url(/images/icons/heart-fill.svg) no-repeat center/contain transparent;
}
.p-wishlist.saving {
    animation: flash 0.6s ease-out;
    animation-iteration-count: 2;
}
.spinner-brand {
    /* background: url(/images/logo.png) no-repeat transparent center/cover; */
    position: fixed;
    left: 50%;
    bottom: 0.8rem;
    padding: 1rem 3rem;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    height: 2.5rem;
    transform: translateX(-50%);
    line-height: 0.5rem;
    opacity: 0.8;
}

/* Custom select */
#vertigo .select2 {
    max-width: 100%;
    min-width: 100%;
    color: transparent;
}
#vertigo .select2-selection.select2-container--default,
#vertigo .select2-selection.select2-selection--single {
    border-color: #000;
    border-radius: 0;
    height: 3.5rem;
    width: 100%;
}
#vertigo .select2 .selection {
    text-align: center;
}
#vertigo .select2-container--default .select2-selection--single {
    background-color: transparent;
    cursor: pointer;
    display: block;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    height: 3.5rem;
    line-height: 3.5rem;
    border-color: #000;
    border-radius: 0;
    width: 100%;
}
#vertigo .select2-selection__rendered {
    line-height: 3.5rem;
}
#vertigo .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}
#vertigo .select2-dropdown {
    background-color: #fff;
    border-radius: 0;
    border-color: #000;
}
#vertigo .select2-results__option {
    text-align: center;
    border-bottom: .1rem solid #000;
    display: block;
    height: 3.5rem;
    line-height: 3.5rem;
    padding: 0 6px;
}
#vertigo .select2-container--default .select2-results__option--highlighted[aria-selected],
#vertigo .select2-container--default .select2-results__option[aria-selected="true"],
#vertigo .select2-container--default .select2-results__option--selected {
    background-color: #000 !important;
    color: #fff;
}
#vertigo .select2-selection__placeholder,
#vertigo .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000;
}
/*****/

.section-header {
    font-size: 1.25rem;
    padding: 1.5rem 15%;
    text-align: center;
    width: 100%;
    border-top: 1px solid rgb(216, 216, 216);
    border-bottom: 1px solid rgb(216, 216, 216);
}

#menu-mobile-root button,
#menu-mobile-root .menu-item-root,
#menu-mobile-root .menu-subcategory-item,
#menu-mobile-root li,
#menu-mobile-root a,
#menu-mobile-root .menu-solo-item a {
    font-family: var(--font-family-sm);
    font-size: var(--font-size-lg);
    color: var(--text-color-main);
}

@keyframes flash {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes marquee {
    0% {
        transform: translatex(0%)
    }

    100% {
        transform: translatex(-100%)
    }
}

@media only screen and (max-width: 767px) {
    body * {
        font-size: 1.25rem;
    }

    .page-subheader {
        width: 80%;
    }

    #info-line-content {
        padding-left: 100%;
        animation: marquee 8s linear infinite;
        display: inline-block;
        white-space: nowrap;
    }

    #footer {
        display: block;
        padding: 1.6rem 0;
    }
    #footer ul {
        padding: 0 0 0 2rem;
    }
    #footer ul li {
        margin: 1rem 0 0;
    }
    #newsletter-cont input {
        flex: unset;
        width: 100%;
        margin-left: 1rem;
        max-width: 18rem;
    }
    #newsletter-cont {
        margin-top: 2rem;
        position: relative;
    }
    #newsletter-cont .alert {
        margin: 0 1rem 1.6rem 0;
    }
    #newsletter-cont label {
        display: block;
    }
    #search input {
        text-align: center;
    }
    .menu-item {
        padding: 0 0.8rem;
    }
    .menu-item:last-child {
        padding-right: 2.5rem;
    }
    .menu-item:first-child {
        padding-left: 2rem;
    }
    #socials-cont {
        width: 100%;
        max-width: 26rem;
        margin-top: 2rem !important;
    }
    #socials-cont a {
        margin-right: 0.4rem;
        flex: 1;
    }
    #footer ul li#newsletter-cont {
        white-space: nowrap;
    }
    #newsletter-cont .spinner-border {
        top: 7.5rem;
        left: 13rem;
    }
    #newsletter-cont .save-success {
        top: 7.5rem;
        left: 13.5rem;
    }

    #mc-overlay-inner {
        max-height: unset;
        height: calc(100% - 4rem);
    }
    #mc-overlay {
        max-width: 24rem;
        min-width: 28rem;
    }
    #mc-totals,
    #mc-header {
        min-height: 3rem;
    }
    .p-prices.discounted .original:before {
        height: 80%;
    }

    .section-header {
        padding-left: 10%;
        padding-right: 10%;
    }

    .slick-prev,
    .slick-next {
        width: 2rem;
        height: 2rem;
    }

    .p-wishlist {
        width: 1.8rem;
        height: 1.8rem;
    }

    #mini-cart * {
        font-size: var(--font-size-md);
    }
}
@media only screen and (max-width: 576px) {
    .p-wishlist {
        width: 1.6rem;
        height: 1.6rem;
    }
}

@media only screen and (max-width: 400px) {
    #search #btn-search {
        padding: 1rem 1rem;
        margin-right: 0.5rem;
    }
    #mc-overlay {
        max-width: 380px;
        min-width: 340px;
    }
    #search .btn-close {
        margin-left: 1rem;
    }
    #search .btn-search {
        padding: 0 1rem;
        height: 3rem;
    }
}
@media only screen and (max-height: 400px) {
    #mc-header {
        display: none;
    }
    .mc-lnk-checkout {
        padding: 1rem 3rem !important;
    }
    #mc-products {
        font-size: var(--font-size-md);
    }
    #mc-totals {
        min-height: 3rem;
    }
}