/*
Theme Name: Metro Theme
Description: This is a child theme for Flatsome Theme
Author: Capito Digital
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE. ***************/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

@font-face {
    font-family: 'Devant Horgen';
    src: url('fonts/Devant-Horgen.woff2') format('woff2');
}

/*** GENERAL ***/
:root {
    --red: #EA2129; 
    --peach: #ff5752;
    --coral: #ff7752;
    --gray: #f5f5f5;
}
::selection {
    background: rgba(0, 116, 255, 0.8); /* WebKit/Blink Browsers */
    color: #fff;
}
::-moz-selection {
    background: rgba(0, 116, 255, 0.8); /* Gecko Browsers */
    color: #fff;
}
::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}


/*Margin*/
.m-remove {
    margin: 0;
}
.mt-remove {
    margin-top: 0 !important;
}
.mb-remove {
    margin-bottom: 0 !important;
}
.ml-remove {
    margin-left: 0;
}
.mr-remove {
    margin-right: 0;
}
.m-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}
.m-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}
.m-40 {
    margin-top: 40px;
    margin-bottom: 40px;
}
.mt-5 {
    margin-top: 5px;
}
.mt-10 {
    margin-top: 10px;
}
.mt-15 {
    margin-top: 15px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-40 {
    margin-top: 40px;
}
.mt-50 {
    margin-top: 50px;
}
.mb-5 {
    margin-bottom: 5px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-25 {
    margin-bottom: 25px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mr-20 {
    margin-right: 20px;
}   
.ml-20 {
    margin-left: 20px;
}

/*Padding*/
.p-remove {
    padding: 0;
}
.pt-remove {
    padding-top: 0 !important;
}
.pb-remove {
    padding-bottom: 0 !important;
}
.pl-remove {
    padding-left: 0 !important;
}
.pr-remove {
    padding-right: 0 !important;
}


/*Headings*/
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    opacity: 1 !important;
}
/* .hero {
    font-size: 4.8rem;
    line-height: 0.85;
} */
.hero-404 {
    font-size: 10rem;
    line-height: 0.85;
}
.heading-large {
    font-size: 12.5rem;
    font-weight: 500;
}
.heading-medium {
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.1;
}
.heading-small {
    font-size: 2.6rem;
    line-height: 1.1;
}
.sub-heading {
    font-size: 1.8rem;
    line-height: 1;
}
h1, .h1 {
    font-size: 3.25rem;
    line-height: 1.1;
}
h2, .h2 {
    font-size: 2.8rem;
    line-height: 1;
}
h3, .h3 {
    font-size: 2.7rem;
    line-height: 1.1;
}
h4, .h4 {
    font-size: 2.125rem;
    line-height: 1.1;
}
h5, .h5 {
    font-size: 1.125rem;
    line-height: 1.6;
}
h6, .h6 {
    font-size: 1rem;
}
.text-large {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
}
mark {
    padding: 2px;
    background-color: transparent;
    font-weight: 600;
    color: #EA2129;
}


/*Utilities*/
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-justify {
    text-align: justify !important;
}
.text-uppercase {
    text-transform: uppercase;
}
.text-light {
    font-weight: 300;
}
.text-normal {
    font-weight: 400;
}
.text-medium {
    font-weight: 500;
}
.text-semibold {
    font-weight: 600;
}
.text-extrabold {
    font-weight:  800;
}
.text-bold {
    font-weight: 700;
}
.text-strike {
    text-decoration: line-through;
}
.hidden {
    display: none;
}
.font-devant, .font-devant  > * {
    font-family: 'Devant Horgen' !important; 
}
.letter-space-normal {
    letter-spacing: 1px;
}
.letter-space {
    letter-spacing: 2px;
}
.w-100 {
    width: 100%;
}
.h-100 {
    height: 100%;
}
.remove-link a {
    pointer-events: none !important;
}

/*Colors*/
.text-red {
    color: var(--red);
}
.text-peach {
    color: var(--peach);
}
.text-coral {
    color: var(--coral);
}
.text-gray {
    color: var(--gray);
}
.bg-red {
    background-color: var(--red);
}
.bg-peach {
    background-color: var(--peach);
}
.bg-coral {
    background-color: var(--coral);
}
.bg-gray {
    background-color: var(--gray);
}


/*Containers*/
.container {
    padding-left: 20px;
    padding-right: 20px;
}
.col, .columns, .gallery-item {
    padding-bottom: 0;
}
.col {
    padding-left: 0;
    padding-right: 0;
}
.row-center {
    margin-left: auto !important;
    margin-right: auto !important;
}


/*Buttons*/
.content-center .button {
    align-self: center;
}
.button.is-outline {
    border: 1px solid;
}
.white.button.is-outline {
    box-sizing: border-box;
    margin: 0;
    font-weight: 300;
    font-size: 1.04rem;
    border: 1px solid #fff;
    transition: 0.4s all ease-in-out;
}
.white.is-outline:hover {
    background-color: rgba(255,255,255,0.20) !important;
    border-color: rgba(255,255,255,0.20) !important;
    color: #fff !important;
    transition: 0.4s all ease-in-out;
}
.btn-normal {
    font-weight: 300;
    font-size: 1.04rem;
    height: 50px;
    line-height: 50px !important;
    padding: 0 45px;
    min-width: 190px;
}
.btn-medium {
    font-weight: 400;
    font-size: 1.1rem !important;
    height: 70px !important;
    line-height: 70px !important;
    padding: 0 40px;
}
.btn-large {
    font-weight: 400;
    font-size: 1.1rem !important;
    height: 80px !important;
    line-height: 80px !important;
    padding: 0 55px;
}



/*Form Fields*/
.form-flat input:not([type=submit]), 
.form-flat select, 
.form-flat textarea {
    color: #000 !important;
}


/*Accordion*/
.accordion-inner {
    padding: 20px;
}


/*Header*/
.header-main {
    min-height: 100px;
    height: 100% !important;
    padding-top: 40px;
    padding-bottom: 20px;
}
.stuck .header-main .header-nav-main.nav > li > a,
.stuck .header-main .mobile-nav.nav > li > a {
    line-height: 1.6 !important;
}
.header.show-on-scroll, .stuck .header-main {
    min-height: 100px;
    height: 100% !important;
    padding-top: 20px;
    padding-bottom: 0;
}
.header-shadow .header-wrapper, .header-wrapper.stuck, .layout-shadow #wrapper {
    box-shadow: none;
}
.header-nav > li {
    margin: 0 10px;
}
.header-nav > li > a > i::before {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    top: 0;
    position: relative;
    transition: 0.3s all ease-in-out;
}
.header-nav .icon-user::before {
    background: url('/wp-content/uploads/2023/01/account.png') no-repeat center center;
    background-size: contain;
}
.header-nav .icon-ship::before {
    background: url('/wp-content/uploads/2023/01/shipping.png') no-repeat center center;
    background-size: contain;
}
.header-nav .icon-heart::before {
    background: url('/wp-content/uploads/2023/01/wishlist.png') no-repeat center center;
    background-size: contain;
}
.header-nav .cart-img-icon {
    width: 25px;
    height: 25px;
    top: 0;
    position: relative;
    transition: 0.3s all ease-in-out;
}
.header-nav > li > a:hover > i::before,
.header-nav .cart-img-icon:hover {
    top: -3px;
    transition: 0.3s all ease-in-out;
}
.header-search-form input.search-field,
.error404 input.search-field {
    height: 59px;
    padding: 0 30px;
    font-size: 1rem;
    background: #f3f3f3;
    border-color: #f3f3f3;
}
.header-search-form input.search-field::placeholder,
.error404 input.search-field::placeholder {
    color: #464646;
    font-weight: 500;
}
.searchform-wrapper .searchform > div {
    display: block;
}
.searchform-wrapper.form-flat .flex-col:last-of-type {
    padding-right: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    bottom: 0;
    height: 100%;
    transform: translateY(-50%);
    margin-left: 0;
}
.searchform-wrapper .autocomplete-suggestions::-webkit-scrollbar {
    width: 5px;
}
.searchform .button.icon {
    height: 100%;
    color: #000 !important;
    font-weight: 500 !important;
}
.error404 .searchform .button.icon i {
    font-size: 1.2rem;
}
.header-bottom-nav > li {
    margin: 0 10px;
}
.header-bottom-nav > li > a {
    font-size: 1rem;
    font-weight: 500 !important;
    letter-spacing: 2px;
    padding: 15px 0 20px;
}
.header-bottom-nav > li > a:hover {
    color: var(--red);
}
.header-bottom .container > .flex-col:first-child {
    border-bottom: 2px solid #000;
    width: 100%;
    margin-bottom: 30px;
}
.stuck .header-bottom .container > .flex-col:first-child,
.single-post .header-bottom .container > .flex-col:first-child,
.woocommerce-page:not(.single-product):not(.archive) .header-bottom .container > .flex-col:first-child {
    margin-bottom: 0;
}
.single-post .header-wrapper:not(.stuck) .header-bottom .container > .flex-col:first-child {
    border-bottom: 0;
}
.woocommerce-mini-cart__buttons .button {
    font-weight: 400;
    font-size: 0.9rem;
    padding: 3px 20px;
}
.woocommerce-mini-cart__buttons .button:hover,
.woocommerce-mini-cart__buttons .button:focus,
.woocommerce-mini-cart__buttons .button:active {
    background-color: #EA2129 !important;
    border-color: #EA2129;
    box-shadow: none;
}
.woocommerce-mini-cart-item:hover {
    background-color: #fbfbfb;
}
.cart-popup-title h4 {
    font-family: 'Devant Horgen';
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.1;
}
.cart-popup-title .is-divider {
    display: none;
}


/*Offcanvas*/
.off-canvas-center.mfp-bg.mfp-ready {
    opacity: 1;
}
.off-canvas-center .mfp-content {
    max-width: 100%;
}
.off-canvas-center .mfp-content .searchform {
    max-width: 400px;
    padding: 0 20px;
}
.off-canvas-center .header-search-form input.search-field {
    background-color: #fff !important;
}
.off-canvas-center .searchform .button.icon {
    background-color: #fff !important;
}
.off-canvas-center .nav-vertical > li > a {
    font-size: 1.2rem;
    padding-top: 7px;
    padding-bottom: 7px;
}
.off-canvas-center .nav-sidebar.nav-vertical > li .toggle {
    top: 0;
}
.off-canvas-center .nav:not(.nav-slide) .active>.children {
    padding-bottom: 0;
}
.live-search-results {
    background: rgba(255, 255, 255, 0.11);
}



/*Newsletter*/
.footer-newsletter .content-wrapper > .col-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.newsletter-img img {
    height: 402px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
#mailpoet_form_1 form.mailpoet_form {
    padding: 0 !important;
    margin-bottom: 0;
}
#mailpoet_form_1 label.mailpoet-screen-reader-text {
    display: none;
}
.mailpoet_form {
    position: relative;
}
.mailpoet_form input[type="email"],
.mailpoet_form input[type="submit"] {
    height: 50px;
    box-sizing: border-box;
}
.mailpoet_form input[type="email"] {
    padding: 0 130px 0 20px !important;
    font-size: 0.85rem;
    border: 1px solid #fff;
}
.mailpoet_form input[type=email]:focus {
    box-shadow: inset 0 0 3px #000;
    border: 1px solid var(--red);
}
.mailpoet_form input[type="submit"] {
    padding: 0 35px !important;
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 50px;
    border: 1px solid #000 !important;
    border-left: 0 !important;
}
.mailpoet_form input[type="submit"]:hover,
.mailpoet_form input[type="submit"]:active {
    background: #810000;
    box-shadow: none;
    border-color: #810000 !important;
}
.mailpoet_form:not(.mailpoet_captcha_form) .mailpoet_paragraph + .mailpoet_paragraph {
   position: absolute;
   top: 0;
   right: 0;
}
.single-mailpoet_page .blog-wrapper {
    padding-bottom: 100px;
}
.single-mailpoet_page .entry-content {
    text-align: center;
    font-size: 1.5rem;
}
.mailpoet_confirm_unsubscribe a {
    text-decoration: none;
    font-weight: 700;
}
.mailpoet_form.mailpoet_captcha_form {
    max-width: 450px;
    margin: 0 auto;
}
.mailpoet_form.mailpoet_captcha_form input[type="submit"]:hover,
.mailpoet_form.mailpoet_captcha_form input[type="submit"]:active {
    background: #EA2129;
    box-shadow: none;
    border-color: #EA2129 !important;
}
.mailpoet_form.mailpoet_captcha_form .mailpoet_text_label {
    font-size: 1.1rem;
}
.page-id-1857 .footer-1,
.page-id-1865 .footer-1,
.postid-317 .footer-1 {
    display: none;
}
.mailpoet_captcha_form .mailpoet_validate_success {
    position: relative !important;
    color: #000 !important;
    font-size: 1.4rem;
}



