a {
    color: var(--primary-color);
}

p {
    margin-bottom: 15px !important;
}

.border_bottom {
    border-bottom: 2px solid var(--primary-color);
}

.collections-button a {
    position: relative;
    display: block;
    width: fit-content;
    font-size: 21px;
    color: #000000;
    padding: 10px 0;
    min-width: 350px;
    text-align: left;
    transition: all .4s ease-out;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
}

.collections-button a:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    background-color: #242728;
    border-radius: 50%;
    background-image: url(../icons/right-up.png);
    background-size: 21px;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    right: 0;
    transition: all .4s ease-out;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
}

.collections-button a:after {
    position: absolute;
    content: '';
    width: 85px;
    height: 1px;
    background-color: #242728;
    top: 50%;
    right: 60px;
}

.collections-button a:hover:before,
.collections-button a:hover:after {
    background-color: var(--primary-color);
}

.gradient_bg-right:before {
    position: absolute;
    content: '';
    background: repeating-linear-gradient(45deg, var(--secondary-color), var(--primary-color), var(--secondary-color) 300px);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    top: -200px;
    right: -200px;
    filter: blur(90px);
    z-index: -1;
    opacity: 50%;
}

/*
* BUTTONS
*/

.btn:hover,
.wpcf7-submit:hover {
    box-shadow: 0 0 0 5px #00000010 !important;
}

/*
* PRODUCT CARD
*/

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #f44336;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #ffffff;
    font-size: 14px;
}

.woocommerce-loop-image-link {
    position: relative;
}

.product_loop_title a {
    display: block;
    padding: 10px 0;
    color: #000000;
    font-size: 21px;
    font-weight: 600;
    border-top: 1px solid #00000010;
    border-bottom: 1px solid #00000010;
    margin-bottom: 20px;
}

.price {
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    line-height: 1.2;
    margin-bottom: 0 !important;
}

.woocommerce-Price-currencySymbol {
/*    font-size: 1rem;*/
    letter-spacing: -1px;
}

.price del bdi {
    font-size: 16px;
    color: #9a9a9a;
    line-height: 1;
}

.price ins bdi,
.woocommerce-Price-amount {
    font-weight: 600;
    letter-spacing: -1px;
}

.product-action-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
}

.add_to_cart_button {
    border-radius: 0;
    min-width: 100px;
    text-align: center;
}

.add_to_cart_button span svg {
    display: none;
}

@media (max-width: 768px) {

    .product_loop_title a {
        font-size: 16px;
        line-height: 18px;
    }

    .entry-content-wrap {
        padding: 10px;
    }

    .add_to_cart_button {
        position: relative;
        font-size: 0;
        background: transparent !important;
        min-width: auto;
        background-image: url(../icons/cart.svg) !important;
        width: 35px !important;
        height: 35px;
        background-repeat: no-repeat !important;
        background-size: 35px !important;
        background-position: center center !important;
    }

}

.add_to_cart_button {
    transition: all .4s ease-in !important;
    -webkit-transition: all .4s ease-in !important;
    -moz-transition: all .4s ease-in !important;
    -ms-transition: all .4s ease-in !important;
    -o-transition: all .4s ease-in !important;
}

.add_to_cart_button.added {
    display: none !important;
}

.added_to_cart {
    font-size: 0;
    width: 40px;
    height: 40px;
    background-color: transparent !important;
    background-image: url(../icons/check-circle.svg) !important;
    background-repeat: no-repeat !important;
    background-size: 35px !important;
    background-position: center center !important;
}

/*
* PRODUCTS CARDS
*/

.products {
    column-gap: 1rem;
    row-gap: 1rem;
}

.woocommerce ul.products li.product {
    border: 1px solid #00000010;
    box-shadow: 0 0 20px #f2f4f1;
}

.woocommerce ul.products li.product .entry-content-wrap {
    margin: 0;
    padding: 15px;
}

.woocommerce .products.align-buttons-bottom li.product .product-action-wrap {
    padding-top: 0;
}

.product_loop_title a {
    margin-bottom: 10px;
}

.woocommerce ul.products.woo-archive-btn-button .button {
    width: fit-content;
}

