/*!
Theme Name: Wise Theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wise-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Wise Theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
* {
    box-sizing: border-box;
}

body,
html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Jost", sans-serif;
    color: #1E1E1E;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #1E1E1E;
    transition: 0.5s all;
}

a:hover {
    color: #4cb848;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", sans-serif;
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0;
}

h1,
.title {
    font-size: 60px;
    font-weight: 700;
}

h2 {
    font-size: 54px;
}

h3 {
    font-size: 45px;
}

h4 {
    font-size: 38px;
}

h5 {
    font-size: 30px;
}

h6 {
    font-size: 24px;
}

.button {
    display: inline-block;
    position: relative;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
    outline: none;
    border-radius: 8px;
    padding: 16px 30px;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    border: 1px solid transparent;
    z-index: 0;
    overflow: hidden;
    /* margin-top: 10px; */
}

.button:hover {
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.wrapper {
    width: 84.6875%;
    margin: 0 auto;
    position: relative;
}

.wrapper.small {
    width: 65.6771%;
}

section {
    padding: 100px 0;
    position: relative;
}

section.small-padding {
    padding: 70px 0;
}

section.pt-0 {
    padding-top: 0 !important;
}

section.pb-0 {
    padding-bottom: 0 !important;
}

section.p-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

p {
    margin: 0 0 30px 0;
}

p:last-child {
    margin: 0;
}

::placeholder {
    color: #d9d9d9;
}


input:not([type=checkbox]):not([type=radio]),
textarea,
select {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
    appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    width: 100%;
    padding: 20px;
    outline: 0;
    border: 1px solid #d9d9d9;
    background: transparent;
    display: block;
    height: 50px;
    border-radius: 10px;
}

textarea {
    min-height: 150px;
}

select {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="512" x="0" y="0" viewBox="0 0 24 24" style="enable-background:new 0 0 512 512" xml:space="preserve" class="hovered-paths"><g><path d="M12 16a1 1 0 0 1-.71-.29l-6-6a1 1 0 0 1 1.42-1.42l5.29 5.3 5.29-5.29a1 1 0 0 1 1.41 1.41l-6 6a1 1 0 0 1-.7.29z" data-name="16" fill="%23d9d9d9" opacity="1" data-original="%23000000" class="hovered-path"></path></g></svg>');
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center right 18px;
}


.wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #d9d9d9;
    opacity: 0.75;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 7px;
    position: absolute;
    top: 50%;
    right: 0;
}

.form-btn {
    position: relative;
    width: fit-content;
}

input.wpcf7-submit {
    width: fit-content;
    margin-top: 20px;
    border-radius: 10px;
    text-align: center;
    padding: 10px 50px;
}

.wpcf7-spinner::before {
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    transform-origin: 7px 7px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.heading-group {
    margin-bottom: 30px;
}

.intro-description {
    margin-bottom: 20px;
}

.d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

a.scrolltotop {
    background: #99183F;
    border: 1px solid #99183F;
    bottom: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    height: 50px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 50px;
    transition: 0.5s all;
    z-index: 99;
}

a.whatsapp-link {
    background: #25d366;
    border-radius: 50%;
    bottom: 70px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 50px;
    z-index: 99;
    transition: 0.5s all;
    font-size: 30px;
    border: 1px solid transparent;
}

a.whatsapp-link:hover {
    color: #25d366;
    background: #fff;
    border: 1px solid #25d366;
}

a.scrolltotop:hover {
    background: #fff;
    color: #99183F;
}

.mb-0 {
    margin-bottom: 0 !important;
}

/* HEADER */
.header {
    padding: 30px 0;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.site-branding img {
    max-width: 150px;
}


.header-right-main {
    display: flex;
    align-items: center;
}

/* Toggle */
.toggle {
    display: none;
    z-index: 9999;
    cursor: pointer;
}

.bar {
    width: 34px;
    height: 3px;
    background-color: #4cb848;
    margin: 3px 0;
    display: inline-block;
    margin-left: auto;
    border-radius: 5px;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    cursor: pointer;
    z-index: 99;
}

.bar:first-child {
    width: 24px;
}

.bar:last-child {
    width: 17px;
}

span.bar.animate.bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    width: 34px;
    background-color: #fff;
}

span.bar.animate.bar:nth-child(2) {
    opacity: 0;
}

span.bar.animate.bar:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -8px);
    width: 34px;
    background-color: #fff;
}

ul.menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.menu>li:not(:last-child) {
    margin-right: 40px;
}

ul.menu li {
    position: relative;
}

ul.menu>li>a {
    position: relative;
    font-weight: 500;
}

.menu>li>ul.sub-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 2;
    background: white;
    transition: 0.5s all ease-in;
    transform: perspective(600px) rotateX(-90deg);
    overflow: visible;
    min-width: 300px;
    top: 35px;
    transform-origin: 0% 0%;
    left: 0;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, .2);
}

.menu>li:hover>ul.sub-menu {
    visibility: visible;
    opacity: 1;
    transition: transform .5s ease, opacity .2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
    transform: perspective(600px) rotateX(0deg);
    overflow: visible;
}

.menu>li>ul.sub-menu>li {
    display: block;
    position: relative;
    border: none;
    width: 100%;
}

.menu>li>ul.sub-menu>li>a {
    border-right: none;
}

.menu>li>ul.sub-menu>li>a {
    border: 1px solid #DDD;
    padding: 20px;
    display: block;
    width: 100%;
}

ul.menu>li.current-menu-item>a {
    color: #99183F;
    padding-bottom: 5px;
    border-bottom: 2px solid #99183F;
}

ul.menu li:hover>a {
    color: #99183F;
    transition: 0.5s all;
}

.header-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* SEARCH OPTION */
.search-form {
    display: flex;
    align-items: center;
}

.searchbox .wp-block-search__button svg {
    height: 35px;
    width: 35px;
}

.cart-btn i {
    font-size: 20px;
}

.search-form ::placeholder {
    font-size: 0;
}

.searchbox section {
    padding: 0;
}

.header-right {
    display: flex;
    align-items: center;
    width: 22%;
    justify-content: end;
}

.header-right>div:not(:first-child) {
    margin-left: 20px;
}

button.wp-block-search__button.has-icon.wp-element-button {
    border: 0;
    background: transparent;
    padding: 0;
}

.wp-block-search__inside-wrapper {
    justify-content: flex-end;
    margin-left: 0 !important;
    align-items: center;
}

.header-right input {
    height: unset !important;
}

.header-right div {
    position: relative;
    padding: 0;
}

.wp-block-search__inside-wrapper {
    max-width: 220px !important;
}

.header-right div a {
    /* position: absolute; */
    inset: 0;
    z-index: 1;
}

/* BANNER */
.wc-category-tab-links li a {
    cursor: pointer;
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    padding: 10px;
}

.wc-category-tab-links li a.active {
    background: #000;
    color: #fff;
}

.wc-category-tab-links li {
    width: 100%;
    display: inline-block;
}

.wc-category-tab-content {
    display: none;
}

.wc-category-tab-content.active {
    display: block;
    animation: slide 1s;
    transition: 1s all ease-in;
}

@keyframes slide {
    0% {
        opacity: 0.5;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-banner-row {
    display: flex;
    align-items: normal;
    flex-wrap: wrap;
    justify-content: space-between;
}

.wc-category-tabs {
    width: 20%;
    padding: 30px 20px;
    border: 1px solid #EBEBEB;
    border-radius: 18px;
	position: sticky;
    position: -webkit-sticky;
top:30px;
	height:100%;
}

.wc-category-tab-contents {
    width: 78%;
}

.wc-category-tab-links li:last-child {
    margin-bottom: 0;
}

.wc-category-tab-links li a:after {
    content: " \f105";
    font-family: 'FontAwesome';
}

.banner-right-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -10px;
}

.left {
    width: 70%;
    padding: 0 10px;
    margin: 10px 0;
    border-radius: 18px;
    height: 100%;
}

.right {
    width: 30%;
    padding: 0 10px;
    margin: 10px 0;
    /* height: 100%; */
}

.banner-right-main li.product img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    margin-bottom: 0;
}