/*Footer*/
.footer-1, .footer-2 {
    border-top: 0;
}
.footer-1 {
    padding: 0 0 100px;
}
.footer-1 .widget {
    margin-bottom: 0;
}
.footer-2 {
    padding: 40px 0 20px;
}
.absolute-footer  {
    padding: 0;
}
.absolute-footer .container {
    padding-left: 0;
    padding-right: 0;
}
.absolute-footer .container .footer-primary {
    border-top: 2px solid #000;
    padding: 20px 0 40px;
    float: none;
    width: 100%;
}
.copyright-footer {
    font-size: 1rem;
    font-weight: 400;
    color: #000;
}
.footer-logo img {
    width: auto;
    height: 85px;
}
.footer-about {
    max-width: 330px;
    font-size: 1rem;
    line-height: 2.1;
}
.footer-icons a.icon:not(.button) {
    width: 28px;
    height: 28px;
    text-align: center;
    font-size: inherit;
    display: inline-block;
    margin-left: 0;
    margin-right: 15px;
    border: 1px solid #dcdddc;
    border-radius: 50%;
    padding: 5px;
    box-sizing: border-box;
}
.footer-icons a.icon:not(.button) i {
    color: #474848;
}
.footer-menu .menu-item a {
    font-size: 1rem;
    min-height: auto;
    padding: 0 0 7px;
    color: #000;
}
.footer-menu .menu-item a:hover {
    color: var(--red);
}
.footer-social-add {
    margin-right: 11px !important;
}


/**HOME**/
/*Promo Banner*/
.promo-banner img {
    height: 100px;
    width: 100%;
    object-fit: cover;
    object-position: 0 -56px;
}
.promo-banner-text .col-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.promo-banner-btn {
    border: 1px solid !important;
    margin: 0;
    transition: 0.4s all ease-in-out;
}
.promo-banner-btn.white.is-outline:hover:hover {
    background-color: #a15518 !important;
    border-color: #a15518 !important;
}