.woocommerce a.added_to_cart {
    font-size: 0 !important;
    width: 40px;
    height: 40px;
    background-color: transparent !important;
    background-image: url(../icons/check-circle.svg) !important;
    background-repeat: no-repeat !important;
    background-size: 35px !important;
    background-position: center center !important;
}

.entry.loop-entry {
    border: 1px solid #00000010;
    box-shadow: 0 0 20px #f2f4f1;
}

.product-details {
    padding: 20px !important;
}

/*
* SIDEAREA MENU
*/

.sidearea_menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    left: -100%;
    transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -ms-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    z-index: 999;
}

.sidearea_menu.show {
    left: 0;
}

.sidearea_menu>div {
    flex: 1 50%;
}

.sidearea_menu-menu {
    background: #ffffff;
    left: -100%;
    position: relative;
    z-index: 99;
    transition: all .8s ease-in-out;
    -webkit-transition: all .8s ease-in-out;
    -moz-transition: all .8s ease-in-out;
    -ms-transition: all .8s ease-in-out;
    -o-transition: all .8s ease-in-out;
}

.sidearea_menu-image {
    position: relative;
    left: -200%;
    z-index: 98;
    transition: all 1.1s ease-in-out;
    -webkit-transition: all 1.1s ease-in-out;
    -moz-transition: all 1.1s ease-in-out;
    -ms-transition: all 1.1s ease-in-out;
    -o-transition: all 1.1s ease-in-out;
}

.sidearea_menu.show .sidearea_menu-menu,
.sidearea_menu.show .sidearea_menu-image {
    left: 0;
}

.sidearea_menu-menu-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    justify-content: space-between;
}

.sidearea_menu-menu-content::-webkit-scrollbar {
    display: none;
}

.sidearea_menu-menu-content-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
}