.right ul.products li:not(:last-child) {
    margin-bottom: 10px;
}

.image {
    position: relative;
    padding-top: 100%;
}

.left .image {
    position: relative;
    padding-top: 100%;
}

.image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.right .image {
    padding-top: 100%;
}

.banner-right-main .woocommerce-loop-product__title {
    position: absolute;
    padding: 10px 15px;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 0px 0px 18px 18px;
    margin-bottom: 0 !important;
}

.banner-right-main li {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 18px;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.right ul.products {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

.coming-soon,
.coming-soon img {
    border-radius: 18px;
}

.coming-soon .image {
    padding-top: 50%;
}

ul.shop-by-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px -50px;
}

ul.shop-by-list li {
    width: 20%;
    padding: 0px 50px;
    margin: 10px 0;
}

.category-title {
    font-size: 16px;
    text-align: center;
    margin-top: auto;
}

.shop-by-block {
    height: 100%;
    padding: 20px;
    padding-top: 80px;
}

.shop-by-list img {
    margin: 0 auto 30px;
    height: auto;
    width: 100%;
    aspect-ratio: 2/1.6;
    object-fit: contain;
}


.shop-by-list .product-category.product {
    position: relative;
    height: 100%;
    padding: 50px;
}

.shop-by-list .slick-list {
    padding-top: 50px;
}

.shop-by-list .product-category.product a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shop-by-list .woocommerce-loop-category__title {
    font-size: 24px;
    text-align: center;
    margin-top: auto;
}

.shop-by-list .woocommerce-loop-category__title .count {
    display: none;
}

span.gray {
    color: #A8A8AB;
}

.shop-by-list .product-category:after {
    content: "";
    background: #F0EDED;
    width: 270px;
    height: 270px;
    top: 0;
    left: 50%;
    position: absolute;
    border-radius: 100%;
    z-index: -1;
    transform: translate(-50%, 0%);
}

.heading {
    text-transform: uppercase;
    line-height: 1.2;
}

.products-grid ul.products {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    list-style-type: none;
    padding: 0;
    /*     width: 100%; */
}

.sale-products-row .products-grid .products li,
.best-seller-products .products-grid .products li {
    margin: 0 !important;
    height: 100%;
}
.products-grid ul.products .slick-slide{
    padding: 0;
}
.products-grid .products li {
    width: 33.33%;
    padding: 0 10px;
    position: relative;
    display: flex !important;
    /* margin: 20px 0; */
    flex-direction: column;
    height:100%;
}
section.sale-products {
    overflow: hidden;
}

.products-grid .products li a {
    position: relative;
    width: 100%;
    text-decoration: none;
    display: inline;
}

/* .products-grid .products li .attachment-woocommerce_thumbnail, */
.products-grid .products li .woocommerce-placeholder,
.attachment-woocommerce_thumbnail {
    width: 100%;
    height: auto;
    aspect-ratio: 2/2;
    object-fit: cover;
    margin-bottom: 20px;
}

/* .products-grid .products li a.button, */
.products li a.button {
    padding: 15px 20px;
    background: #FFC3D5;
    color: #000;
    width: 100%;
    margin-top: auto;
    border-radius: 0 0 18px 18px;
    line-height: normal;
    margin-top: auto;
    margin-bottom: 0;
    text-align: left;
}

.products-grid .products li a.button:hover {
    border: 1px solid transparent;
}

.products-grid .woocommerce-loop-product__title {
    margin: 0;
    color: #000;
    margin-bottom: 3px;
    font-size: 20px;
    font-weight: 700;
}

.custom-product-categories,
.custom-product-categories a {
    font-size: 16px;
    color: #A8A8AB;
}

.custom-product-categories a:hover {
    font-size: 16px;
    color: #a5183f;
}

.products-grid .products li .price,
ins {
    color: #a5183f;
    text-decoration: none;
}

.yith-wcwl-add-to-wishlist {
    margin: 0;
    position: absolute;
    top: 30px;
    right: 30px;
}

a.woocommerce-LoopProduct-link.woocommerce-loop-product__link {
    display: flex;
    position: absolute !important;
    flex-direction: column;
    inset: 0;
}

.yith-wcwl-feedback-messages-container {
    bottom: 20px;
    right: 20px;
    top: unset;
    left: unset;
    transform: unset;
}

span.woocommerce-Price-currencySymbol {
    margin-right: 3px;
}

span.woocommerce-Price-amount.amount {
    font-weight: 700;
    margin-left: 5px;
}

.added_to_cart.wc-forward {
    position: absolute !important;
    bottom: 0;
    left: 0;
    z-index: 3;
    padding: 15px 20px;
    background: #ffc3d5;
    width: 100%;
    font-weight: 600;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.added_to_cart.wc-forward:after {
    content: " \f105";
    font-family: 'FontAwesome';
}

span.yith-wcwl-add-to-wishlist-button__label {
    display: none;
}

.yith-add-to-wishlist-button-block {
    margin: 0;
    position: absolute;
    bottom: 5px;
    right: 10px;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
    transition: 0.5s all;
}

.products li .yith-add-to-wishlist-button-block a {
    font-size: 0;
    border: 2px solid transparent;
    padding: 5px;
    line-height: 1;
    border-radius: 10px;
    text-align: center;
    margin: 0;
    cursor: pointer;
}

a.yith-wcwl-add-to-wishlist-button--added path {
    fill: #a5183f;
}

svg#yith-wcwl-icon-heart-outline {
    color: #a5183f;
}

/* .products-grid  */
.products li:hover .yith-add-to-wishlist-button-block {
    visibility: visible;
    opacity: 1;
}

.best-seller-products ul {
    /* margin: 0 !important; */
}

.product-block {
    border: 1px solid #EBEBEB;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.product-block:hover {
    background: #F9F9F9;
}

.custom-product-top {
    order: -1;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-block-top {
    display: flex;
    flex-direction: column;
    padding:20px;
    justify-content: space-between;
    height: 100%;
}

span.onsale {
    display: none;
}

/* span.custom-sale-badge {
    padding: 5px 10px;
    border: 1px solid #a5183f;
    border-radius: 10px;
    font-size: 15px;
    color: #a5183f;
} */

.top-left {
    margin-right: 10px;
    width: 100%;
}

.top-right {
    flex: 0 0 auto;	
    padding: 5px 10px;
    border: 1px solid #a5183f;
    border-radius: 10px;
    font-size: 15px;
    color: #a5183f;
}

.slick-list {
    height: 100%;
    display: flex;
}

.slick-track {
    height: auto;
    display: flex;
}

.slick-slide {
    height: 100%;
    padding: 0;
}

.slick-slide>div {
    height: 100%;
}

/* MARQUEE */
.animated-line {
    background: #F7EA68;
    padding: 20px;
    overflow: hidden;
    transform: rotate(-2deg);
    margin: 80px 0;
}

.marquee-content {
    width: 240%;
    display: flex;
    justify-content: flex-end;
    animation: marquee-reverse 30s linear infinite;
    position: relative;
}

.marquee-block>div {
    display: inline-flex;
    align-items: center;
    color: #000;
}

.marquee-block {
    margin-right: 65px;
    display: flex;
    flex: 0 0 auto;
}

.marquee-icon {
    margin-right: 32px;
    width: fit-content;
}

.marquee-block>div h5 {
    line-height: 1.25;
}

.marquee-icon img {
    width: 100%;
    height: 100%;
}

@keyframes marquee-reverse {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

.animated-line-top {
    background: #F7EA68;
    padding: 20px;
    overflow: hidden;
    transform: rotate(2deg);
    margin: 80px 0;
}

.animated-line-top .marquee-content {
    width: 240%;
    display: flex;
    justify-content: flex-end;
    animation: marquee-forward 30s linear infinite;
    position: relative;
}

@keyframes marquee-forward {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

.sale-products-row {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    justify-content: space-between;
}

.sale-products-left {
    width: 25%;
    padding: 50px 20px 50px 20px;
    background: #000;
    border-radius: 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sale-products-right {
    width: 72%;
}

.sale-products-right ul {
    width: 80vw !important;
    max-width: unset;
    float: left;
    margin: 0 !important;
}

.sale-products-left .button {
    background: #fff;
    color: #000;
    text-align: center;
    border-radius: 30px;
}

section.testimonial {
    background: #FAF1E5;
}

.testimonial-row .heading {
    color: #003D29;
    font-weight: 400;
}

ul.testimonial-list li>div {
    background: #EEE6DA;
    padding: 30px;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

ul.testimonial-list li {
/*     padding: 0 10px;
    margin: 10px 0; */
    height: 100%;
}

ul.testimonial-list .slick-slide{
    padding:0 10px;
}

.testimonial-tag {
    margin-bottom: 30px;
}

.client-review {
    margin-bottom: 30px;
}

.client-detail {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.client-image img {
    width: 60px;
}

.client-image {
    margin-right: 15px;
}

.client-name {
    margin-bottom: 5px;
    font-weight: 600;
}


.insta-feed-row .slick-slide {
    padding: 0 20px;
}

.insta-feed-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.insta-bg img {
    width: 100%;
    height: 100%;
}

.insta-images {
    width: 70%;
}

.insta-link {
    margin-bottom: 20px;
}

.insta-content {
    width: 30%;
    padding: 10px;
    text-align: center;
    position: relative;
}

#sbi_images {
    display: flex;
}

#sbi_images.slick-track {
    display: flex;
    animation: scrollLeft 30s linear infinite;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.insta-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

span.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(255 255 255 / 90%);
    height: 100%;
    width: 100%;
}

.insta-images img {
    height: 300px;
}

/* FOOTER */
.site-footer {
    padding: 100px 0 70px;
    background: #212844;
    position: relative;
    overflow: hidden;
}

.site-footer:after {
    content: "";
    background: #2C3454;
    width: 400px;
    height: 400px;
    position: absolute;
    top: -30%;
    right: -10%;
    border-radius: 100%;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 100px;
    border-bottom: 1px solid #fff;
    margin-bottom: 30px;
}

.footer-block {
    max-width: 400px;
    color: #fff;
}

.site-branding {
    width: fit-content;
}

/* .footer-block .site-branding img {
    filter: invert(1);
} */

.footer-block a,
.copyright p {
    color: #fff;
}

.footer-description {
    margin-top: 40px;
}

.footer-heading {
    margin-bottom: 20px;
}

ul.footer-menu li {
    margin-bottom: 10px;
    /* text-align:center; */
}

ul.footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-block a:hover {
    text-decoration: underline;
}

ul.social-media-list {
    display: inline-flex;
}

ul.social-media-list li:not(:last-child) {
    margin-right: 20px;
}

.contact-block:not(:last-child) {
    margin-bottom: 20px;
}

.cta-info {
    display: inline-flex;
}

.cta-info i {
    margin-right: 10px;
    margin-top: 5px;
}

.contact-info-block {
    margin-bottom: 20px;
}

/*  */
.woocommerce-notices-wrapper:empty {
    display: none;
}

.coupon-row {
    border-radius: 16px;
    background: #212844;
    padding: 55px 100px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.coupon-block {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.product-image {
    width: 37%;
    margin-bottom: -130px;
    z-index: 1;
}

.coupon-content {
    width: 100%;
    color: #fff;
}

.product-image img {
    width: 100%;
    height: 100%;
}

span.red {
    color: #D90000;
    display: block;
}

.coupon-top {
    font-weight: 400;
    margin-bottom: 30px;
}

.coupon-heading {
    font-size: 63px;
    font-weight: 500;
    margin-bottom: 30px;
}

.coupon-offer {
    font-weight: 400;
}

.coupon-row:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 115px;
    height: 115px;
    background: #fff;
    border-radius: 100%;
}

.coupon-row:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 115px;
    height: 115px;
    background: #fff;
    border-radius: 100%;
}

ul.coupon-list {
    width: 50%;
    margin-right: 100px;
}

.coupon-list .slick-list {
    margin-bottom: 90px;
}

ul.slick-dots {
    bottom: 0;
    text-align: left;
}

.slick-dots li.slick-active {
    color: #fff;
    width: 32px;
    height: 10px;
    opacity: 1;
    content: none;
}

.slick-dots li {
    color: #fff;
    padding: 5px;
    background: #fff;
    border-radius: 100%;
    width: 10px;
    height: 10px;
    transition: 0.5s all;
}

.slick-dots li button:before {
    content: none;
}

li.slick-active {
    width: 32px;
    height: 5px;
    border-radius: 7px;
}

.slick-dots li button {
    width: 0;
    height: 0;
    padding: 0;
}

.bg-image {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(0px, 0%);
    z-index: 0;
    overflow: hidden;
}

.bg-image img {
    width: 100%;
    height: 100%;
}

/* SHOP BY GOAL */
ul.shop-by-goals-grid {
    display: flex;
    flex-wrap: wrap;
}

ul.shop-by-goals-grid li {
    width: 50%;
    padding: 0 20px;
    margin: 20px 0;
}

.goals-block {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.goals-block img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.goal-tag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: max-content;
}

.goals-block .image {
    padding-top: 56%;
}

span.img-overlay {
    position: absolute;
    inset: 0;
    background: #1E1E1E;
    opacity: 0.2;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.goals-block .image:after {
    content: "";
    background: rgb(0 0 0 / 50%);
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s all;
    border-radius: 100px;
}

.goals-block:hover .image:after {
    height: 100%;
    width: 100%;
    border-radius: 0;
}

/* SHOP PAGE */
ul.product-categories {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.left-part {
    width: 100%;
    text-align: center;
    margin-bottom: 100px;
    margin-top: 0;
}

.right-part {
    width: 100%;
    padding: 0 20px;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.widget {
    padding: 30px;
}

.widget-title {
    font-size: 40px;
    border-bottom: 1px solid #000;
    display: inline-block;
    margin-bottom: 40px;
}

.widget ul li,
.variations-list li,
.tagcloud a {
    margin: 10px;
    width: 20%;
    margin: 10px 0;
    padding: 0 10px;
}

/* .right-part  */
ul.products li.product .woocommerce-loop-product__title {
    font-size: 25px;
    margin-bottom: 10px;
    color: #000000;
}

.product-main-row .woocommerce-result-count {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    width: 75%;
}

.product-main-row .woocommerce-ordering {
    flex: 0 0 auto;
    width: 25%;
}


.left-part .widget-area {
    position: sticky;
    top: 20px;
    position: -webkit-sticky;
}

section.product-main-row {
    overflow: unset;
}

.widget a {
    font-size: 20px !important;
    display: inline-flex;
}

.current-cat,
.current-cat a {
    color: #4cb848;
}

.left-part.shop-by-list img {
    width: 100%;
    aspect-ratio: 1/1;
}

.left-part.shop-by-list .product-category:after {
    content: none;
}

/* .left-part.shop-by-list .product-category.product {
    padding: 10px 80px;
}
 */
.woocommerce-ordering select {
    border: 0;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    border-radius: 0;
    font-size: 20px;
    width: 100%;
    height: unset;
	line-height:1.4;
}

.banner-bg-image img {
    width: 100%;
    height: 100%;
    object-position: center bottom;
}

section.shop-header-bg {
    padding: 30px 0;
}

.banner-bg-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.woocommerce-products-header,
.woocommerce-products-header a {
    text-align: center;
    color: #fff;
}

.banner-bg-image span.img-overlay {
    border-radius: 0;
    background: #4cb848;
}

.woocommerce-products-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.banner-image {
    width: 40%;
}

.banner-right {
    width: 60%;
}

.banner-image img {
    width: 100%;
    height: 100%;
}

/* CART*/
header.entry-header {
    display: none;
}

.woocommerce-cart .woocommerce {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.woocommerce-notices-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

form.woocommerce-cart-form {
    width: 67.2346002621232%;
    width: 100%;
    margin-bottom: 50px;
    border: 1px solid #CCC;
}

.cart-collaterals {
    padding: 30px;
    border: 1px solid #ccc;
    width: 100%;
}

.woocommerce table {
    border-collapse: collapse;
    width: 100%;
}

.woocommerce table th,
.woocommerce table td {
    padding: 20px 20px;
    border-bottom: 1px solid #ccc;
    text-align: left;
}

.woocommerce table td,
.woocommerce-cart .woocommerce a {
    font-size: 20px;
    font-weight: 700;
}

.woocommerce table .product-thumbnail {
    width: 100px;
}

.woocommerce table .product-price,
.woocommerce table .product-quantity,
.woocommerce table .product-subtotal {
    text-align: center;
}

.woocommerce table .product-thumbnail img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0;
}

.woocommerce .remove {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4cb848;
    width: 35px;
    height: 35px;
    margin: 0 auto;
    border-radius: 50px;
    color: #fff;
}

.woocommerce table th {
    font-size: 25px;
    font-weight: 600;
    color: #000;
}

.shop_table .quantity {
    width: max-content;
    margin: 0 auto;
}

.shop_table .quantity input {
    width: 40px;
}

.cart_totals h2 {
    font-size: 35px;
    color: #000;
    padding-bottom: 20px;
    text-transform: uppercase;
}

.cart-collaterals table {
    border: none;
    margin: 0 auto;
    text-align: center;
}

.cart_totals {
    width: 100%;
}

.wc-proceed-to-checkout {
    margin-top: 20px;
    width: max-content;
    margin-left: auto;
}

.checkout-button {
    width: 100%;
}

.woocommerce table td.actions {
    text-align: right;
    line-height: 1;
}

.coupon {
    position: relative;
    width: 450px;
}

.woocommerce table td.actions .coupon {
    float: left;
    display: flex;
    /* flex-wrap: wrap; */
}

.coupon .button {
    /* position: absolute; */
    top: 0;
    right: 0;
    border-radius: 0;
    width: 38%;
    flex: 0 0 auto;
    margin-top: 0;
}

form.cart {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}

.quantity input:not([type=checkbox]):not([type=radio]) {
    appearance: none;
    -webkit-appearance: none;
    text-align: center;
    border-radius: 0;
    border: none;
    width: auto;
    width: 80px;
    padding: 0 10px;
    font-size: 18px;
}

.quantity {
    width: auto;
    text-align: center;
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #a5183f;
    flex: 0 0 auto;
}

.quantity button {
    width: auto;
    flex: 0 0 auto;
    font-size: 22px;
    background: #a5183f;
    flex: 1;
    min-width: 50px;
    border: #a5183f;
    color: #fff;
}

/* Hide the up and down arrows from the quantity input */
.quantity input.qty {
    -moz-appearance: textfield;
}

.quantity input.qty::-webkit-outer-spin-button,
.quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart .single_add_to_cart_button {
    width: 100%;
    margin-left: 30px;
    text-align: center;
}

.input-text {
    padding: 14px;
    border-radius: 0;
    width: 60%;
}

.cart_totals td {
    text-align: right !important;
}

/*Checkout  */

.woocommerce-notices-wrapper:empty {
    /* display: none; */
}

.woocommerce-checkout .woocommerce {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.col2-set {
    width: 60%;
    /* padding: 30px 0; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.woocommerce-column.woocommerce-column--1.woocommerce-column--billing-address.col-1,
.woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 {
    width: 48%;
}

.woocommerce-checkout-review-order {
    width: 35%;
    border: 5px solid #000;
    border-radius: 15px;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

#order_review_heading {
    display: none;
}

.woocommerce-billing-fields h3,
#order_review:before {
    font-size: 18px;
    line-height: 1;
    background: #FFC3D5;
    color: #000;
    padding: 16px 20px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
    margin-bottom: 30px;
    display: block;
}

#order_review:before {
    content: "Your order";
    background: #fff;
    color: #000;
    border-bottom: 1px solid #ccc;
    text-align: center;
    font-weight: 700;
    border-radius: 0;
}

.woocommerce-billing-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.form-row {
    width: 100%;
    margin: 10px 0 !important;
    padding: 0 10px;
}

.checkout_coupon.woocommerce-form-coupon .form-row-first {
    width: 70% !important;
    /* width: 100%; */
    padding: 0;
}

.form-row label {
    line-height: 1;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 10px;
    display: block;
    position: relative !important;
    min-height: 16px;
}

.woocommerce form .form-row .required {
    text-decoration: none;
}

#billing_address_1_field,
#billing_address_2_field {
    width: 50%;
}

#billing_city_field,
#billing_state_field,
#billing_postcode_field {
    width: 33.33%;
}

.col-2 .woocommerce-additional-fields {
    margin: 20px -10px 0 -10px;
}

.woocommerce-additional-fields h3 {
    display: none;
}

form.woocommerce-checkout {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
    height: 100%;
}

.woocommerce-info .showlogin {
    text-decoration: underline;
}

.cart-empty.woocommerce-info {
    margin-top: 20px;
}

.woocommerce-checkout-payment {
    padding: 20px;
}

.place-order {
    padding: 0;
}

.woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 30px;
}

.button.alt {
    width: max-content;
    margin: 0 auto;
}

/* select */
span.select2-selection.select2-selection--single {
    border: none;
    color: red;
    background: transparent;
    height: 100%;
}

span.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1E1E1E !important;
    line-height: 1.2;
    appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    width: 100%;
    padding: 15px 20px;
    border-radius: 0;
    outline: 0;
    border: 1px solid #d9d9d9;
    background: transparent;
    display: block;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
    width: 100%;
    margin-bottom: 20px;
    display: none;
}

ul.woocommerce-error li:not(:last-child) {
    margin-bottom: 5px;
}

.checkout-inline-error-message {
    margin-top: 10px !important;
    color: red;
}


/* Mini- Cart */

a.cart-button-custom {
    position: relative;
}

.woocommerce .remove {
    background: red url('data:image/svg+xml,<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 314 402" width="314" height="402"><path fill="white" fill-rule="evenodd" d="m249.6 402h-185.1c-5.4 0-10.7-1.1-15.7-3.1-4.9-2.1-9.4-5.1-13.2-8.9-3.8-3.8-6.8-8.3-8.9-13.3-2.1-4.9-3.1-10.2-3.1-15.6v-288.4c0-2 0.4-4 1.1-5.8 0.8-1.8 1.9-3.5 3.3-4.8 1.4-1.4 3-2.5 4.8-3.3 1.8-0.8 3.8-1.1 5.8-1.1h237c1.9 0 3.9 0.3 5.7 1.1 1.8 0.8 3.5 1.9 4.9 3.3 1.4 1.3 2.5 3 3.2 4.8 0.8 1.8 1.2 3.8 1.2 5.8v288.4c0 5.4-1.1 10.7-3.2 15.6-2 5-5 9.5-8.8 13.3-3.8 3.8-8.3 6.8-13.3 8.9-5 2-10.3 3.1-15.7 3.1zm-196-314.3v273.4c0 1.4 0.3 2.8 0.8 4.2 0.6 1.3 1.4 2.5 2.4 3.5 1 1 2.2 1.8 3.5 2.4 1.3 0.5 2.7 0.8 4.2 0.8h185.1c1.5 0 2.9-0.3 4.2-0.8 1.3-0.6 2.5-1.4 3.6-2.4 1-1 1.8-2.2 2.3-3.5 0.6-1.4 0.9-2.8 0.9-4.2v-273.4z"/><path  fill="white" fill-rule="evenodd" d="m220.1 87.7h-126c-2 0-4-0.4-5.8-1.2-1.8-0.7-3.5-1.8-4.8-3.2-1.4-1.4-2.5-3.1-3.3-4.9-0.8-1.8-1.1-3.8-1.1-5.7v-27.3c0-5.9 1.1-11.7 3.4-17.1 2.2-5.4 5.5-10.4 9.7-14.5 4.1-4.2 9.1-7.5 14.5-9.7 5.4-2.3 11.2-3.4 17.1-3.4h66.5c5.9 0 11.7 1.1 17.1 3.4 5.5 2.2 10.4 5.5 14.5 9.7 4.2 4.1 7.5 9.1 9.7 14.5 2.3 5.4 3.5 11.2 3.5 17.1v27.3c0 1.9-0.4 3.9-1.2 5.7-0.7 1.8-1.8 3.5-3.2 4.9-1.4 1.4-3.1 2.5-4.9 3.2-1.8 0.8-3.8 1.2-5.7 1.2zm-111-30h96v-12.3c0-1.9-0.4-3.8-1.2-5.6-0.7-1.8-1.8-3.4-3.2-4.8-1.3-1.4-3-2.5-4.7-3.2-1.8-0.7-3.7-1.1-5.7-1.1h-66.5c-1.9 0-3.8 0.4-5.6 1.1-1.8 0.7-3.4 1.8-4.8 3.2-1.4 1.4-2.5 3-3.2 4.8-0.7 1.8-1.1 3.7-1.1 5.6z"/><path  fill="white"  d="m157.1 344.6c-2 0-4-0.4-5.8-1.2-1.8-0.7-3.5-1.8-4.8-3.2-1.4-1.4-2.5-3.1-3.3-4.9-0.8-1.8-1.1-3.8-1.1-5.7v-199.5c0-4 1.5-7.8 4.4-10.6 2.8-2.8 6.6-4.4 10.6-4.4 3.9 0 7.8 1.6 10.6 4.4 2.8 2.8 4.4 6.6 4.4 10.6v199.5c0 1.9-0.4 3.9-1.2 5.7-0.7 1.8-1.8 3.5-3.2 4.9-1.4 1.4-3.1 2.5-4.9 3.2-1.8 0.8-3.8 1.2-5.7 1.2z"/><path  fill="white"  d="m102.9 344.6c-2 0-3.9-0.4-5.7-1.2-1.9-0.7-3.5-1.8-4.9-3.2-1.4-1.4-2.5-3.1-3.3-4.9-0.7-1.8-1.1-3.8-1.1-5.7v-199.5c0-4 1.6-7.8 4.4-10.6 2.8-2.8 6.6-4.4 10.6-4.4 4 0 7.8 1.6 10.6 4.4 2.8 2.8 4.4 6.6 4.4 10.6v199.5c0 1.9-0.4 3.9-1.1 5.7-0.8 1.8-1.9 3.5-3.3 4.9-1.4 1.4-3 2.5-4.9 3.2-1.8 0.8-3.7 1.2-5.7 1.2z"/><path  fill="white"  d="m211.2 344.6c-1.9 0-3.9-0.4-5.7-1.2-1.8-0.7-3.5-1.8-4.9-3.2-1.4-1.4-2.5-3.1-3.2-4.9-0.8-1.8-1.2-3.8-1.2-5.7v-199.5c0-4 1.6-7.8 4.4-10.6 2.8-2.8 6.7-4.4 10.6-4.4 4 0 7.8 1.6 10.6 4.4 2.8 2.8 4.4 6.6 4.4 10.6v199.5c0 1.9-0.4 3.9-1.1 5.7-0.8 1.8-1.9 3.5-3.3 4.9-1.4 1.4-3 2.5-4.8 3.2-1.8 0.8-3.8 1.2-5.8 1.2z"/><path  fill="white"  d="m298.8 87.7h-283.5c-4 0-7.8-1.6-10.6-4.4-2.8-2.8-4.4-6.7-4.4-10.6 0-4 1.6-7.8 4.4-10.6 2.8-2.9 6.6-4.4 10.6-4.4h283.5c4 0 7.8 1.5 10.6 4.4 2.8 2.8 4.4 6.6 4.4 10.6 0 3.9-1.6 7.8-4.4 10.6-2.8 2.8-6.6 4.4-10.6 4.4z"/></svg>') center center / 10px no-repeat;
    font-size: 0 !important;
}

.mini-cart {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -400px;
    max-width: 400px;
	width:100%;
    background: var(--white);
    z-index: 99999;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}

.mini-cart.active {
    right: 0;
}

.mini-cart.active:after {
    opacity: 0.6;
}

.mini-cart .widget-title {
    margin: 0;
    width: 100%;
    padding: 20px;
}

.mini-cart:after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}

.header-right span {
    display: none;
}

span.cart-count {
    display: block;
    position: absolute;
    top: -11px;
    left: 16px;
    bottom: 0;
    background: #000;
    border-radius: 100%;
    color: #ffffff;
    width: 22px;
    height: 22px;
    text-align: center;
    font-size: 11px;
    line-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-button-custom {
    position: relative;
}

.mini-cart-block {
    position: relative;
    background: #ffffff;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.woocommerce-mini-cart {
    margin: 0 !important;
    padding: 0 !important;
    list-style-type: none;
    height: calc(100% - 126px);
    overflow: auto;
}

.mini-cart-block .woocommerce {
    flex-direction: column;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.woocommerce-mini-cart li {
    margin: 0 !important;
    border: none !important;
    padding: 20px 60px 20px 100px !important;
    display: block !important;
    border-bottom: 1px solid #cccccc !important;
    position: relative;
    width: 100% !important;
}

.woocommerce-mini-cart li .remove.remove_from_cart_button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
}

.widget_shopping_cart_content {
    height: 100%;
}

.woocommerce-mini-cart li>a:nth-child(2) {
    display: flex;
    align-items: center;
    padding: 0;
    border: none;
}

.woocommerce-mini-cart li>a:nth-child(2) img {
    max-width: 60px;
    margin-right: 15px;
    position: absolute;
    top: 0;
    left: 20px;
    height: calc(100% - 40px);
    margin: auto;
    bottom: 0;
    object-fit: cover;
}

.woocommerce-mini-cart .quantity {
    border: none;
    font-size: 15px;
    margin-top: 5px;
    justify-content: flex-start;
    width: 100%;
}

.woocommerce-mini-cart__total.total {
    background: #000;
    color: #fff;
    width: 100%;
    font-size: 20px;
    border: none;
    text-align: center;
    padding: 10px 20px;
}

.woocommerce-mini-cart__buttons.buttons {
    padding: 0 20px;
    display: flex;
}

.woocommerce-mini-cart__buttons.buttons .button {
    flex: 1;
    margin-right: 10px;
    min-width: auto;
    padding: 10px 15px;
    justify-content: center;
    border-radius: 0;
}

.woocommerce-mini-cart__buttons.buttons .button:last-child {
    margin-right: 0;
}

.mini-cart-block .woocommerce-mini-cart__empty-message {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.mini-cart a.close {
    position: absolute;
    top: 14px;
    right: 15px;
    z-index: 9;
    color: #000;
    text-decoration: none;
    font-weight: 700;
}

.mini-cart a.close:hover {
    color: #4cb848;
}

.hide_cart_widget_if_empty {
    height: calc(100% - 58px);
}

.mini-cart-block .wp-block-search__inside-wrapper {
    display: none;
}

.checkout_coupon.woocommerce-form-coupon .form-row-last {
    flex: 0 0 auto;
    width: auto;
    padding: 0;
}

.checkout_coupon.woocommerce-form-coupon {
    position: relative;
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout_coupon .form-row.form-row-first label {
    display: none;
}

.checkout_coupon.woocommerce-form-coupon .form-row-last .button {
    border-radius: 0;
    line-height: 1.3;
    margin-top: 0;
}

/* WISHLIST */
.wishlist-title-with-form {
    display: none;
}

.wishlist_table tr td.product-remove {
    padding: 15px;
}

table.wishlist_table tbody td,
table.wishlist_table thead th:not(.product-name) {
    text-align: center;
}

.wishlist_table .product-add-to-cart a.button {
    display: none !important;
}

.yith_wcwl_wishlist_footer .yith-wcwl-share {
    margin: 20px 0 0 0;
    border: 1px solid #e1e1e1;
    padding: 20px;
}

.single-product-details-page .entry-summary .yith-wcwl-add-to-wishlist {
    position: unset !important;
    width: auto;
    display: block;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #cccccc;
}

span.green {
    display: block;
    font-size: 35px;
    color: #4cb848;
}

.yith_wcwl_wishlist_footer {
    display: flex;
    width: 100%;
}

.yith-wcwl-share h4.yith-wcwl-share-title {
    margin: 0 0 10px 0;
}

/* SINGLE PAGE */
.single-product-page .product {
    display: flex;
    flex-wrap: wrap;
}

.single-product-page .woo-variation-product-gallery {
    max-width: 100% !important;
    width: 50%;
    padding: 30px;
    background: #FFF;
    margin-bottom: 0;
}

.single-product-page .summary.entry-summary {
    width: 50%;
    padding: 30px;
    background: #fff;
}

.single-product-page .woo-variation-product-gallery img {
    width: 100%;
    height: 100%;
}

.single-product-page .woocommerce-tabs.wc-tabs-wrapper {
    width: 100%;
    margin: 50px 0;
    background: #fff;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

section.related.products {
    width: 100%;
    background: #fff;
    padding: 30px;
}

.single-product-page ul.products {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
/*     width: 100%; */
}

.single-product-page ul.products li {
    width: 33.33%;
    padding: 0 10px;
    margin: 10px 0;
    position: relative;
    display: block;
}

section.single-product-page {
    background: #f7f7f7;
    overflow: unset;
}

.product_title.entry-title {
    font-size: 35px;
    margin-bottom: 15px;
}

.single-product-page .quantity {
    margin: 0;
}

.single-product-page button.alt {
    margin-left: 20px;
    margin-right: 0;
}

.single-product-page .summary .yith-add-to-wishlist-button-block {
    visibility: visible;
    opacity: 1;
    position: unset !important;
    width: auto;
    display: block;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #cccccc;
    border-radius: 0;
}

.single-product-page .summary span.yith-wcwl-add-to-wishlist-button__label {
    display: block;
    font-size: 20px;
    font-weight: 600;
}

.woocommerce-product-details__short-description {
    margin-bottom: 40px;
    display: inline-block;
}

.product_meta {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.product_meta>span:after {
    content: "|";
    margin: 0 10px;
    color: gray;
    font-weight: normal;
}

.product_meta span:last-child:after {
    display: none;
}

.product_meta span {
    font-weight: 600;
}

.product_meta span span,
.product_meta span a {
    font-weight: normal;
    text-decoration: none;
}

.woocommerce-tabs {
    margin-top: 50px;
    width: 100%
}

.tabs {
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 25%;
    position: sticky;
    position: -webkit-sticky;
    top: 50px;
}


.tabs a {
    text-decoration: none;
    padding: 10px 15px;
    display: inline-flex;
    font-size: 20px;
    position: relative;
    font-size: 22px;
    border: 1px solid #000;
    display: block;
    /* border-top: 0; */
    margin-top: -1px;
}

.tabs li.active a {
    color: #a5183f;
    background: #000;
    color: #fff;
}

.tabs li.active a:before {
    opacity: 1
}

.wc-tab h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.related.products h2 {
    font-size: 45px;
    margin-bottom: 20px;
}

.wc-tab {
    display: none;
    width: 75%;
    padding: 5px 10px 10px 50px;
}

.woocommerce-Reviews {
    display: flex;
    flex-wrap: wrap;
}

.woocommerce-Reviews #comments {
    width: 44%;
}

.woocommerce-Reviews #review_form_wrapper {
    width: 50%;
    margin-left: auto;
}

.comment-respond,
.comment-respond p {
    font-size: 18px;
}

.comment-form {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.comment-form>* {
    padding: 0 10px;
    width: 100%;
}


.comment-form-author,
.comment-form-email {
    width: 50%;
}

.comment-reply-title {
    font-size: 20px;
    color: #000;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
    display: block;
}

div#respond {
    background: #f7f7f7;
    border: 1px solid #000;
    padding: 30px;
}

.comment-form-rating label {
    display: none;
}

.woocommerce .star-rating,
.woocommerce p.stars [class^="star-"],
.woocommerce p.stars [class*=" star-"] {
    font-family: "WooCommerce";
    speak: none;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    font-size: 1em;
}

.woocommerce .star-rating {
    overflow: hidden;
    position: relative;
    height: 1em;
    width: 5em;
}

.woocommerce .star-rating:before {
    content: "\e021\e021\e021\e021\e021";
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    color: #999;
}

.woocommerce .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em
}

.woocommerce .star-rating span:before {
    content: "\e020\e020\e020\e020\e020";
    top: 0;
    position: absolute;
    left: 0;
    color: #F90;
}

/* rating block specific to single product summary area */
.woocommerce .woocommerce-product-rating {
    display: block;
    width: 100%;
}

.product-block .star-rating {
    display: none;
}

.woocommerce .woocommerce-product-rating .star-rating {
    margin: 0 auto;
    float: left;
    font-size: 1em;
}

.woocommerce .woocommerce-product-rating .woocommerce-review-link {
    font-size: 85%;
    width: 100%;
    margin: 0.5em 0;
    float: left;
}

.woocommerce p.stars a {
    position: relative;
    height: 1em;
    width: 1em;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none;
    color: #a5183f;
}

.woocommerce p.stars a::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-family: WooCommerce;
    content: "\e021";
    text-indent: 0
}

.woocommerce p.stars a:hover~a::before {
    content: "\e021"
}

.woocommerce p.stars:hover a::before {
    content: "\e020"
}

.woocommerce p.stars.selected a.active::before {
    content: "\e020"
}

.woocommerce p.stars.selected a.active~a::before {
    content: "\e021";
}

.woocommerce p.stars.selected a:not(.active)::before {
    content: "\e020"
}

.commentlist {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.commentlist li {
    margin: 0;
    padding: 30px 0;
    display: flex;
    text-align: left;
    border-bottom: 1px solid #cccccc;
}

.comment_container {
    display: flex;
}

.comment_container img {
    width: 50px;
    flex: 0 0 auto;
    height: 50px;
    border-radius: 100%;
    margin-right: 30px;
}

.comment-text .star-rating {
    margin: 0 0 10px 0;
}

.comment-text p.meta {
    font-size: 18px;
}

.comment-text .description p {
    font-size: 16px;
}

.commentlist li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.woocommerce-product-rating {
    order: -1;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.woocommerce-product-rating .star {
    margin: 0;
}

.woocommerce-product-rating .star-rating {
    margin: 0 10px 0 0;
}

.woocommerce-product-rating {
    font-size: 18px;
}

/* .woocommerce-product-rating a {
    color: #000000;
} */
.woocommerce-notices-wrapper>*,
.woocommerce-form-coupon-toggle,
.woocommerce-form-login-toggle,
.woocommerce-error,
.woocommerce-message,
.woocommerce-notice {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    /* border: 1px solid #fcd891; */
    border-radius: 8px;
    /* margin-top: 20px; */
    width: 100%;
    font-size: 18px;
}

.woocommerce-notices-wrapper .button {
    padding: 0;
    color: #000;
    background: #fff;
    border-radius: 0;
    border: none;
    min-width: auto;
    order: 1;
    font-size: 18px;
}

.single-product-page .slick-track,
.single-product-page .slick-list {
    display: block;
}

.woocommerce-Tabs-panel ul li {
    margin-bottom: 10px;
}

.woocommerce-Tabs-panel ul li:last-child {
    margin-bottom: 0;
}

.woocommerce-Tabs-panel ul {
    list-style: disc;
    padding-left: 20px;
}

.woocommerce-product-details__short-description ul {
    list-style: disc;
    padding-left: 25px;
}

.woocommerce-product-details__short-description ul li:not(:last-child) {
    margin-bottom: 10px;
}

.woocommerce-order {
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
}

.woocommerce-page .woocommerce section,
.order-summary-wrap {
    width: 100%;
    background: #fff;
    margin: 0 auto;
    padding: 0;
    border: 1px solid #000;
    margin-bottom: 50px;
}

.order-summary-wrap {
    padding: 50px 100px;
}

.woocommerce-order-details {
    padding: 0;
    margin: 0 auto;
    margin-bottom: 50px;
    border: 1px solid;
}

.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    font-size: 30px;
    padding: 0;
    margin-top: 0;
    background: transparent;
}

ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
    margin-bottom: 20px;
}


.woocommerce-order-received address p {
    margin-top: 20px;
    margin-bottom: 0;
}

.woocommerce-order-received .banner-image {
    display: none;
}

.woocommerce-order-received .heading-group {
    margin-bottom: 0;
}

.woocommerce-order-received .heading span {
    display: block;
}

.woocommerce-order-received .heading {
    font-size: 30px;
}

.woocommerce-order-received {
    background: #f7f7f7;
}

.woocommerce-order-received address {
    padding: 20px 50px;
}

/* LOGIN PAGE */
input#password {
    padding: 20px;
    position: relative;
    height: unset;
}

button.show-password-input.display-password {
    padding: 5px;
    background: #000;
}

button.show-password-input {
    padding: 5px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-20px, -50%);
}

span.password-input {
    position: relative;
}

/* ACCOUNT PAGE */
.woocommerce-account {
    background: #f7f7f7;
}

.woocommerce-account .col2-set {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
    width: 48%;
}

.woocommerce-MyAccount-content h2,
.woocommerce-EditAccountForm fieldset legend,
.woocommerce-account .woocommerce h2 {
    padding: 10px 20px;
    background: #000;
    color: #fff;
    font-size: 25px;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

.woocommerce-EditAccountForm fieldset legend {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    text-align: left;
}

.woocommerce-EditAccountForm fieldset {
    border: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    display: contents;
}

.woocommerce-EditAccountForm {
    display: flex;
    flex-wrap: wrap;
}

.woocommerce-account .col2-set form.woocommerce-form {
    padding: 30px;
}


.woocommerce-privacy-policy-link {
    color: #4cb848;
    font-weight: 600;
}

/* ACCOUNT DASHBOARD */
.woocommerce-account .woocommerce {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.woocommerce-MyAccount-navigation {
    width: 350px;
}

.woocommerce-MyAccount-content {
    width: calc(100% - 400px);
    padding: 20px;
}

nav.woocommerce-MyAccount-navigation ul li a {
    display: inline-block;
    padding: 20px 20px;
    width: 100%;
    border-bottom: 1px solid #cccccc;
    text-decoration: none;
    color: #000;
    font-size: 20px;
}

nav.woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid #cccccc;
    padding: 0;
    border-radius: 10px;
}

.woocommerce-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.wc-forward.button {
    flex: 0 0 auto;
    margin-left: 15px;
    padding: 15px 20px;
    margin-top: 0;
}

nav.woocommerce-MyAccount-navigation ul li.is-active a {
    background: #000;
    color: #fff;
}

.woocommerce-Address-title a {
    font-size: 18px;
    margin-bottom: 13px;
}

header.woocommerce-Address-title.title {
    font-size: unset;
}

.woocommerce-password-strength {
    margin-bottom: 10px;
    font-weight: 600;
}

.woocommerce-password-hint {
    font-weight: 700;
}

.woocommerce-password-strength.strong {
    color: #4cb848;
}

.woocommerce-password-strength.good {
    color: orange;
}

.woocommerce-password-strength.bad,
.woocommerce-password-strength.short {
    color: red;
}

form.woocommerce-ResetPassword.lost_reset_password {
    margin: 0 auto;
}

.form-row input:not([type=checkbox]):not([type=radio]),
.form-row textarea,
.form-row select {
    height: 50px;
}

.checkbox,
.form-row .checkbox,
.woocommerce-form__label-for-checkbox,
.comment-form-cookies-consent {
    display: inline-flex;
    position: relative;
    /* padding-left: 40px; */
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    font-size: 18px;
    min-height: 27px;
    line-height: 27px;
    align-items: flex-start;
    opacity: 1;
}

.checkbox input,
.woocommerce-form__label-for-checkbox input,
.comment-form-cookies-consent input {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* opacity: 0; */
    margin-top: 7px;
    margin-right: 10px;
}

.checkbox span,
.woocommerce-form__label-for-checkbox span,
.comment-form-cookies-consent label {
    font-size: 20px;
    text-transform: initial;
}

.checkbox:hover input~span:before,
.woocommerce-form__label-for-checkbox input~span:before,
.comment-form-cookies-consent input~label:before {
    background-color: #fff;
}

.checkbox span:before,
.woocommerce-form__label-for-checkbox span:before,
.comment-form-cookies-consent label:before {
    /* content: ""; */
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 2px solid #ccc;
    border-radius: 5px;
    margin: auto;
    bottom: 0;
}

.checkbox input:checked~span:before,
.woocommerce-form__label-for-checkbox input:checked~span:before,
.comment-form-cookies-consent input:checked~label:before {
    background-color: #000;
}

.woocommerce-form__label-for-checkbox {
    margin: 15px 0 25px 0 !important;
    line-height: 27px !important;
}

.woocommerce-address-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -10px;
}

section.woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses {
    margin-bottom: 0;
    border: none;
}

.woocommerce-additional-fields .input-text {
    width: 100%;
}

address {
    padding: 20px;
}

/* CONTACT US */
.page-banner-wrap {
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-banner-wrap a {
    color: #fff;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb i {
    margin: 0 10px;
}

.breadcrumb a {
    font-weight: 700;
}

ul.contact-list {
    display: flex;
    flex-wrap: wrap;
    margin: -20px;
}

ul.contact-list>li {
    width: 25%;
    padding: 0 20px;
    margin: 20px 0;
}

.contact-box {
    padding: 20px;
    height: 100%;
    box-shadow: 5px 5px 5px 0px #ccc;
    border: 1px solid #ccc;
    text-align: center;
}

.contact-bottom {
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
    margin: -15px;
    margin-top: 100px;
    box-shadow: 0 0 20px #ccc;
}

.contact-page-left,
.contact-right {
    width: 50%;
    padding: 0 15px;
    margin: 15px 0;
}

.contact-page-left iframe {
    width: 100%;
    height: 100%;
    border: 3px solid #ccc !important;
}

.contact-right {
    padding: 50px 20px;
}

.contact-top {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    flex: 0 0 auto;
    margin-right: 15px;
}

.form-description {
    margin-bottom: 30px;
}

.contact-right .heading-group {
    margin-bottom: 10px;
}

.contact-form-row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.contact-form-col {
    width: 50%;
    padding: 0 10px;
    margin: 10px 0;
}

.contact-form-col:last-child {
    width: 100%;
}

.contact-form-btn {
    position: relative;
}

/* ABOUT US */
/* Story */
.story-image img {
    width: 100%;
    border-radius: 10px;
}

/* Highlights */

ul.highlight-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

ul.highlight-list li {
    width: 33.33%;
    padding: 0 10px;
    margin: 10px 0;
}

.highlight-card {
    text-align: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    transition: all 0.3s;
    height: 100%;
}

.highlight-card img {
    width: 50px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.highlight-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.story-row {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    justify-content: space-between;
}

.story-content {
    width: 55%;
}

.story-image {
    width: 40%;
    /* height: 100%; */
}

.story-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

ul.story-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

ul.story-list li:not(:last-child) {
    margin-bottom: 10px;
}

ul.story-list li {
    width: 33.33%;
    padding: 0 10px;
    margin: 10px 0;
}

.story-block {
    height: 100%;
    box-shadow: 2px 2px 5px #000;
    padding: 20px;
}

.story-heading {
    margin-bottom: 10px;
    color: #4cb848;
}

/* FOUNDER PAGE */
.founder-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.founder-image {
    width: 40%;
}

.owner-info {
    width: 55%;
}

.founder-heading {
    margin-bottom: 5px;
    font-weight: 900;
}

.owner-info span {
    color: red;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
}

.founder-image img {
    width: 100%;
    height: 100%;
}

.founder-inner:not(:last-child) {
    margin-bottom: 90px;
}

.founder-inner:nth-child(even) .founder-block {
    flex-direction: row-reverse;
}

.owner-info ul.social-media-list {
    margin-top: 30px;
}

.owner-info ul.social-media-list li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px #ccc;
    border-radius: 100%;
    transition: 0.5s all;
    font-size: 16px;
}

.owner-info ul.social-media-list li a:hover {
    transform: translateY(-5px);
}

.founder {
    background: #f7f7f7;
}

/* PRIVACY POLICY */
.policy-row h4,
.terms-row h4,
.policy-row h3,
.terms-row h3,
.policy-row h5,
.terms-row h5,
.wp-block-heading,
.single-blog-block .heading {
    margin-bottom: 20px;
    line-height: 1.2;
}

ul.wp-block-list,
.single-blog-block ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

ul.wp-block-list li:not(:last-child),
.single-blog-block ul li:not(:last-child) {
    margin-bottom: 10px;
}

.policy-row p,
.single-blog-block p {
    margin-bottom: 20px;
}


.policy-row h5 {
    display: inline-block;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    padding-right: 10px;

}

/* SINGLE-BLOG */
.single-blog-top .intro-description {
    margin: 0;
}

.single-blog-top {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #D8D8D8;
}

.single-blog-block:not(:last-child) {
    margin-bottom: 30px;
}

.single-blog-block h3 {
    margin-bottom: 30px;
}

.single-blog-block li {
    margin-bottom: 8px;
}

.single-blog-block img {
    width: 100%;
}

.single-page-banner-wrap {
    color: #fff;
}

.inner-banner-image {
    margin-bottom: 30px;
    box-shadow: 0px 0px 5px 0px #ccc;
}

.inner-banner-image img {
    width: 100%;
    height: 100%;
}

.insight-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.insight-block {
    width: 33.33%;
    padding: 0 15px;
    margin: 15px 0;
}

.insight-row .insight-img {
    padding-top: 100%;
    position: relative;
    margin-bottom: 20px;
}

.insight-img img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.insight-content h5 {
    margin-bottom: 20px;
}

.insight-inner {
    position: relative;
}

.insight-inner>a {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}


.insight-inner:hover span i {
    transform: translateX(10px);
}

.insight-inner span i {
    transition: 0.5s all;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.copyright {
    flex: 0 0 auto;
    margin-right: 5px;
}

.privacy-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.privacy-menu li:not(:last-child) {
    margin-right: 10px;
    border-right: 2px solid #fff;
    padding-right: 10px;
}

.privacy-menu li a {
    color: #fff;
}
.right-part.products-grid .products li {
    height: unset;
    padding: 0 10px;
    margin: 10px 0;
}

.right-part.products-grid ul.products {
    margin: -10px;
}
.left-part.shop-by-list .product-category.product {
    padding: 0;
}

.left-part.shop-by-list .slick-slide {
    padding: 0 20px;
}
.left-part  .slick-list {
    padding: 0;
}
.woocommerce-cart .woocommerce .cart-collaterals th, .woocommerce-cart .woocommerce .cart-collaterals td, .woocommerce-cart .woocommerce .cart-collaterals td * {
    vertical-align: top;
/*     text-align: left; */
}

/* 404 page */
.content {
  width: 100%;
  /* max-width: 800px; */
  text-align: center;
  color: #fafafa;
  /* border: 2px solid #fafafa; */
  border-radius: 8px;
  /* padding: 30px; */
  margin:0 auto;
}
.content p{
	margin:10px 0;
}
.error-404 {
   background: linear-gradient(45deg, #000428, #004e92, #000428);
  background-size: 600% 600%;
  animation: bg 10s ease infinite;
}
@keyframes bg {
  0%,
  100% {
    background-position: 0% 97%;
  }
  50% {
    background-position: 100% 4%;
  }
}
.content .button {
    background: #4cb748;
}
/* POPUP */
.backgroundOverlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #000000;
	opacity: .85;
	filter: alpha(opacity=85);
	-moz-opacity: .85;
	z-index: 101;
	display: none;
}

.delayedPopupWindow {
	display: none;
	position: fixed;
	width: max-content;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 999999999999;
	max-width: 980px;
}

.modal-content {
	width: 100%;
	position: relative;
	padding: 10px;
	background: #fff;
	box-shadow: -10px 10px 10px 0 #00000085;
	border: 1px double #000;
}

.close {
	float: right;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	padding: 0;
	cursor: pointer;
	background: 0 0;
	border: 0;
	margin-top: 0;
	margin-bottom: 10px;
}

.modal-title {
	font-weight: 700;
	font-size: 32px;
	text-align: center;
	color: #000;
}

.modal-image {
	width: 100%;
	height: 100%;
}

.popup {
	max-height: 100vh;
	/* keeps it within screen */
	width: 100%;
	overflow-y: auto;
	/* enables scroll if content is taller */
	background: #fff;
	height: 100%;
}

.modal-image img {
	max-width: 100%;
	height: auto;
	/* keep aspect ratio */
	display: block;
	width: 100%;
}