/*New Arrivals*/
.content-center > .col-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.new-arrivals img {
    height: 665px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.new-arrivals .heading-large {
    letter-spacing: 15px;
    line-height: 94px;
    font-weight: 500;
}
.new-arrivals .heading-large > span {
    font-size: 7.8rem;
    letter-spacing: 1px;
    font-weight: 400;
    position: relative;
    left: -7px;
}

/*Metro Banner*/
.metro-banner .img:not(.metro-logo) img {
    height: 665px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.metro-banner .metro-logo img {
    height: 300px;
    object-position: center;
    object-fit: cover;
}


/*Featured Products*/
.featured-products {
    max-width: 1200px !important;
}
.featured-products > .col {
    padding-left: 15px;
    padding-right: 15px;
}
.featured-products .box-image img {
    height: 270px;
    object-fit: contain;
    object-position: center;
}
.featured-products.categ .box-image img {
    height: 220px;
    object-fit: cover;
    object-position: center;
}
.featured-products.categ .box-image {
    border: 1px solid #c5c5c5;
}
.featured-products .product .box {
    margin-bottom: 20px;
}
.featured-products .product .box-text {
    text-align: center;
    line-height: 1;
    padding: 20px 0;
    height: auto !important;
}
.featured-products .product .box-text p {
    margin-top: 0;;
    margin-bottom: 0;
}
.featured-products .product .title-wrapper {
    margin-bottom: 10px;
}
.featured-products .product .price-wrapper span.amount {
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 500;
}
.featured-products .product .product-title {
    font-size: 2.1rem;
    font-family: 'Devant Horgen';
    letter-spacing: 1px;
    height: auto !important;
}
.featured-products .product .product-title a {
   color: #000;
   line-height: 1;
   margin-top: 0;;
   margin-bottom: 0;
}
.featured-products .product-category .box-text {
    padding: 20px 0;
}
.featured-products .product-category .box-text h5 {
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0;
}
.featured-products .product-category .box-text p {
   display: none;
}
.featured-products .badge {
    margin-bottom: 10px;
}
.featured-products .badge-circle .badge-inner {
    font-size: 13px;
}

/*Baking Essentials*/
.bg-img {
    background-size: cover !important;
    position: relative;
}
.baking-essentials.bg-img {
    background: url('/wp-content/uploads/2023/01/baking-essentials.jpg') no-repeat center center;
    min-height: 781px;
}
.trust-cookware.bg-img {
    background: url('/wp-content/uploads/2023/01/youll-never-trust-another-cookware.jpg') no-repeat center center;
    min-height: 781px;
}
.cooking-staples.bg-img {
    background: url('/wp-content/uploads/2023/02/cooking-staples.jpg') no-repeat center center;
    min-height: 781px;
}
.product-box {
    width: 100%;
    position: relative;
}
.product-box > .col-inner {
    background-color: #f3f3f3;
    max-width: 330px;
    position: absolute;
    transition: 0.3s all ease-in-out;
}
.product-box:hover > .col-inner {
    background-color: #fff;
    transition: 0.3s all ease-in-out;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.3);
}
.product-box .product_list_widget {
    margin-bottom: 0;
}
.product-box ul.product_list_widget li {
    padding: 25px 30px;
    margin: 0;
}
.product-box ul.product_list_widget li img {
    display: none;
}
.product-box .product-title {
    max-width: 200px;
    width: 100%;
    display: block;
    font-family: 'Devant Horgen';
    font-size: 2.1rem;
    line-height: 0.85;
    color: #000; 
}
.product-box .woocommerce-Price-amount {
    font-size: 1.05rem;
    font-weight: 500;
}
.box-1 > .col-inner {
    right: 180px;
    top: 68px;
}
.box-2 > .col-inner {
    left: 348px;
    top: 80px;
}
.box-3 > .col-inner {
    right: 30px;
    top: -70px;
}
.box-4 > .col-inner {
    left: 30px;
    top: 30px;
}
.box-5 > .col-inner {
    right: 50px;
    top: -50px;
}
.box-6 > .col-inner {
    left: 50px;
    bottom: 50px;
}
.box-7 > .col-inner {
    left: 380px;
    top: 30px;
}
.box-8 > .col-inner {
    left: 20px;
    bottom: -30px;
}
.box-9 > .col-inner {
    right: 20px;
    top: -30px;
}
.box-10 > .col-inner {
    left: 350px;
    bottom: 45px;
}

/*Promo Banner Bottom*/
.promo-banner-bottom {
    background: url('/wp-content/uploads/2023/01/premium-marble-bg-1.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}
.promo-banner-bottom::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-color: rgba(53,53,53,0.5);
}
.promo-banner-bottom .heading-medium {
    line-height: 70px;
}
.promo-banner-bottom-img img {
    width: 100%;
    height: 701px;
    object-fit: cover;
    object-position: center;
}



/*About Us*/
.about-content .text-large {
    max-width: 550px;
}
.mission-content .col-outside {
    flex-basis: 31%;
    max-width: 31%;
}
.mission-content .col-inside {
    flex-basis: 38%;
    max-width: 38%;
}
.mission-img img {
    width: 100%;
    height: 413px;
    object-fit: cover;
    object-position: center;
}
.get-in-touch .icon-box {
    display: flex;
    align-items: center;
    margin-left: 20px;
}
.get-in-touch .icon-box-text,
.get-in-touch .icon-box-text a {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
    color: #494949;
}
.get-in-touch .icon-box-text a:hover {
    opacity: 0.6;
}
.contact-form label {
    font-size: 1.3rem;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 10px;
}
.contact-form .wpcf7-form {
    margin-bottom: 0;
}
.contact-form .wpcf7-form-control {
    box-sizing: border-box;
    border: 1px solid #fff;
    padding: 0 20px;
}
.contact-form .wpcf7-text {
    height: 50px;
    line-height: 50px;
}
.contact-form .wpcf7-form-control:not(.wpcf7-submit):focus {
    box-shadow: inset 0 0 3px #000;
    border: 1px solid var(--red);
}
.contact-form .wpcf7-textarea {
    padding-top: 20px;
    padding-bottom: 20px;
    resize: none;
    height: 170px;
}
.contact-form .wpcf7-submit {
    box-sizing: border-box;
    height: 30px;
    line-height: 30px;
    text-transform: uppercase;
    background-color: transparent !important;
    border: 2px solid #fff;
    font-size: 1.15rem;
    font-weight: 400;
    margin: 20px 0 0;
}
.contact-form .wpcf7-submit:hover,
.contact-form .wpcf7-submit:active {
    box-shadow: none;
    background-color: #fff !important;
    border: 2px solid #fff;
    color: #000;
}
.contact-form .wpcf7-form > p:last-of-type {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}
.contact-form .wpcf7-form > p:last-of-type > * {
    align-self: flex-end;
}
.contact-form .wpcf7-not-valid-tip {
    margin-bottom: 10px;
}
.get-in-touch .arrow {
    height: 0;
    width: 0;
    border-bottom: 35px solid var(--red);
    border-left: 50px solid transparent;
    position: absolute;
    right: 0;
    top: 26%;
    transform: skew(0deg, -7deg);
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #fff;
}


/*Blog*/
.blog-header .has-hover .image-color img {
    filter: none;
}
.blog-header .box-image .image-color .overlay {
    background-color: rgba(0, 0, 0, 0) !important;
}
.blog-header .box-image {
    height: 638px;
}
.blog-header .box-image .image-cover {
    height: 100%;
}
.blog-header .box-label .box-text {
    background: transparent;
    box-shadow: none;
    transform: none;
    top: 30px;
    left: 0;
    margin: 0;
    padding: 0;
    opacity: 1;
}
.blog-header .box-label .box-text .blog-post-inner {
    background-color: rgba(100,89,89,0.57);
    padding: 30px 60px 50px 30px;
    color: #fff;
    text-align: left;
    box-sizing: border-box;
    max-width: 500px;
    width: 100%;
}
.blog-header .box-label .box-text .post-title {
    color: #fff;
    font-family: 'Devant Horgen';
    font-size: 4.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 0.9;
    margin: 0;
}
.blog-header .box-label .box-text .from_the_blog_excerpt {
    font-size: 1.2rem;
    max-width: 400px;
    width: 100%;
}
.blog-header .box-label .box-text .is-divider {
    display: none;
}
.blog-category .category-box.img .caption {
    transform: none;
    background-color: #fff;
    color: #000;
    font-weight: 600;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto !important;
    text-transform: uppercase;
    overflow: hidden;
    display: inline;
    width: 230px;
    height: 80px;
    line-height: 80px;
    font-size: 1.875rem;
    text-align: center;
    padding: 0;
}
.blog-featured .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.blog-featured .col-inner {
    background-color: transparent !important;
    box-shadow: none;
}
.blog-featured .box {
    background-color: transparent !important;
}
.blog-featured .featured-top .box {
    padding: 30px 0;
}
.blog-featured .featured-top .box-image img {
    height: 370px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.blog-featured .box-text .is-divider {
    display: none;
}
.blog-featured .featured-top .box-text {
    vertical-align: top;
}
.blog-featured .post-title {
    font-family: 'Devant Horgen';
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 0.9;
    margin: 0;
}
.blog-featured .featured-top .post-title {
    font-size: 5.5rem;
}
.blog-featured .featured-bottom .post-title {
    font-size: 4rem;
}
.blog-featured .featured-top .from_the_blog_excerpt {
    font-size: 1.25rem;
    margin-top: 10px;
}
.blog-featured .button.is-outline {
    background: #fff;
    color: #000;
    font-weight: 500;
    font-size: 1.125rem;
    border-color: #fff !important;
    height: 65px;
    line-height: 65px;
    padding: 0 35px;
    margin-right: 0;
}
.blog-featured .button.is-outline::after,
.blog-latest .blogs-grid .button::after {
    content: '>';
    margin-left: 5px;
    position: relative;
    top: -1px;
}
.blog-featured .button.is-outline:hover {
    border-color: #000 !important;
    background: transparent !important;
}
.blog-featured .featured-bottom {
    position: relative;
    top: -45px;
}
.blog-featured .featured-top .post-item .box,
.blog-featured .featured-bottom .post-item .box {
    display: flex;
    align-items: center;
}
.blog-featured .featured-top .box-image {
    width: 65%;
}
.blog-featured .featured-top .box-text  {
    width: 35%;
}
.blog-featured .featured-bottom .box-image {
    width: 40%;
}
.blog-featured .featured-bottom .box-text  {
    width: 60%;
    padding: 0 70px;
}
.blog-featured .featured-bottom > .post-item:nth-child(odd) .box-text {
    text-align: right;
}
.blog-featured .featured-bottom > .post-item:nth-child(odd) .box-text-inner {
    padding-top: 80px;
}
.blog-featured .featured-bottom .box-image .image-cover {
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.blog-featured .featured-bottom .button.is-outline {
    background: #e6e6e6;
}
.blog-latest .section-title {
    font-size: 1.5rem;
    font-weight: 600;
}
.blog-latest .blogs-grid > .col {
    padding: 0 20px 30px;
}
.blog-latest .blogs-grid .col-inner {
    height: 100%;
}
.blog-latest .blogs-grid .box {
    border: 1px solid #d2d2d2;
    padding: 25px 30px;
    height: 100%;
}
.blog-latest .blogs-grid .box-text {
    padding-left: 20px;
    padding-right: 20px;
}
.blog-latest .blogs-grid .box-blog-post .is-divider {
    display: none;
}
.blog-latest .blogs-grid .post-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #646464;
    letter-spacing: 0;
    margin: 15px 0 5px;
    text-align: center;
}
.blog-latest .blogs-grid .from_the_blog_excerpt {
    font-size: 1.2rem;
    line-height: 1.3;
    color: #646464; 
    text-align: center;
}
.blog-latest .blogs-grid .button {
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    font-weight: 500;
    color: #000;
    margin-top: 0;
}
.blog-latest .blogs-grid .button:hover {
    color: #a5a3a3;
}
.blog-latest .blogs-grid img {
    object-position: top center;
}


/*Single Post*/
.single-post .entry-meta a,
.single-post .entry-category a {
    pointer-events: none;
}
.single-post .entry-content, .navigation-post .nav-next a,
.navigation-post .nav-prev a {
    font-size: 1.18rem;
    line-height: 1.5;
    color: #646464;
}
.single-post .bg-top {
    background-position: center center;
}
.navigation-post .nav-next a,
.navigation-post .nav-prev a {
    text-transform: uppercase;
    font-weight: 500;
}
.navigation-post .nav-next a:hover,
.navigation-post .nav-prev a:hover {
    color: #EA2129;
}
.single-post .wp-block-embed iframe {
    margin: 0 auto;
    position: relative;
    display: flex;
}
.single-post .entry-content a {
    color: #EA2129;
    text-decoration: underline;
} 
.single-post .entry-content a:hover {
    color: #5d5d5d;
}
.single-post .entry-meta, .single-post .entry-divider {
	display: none;
}


/** WOOCOMMERCE **/
/*Shop*/
/* .woocommerce-shop .shop-page-title,
.woocommerce.archive .shop-page-title {
    display: none;
} */
.woocommerce.archive .shop-page-title {
    margin-top: 40px;
}
.woocommerce.archive .shop-page-title .page-title-inner  {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
}
.woocommerce.archive .woocommerce-breadcrumb {
    display: none;
}
.woocommerce-page .new-arrivals .metro-logo img {
    height: 240px;
    object-fit: contain;
}
.woocommerce-page .category-page-row .col.large-3 {
    padding-right: 15px;
}
.woocommerce-page .category-page-row .col.large-9 {
    padding-left: 15px;
}
.woocommerce-page .row.category-page-row {
    margin-left: auto !important;
    margin-right: auto !important;
}
.shop-container .row-small > .col {
    padding: 0 12px 19.6px;
}
.woocommerce-loop-product__title {
    font-family: 'Devant Horgen';
    font-size: 2.1rem;
    line-height: 1;
    height: auto !important;
    margin-top: 10px !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.5px;
}
.woocommerce-LoopProduct-link {
    line-height: 1 !important;
    margin: 0 !important;
}
.woocommerce-Price-amount.amount {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 1.1rem;
    color: #000;
    line-height: 1.3;
}
.col .box-text {
    height: auto !important;
}
.col.product .badge-container {
    margin: 20px 0 0;
}
.col.product .badge {
    height: 0;
    width: 0;
}
.col.product .badge-inner {
    padding: 20px 10px;
    text-transform: uppercase;
    background-color: #EA2129;
}
.col.product .badge-inner,
.col.product .badge-inner span {
    font-size: 0.9rem;
}
.image-tools .wishlist-button:hover {
    background-color: #EA2129;
    border-color: #EA2129;
}
.image-tools .cart-icon {
    bottom: 7px;
    left: 7px;
}
.has-equal-box-heights .box-image {
    padding-top: 0 !important;
    height: 270px;
}
.shop-bottom-stack > * {
    flex-basis: 33.33%;
    flex-grow: 1;
}
.woocommerce-pagination .nav-pagination > li > span.page-number.dots {
    border: 0;
    background-color: transparent;
}
.woocommerce-pagination .nav-pagination > li > span.page-number.dots:hover {
    color: #000;
}
.woocommerce.archive .woocommerce-pagination {
    margin-bottom: 50px;
}
.woocommerce-shop .product-small .box-image img{
    object-fit: contain !important;
}
.shop-new-products #woocommerce_price_filter-12 {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}
.shop-new-products #text-14,
.shop-new-products #woocommerce_product_categories-19 {
    display: none !important;
}


/*Shop Sidebar - Filter*/
.shop-logo {
    width: 180px;
    height: 180px;
}
#shop-sidebar {
    padding-right: 60px;
    margin-bottom: 50px;
}
aside .is-divider.small {
    display: none;
}
aside.widget_text {
    margin: 0;
}
aside.widget_text .widget-title {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.8px;
}
aside.widget.woocommerce,
.yith-wcan-filters .yith-wcan-filter {
    margin: 5px 0;
    padding: 10px 0 0;
    /* border-top: 2px solid #d3d3d3; */
}
aside.widget.woocommerce .widget-title,
.yith-wcan-filters .yith-wcan-filter .filter-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #000;
}
aside.widget.woocommerce > ul > li + li {
    border-top: 0;
}
aside.widget.woocommerce > ul > li a, .view:not(.woocommerce-button),
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item > label > a {
    font-size: 0.9rem;
    line-height: 1.1;
    font-weight: 500;
    display: inline;
    color: #000;
    padding: 4px 0;
}
aside.widget.woocommerce > ul > li a:hover,
aside.widget.woocommerce > ul > li.active a {
    color: #EA2129;
}
.view {
    cursor: pointer;
}
.view:hover, .view:focus, .view:active {
    text-decoration: underline;
}
aside.widget_price_filter form {
    margin-top: 5px;
}
.yith-wcan-filters .yith-wcan-filter .filter-title {
    margin: 10px 0;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item {
    line-height: 1;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.checkbox input {
    margin-bottom: 0;
    display: inline-block;
    -webkit-appearance: none;
    webkit-appearance: none;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    border-radius: 3px;
    border: 1px solid black;
    padding: 1px;
    box-sizing: border-box;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.checkbox input:checked {
    background: #EA2129 url('/wp-content/uploads/woocommerce_uploads/check.png') no-repeat center center;
    background-size: contain;
    border-color: #EA2129;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item > label > a:hover,
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.active > label > a {
    color: #505050;
}
.widget_price_filter .price_slider_amount .button {
    float: none;
    display: block;
}
.widget_price_filter .price_label {
    text-align: left;
    margin-top: 5px;
}
.archive:not(.woocommerce-shop) #woocommerce_product_categories-19 {
    display: none;
}
aside.widget_text .widget-title.shop-sidebar {
    border-bottom: 2px solid #c2c2c2;
    padding-bottom: 5px;
    display: block;
}
aside.widget_yith-woocommerce-ajax-navigation-filters {
    margin-bottom: 0;
}
aside.widget.woocommerce .product-categories,
aside .yith-wcan-filters .filter-items.filter-checkbox {
    height: 158px; 
    overflow-y: scroll;
    border: 1px solid #eee;
    border-right: 0;
}
aside.widget.woocommerce .product-categories,
.yith-wcan-filters .yith-wcan-filter .filter-items.level-0,
aside.widget.woocommerce .price_slider_wrapper {
    padding: 10px;
    margin-top: 5px;
}
aside.widget_price_filter {
    padding-top: 15px !important;
}
aside.widget.woocommerce .price_slider_wrapper  {
    border: 1px solid #eee;
    padding: 25px 15px 15px;
}
aside.widget.woocommerce .product-categories::-webkit-scrollbar,
aside .yith-wcan-filters .filter-items.filter-checkbox::-webkit-scrollbar {
    width: 2px;
}
aside.widget.woocommerce .product-categories::-webkit-scrollbar-track,
aside .yith-wcan-filters .filter-items.filter-checkbox::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #eee;
}
aside .yith-wcan-filters .filter-items .filter-item label {
    margin-bottom: 4px;
}
.yith-wcan-filters {
    margin-bottom: 0;
}
.yith-wcan-filters form {
    margin-bottom: 0;
}
.off-canvas-left .mfp-content, 
.off-canvas-right .mfp-content {
    background: #fff;
}



/*Product Category Archive*/
.cat-bottom-stack .box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.cat-bottom-stack .box-text {
    flex: 1;
}
.cat-product-title {
    font-family: 'Devant Horgen';
    font-size: 2.7rem;
    line-height: 1;
    text-transform: uppercase;
}
.widget.widget_execphp {
    margin-bottom: 0;
}
.woocommerce.archive:not(.woocommerce-shop) aside.widget.woocommerce {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}
.woocommerce-no-products-found {
    font-size: 1.25rem;
}


/*Single Product Page*/
.single-product .product-main {
    padding: 0 0 40px;
}
.single-product .product-main > .row > .product-gallery {
    padding: 0 40px 30px 0;
}
.single-product .product-main > .row > .product-info {
    padding: 40px 0 30px 40px;
}
.single-product .product-info {
    padding-top: 0;
}
.single-product .product-info .breadcrumbs {
    display: none;
}
.single-product .product-info .is-divider {
    display: none;
}
.product .product-gallery .vertical-thumbnails {
    order: 2;
    padding-top: 2px;
    padding-bottom: 0;
    padding-right: 20px;;
}
.product .product-gallery .vertical-thumbnails .flickity-slider > .col:last-child {
    padding-bottom: 0 !important;
}
.shop-container .product-gallery .row-small > .col {
    padding-bottom: 0;
}
.product-info .product-title,
.related .product-section-title,
.product-section h5 {
    font-family: 'Devant Horgen';
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: none;
}
.product-info .product-title,
.product-section h5 {
    font-size: 2.6rem;
}
.related .product-section-title {
    font-size: 3rem;
    margin-bottom: 25px;
}
.featured-products .box-image > div > a,
.related .box-image,
.woocommerce-product-gallery__image,
.product-thumbnails a,
.products .product .box-image {
    background: #fff;
    border: 1px solid #efefef;
}
.featured-products .box-image {
    border: 1px solid #efefef;
}
.woocommerce-product-gallery .zoom-button {
    display: none !important;
}
.woocommerce-product-gallery .flickity-prev-next-button {
    color: #fff;
}
.product-summary .meta-label,
.variations label {
    font-size: 1.05rem;
    font-weight: 400;
}
.product-summary .price-wrapper,
.product-summary .share-wrapper,
.product-summary .woocommerce-product-rating,
.product-summary .quantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-summary .price-wrapper > *,
.product-summary .share-wrapper > *,
.product-summary .woocommerce-product-rating > *,
.product-summary .quantity > * {
    flex-basis: 50%;
    max-width: 50%;
}
.product-summary .woocommerce-Price-currencySymbol {
    font-size: 1.125rem;
    margin-top: 0;
    vertical-align: baseline;
}
.product-summary .woocommerce-Price-amount.amount {
    font-weight: 700;
    font-size: 1.125rem;
}
.product-summary .social-icons > * {
    margin-bottom: 0;
}
.product-summary .social-icons .icon {
    background-color: #f5f5f5;
    border-color: #e6e6e6;
    font-size: 0.7rem;
}
.product-summary .social-icons .icon:hover {
    background-color: #000 !important;
    border-color: #000 !important;
}
.product-summary .social-icons .icon > i {
    font-size: 0.9rem;
}
.product-summary .social-icons .icon > i:before {
    color: #494949;
}
.product-summary .social-icons .icon:hover > i:before {
    color: #fff !important;
}
.product-summary .star-rating {
    font-size: 22px;
}
.product-summary .quantity {
    width: 100%;
    margin-bottom: 30px;
}
.product-summary .quantity .meta-label + div,
.shop_table .product-quantity .meta-label + div {
    display: flex;
}
.product-summary form .button:not(.is-form) {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 300;
    width: 100%;
    max-width: 175px;
}
.variations th {
    width: 50%;
}
.variations select {
    font-size: 1rem;
    height: 47px;
    background-color: transparent;
    box-shadow: none;
}
.variations select:focus {
    box-shadow: none;
    border: 1px solid #000;
}
.woocommerce-variation-price {
    padding: 20px 0 10px;
}
.single_add_to_cart_button:not(.disabled):hover {
    background: #EA2129 !important;
    border-color: #EA2129 !important;
    /* color: #000; */
    box-shadow: none;
}
.single_add_to_cart_button.disabled {
    opacity: 0.2;
}
.buy-now.button {
    background-color: #b9b9b9;
    margin-left: 5px;
}
.vertical-thumbnails::-webkit-scrollbar {
    width: 3px;
}
.vertical-thumbnails::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
.vertical-thumbnails::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}
.woocommerce-product-attributes-item__label {
    position: relative;
}
.product-attr-info:before {
    content: "\f223";
    font-family: Dashicons;
    display: inline-block;
    position: absolute;
    top: 15px;
    left: 40px;
    font-size: 1.2rem;
}
.product-short-description .view {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #afafaf;
    display: block;
}
.product-short-description .view:hover {
    text-decoration: none;
    color: #EA2129;
}
.single-product .product-main .product-gallery .badge-inner {
    padding: 5px 15px;
}
.single-product .product-main .product-gallery .badge-inner.on-sale {
    background-color: #EA2129 !important;
}

/*Woocommerce Notices*/
.woocommerce-page #wrapper > .message-wrapper {
    padding-top: 0;
}
#yith-wcwl-popup-message, .woocommerce-page .message-container {
    padding: 20px 30px;
    margin-bottom: 30px;
}
#yith-wcwl-popup-message, .woocommerce-page .message-container.success-color {
    border: 1px solid #c9eaa8;
    background: #e0f7c9;
}
.woocommerce-info .message-container {
    border: 1px solid #c9eaa8;
    background: #e0f7c9;
    color: #7a9c59;
}
.woocommerce-page .message-container.alert-color {
    border: 1px solid #dc8b8b;
    background: #ffb9b9;
}
#yith-wcwl-popup-message {
    width: 400px;
    font-weight: 600;
    text-transform: uppercase;
}