.sidearea_menu-menu-content-top-close {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.sidearea_menu-menu-content-top-close .header_inner-sidebar-content-icon span:nth-child(2) {
    width: 0 !important;
}

.sidearea_menu-menu-content-top-close .header_inner-sidebar-content-icon span:nth-child(3) {
    transform: rotate(-45deg);
    width: 100%;
    top: 10px;
}

.sidearea_menu-menu-content-top-close .header_inner-sidebar-content-icon span:nth-child(1) {
    transform: rotate(45deg);
    width: 100%;
    top: 10px;
}

.sidearea_navigation {
    padding: 50px;
    list-style: none;
    margin: 0;
}

.sidearea_navigation>.menu-item {
    overflow: hidden;
    position: relative;
}

.sidearea_navigation>.menu-item-has-children:after {
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    border-top: 2px solid #000000;
    border-right: 2px solid #000000;
    top: 20px;
    right: 10px;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transform: rotate(134deg);
    -webkit-transform: rotate(134deg);
    -moz-transform: rotate(134deg);
    -ms-transform: rotate(134deg);
    -o-transform: rotate(134deg);
}

.sidearea_navigation>.menu-item-has-children.show:after {
    top: 28px;
    transform: rotate(-43deg);
}

.sidearea_navigation .sub-menu {
    max-height: 0;
    transition: max-height .7s linear;
    -webkit-transition: max-height .7s linear;
    -moz-transition: max-height .7s linear;
    -ms-transition: max-height .7s linear;
    -o-transition: max-height .7s linear;
}

.sub-menu.show {
    height: auto;
    list-style: circle;
    margin: 0 20px;
}

.sub-menu.show li a {
    font-size: 1rem;
    font-family: inherit;
    line-height: 1;
}

.sidearea_navigation li a {
    color: #000000;
    font-family: 'Nivea';
    padding: 10px 0px;
    display: block;
    font-size: 2rem;
}

.sidearea_navigation .open_submenu .sub-menu {
    margin: 0 20px;
    list-style: circle;
}

.sidearea_navigation .open_submenu.show .sub-menu {
    max-height: 700px;
}

.sidearea_navigation .open_submenu .sub-menu li a {
    font-size: 1rem;
}

.sidearea_menu-menu-content-bottom {
    background: #f1f2f4;
    padding: 30px 50px;
}

.sidearea_menu-menu-content-bottom {
    background: #f1f2f4;
    padding: 30px 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 30px;
}

.sidearea_menu-menu-content-bottom-phone {
    font-size: 22px;
    font-weight: 600;
}

.sidearea_menu-menu-content-bottom-email {
    font-weight: 600;
}

.sidearea_menu-menu-content-bottom a {
    color: #000000;
    border-bottom: 1px dashed #00000025;
}

@media (max-width: 768px) {
    .sidearea_menu {
        height: 100vh;
    }

    .sidearea_menu-menu {
        transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
    }

    .sidearea_menu-image {
        transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
    }

    .sidearea_menu-menu-content-top,
    .sidearea_navigation,
    .sidearea_menu-menu-content-bottom {
        padding: 30px;
    }

    .sidearea_navigation li a {
        font-size: 1.5rem;
    }

}

/*
* SCROLLED TEXT
*/

.scrolled_text {
    position: relative;
    max-height: 400px;
    overflow-y: scroll;
    margin-bottom: 50px;
}

.scrolled_text__wrap {
    position: relative;
}

.scrolled_text__before {
    position: absolute;
    content: '';
    top: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, #ffffff, transparent);
    z-index: 1;
}

.scrolled_text__after {
    position: absolute;
    content: '';
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(0deg, #ffffff, transparent);
    z-index: 1;
}

scrolled_text::-webkit-scrollbar {
    width: 3px !important;
    background: #dadada !important;
}

.scrolled_text::-webkit-scrollbar-button {
    height: 0 !important;
}

.scrolled_text::-webkit-scrollbar-thumb {
    background: var(--primary-color) !important;
}

/*
* CART BOX
*/

#cart-drawer.popup-drawer .drawer-header {
    padding: 30px 0 20px;
    min-height: auto;
    border-bottom: 1px solid #00000010;
    flex-direction: row-reverse;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

#cart-drawer.popup-drawer .drawer-content {
    padding: 30px 0 20px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.popup-drawer.active .drawer-overlay {
    backdrop-filter: blur(3px);
    background-color: #f1f4f220;
}

#cart-drawer.popup-drawer .drawer-inner {
    max-width: 700px !important;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
    width: 150px;
}

#cart-drawer.popup-drawer .drawer-inner {
    transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
}

.woocommerce.widget_shopping_cart .buttons,
.woocommerce .widget_shopping_cart .buttons {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: center;
    margin: 30px 0 0;
    flex-wrap: wrap;
}

.woocommerce.widget_shopping_cart .buttons a {
    border-radius: 0;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    #cart-drawer.popup-drawer .drawer-inner {
        padding: 0 30px;
    }
}

.woocommerce ul.products li.product .price {
    font-size: 1rem;
}

.cart-subtotal {
    display: none;
}

/*
* CHECKOUT PAGE
*/
.woocommerce #payment .wc_payment_methods {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-bottom: 60px !important;
    list-style: none !important;
}

.woocommerce #payment .wc_payment_methods li {
    flex: 1 150px;
    margin: 0px 10px 15px !important;
}

.woocommerce #payment input[type="radio"] {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.woocommerce #payment li label {
    width: 100%;
    border: 2px solid #f2f5f7;
    background-color: #f2f5f7;
    transition: all 250ms ease-out;
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding: 8px 15px !important;
    overflow: hidden;
    border-left: 0 !important;
    text-align: center;
}

.woocommerce #payment li label:before {
    display: none !important;
}

.woocommerce #payment li label:hover svg {
    fill: #fff;
}

.woocommerce #payment li label img {
    width: 20px;
    filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(65deg) brightness(100%) contrast(82%);
    vertical-align: top;
}

.woocommerce #payment li label svg {
    width: 18px;
    height: auto;
}

.woocommerce #payment li input[type="radio"]:checked+label {
    background: #f2f5f7 !important;
    color: #000000;
    border: 2px solid var(--primary-color) !important;
}

.woocommerce #payment li label {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.woocommerce #payment li label:hover {
    background: var(--primary-color) !important;
    color: #ffffff;
    border: 2px solid transparent !important;
}

.woocommerce #payment li input[type="radio"]:checked+label svg {
    fill: #fff;
}

.payment_methods .payment_box {
    position: absolute !important;
    width: 100% !important;
    left: 0 !important;
    box-shadow: none !important;
}

@media(max-width: 540px) {
    #payment ul.wc_payment_methods li.wc_payment_method>label {
        font-size: 16px;
        padding: 12px 6px !important;
        line-height: 1;
        vertical-align: middle;
    }
}

/*
* MODALS STYLES
*/

.modal-backdrop {
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.1);
}

.modal-backdrop.show {
    opacity: 1;
}

.modal-dialog {
    max-width: 600px;
}

.modal_inner {
    width: 100%;
    padding: 30px;
    box-shadow: 0 10px 60px 40px #00000010;
    background: #ffffff;
}

.modal-content {
    margin: 0 auto;
    border: 0;
    border-radius: 0;
}

.modal-content-top {
    font-size: 1.5em;
    font-family: 'Nivea';
    margin: 30px 0 30px;
    text-align: center;
}

.modal .close {
    position: absolute;
    top: -10px;
    right: -10px;
}

.modal-inner-desc {
    font-size: 20px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto 30px;
}

.modal-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    column-gap: 15px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    color: #e1e1e1;
}

/*
* SEARCH SITE
*/

#search-drawer .drawer-inner {
    background: #24282920;
    backdrop-filter: blur(3px);
}

#search-drawer .drawer-inner form input {
    background: #ffffff !important;
    border: 1px solid #ebebeb !important;
}

#search-drawer .drawer-inner input.search-field:focus {
    color: #000000;
    box-shadow: none;
}

/*
* FOOTER STYLES
*/

footer {
    background: var(--secondary-color);
    /* margin-top: 100px; */
}

footer .footer_middle {
    padding: 40px 0 40px;
}

footer a {
    color: #000000;
}

footer a:hover {
    color: #000000 !important;
}

.footer_widget-title {
    color: #00000090;
    margin-bottom: 5px;
    font-weight: 600;
}

.footer_logo {
    margin: 0 0 40px;
}

.two_columns {
    column-count: 2;
}

.footer_widget-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_widget-content ul li a {
    position: relative;
    /* text-transform: uppercase; */
    padding: 3px 0px;
    display: block;
    width: fit-content;
    overflow: hidden;
}

.footer_widget-content ul li a:before {
    position: absolute;
    content: '';
    border-bottom: 2px solid #000000;
    bottom: 0;
    width: 100%;
    left: -100%;
    transition: all .4s ease-out;
}

.footer_widget-content ul li a:hover:before {
    left: 0;
}

.footer_widget-content.phone {
    font-size: 28px;
}

.footer_widget-content.email {
    font-size: 22px;
}

.footer_widget-content {
    margin-bottom: 20px;
}

.footer_socials-container {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin: 10px 0;
}

.footer_bottom {
    color: #000000;
    padding: 20px 0;
    border-top: 1px solid #00000010;
    font-size: 14px;
}

@media (max-width: 768px) {

    footer {
        margin-bottom: 50px;
    }

    footer .footer_middle {
        padding: 70px 0 30px;
    }

    .footer_widget-group {
        display: flex;
        justify-content: flex-start;
        column-gap: 20px;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        row-gap: 20px;
    }
}

@media (max-width: 480px) {
    .sidearea_menu-menu-content-bottom-link {
        font-size: 15px;
    }

    .mobile_center {
        text-align: center !important;
    }
}

/*
* FORMS CSS
*/

.wpcf7-spinner,
.wpcf7-not-valid-tip {
    display: none;
}

.wpcf7-form-control-wrap {
    width: 100%;
}

input.wpcf7-form-control {
    width: 100%;
    margin: 10px auto;
    border-radius: 0 !important;
    padding: 15px !important;
}

.wpcf7-response-output {
    padding: 20px !important;
    background: #ffb90020;
    border: 0px !important;
    text-align: center;
    margin: 30px 0 !important;
}