/*Related Products +  Tabs*/
.product-short-description,
.product-section .entry-content {
    font-size: 1.05rem;
    line-height: 1.6;
    width: 100%;
    max-width: 380px;
}
.product-footer {
    margin-top: 40px;
}
.product-footer .container {
    padding-left: 0;
    padding-right: 0;
}
.product-footer .product-section {
    border-top: 0;
}
.product-footer .product-page-sections {
    display: flex;
}
.product-footer .product-page-sections > * {
    flex-basis: 33.33%;
    max-width: 33.33%;
    padding: 0 40px;
}
.product-footer .product-page-sections > :first-child {
    padding-left: 0;
}
.product-footer .product-page-sections > :last-child {
    padding-right: 0;
}
.product-footer .product-section:not(.related) .row {
    display: flex;
    flex-direction: column;
}
.product-footer .product-section:not(.related) .row > .col {
    flex-basis: 100%;
    max-width: 100%;
}
.related-products-wrapper > .row {
    max-width: 1200px !important;
}
.related-products-wrapper > .row > .col {
    padding-left: 15px;
    padding-right: 15px;
}


/*My Account*/
.woocommerce-account .page-wrapper > .container,
.woocommerce-account .page-wrapper > .container > .rowm,
.woocommerce-wishlist .page-wrapper > .container,
.woocommerce-wishlist .page-wrapper > .container > .row {
    max-width: 1200px !important;
}
.woocommerce-account .button:not(.promo-banner-btn), 
.woocommerce-wishlist .button:not(.promo-banner-btn) {
    font-weight: 400;
    font-size: 0.9rem;
    padding: 5px 30px;
}
.woocommerce-account .button:not(.ux-search-submit):not(.icon):hover,
.woocommerce-wishlist .button:not(.ux-search-submit):not(.icon):hover {
    background-color: #EA2129;
    box-shadow: none;
    text-decoration: none;
}
.woocommerce-button:focus,
.woocommerce-button:active {
    text-decoration: none !important;
}
.woocommerce-cart .footer-1,
.woocommerce-checkout .footer-1,
.woocommerce-account .footer-1, 
.woocommerce-wishlist .footer-1,
.page-id-441 .footer-1 {
    display: none;
}
.woocommerce-account .my-account-header, 
.woocommerce-wishlist .my-account-header {
    display: none;
}
body.logged-in .page-wrapper.my-account {
    padding: 50px 0 200px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #878787;
}
.page-wrapper.my-account .col-wrapper {
    background-color: #fff;
    height: 100%;
}
.my-account-sidebar-nav {
    padding: 25px 0 100px;
}
.my-account-sidebar-content a:hover {
    text-decoration: underline;
}
.my-account-sidebar-title {
    font-size: 1.45rem;
    font-weight: 500;
}
.account-user {
    display: none;
}
.account-nav > li {
    padding: 10px 30px;
}
.account-nav > li.active {
    background-color: #7a7a7a;
    /* border-top: 1px solid #949494; */
}
.account-nav > li:hover > a {
    color: #000;
    padding-left: 12px;
    transition: 0.25s all ease-in-out;
}
.account-nav > li.active:before,
.account-nav > li.active:after {
    content: '';
    position: absolute;
    display: block;
    height: 100%; 
}
.account-nav > li.active:before {
    border-left: 10px solid #7a7a7a;
    left: -10px;
}
.account-nav > li.active:after {
    border-left: 30px solid #7a7a7a;
    right: -30px;
}
.account-nav > li + li {
    border-top: 0;
}
.account-nav > li > a {
    font-size: 1.35rem;
    text-transform: none;
    letter-spacing: 0;
    color: #7a7a7a;
    padding: 0;
    transition: 0.25s all ease-in-out;
    text-transform: capitalize;
}
.account-nav > li.active > a {
    color: #fff;
    padding-left: 12px;
}
.account-nav > li > a::before {
    display: none;
}
.my-account-content-header {
    padding: 12px 40px;
    background-color: #cecece;
    color: #7a7a7a;
    font-size: 1.32rem;
}
.my-account-content-container {
    padding: 20px 40px;
    color: #7a7a7a;
    font-size: 1.1rem;
}
.dashboard-links a {
    text-transform: uppercase;
    transition: all .3s;
    font-size: 1.025rem;
}
.dashboard-links a:hover {
    text-decoration: none;
}
.woocommerce-orders-table .woocommerce-button,
.wc-proceed-to-checkout .checkout-button,
form.checkout .button, 
.woocommerce-form-login .button,
.checkout_coupon .button,
.tracking-order .order-again .button {
    margin-right: 0;
    margin-bottom: 0;
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 5px 20px !important;
}
.woocommerce-orders-table .woocommerce-button + .woocommerce-button {
    margin-left: 10px;
}s
.woocommerce-orders-table .woocommerce-button:hover,
.wc-proceed-to-checkout .checkout-button:hover,
form.checkout .button:hover,
.woocommerce-form-login .button:hover,
.checkout_coupon .button:hover,
.tracking-order .order-again .button:hover {
    text-decoration: none;
    background-color: #EA2129 !important;
    box-shadow: none;
}
.woocommerce-OrderUpdates.commentlist > li {
    border: 1px dashed #ddd;
    padding: 20px
}
.woocommerce-OrderUpdates.commentlist p {
    margin: 0;
}
.woocommerce-OrderUpdate-meta.meta {
    color: #acacac;
    color: #acacac;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.woocommerce-Addresses {
    flex-direction: column;
}
.woocommerce-Addresses > div + div {
    padding-left: 0;
}
.woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.woocommerce-Address-title .edit {
    font-size: 0.9rem;
    background-color: #757575;
    color: #fff;
    padding: 5px 10px;
}
.woocommerce-Address-title .edit:hover {
    background-color: #000;
    text-decoration: none;
}
.woocommerce-wishlist .button.add_to_cart {
    font-size: 0.75rem;
    padding: 5px 10px;
    margin: 0;
    line-height: 35px;
    min-width: 144px;
}
.remove_from_wishlist:hover {
    text-decoration: none;
}
.yith-wcwl-share.social-icons i {
    line-height: 1;
    top: 0;
}
.wishlist_table.mobile .item-wrapper {
    display: flex !important;
    justify-content: space-between;
    width: 100% !important;
}
.wishlist_table.mobile .product-remove {
    left: 10px;
}
.wishlist_table.mobile li[id^="yith-wcwl-row-"] {
    padding: 0 30px 0 50px;
}
.wishlist_table.mobile li .additional-info-wrapper {
    margin-top: 5px;
}
.wishlist_table.mobile .wishlist-empty {
    padding: 30px 20px;
    text-align: center;
}
.yith_wcwl_wishlist_footer {
    text-align: center;
}
td.wishlist-empty {
    font-size: 1.5rem;
}
.woocommerce-account .shop_table th,
.woocommerce-account .shop_table td {
    font-size: 1rem;
}
.order-again {
    text-align: center;
}


/*Log In / Register*/
body:not(.logged-in) .page-wrapper.my-account,
body.page-id-441:not(.logged-in) .register-wrapper,
.woocommerce-cart .page-wrapper,
.woocommerce-checkout .page-wrapper {
    padding: 70px 0 200px !important;
}
.login-title {
    font-size: 4.3rem;
    line-height: 55px;
    margin-bottom: 5px;
    color: #2c2c2c;
    letter-spacing: 3px;
}
.login-subtitle {
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #7c7c7c;
}
.account-form .woocommerce-form,
.woocommerce-ResetPassword {
    max-width: 450px;
    margin: 30px auto 0;
}
.woocommerce-ResetPassword-confirmation {
    max-width: 600px;
    margin: 30px auto 0;
}
.account-form .woocommerce-form .input-text,
.woocommerce-ResetPassword .woocommerce-form-row .input-text,
.woocommerce-form-track-order .input-text {
    border: 1px solid #c7c7c7;
    margin-bottom: 5px;
    padding: 0 15px;
}
.account-form .woocommerce-form .input-password {
    padding: 0 41px 0 15px !important;
}
.account-form .woocommerce-form .input-text::-webkit-input-placeholder,
.woocommerce-ResetPassword .woocommerce-form-row .input-text::-webkit-input-placeholder,
.woocommerce-form-track-order .input-text::-webkit-input-placeholder { 
    color: #7c7c7c
}
.account-form .woocommerce-form .input-text::-moz-placeholder,
.woocommerce-ResetPassword .woocommerce-form-row .input-text::-moz-placeholder,
.woocommerce-form-track-order .input-text::-moz-placeholder { 
    color: #7c7c7c
}
.account-form .woocommerce-form .input-text:-ms-input-placeholder,
.woocommerce-ResetPassword .woocommerce-form-row .input-text:-ms-input-placeholder,
.woocommerce-form-track-order .input-text:-ms-input-placeholder { 
    color: #7c7c7c
}
.account-form .woocommerce-form .input-text::placeholder,
.woocommerce-ResetPassword .woocommerce-form-row .input-text::placeholder,
.woocommerce-form-track-order .input-text::placeholder {
    color: #7c7c7c
}
.account-form .woocommerce-form .input-text:focus,
.woocommerce-ResetPassword .woocommerce-form-row .input-text:focus,
.woocommerce-form-track-order .input-text:focus {
    /* box-shadow: inset 0 0 3px #000; */
    box-shadow: none;
    border-color: #000;
}
.account-form .woocommerce-form .input-text,
.account-form .woocommerce-form .button,
.woocommerce-ResetPassword .woocommerce-form-row .input-text,
.woocommerce-ResetPassword .woocommerce-form-row .button,
.woocommerce-form-track-order .input-text,
.woocommerce-form-track-order .button  {
    font-size: 1.2rem;
    height: 65px;
    line-height: 1;
    box-shadow: none;
    box-sizing: border-box;
}
.account-form .woocommerce-form label:not([for="mailpoet_subscribe_on_register"]):not(.woocommerce-form-login__rememberme) {
    display: none;
}
.account-form .woocommerce-form .button,
.woocommerce-form-track-order .button {
    margin: 0;
    width: 100%;
    background-color: #EA2129;
    margin-top: 5px;
    font-weight: 400;
}
.account-form .woocommerce-form .button:hover,
.account-form .woocommerce-form .button:active,
.woocommerce-form-track-order .button:hover,
.woocommerce-form-track-order .button:active {
    background-color: #000 !important;
}
.account-form .woocommerce-form .password-input,
.woocommerce-ResetPassword .woocommerce-form-row .password-input {
    line-height: 65px;
}
.account-form .woocommerce-form .show-password-input,
.woocommerce-ResetPassword .woocommerce-form-row .show-password-input {
    line-height: 65px;
    padding: 0 15px 0 10px;
    visibility: visible;
}
.account-form .woocommerce-form .lost-password-link,
.woocommerce-privacy-policy-text a {
    color: #7186de;
    text-decoration: underline;
    display: inline-block;
}
.account-form .woocommerce-form .lost-password-link:hover,
.woocommerce-privacy-policy-text a:hover {
    color: #EA2129;
}
.woocommerce-privacy-policy-text {
    font-size: 84%;
    color: #9b9b9b;
    text-align: justify;
}
form.lost_reset_password {
    padding: 0;
}
.woocommerce-ResetPassword .woocommerce-form-row {
    float: none;
    margin-right: 0;
    width: 100%;
}
.woocommerce-ResetPassword .woocommerce-form-row .button {
    width: 100%;
}
.woocommerce-ResetPassword-confirmation p {
    border: 1px solid #dfdfdf;
    padding: 30px;
    background: #f7f7f7;
}
.page-id-441 .woocommerce-error.message-wrapper {
    padding-top: 0 !important;
}
.page-id-441 .woocommerce-error .message-container.alert-color {
    border: 1px solid #dc8b8b;
    background: #ffb9b9;
    padding: 20px 30px;
    margin-bottom: 30px;
}