input.wpcf7-not-valid {
    border-color: #f44336;
}

/*
* CATALOG MENU
*/

.catalog_menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    left: -100%;
    transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    z-index: 999;
    background: #ffffff;
    overflow-y: scroll;
}

.catalog_menu.show {
    left: 0;
}

.catalog_menu-top {
    background: #f1f2f4;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.catalog_menu-menu-content-top-close {
    display: flex;
    align-items: center;
}

.catalog_menu-menu-content-top-lang {
    display: none;
}

.catalog_navigation {
    list-style: none;
    margin: 0;
    padding: 30px;
}

.catalog_navigation>li>a {
    font-size: 1.7rem;
    color: #000000;
    font-family: 'Nivea';
    line-height: 1.7;
}

.catalog_navigation .menu-item .sub-menu {
    display: block;
    list-style: circle;
    margin: 0;
    padding: 10px 20px;
}

/*
** CHECKOUT/CART
*/

#billing_country_field {
    display: none;
}

.woocommerce .woocommerce-info {
    border-left-color: var(--primary-color) !important;
}

.woocommerce-info {
    background: #f2f5f7 !important;
    border-radius: 10px;
}

.woocommerce-checkout footer,
.woocommerce-cart footer {
    margin-top: 20px;
}

.woocommerce-checkout header:before,
.woocommerce-cart header:before {
    position: absolute;
    content: '';
    background: repeating-linear-gradient(45deg, var(--secondary-color), var(--primary-color), var(--secondary-color) 300px);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    top: -200px;
    right: -200px;
    filter: blur(90px);
    z-index: -1;
    opacity: 20%;
}

.woocommerce-checkout #inner-wrap,
.woocommerce-cart #inner-wrap {
    padding: 50px 0px 30px;
}

.cart_totals {
    background: #ffffff;
    padding: 30px 30px 10px;
    border-radius: 15px;
    box-shadow: 0 20px 30px #24282910;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
    max-width: 100%;
}

.woocommerce-checkout .form-row {
    display: block;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    background: transparent;
    line-height: 1;
    border: 0px;
    border-bottom: 2px solid #dadada;
    width: 100%;
    border-radius: 0px !important;
    padding: 10px 0 !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row input.input-text:active,
.woocommerce form .form-row textarea:active {
    outline: 0;
    border-bottom: 2px solid var(--primary-color);
    border-radius: 0px !important;
}

.woocommerce form .form-row label {
    line-height: 1.4;
    font-weight: 500;
}

form.checkout .woocommerce-checkout-review-order {
    background: #ffffff;
    padding: 30px 30px 10px;
    border-radius: 15px;
    box-shadow: 0 20px 30px #24282910;
}

/* #wcus_np_billing_fields {
    display: block !important;
} */

#wcus_np_billing_fields .select2-container--default .select2-selection--single {
    height: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
}

#wcus_np_billing_fields .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.5;
}

.zen-ui-select__value,
.select2-selection__rendered {
    background: transparent !important;
    border: 0;
    border-bottom: 2px solid #dadada;
    padding: 10px 0 !important;
}

.zen-ui-select__value-text,
.select2-selection__rendered {
    text-transform: capitalize;
}

.wcus-checkout-fields {
    margin-top: 30px;
}

.woocommerce-checkout h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

#wcus_np_billing_fields h3 {
    font-size: 18px;
    margin-top: 30px;
}

.woocommerce-thankyou-order-received {
    font-size: 1.2rem;
    background: #4caf5030;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.woocommerce-order-details {
    padding: 35px 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px #dadada;
    background: #ffffff;
}

.woocommerce .woocommerce-customer-details address {
    border-radius: 0;
    border: 0;
    padding: 15px 0;
}

.woocommerce ul#shipping_method li label,
.woocommerce ul#shipping_method li {
    margin-bottom: 0;
}

form.checkout .woocommerce-checkout-review-order {
    position: sticky;
    top: 10px;
}

/*
* POSTS STYLES
*/

.post-archive {
    position: relative;
    padding: 75px 0;
}

.type-post header {
    border-bottom: 0;
}