/*Cart*/
.woocommerce-cart #main,
.woocommerce-checkout #main {
    background-color: #f5f5f5;
    border-bottom: 1px solid #878787;
}
.checkout-page-title {
    display: none;
}    
.cart-content {
    background-color: #fff;
    padding: 30px;
    height: 100%;
}
.cart-collaterals {
    border-left: 0 !important;
}
.cart-header {
    color: #7a7a7a;
    font-size: 1.35rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    margin-left: 10px;
}
.cart-container .shop_table thead th {
    text-align: center !important;
}
.cart-container .shop_table thead th,
.cart-sidebar .checkout_coupon .widget-title,
.cart-sidebar .cart_totals thead th,
form.checkout .woocommerce-billing-fields h3,
.woocommerce-checkout-payment-label {
    color: #5f5c5c;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0;
    border-bottom: 1px solid #909090;
    text-transform: uppercase;
}
.cart-container .shop_table .cart_item td .meta-label {
    display: none;
}
.cart-container .shop_table .product-thumbnail a {
    display: block;
    background-color: #efefef;
    border: 1px solid #b0b0b0;
}
.cart-container .shop_table td.product-remove {
    padding-left: 5px;
}
.cart-container .shop_table td.product-remove a.remove {
    width: 20px;
    height: 20px;
    line-height: 1 !important;
}
.cart-collaterals .cart-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cart-sidebar button.is-form {
    text-shadow: none;
    color: #fff;
    margin-right: 0;
}
.cart-sidebar .checkout_coupon .coupon > div {
    position: relative;
}
.cart-sidebar .checkout_coupon input {
    border-color: #cbcbcb;
    box-shadow: none;
    padding: 0 25px;
    height: 55px;
}
.cart-sidebar .checkout_coupon button {
    width: 25% !important;
    height: 100%;
    text-transform: uppercase;
    background-color: #bbb;
    position: absolute;
    right: 1px;
    top: 1px;
    height: 53px;
    font-size: 0.9rem;
}
.checkout_coupon .widget-title i {
    display: none;
}
.checkout_coupon input:focus,
.checkout_coupon input:active {
    border-color: #000;
}
.cart-sidebar .checkout_coupon button:hover {
    background-color: #000;
    color: #fff;
}
.shop_table, .shop_table .woocommerce-Price-amount.amount {
    font-size: 1rem;
    font-weight: 500;
    color: #5f5c5c;
}
.cart_totals .shop_table, .cart_totals .shop_table .woocommerce-Price-amount.amount {
    color: #7c7c7c;
    font-weight: 400;
}
.cart_totals .shop_table .order-total td, 
.cart_totals .shop_table .order-total th, 
.cart_totals .shop_table thead th {
    border-bottom-width: 0;
    border-top: 1px solid #c0c0c0;
    padding: 15px 0;
}
.shop_table .order-total td, 
.shop_table .order-total th, 
.shop_table thead th,
.shop_table .order-total .woocommerce-Price-amount.amount {
    font-weight: 700;
}
.woocommerce-shipping-calculator {
    margin-bottom: 10px;
}
.shipping-calculator-button {
    text-decoration: underline;
}
.shipping-calculator-button:hover {
    color: #EA2129;
}
.shipping-calculator-form {
    background-color: transparent;
}
.shipping__list_label {
    text-transform: uppercase;
    opacity: 1;
    color: #7c7c7c;
    font-size: 0.93rem;
}
.shipping-calculator-form .button,
.shop_table button[type="submit"].primary {
    text-transform: uppercase;
    background: #bbb;
    font-weight: 400;
    color: #fff;
    height: 40px;
    font-size: 0.9rem;
}
.shipping-calculator-form .button:hover,
.shipping-calculator-form .button:focus,
.shop_table button[type="submit"].primary:hover,
.shop_table button[type="submit"].primary:focus {
    background: #000;
}
.shop_table button[type="submit"].primary {
    opacity: 1;
}
.button-continue-shopping {
    height: 40px;
    line-height: 40px !important;
    font-size: 0.9rem;
    font-weight: 500;
}
.cart-icons img {
    width: 100%;
    height: 105px;
    object-fit: contain;
    object-position: center;
}
.cart-wrapper .shop_table .cart_item td:not(.product-name), 
.cart-wrapper .shop_table tr td:last-of-type {
    text-align: center;
}
.shop_table .cart_item td.product-name {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}
.shop_table .cart_item:hover {
    background-color: #fbfbfb;
}
.shop_table .cart_item td.product-name a:hover {
    text-decoration: underline;
}
.quantity input[type=number] {
    border: 0;
    box-shadow: none;
    background-color: transparent;
    font-weight: 700;
    max-width: 30px;
}
.quantity .button.minus,
.quantity .button.plus {
    background-color: transparent;
    color: #000;
    border: 2px solid #ddd;
    font-weight: 700;
}
.quantity .button.minus:hover,
.quantity .button.plus:hover {
    background-color: #444;
    border-color: #444 !important;
    color: #eee;
    box-shadow: none;
    text-shadow: none;
}   
.quantity .button.minus {
    border-right: 2px solid #ddd !important;
}
.quantity .button.plus {
    border-left: 2px solid #ddd !important;
}
.shop_table .cart_item:hover .woocommerce-Price-amount.amount,
.shop_table .cart_item:hover .product-remove a.remove {
    color: #444;
}
.cart_item:hover .quantity .button.minus, 
.cart_item:hover .quantity .button.plus {
    border-color: #444 !important;
}
.woocommerce-invalid input, input.wpcf7-not-valid {
    border-color: #EA2129;
    color: #EA2129;
}
.cart-empty.woocommerce-info {
    font-size: 1.5rem;
}
.return-to-shop .button {
    font-weight: 400;
    padding: 10px 40px;
}
.return-to-shop .button:hover,
.return-to-shop .button:focus,
.return-to-shop .button:active {
    background-color: #EA2129 !important;
    border-color: #EA2129;
    box-shadow: none;
}
.cart-discount {
    font-size: 0.95rem !important;
    font-weight: 400;
}
.cart-discount td, 
.cart-discount th {
    padding: 10px 20px;
}
.cart-discount td a:hover {
    text-decoration: underline;
}
.shop_table.order_details .product-name {
    width: 50%;
}


/*Checkout*/
form.checkout .woocommerce-billing-fields {
    border-top: 0;
    padding-top: 0;
}
form.checkout .woocommerce-billing-fields h3 {
    padding: 0.5em 0;
}
form.checkout input.input-text,
form.checkout select, form.checkout textarea {
    box-shadow: none;
}
form.checkout input.input-text:focus,
form.checkout select:focus,
form.checkout textarea:focus {
    /* box-shadow: inset 1px 2px 8px rgba(0,0,0,.1); */
    box-shadow: none;
    border: 1px solid #000;
}
form.checkout .form-row .fl-is-active input, form.checkout .form-row .fl-is-active textarea {
    padding-top: 1.4em;
}
.checkout-sidebar .shop_table thead th {
    text-align: left !important;
}
.checkout-sidebar .shop_table thead tr th:last-of-type {
    text-align: right !important;
}
.woocommerce-form-login-toggle .woocommerce-info .message-container {
    margin-bottom: 15px !important;
}
form.checkout .button {
    margin-top: 10px;
    width: 100%;
}
.woocommerce-privacy-policy-text {
    margin-top: 20px;
}
.checkout-sidebar .shop_table .cart_item td.product-name {
    font-weight: 500;
}
.checkout-sidebar .shipping__list_label {
    font-weight: 700;
}
.wc_payment_methods.payment_methods {
    margin-bottom: 40px;
}
.lost_password:hover {
    text-decoration: underline;
}
.woocommerce-form-coupon-toggle .message-container {
    margin-bottom: 20px;
}
.checkout_coupon.woocommerce-form-coupon,
.woocommerce-form-login-toggle + .woocommerce-form-login {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-bottom: 45px;
    border: 0;
}
.woocommerce-form-login-toggle + .woocommerce-form-login {
    padding: 20px 30px;
    margin-bottom: 20px;
}
.checkout_coupon.woocommerce-form-coupon > div {
    border: 1px dashed #b7b7b7;
    padding: 20px;
}
.checkout_coupon .flex-row > :first-child {
    width: 80%;
}
.checkout_coupon .flex-row > :last-child {
    width: 20%;
}
.checkout_coupon input,
.checkout_coupon .button {
    height: 50px;
}
.message-container a:hover {
    text-decoration: underline;
}
.woocommerce-terms-and-conditions-wrapper label,
#mailpoet_woocommerce_checkout_optin_field label {
    font-weight: 400;
}
.woocommerce-terms-and-conditions-wrapper label a {
    color: #7186de;
    text-decoration: underline;
}



/*Checkout - Thank You*/
.woocommerce-order-received .my-account-content-container {
    background-color: #fff;
}
.woocommerce-order-received .shop_table {
    font-size: 1.1rem;
    font-weight: 400;
}
.woocommerce-order-received .cart-container .shop_table thead th:first-of-type {
    text-align: left !important;
}
.woocommerce-order-received .cart-container .shop_table thead th:last-of-type {
    text-align: right !important;
}
.woocommerce-order-received .shop_table tfoot th {
    font-size: 90%;
}
.woocommerce-order-received .page-checkout .large-8 > p {
    background-color: #fff;
    padding: 20px 40px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}
.thankyou-order-summary {
    height: 100%;
}
.woocommerce-customer-details .woocommerce-column {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    padding-left: 0;
    width: 100%;
}
.woocommerce-order-overview {
    list-style-type: none;
}
.woocommerce-order-overview > li {
    margin: 0 0 10px !important;
    padding: 20px;
    border: 1px dashed #97c96a;
    background-color: #e0edd4;
    display: flex;
    align-items: cener;
}
.woocommerce-order-overview > li img {
    width: 40px;
    height: auto;
    margin-right: 20px;
}
.woocommerce-order-overview > li > div > span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.woocommerce-thankyou-order-received {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #6e9b45;
}
.woocommerce-bacs-bank-details {
    background-color: #fff;
    text-align: center;
}
.wc-bacs-bank-details-account-name {
    margin-bottom: 0;
    font-size: 1.125rem;
    padding: 10px 30px;
    box-sizing: border-box;
    color: #727272;
    text-transform: uppercase;
    font-weight: 700;
    display: inline;
    background: #f3f3f3;
}
ul.wc-bacs-bank-details {
    padding: 30px 40px;
    margin-bottom: 0;
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}
ul.wc-bacs-bank-details > li {
    margin-bottom: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
ul.wc-bacs-bank-details > li strong {
    display: block;
    color: #7a7a7a;
    font-size: 1.1rem;
    text-transform: none;
    font-weight: 500;
}
.wc-bacs-bank-details-heading {
    padding: 12px 40px;
    background-color: #cecece;
    color: #7a7a7a;
    font-size: 1.32rem;
    font-weight: 400;
    line-height: 1.6;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: left;
}


/*Search Results*/
.search-results .shop-container {
    margin-bottom: 50px;
}


/*404 Page Not Found*/
.error404 .searchform-wrapper {
    font-size: 1rem;
}


/*Maintenance Page*/
.mainte-img img {
    width: 350px;
    height: auto;
    object-fit: contain;
    object-position: center;
}


/*Track Your Order*/
.page-id-77 .my-account-header,
.page-id-77 .footer-1 {
    display: none;
}
.woocommerce-form-track-order {
    max-width: 450px;
    margin: 30px auto;
}
.page-id-77 .my-account-sidebar-content {
    padding: 50px 20px;
}
.tracking-order {
    max-width: 750px;
    margin: -0 auto;
}
.tracking-order .order-info {
    color: #7a7a7a;
    font-size: 1.1rem;
    padding: 30px;
    border: 2px dashed #e8e8e8;
}
.tracking-order .my-account-content-container {
    border: 1px solid #e8e8e8;
}
.tracking-order .woocommerce-OrderUpdates.commentlist > li {
    background: #fbfbfb;
}
.tracking-order .shop_table th,
.tracking-order .shop_table td {
    font-size: 1rem;
}
.tracking-order .order-again {
    margin-top: 20px;
}


/*Exit Intent Popup*/
.exit-intent-popup a:hover {
    color: #888!important;
}
.exit-intent-popup .button:hover {
    background-color: #000 !important;
    color: #fff !important;
}


/*GCash QR Code*/
.woocommerce-bacs-bank-details .bacs_details:last-child > .bank_name:after {
    content: url('https://metrohome.ph/wp-content/uploads/woocommerce_uploads/Mirage-ECOM-Sale-1-300x.jpg');
    width: 300px;
    height: 300px;
    display: block;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}


/*Coupons*/
.cpn-box {
    border: 1px solid #dad5d5;
}
.cpn-desc {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.3;
}
.cpn-code {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.2;
}
.cpn-btn {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 1rem;
    width: 100%;
    height: 60px;
    line-height: 60px;
    border: 2px solid transparent;
}
.button.primary:not(.is-outline).cpn-btn-red {
    background: #FF302F;
}
.button.primary:not(.is-outline).cpn-btn-orange {
    background: #FB7B26;
}
.button.primary:not(.is-outline).cpn-btn-green {
    background: #2E8062;
}
.button.primary:not(.is-outline).cpn-btn-yellow {
    background: #FFA02F;
}
.button.primary:not(.is-outline).cpn-btn-maroon {
    background: #C93A3A;
}
.button.primary:not(.is-outline).cpn-btn-lime {
    background: #DED329;
}
.button.primary:not(.is-outline):hover {
    box-shadow: none;
    background: transparent;
}
.button.primary:not(.is-outline).cpn-btn-red:hover {
    color: #FF302F;
    border: 2px solid #FF302F;
}
.button.primary:not(.is-outline).cpn-btn-orange:hover {
    color: #FB7B26;
    border: 2px solid #FB7B26;
}
.button.primary:not(.is-outline).cpn-btn-green:hover {
    color: #2E8062;
    border: 2px solid #2E8062;
}
.button.primary:not(.is-outline).cpn-btn-yellow:hover {
    color: #FFA02F;
    border: 2px solid #FFA02F;
}
.button.primary:not(.is-outline).cpn-btn-maroon:hover {
    color: #C93A3A;
    border: 2px solid #C93A3A;
}
.button.primary:not(.is-outline).cpn-btn-lime:hover {
    color: #DED329;
    border: 2px solid #DED329;
}





/** MEDIA QUERIES **/
@media (min-width: 641px) {
    .blog-featured .featured-bottom > .post-item:nth-child(odd) .box-image {
        order: 2;
    }
    .blog-featured .featured-bottom > .post-item:nth-child(odd) .box-text {
        order: 1;
    }
}
@media (min-width: 1200px) {
    .header-main .container, .header-bottom .container {
        padding-left: 0;
        padding-right: 0;
    }
}
@media (max-width: 1200px) {
    .hidden-lg {
        display: none;
    }
    .row-center, .absolute-footer .container,
    .woocommerce-page .row.category-page-row,
    .single-product .product-main > .content-row,
    .woocommerce-page .woocommerce-message,
    .woocommerce-error.message-wrapper,
    .woocommerce-account .page-wrapper .container > .row,
    .woocommerce-wishlist .page-wrapper .container > .row,
    .checkout_coupon.woocommerce-form-coupon,
    .woocommerce-form-login-toggle,
    .woocommerce-form-coupon-toggle,
    .cart-empty.woocommerce-info {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .mission-content {
        padding-left: 10px;
        padding-right: 10px;
    }
    .related-products-wrapper > .row > .col {
        padding-left: 10px;
        padding-right: 10px;
    }
    .single-product .product-main > .row > .product-info {
        padding-left: 0;
    }
    .product-footer {
        margin-top: 0;
    }
    .product-short-description, .product-section .entry-content {
        max-width: 100%;
    }
    .product-footer .product-page-sections {
        flex-wrap: wrap;
    }
    .product-footer .product-page-sections > * {
        flex-basis: 50%;
        max-width: 50%;
        padding: 0;
    }
    .woocommerce-orders-table .woocommerce-button {
        margin-bottom: 5px;
        padding: 3px 10px;
        font-size: 0.8rem;
    }
    .woocommerce.archive .shop-page-title .page-title-inner  {
        padding-left: 20px;
        padding-right: 20px;
    }
    .header-bottom-nav > li > a {
        letter-spacing: 1px;
    }
    .header-bottom-nav > li {
        margin: 0 10px;
    }
}
@media (max-width: 1122px) {
    .promo-banner img {
        height: 130px;
        object-position: center;
    }
    .blog-featured .featured-top .box-image, 
    .blog-featured .featured-top .box-text {
        width: 50% !important;
    }
    
    .blog-featured .featured-top .box-image img {
        object-fit: contain;
    }
    .blog-featured .featured-top .box-text {
        vertical-align: middle;
    }
    .shop-bottom-stack .message-box,
    .shop-bottom-stack .img img {
        height: 380px;
    }
    .shop-bottom-stack .img img {
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
}
@media (min-width: 849px) and (max-width: 1024px) {
    .mailpoet_form .mailpoet_paragraph + .mailpoet_paragraph {
        position: relative;
    }
    .mailpoet_form .mailpoet_paragraph {
        margin-bottom: 10px !important;
    }
    .mailpoet_form input[type="email"] {
        padding: 0 20px !important;
    }
    .newsletter-img img {
        height: 420px;
    }
    .footer-newsletter .content-wrapper .col-inner {
        padding: 10px !important;
    }
}
@media (max-width: 1024px) {
    .btn-large {
        max-width: 182px;
        width: 100%;
        font-size: 1rem !important;
        padding: 0;
    }
    #shop-sidebar {
        padding-right: 30px;
    }
    .single-product .product-main > .row > .product-info {
        padding-top: 0;
    }
    .single-product .product-main {
        padding: 0;
    }
    .product-summary form .button:not(.is-form) {
        padding: 15px 0;
        max-width: 164px;
        margin-right: 0;
    }
    .account-nav > li > a {
        font-size: 1.15rem;
    }
    .my-account-sidebar-title {
        font-size: 1.25rem;
    }
    .home .featured-products.categ > .product-category {
        flex-basis: 33%;
        max-width: 33%;
    }
}
@media (max-width: 960px) {
    .cart-container .row-small > .col {
        flex-basis: 100%;
        max-width: 100%;
        padding: 0;
    }
    .cart-container .row-small > .col.large-5 {
        margin-top: 80px;
    }
    .cart-collaterals {
        margin-top: 70px;
    }
    .cart-icons {
        text-align: center;
    }
}
@media (max-width: 863px) {
    .header-bottom-nav > li {
        margin: 0 8px;
    }
    .popmake.theme-1973 {
        min-width: 100% !important;
    }
    .exit-intent-popup {
        flex-direction: column;
    }
    .exit-intent-popup .popup-cart {
        order: 1;
    }
    .exit-intent-popup .popup-cart img {
        width: 150px;
    }
    .exit-intent-popup > div:first-child {
        order: 2;
        text-align: center;
        margin-top: 30px;
    }
}
@media (max-width: 850px) {
}
@media (max-width: 849px) {
    .heading-medium {
        font-size: 4rem;
    }
    .hidden-md {
        display: none;
    }
    .text-center-md, .text-center-md > * {
        text-align: center !important;
    }
    .text-large {
        font-size: 1.1rem;
    }
    .footer-about {
        max-width: 100%;
    }
    .footer-2 {
        text-align: center;
    }
    .footer-menu .menu-item a {
        justify-content: center;
    }
    .btn-normal {
        padding: 0;
        min-width: 120px;
        font-size: 0.9rem !important;
    }
    .promo-banner-text .h2 {
        font-size: 2.2rem !important;
    }
    .new-arrivals .heading-large {
        letter-spacing: 1px;
        line-height: 0.75;
    }
    .new-arrivals .heading-large > span {
        left: 0;
    }
    .new-arrivals .heading-large, .new-arrivals .heading-large span {
        font-size: 8rem;
    }
    .header.show-on-scroll, .stuck .header-main {
        padding-top: 0;
    }
    .baking-essentials.bg-img,
    .trust-cookware.bg-img {
        align-content: space-evenly;
        min-height: 550px;
    }
    .cooking-staples.bg-img {
        align-content: space-evenly;
        min-height: 680px;
    }
    .product-box > .col-inner {
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }
    .promo-banner-bottom .heading-medium {
        line-height: 0.9;
    }
    .mission-content .col-outside,
    .mission-content .col-inside {
        flex-basis: 50%;
        max-width: 50%;
    }
    .get-in-touch .arrow {
        display: none;
    }
    .footer-1 {
        padding-bottom: 60px;
    }
    .blog-category .category-box.img .caption {
        font-size: 1.5rem;
        width: 100%;
    }
    .blog-featured .featured-top .post-title {
        font-size: 4rem;
    }
    .blog-featured .featured-bottom {
        top: 0;
        margin: 50px 0;
    }
    .blog-featured .featured-bottom .box-image {
        width: 50%;
    }
    .blog-featured .featured-bottom .box-text {
        width: 50%;
        padding: 0 30px;
    }
    .blog-latest .blogs-grid > .col {
        padding: 0 10px 30px;
    }
    .blog-latest .blogs-grid .box {
        padding: 10px;
    }
    .blog-latest .blogs-grid .box-text-inner {
        text-align: center;
    }
    .blog-latest .blogs-grid .box-image .image-cover {
        padding-top: 0 !important;
        height: 250px;
    }
    .blog-latest .blogs-grid .box-image img {
        height: 250px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
    .woocommerce-page .category-page-row .col.large-9 {
        padding-left: 0;
    }
    .clean-dream {
        padding-top: 10px !important;
    }
    .cat-bottom-stack .box-image {
        margin: 0;
    }
    .cat-bottom-stack .box-image img {
        height: 230px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
    .single-product .product-main > .row > .product-gallery {
        padding: 0;
    }
    .single-product .product-main > .row > .product-info {
        padding: 30px 0 30px 0;
    }
    .product .product-gallery .vertical-thumbnails {
        order: 2;
        padding-top: 20px;
    }
    .product-footer .product-page-sections {
        flex-direction: column;
    }
    .product-footer .product-page-sections > * {
        flex-basis: 100%;
        max-width: 100%;
        padding: 0;
    }
    .single-product .product-main > .row > .product-info {
        padding-bottom: 0;
    }
    .product-info form.cat {
        margin: 0;
    }
    .account-nav > li.active:before, .account-nav > li.active:after {
        display: none;
    }
    .my-account-sidebar-nav {
        padding: 25px 0;
    }
    .page-wrapper.my-account {
        padding: 50px 0 100px;
    }
    .touch-scroll-table {
        box-shadow: none;
        border: 1px solid #e8e8e8;
    }
    .my-account-content-header,
    .wc-bacs-bank-details-heading {
        padding: 10px 20px;
        font-size: 1.25rem;
    }
    .my-account-content-container {
        padding: 15px;
    }
    .my-account-sidebar-content {
        margin-top: 15px;
    }
    .shop_table .product-remove {
        width: 20px;
    }
    .shop_table .product-remove a {
        position: relative;
        top: -50%;
        transform: translateY(-50%);
    }
    .cart-container .shop_table td.product-remove a.remove {
        line-height: 14px !important;
    }
    .checkout_coupon .flex-row > :first-child,
    .checkout_coupon .flex-row > :last-child {
        width: 100%;
    }
    .searchform-wrapper .autocomplete-suggestions::-webkit-scrollbar {
        width: 2px;
    }
    #media_image-2 {
        display: none;
    }
    .touch-scroll-table::-webkit-scrollbar {
        width: 4px;
    }
    .shop_table, .shop_table .woocommerce-Price-amount.amount,
    .woocommerce-account .shop_table th, .woocommerce-account .shop_table td {
        font-size: 0.9rem;
    }
    .stuck .header-main {
        box-shadow: 0 0 4px 2px #d9d9d9;
    }
    .featured-products .box-image img {
        height: 371px;
    }
    .has-equal-box-heights .box-image {
        height: 250px;
    }
    .woocommerce-page .category-page-row .col.large-3 {
        display: none;
    }
}
@media (max-width: 820px) {
    .btn-medium {
        padding: 0 25px;
    }
    .cat-bottom-stack .box-text {
        padding: 20px 20px 40px !important;
    }
    .shop-bottom-stack .message-box {
        padding: 20px !important
    }
}
@media (max-width: 768px) {
    .cat-bottom-stack > * {
        flex-basis: 33.33%;
        flex-grow: 1;
    }
    .has-equal-box-heights .box-image {
        height: 225px;
    }
}
@media (max-width: 767px) {
    .shop-bottom-stack .btn-medium,
    .cat-bottom-stack .btn-medium {
        font-size: 1rem !important;
        height: 60px !important;
        line-height: 60px !important;
        padding: 0 20px !important;
    }
    .metro-banner .img:not(.metro-logo) img {
        height: 545px;
    }
    .metro-banner .metro-logo img {
        height: 120px;
    }
    .home .featured-products.categ > .product-category {
        flex-basis: 50%;
        max-width: 50%;
    }
}
@media (max-width: 640px) {
    .featured-products .box-image img {
        height: 280px;
    }
    .blog-category .category-box.img .caption {
        font-size: 1.3rem;
    }
    .blog-featured .featured-top .post-item .box,
    .blog-featured .featured-bottom .post-item .box {
        flex-direction: column;
        margin-bottom: 30px;
    }
    .blog-featured .featured-bottom .box-image,
    .blog-featured .featured-bottom .box-text,
    .blog-featured .featured-top .box-image,
    .blog-featured .featured-top .box-text {
        width: 100% !important;
    }
    .blog-featured .featured-bottom > .post-item:nth-child(odd) .box-text-inner {
        padding-top: 0;
    }
    .blog-featured .featured-bottom > .post-item .box-text,
    .blog-featured .featured-top > .post-item .box-text  {
        padding-top: 30px;
        text-align: center !important;
    }
    .blog-featured .featured-top .box-image .image-cover {
        height: 250px;
        padding: 0 !important;
    }
    .blog-featured .featured-top .box-image img {
        height: 250px;
    }
    .blog-header .box-image {
        height: 500px;
    }
    .login-subtitle {
        letter-spacing: 0;
        font-size: 1.2rem;
    }
    .cart-content {
        padding: 20px;
    }
    .single-post .entry-content {
        font-size: 1.05rem;
    }
    .navigation-post .nav-next a, 
    .navigation-post .nav-prev a {
        font-size: 0.9rem;
    }
    .single-post .entry-title {
        font-size: 2.65rem;
    }
    .woocommerce-OrderUpdates.commentlist > li {
        padding: 20px 0;
    }
    .woocommerce-page .promo-banner-top {
        display: none;
    }
    .hero-404 {
        font-size: 6.5rem;
    }
    .hero-404-subtitle {
        font-size: 3rem;
        line-height: 1;
    }
    .cart_totals .shop_table tr.shipping th {
        width: 30%;
    }
    .page-id-99 .h4 {
        font-size: 1.5rem;
    }
}
@media (max-width: 550px) {
    h3, .h3 {
        font-size: 2.6rem;
    }
    .text-large {
        font-size: 1.1rem !important;
    }
    .hidden-sm {
        display: none;
    }
    .text-center-sm, .text-center-sm > * {
        text-align: center !important;
    }
    .pb-default-sm {
        padding-bottom: 40px !important;
    }
    .mr-0-sm {
        margin-right: 0 !important;
    }
    .ml-0-sm {
        margin-left: 0 !important;
    }
    .mailpoet_form .mailpoet_paragraph + .mailpoet_paragraph {
        position: relative;
    }
    .mailpoet_form .mailpoet_paragraph {
        margin-bottom: 10px !important;
    }
    .mailpoet_form input[type="email"] {
        padding: 0 20px !important;
    }
    .footer-newsletter .content-wrapper .col-inner {
        padding: 30px !important;
    }
    .new-arrivals img, .promo-banner-bottom-img img {
        height: 350px;
    }
    .newsletter-img img {
        height: 250px;
    }
    .btn-large {
        font-size: 0.9rem;
        height: 65px !important;
        line-height: 65px !important;
    }
    .mission-content .col-outside,
    .mission-content .col-inside {
        flex-basis: 100%;
        max-width: 100%;
    }
    .mission-img img {
        height: 300px;
    }
    .get-in-touch .icon-box-text,
    .contact-form label {
        font-size: 1.1rem;
    }
    .get-in-touch .icon-box {
        margin-left: 0;
    }
    .blog-category .category-box.img .caption {
        font-size: 1.6rem;
    }
    .blog-header .box-label .box-text .post-title {
        font-size: 3.5rem;
    }
    .col.product .badge-container {
        margin: 10px 0 0;
    }
    .col.product .badge-inner {
        padding: 15px 10px;
    }
    .col.product .badge-inner,
    .col.product .badge-inner span {
        font-size: 0.8rem;
    }
    .featured-products > .col {
        padding-left: 10px;
        padding-right: 10px;
    }
    ul.wc-bacs-bank-details {
        flex-direction: column;
    }
    ul.wc-bacs-bank-details li {
        margin-bottom: 15px;
    }
    .product-summary .woocommerce-Price-amount.amount {
        font-size: 1rem;
    }
    .featured-products .product-category .box-text h5 {
        font-size: 1.175rem;
    }
    .blog-latest .row-center {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}
@media (max-width: 549px) {
    .blog-featured .featured-top .box-text {
        text-align: center !important;
    }
    .shop-bottom-stack .message-box,
    .shop-bottom-stack .img img {
        height: 250px;
    }
    .shop-bottom-stack .message-box .container,
    .shop-bottom-stack .message-box .inner,
    .shop-bottom-stack .message-box .row {
        height: 100%;
    }
    .woocommerce-thankyou-order-received {
        font-size: 1.2rem;
        line-height: 1.2;
    }
}
@media (max-width: 460px) {
    .footer-newsletter .content-wrapper .col-inner {
        padding: 30px 20px !important;
    }
    .featured-products .box-image img {
        height: 200px;
    }
    .has-equal-box-heights .box-image {
        height: 161px
    }
    .related-products-wrapper > .row > .col {
        padding-left: 5px;
        padding-right: 5px;
    }
    .woocommerce-loop-product__title {
        font-size: 1.8rem;
    }
    .woocommerce-Price-amount.amount {
        font-size: 1rem;
    }
    .shop_table .product-remove {
        width: 0;
    }
    .shop_table .product-remove a {
        position: absolute;
        top: 15px;
        left: 0;
    }
    .cart-container .shop_table td {
        padding-left: 5px;
        padding-right: 5px;
    }
    .woocommerce-additional-fields .fl-wrap-textarea label {
        white-space: pre-wrap !important;
    }
    form.checkout .form-row .fl-is-active textarea {
        padding-top: 30px;
    }
    .metro-banner .img:not(.metro-logo) img {
        height: 400px;
    }
    
}
@media (max-width: 430px) {
	.featured-products.categ .box-image img {
        height: 175px;
	}
}
@media (max-width: 410px) {
    .promo-banner-text .col-inner {
        flex-direction: column;
        text-align: center;
    }
    .promo-banner-text .h2 {
        margin-right: 0;
        margin-bottom: 10px !important;
    }
    .metro-banner .img:not(.metro-logo) img {
        height: 350px;
    }
}
@media (max-width: 375px) {
	.featured-products.categ .box-image img {
        height: 150px;
	}
}
@media (max-width: 360px) {
    .shop_table .product-remove a {
        top: 25px;
    }
    .wc-bacs-bank-details-account-name {
        padding: 10px;
    }
}

.container, .container-width, .full-width .ubermenu-nav, .row, body {
    margin-left: auto;
    margin-right: auto;
    width: 100% !important;
}

.wc-memberships-member-discount{
    color:#c93a3a !important
}





/*** MEGA MENU ***/
.header-bottom-nav {
    position: relative;
}
.header-bottom-nav.nav > li {
    position: static;
}
.header-bottom-nav > li > a {
    font-size: 0.95rem;
}
.nav-dropdown {
    color: #000;
}
.no-js li.has-dropdown:hover>.nav-dropdown, li.current-dropdown>.nav-dropdown {
    left: 0 !important;
    right: 0 !important;
    inset: 0 !important;
    top: 62px !important;
    margin: 0 auto;
}
.dropdown-menu-item .ux-menu-link__link:hover {
    color: var(--red);
}
.has-dropdown .icon-angle-down {
    display: none;
}
.nav-dropdown-has-border .nav-dropdown {
    border-radius: 0 0 20px 20px;
}