.single-post .content-wrap {
    padding: 75px 0;
}

/*
* Category page styles
*/

.breadcrumbs {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0 0 0 / 10%);
    font-size: 14px;
    margin-bottom: 30px;
}

.page_title {
    position: relative;
    margin: 15px 0 40px;
}

.archive_page__posts_inner {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    padding-bottom: 60px;
}

.post_card {
    flex: 1 400px;
    max-width: 443px;
}

.post_card__image {
    position: relative;
    overflow: hidden;
    border-radius: 51px 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.post_card .post_card__image img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.simple_info .date {
    font-size: 14px;
    text-transform: uppercase;
    color: #9a9a9a;
    margin: 15px 0 5px;
}

.post_card__content h2 {
    font-size: 22px;
    line-height: 34px;
    margin: 0px 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pagination .page-numbers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.post_card__image:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, #e6bad3, transparent);
    opacity: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.post_card:hover .post_card__image:before {
    opacity: 1;
}

/*
* Single Post Styles
*/

.single_post__inner {
    position: relative;
    padding: 40px 0 60px;
}

.meta_data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin: 10px 0 30px;
    font-size: .85rem;
}

.feature_image {
    margin-bottom: 40px;
}

/* single post sidebar */

.toc_widget {
    position: sticky;
    background: #f2f5f7;
    top: 50px;
}

.widgettitle {
    font-size: 18px;
    font-weight: 600;
    padding: 15px 25px;
    display: block;
    border-bottom: 1px solid rgba(0 0 0 / 5%);
}

.toc_widget_list {
    padding: 20px 25px 25px;
    margin: 0;
}

.toc_widget_list  li {
    font-size: 18px;
    line-height: 24px;
}

.toc_widget_list  li a {
    display: block;
    color: #000000;
    margin-bottom: 14px;
    font-weight: 500;
}

.toc_widget_list  li a span {
    display: none;
}

.woocommerce div.product form.cart .variations tr .value div label .price {
    display: none !important;
}

.custom-packaging-class .required {
    display: none;
}

.custom-packaging-class .woocommerce-input-wrapper {
    display: block;
    width: 100%;
}

.custom-packaging-class .woocommerce-input-wrapper select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}

#custom_packaging_field_div {
    position: relative;
    margin: 30px 0 40px;
}

#custom_packaging_field_div label {
    font-size: 18px;
    margin-bottom: 12px;
    font-family: 'Nivea';
}

.packaging_items {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.packaging-option {
    flex: 1 100px;
    border: 2px solid #dadada;
    border-radius: 12px;
    padding: 0 0 12px;
}

.packaging-option.active {
    border-color: #4e6a54;
}

.packaging-option img {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 12px;
    border-radius: 9px;
}

.packaging-option span {
    text-align: center;
    font-size: 15px;
    line-height: 1;
    display: block;
}

.packaging-option span:last-child {
    font-size: 12px;
    margin-top: 5px;
    letter-spacing: -1px;
}

.product_post__block .product-details {
    position: relative;
    display: flex;
    align-items: flex-start;
    border: 1px solid #e7e8ea;
    background: #f3f5f7;
    flex-wrap: wrap;
    border-radius: 30px;
    margin: 20px 0 30px;
    gap: 24px;
}

.product_post__block .product_image {
    max-width: 260px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 10px 12px rgba(0,0,0,0.05);
}

.product_post__block .product_content {
    flex: 1 420px;
}

.product_post__block .product_title h2 {
    font-size: 24px;
}

.product_post__block .product_price {
    font-size: 24px;
    font-family: 'Nivea';
    margin: 0px 0 14px;
}

.product_post__block .product-details .product_content .product_price del {
    display: none;
}

.product_post__block .product_attributes__title {
    text-transform: uppercase;
    font-family: 'Nivea';
    color: #9a9a9a;
    font-size: 14px;
}

.product_post__block .product-attributes {
    list-style: none;
    padding: 0;
    margin: 10px 0 24px;
    column-count: 2;
}

#cart-drawer.popup-drawer .drawer-content .woocommerce-mini-cart__buttons.buttons a:first-child {
    display: none;
}