@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #830000;
    --secondary: #333333;
    --body-text: "Poppins", sans-serif;
    --heading-text: 'Lobster', cursive;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    background-color: #F5F5F5;
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 3px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--primary);
}


html {
    font-size: 16px;
    scroll-behavior: initial !important;
    overscroll-behavior: none !important;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: var(--body-text);
}

@media (min-width: 1700px) {
    .container {
        max-width: 1380px;
    }
}


/* How to add New font */


/* @font-face {
font-family: "Font Name";
src: url("../fonts/fontpath.ttf");
} */

section {
    position: relative;
    padding: 5rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #282828;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: var(--heading-text);
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}


/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* loader */


/* btn css */

.themeBtn {
    /* background: var(--black); */
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 1.04em 2em;
    line-height: normal;
    position: relative;
    z-index: 2;
}

.themeBtn::before {
    content: '\f0da';
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 0;
    left: 100%;
    padding: 5px;
    width: 18px;
    height: 100%;
    color: var(--black);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: end;
    z-index: -1;
    transition: 0.5s all;
}

.themeBtn:hover::before {
    width: 100%;
    left: 0;
}

.themeBtn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: -2;
}

.themeBtn:hover {
    color: var(--black);
}

.themeBtn.inverse {
    color: var(--black);
}

.themeBtn.inverse::before {
    color: var(--white);
    background-color: var(--black);
}

.themeBtn:hover::before {
    width: 100%;
    left: 0;
}

.themeBtn.inverse::after {
    background-color: var(--white);
}

.themeBtn.inverse:hover {
    color: var(--white);
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}


/* btn css */


/* Typography */

.heading {
    font-size: 5rem;
    overflow: hidden;
}


/* ! Typography */


/* navigation css */

header {
    width: 100%;
    margin: 0 auto;
    z-index: 111;
    transition: 0.3s ease-in-out;
}

header .topBar {
    background-color: var(--black);
    padding: 8px 0;
}

header .topBar p,
header .topBar a {
    color: var(--white);
}

.topBar a:hover {
    opacity: 0.8;
}

.topBar p {
    font-size: 1.125rem;
}

.navbar-nav {
    align-items: center;
    justify-content: flex-end;
    width: 80%;
    gap: 3rem;
    margin-right: 3rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 400;
    padding: 0 0;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.navbar-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(246, 246, 246, 1);
    opacity: 0;
    z-index: -1;
    transition: 0.5s ease;
}

.navbar-nav .nav-item .nav-link:hover::before {
    opacity: 1;
    top: 50%;
}

.an-navbar {
    background: var(--white);
}

.an-navbar .form-inline {
    gap: 3rem;
}

.an-navbar .form-inline a {
    display: block;
    color: var(--black);
    position: relative;
    z-index: 1;
    transition: 0.5s ease;
}

.an-navbar .form-inline a::before {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 0px;
    background-color: rgba(246, 246, 246, 1);
    transition: 0.5s ease;
    z-index: -1;
}

.an-navbar .form-inline a:hover::before {
    height: 100%;
}


/* navigation css */


/* slider css */

.main-slider {
    height: 900px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 8rem;
    width: fit-content;
    left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    font-size: 1rem;
    color: #fff;
    top: auto;
    bottom: 5.625rem;
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: auto;
    left: 22rem;
}

.homeSlider .swiper-button-prev {
    left: 18rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    color: var(--black);
    transform: scale(1.2);
}

.homeSlider .swiper-button-prev::after,
.homeSlider .swiper-button-next::after {
    content: '\f177';
    font-family: "Font Awesome 5 Pro";
}

.homeSlider .swiper-button-next::after {
    content: '\f178';
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0;
    font-weight: 400;
    font-size: 7.8125rem;
    line-height: 1;
}

.main-slider h3 {
    font-size: 4.1875rem;
    margin: 0;
}

.main-slider p {
    color: var(--black);
    font-size: 2.5rem;
}


/* slider css */


/* Custom showcase */


/* .custom-showcase {} */

.custom-showcase .card {
    display: block;
    background-color: #C4D6E0;
    height: 540px;
    padding: 4.375rem;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.custom-showcase .card h2,
.custom-showcase .card .title {
    font-size: 4.6875rem;
    font-family: var(--heading-text);
    position: static !important;
}

.custom-showcase .card .title {
    background-color: var(--black);
    color: var(--white);
    width: 70%;
    padding: 1rem 2rem;
    font-size: 2.6875rem;
    line-height: 1;
}

.custom-showcase .card p {
    width: 60%;
    font-size: 1.375rem;
    color: var(--black);
    line-height: 1.4;
    margin: 2rem 0;
    position: static !important;
}

.custom-showcase .card .themeBtn {
    top: auto !important;
    left: auto !important;
}

.custom-showcase .card img {
    position: absolute;
    top: 0;
    left: auto !important;
    right: 2.5rem !important;
}

.custom-showcase .card2 {
    background-color: #E1DFF4;
}

.custom-showcase .card2 img {
    right: 0% !important;
}


/* ! Custom showcase */


/* collection section */

.collection-section h5 {
    font-size: 1.875rem;
    font-family: var(--body-text);
}

.collection-section .card {
    border: 0;
    cursor: pointer;
}

.card .imgBox {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card .imgBox img {
    width: 100%;
    height: 470px;
    inset: 0;
    object-fit: cover;
    transition: 0.5s ease;
}

.collection-section .card .card-body {
    text-align: center;
    position: relative;
    top: -5rem;
    transition: 0.5s ease;
}

.collection-section .card .iconBox {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 22px;
    margin: auto;
    margin-bottom: 1rem;
    background-color: var(--black);
    opacity: 0;
    transition: 0.5s ease;
}

.card:hover .imgBox img {
    opacity: 0.8;
    scale: 1.1;
}

.collection-section .card:hover .card-body {
    top: -3rem;
}

.collection-section .card:hover .iconBox {
    opacity: 1;
}

.collection-section .card .card-body h4 {
    font-family: var(--body-text);
    font-size: 2.1875rem;
}


/* ! collection section */

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

.showcase-section h3 {
    font-size: 3.125rem;
    margin-top: 1.25rem;
}


/* New Product Section */

.product-section,
.testimonial-section {
    background: rgba(246, 246, 246, 0.39);
}

.product-section .card {
    border: 0;
    position: relative;
    margin-bottom: 1rem;
    cursor: pointer;
    background: none;
}

.product-section .card .iconBox {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    z-index: 2;
}

.product-section .card .imgBox {
    margin-bottom: 1rem;
}

.product-section .card .imgBox img {
    width: 100%;
    height: 400px;
    margin: auto;
    object-fit: scale-down;
    margin: auto;
}

.product-section .card a,
.product-section .card p {
    font-size: 1.25rem;
    color: var(--black);
}

.rating {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    gap: 3px;
    margin: 5px 0;
}


/* ! New Product Section */


/* cta-showcase */

.cta-showcase {
    padding: 0rem;
    background: url('../images/ctabg.png') no-repeat bottom;
    background-size: contain;
    color: var(--white);
}

.cta-showcase h2 {
    color: var(--white);
    font-size: 3.125rem;
}

.cta-showcase p {
    color: var(--white);
    font-size: 1.125rem;
}

.cta-showcase .options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 1.125rem;
    font-weight: 600;
}

.cta-showcase .options span {
    border-bottom: 2px solid var(--white);
}


/* ! cta-showcase */


/* testimonial-section */

.testimonial-section .card {
    padding: 2rem 2rem 1rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: 0px 0px 32px 0 rgba(221, 221, 221, 0.32);
    display: block;
    position: relative;
}

.testimonial-section .card .iconBox {
    position: absolute;
    font-size: 7rem;
    line-height: 1;
    top: -2.5rem;
    color: #F7F7F7;
    transition: 0.5s ease;
    /* color: var(--black); */
}

.testimonial-section .swiper-slide-active .card .iconBox {
    color: var(--black);
}

.testimonial-section .card .rating {
    /* position: relative; */
    margin-top: 4rem;
    color: #FFCC00;
    margin-bottom: 1rem;
}

.testimonial-section .card p {
    font-family: 600;
    font-style: italic;
}

.testimonial-section .card .user {
    color: #092943;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.section .swiper-button-prev,
.section .swiper-button-next {
    border: 1px solid var(--black);
    width: 55px;
    height: 55px;
    border-radius: 5px;
    color: var(--black);
    transition: 0.5s ease;
    left: 8.5rem;
}

.section .swiper-button-next {
    right: 8.5rem;
    left: auto;
}

.section .swiper-button-prev::after,
.section .swiper-button-next::after {
    font-family: "Font Awesome 5 Pro";
    font-size: 24px;
}

.section .swiper-button-prev::after {
    content: "\f177";
}

.section .swiper-button-next::after {
    content: "\f178";
}

.section .swiper-button-prev:hover,
.section .swiper-button-next:hover {
    background-color: var(--black);
    color: var(--white);
}


/* ! testimonial-section */


/* Blog Section */

.blog-section .card h4 {
    font-size: 1.75rem;
}

.blog-section .card p {
    font-size: 1.125rem;
    color: var(--black);
}

.blog-section .card a {
    color: var(--black);
    font-size: 1.3125rem;
    font-weight: 600;
}


/* ! Blog Section */


/* newsletter-section */

.newsletter-section {
    position: relative;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('../images/newletter2.png');
}

.newsletter-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: url('../images/newletter1.png');
}

.newsletter-section .form {
    display: flex;
    align-items: center;
}

.btn-theme {
    background-color: var(--primary);
    color: var(--white);
    font-size: 1.125rem;
    border-radius: 0;
    padding: 1rem 2rem;
    text-transform: uppercase;
}

.btn-theme:hover {
    background-color: var(--black);
    color: var(--white);
}

.newsletter-section .form input {
    /* border: 0; */
    box-shadow: none;
    border-radius: 0;
    height: 61px;
}

.newsletter-section .imgBox {
    width: 360px;
    height: 360px;
    background-color: var(--white);
    border-radius: 50%;
    margin-left: auto;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-section h2 {
    font-size: 3.75rem;
    color: var(--white);
}

.newsletter-section p {
    font-size: 1.125rem;
    color: var(--white);
}


/* ! newsletter section */


/* footer */

footer {
    background-color: #09080C;
    padding-top: 5rem;
}

footer h4 {
    color: var(--white);
    font-family: var(--body-text);
    font-size: 1.125rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

footer a {
    color: var(--white);
}

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

footer .contactinfo li {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 1.4rem;
}

footer .contactinfo li i {
    width: 32px;
    height: 32px;
    background-color: var(--primary);
    border-radius: 50%;
    font-size: 14px;
    display: grid;
    place-items: center;
    color: var(--white);
    margin-right: 1rem;
}

footer .contactinfo li span {
    text-transform: uppercase;
}

footer .contactinfo li a {
    display: block;
    font-size: 14px;
    color: var(--white);
}

footer .links li {
    margin-bottom: 0.8rem;
}

footer .social {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 8px;
}

.social a {
    display: grid;
    place-items: center;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-color: var(--white);
    border: 1px solid var(--white);
    color: var(--black);
}

.social a:hover {
    background-color: var(--black);
    color: var(--white);
}

.copyRight {
    border-top: 1px solid #E9EEEE;
}

.border-top {
    border-color: #E9EEEE;
}

.reveal,
.reveal2 {
    visibility: hidden;
    position: relative;
    overflow: hidden;
}


.innerBanner {
    position: relative;
}

.innerBanner .content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.innerBanner .content h2 {
    font-size: 5.625rem;
}

.abtContent h3 {
    font-size: 5rem;
}

.abtContent p {
    font-size: 1.125rem;
}

.aboutSec .row+.row {
    margin: 6rem 0;
}

.contactSec input {
    width: 100%;
    height: 3.5rem;
    padding-left: 1rem;
    border: none;
    background: #F8F8F8;
    margin: 0.5rem 0;
}

.contactSec textarea {
    width: 100%;
    height: 150px;
    padding: 1rem;
    border: none;
    background: #F8F8F8;
    margin: 0.5rem 0;
}

.contactInfo h4 {
    font-size: 1rem;
    margin: 1rem 0;
    color: #fff;
}

.contactInfo h4 span,
.contactInfo h4 a {
    display: block;
    margin-top: 1rem;
    color: #fff;
}

.contactInfo {
    background: #003892;
    padding: 9rem 0;
}

section.mapSec {
    padding: 0;
}

section.mapSec iframe {
    filter: grayscale(1);
}

.shipSec ul {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    color: #282828;
    list-style-type: disc;
}

.shipSec ul li {
    padding: 10px 0;
}

.dropBox {
    background: #F5F5F5;
    height: 520px;
}

.dropBox .btn.btn-link.btn-block.text-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    font-family: 'Poppins';
    font-weight: 600;
}

.dropBox h4 {
    background: #000;
    color: #fff;
    padding: 1rem;
    margin: 0;
}

.dropBox .card {
    margin: 0;
}

#navbarSupportedContent {
    justify-content: flex-end;
    gap: 80px;
}

#menu {
    width: 100%;
}

.page-content.notfoundPg {
    text-align: center;
}

h1.notfoundHad {
    font-size: 200px;
    color: #09080c;
}

input.search-field {
    border: 2px solid #830000;
    height: 50px;
    width: 299px;
}

input.search-submit {
    height: 51px;
    background: #000000;
    border: 2px solid #830000;
    width: 133px;
}

.page-content.notfoundPg {
    margin-bottom: 70px;
}

.notfoundPg .search-form .search-submit:hover, .notfoundPg .search-form .search-submit:focus {
    background: #830000 !important;
    color: #00267b;
}

.woocommerce #review_form #respond textarea {
    box-sizing: border-box;
    width: 100%;
    border-color: #ddd;
    background: #f0f0f0;
}

form#commentform input {
    background: #f0f0f0;
    border: 0px;
    height: 50px;
    width: 100%;
}

input#wp-comment-cookies-consent {
    width: auto !important;
    height: auto !important;
}



  h2.widget-title {
    background: #000;
    color: #fff;
    padding: 1rem;
    margin: 0;
}

.cat-item {
    padding: 1.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.cat-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    font-family: 'Poppins';
    font-weight: 600;
}

section#woocommerce_product_categories-2 {
    padding: 0;
}




.proSlider--85 {
    display: none;
}

section.product-section.section.section1 .row {
    width: 100% !important;
}

section.product-section.section.section1 .row .product {
    width: 100%;
}

div#wpgis-gallery {
    display: none;
}

button.btn.btn-warning {
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 1.04em 2em;
    line-height: normal;
    position: relative;
    z-index: 2;
    background: #000;
    border: 1px solid #000;
}

input#quantity_646e901ef2f9b {
    height: 3.5rem;
    padding-left: 1rem;
    border: 1px solid;
    background: #F8F8F8;
    margin: 0.5rem 0;
}

.quantity {width: 10%;}


span {
    font-size: 1.125rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 400;
    padding: 0 0;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.yith-wcwl-icon.fa.fa-heart-o {
    font-size: 1.125rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 400;
    padding: 0 0;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.product_meta a {
    font-size: 1.125rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 400;
    padding: 0 0;
    display: inline-block;
    position: relative;
    z-index: 1;
}

div#reviews {
    display: none;
}

ul.nav.nav-tabs.wc-tabs {
    display: none;
}

.woocommerce-notices-wrapper {
    width: 100%;
}

a.button.wc-forward.wp-element-button {
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    line-height: normal;
    position: relative;
    z-index: 2;
    background: #000;
    border: 1px solid #000;
}

a.checkout-button.button.alt.wc-forward {
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    line-height: normal;
    position: relative;
    z-index: 2;
    background: #000;
    border: 1px solid #000;
}


input#coupon_code {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 2px solid #ccc;
    box-sizing: border-box;
}

.woocommerce .cart .button, .woocommerce .cart input.button {
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    line-height: normal;
    position: relative;
    z-index: 2;
    background: #000;
    border: 1px solid #000;
}


.button {
    width: 50%;
}

button.button [value="Update cart"] {
    width: 10% !important;
}

td.product-name a {
    color: #000;
}


input {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 2px solid #ccc;
    box-sizing: border-box;
}

select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 2px solid #ccc;
    box-sizing: border-box;
}

button#place_order {
    background: var(--black);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 1.04em 2em;
    line-height: normal;
    position: relative;
    z-index: 2;
}

button.button {}

button.button {
    background: #000 !important;
    font-size: 1.125rem;
    color: var(--white) !important;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 1.04em 2em !important;
    line-height: normal;
    position: relative;
    z-index: 2;
}


/*/ Change WC Acct Page Column Widths /*/
/*@media only screen and (min-width: 769px) {*/
/*  .woocommerce-account .woocommerce-MyAccount-navigation {*/
/*    width: 22%;*/
/*  }*/
/*  .woocommerce-account .woocommerce-MyAccount-content { */
/*    width: 75%;*/
/*  }*/
/*}*/
/*/ Style WC Account Endpoint Links /*/
/*nav.woocommerce-MyAccount-navigation ul {*/
/*  list-style-type: none;*/
/*  padding-left: 0;*/
/*  max-width:200px;*/
/*  font-size: 17px;*/
/*  line-height: 26px;*/
/*}*/
/*nav.woocommerce-MyAccount-navigation ul li {*/
/*  padding: 8px 20px;*/
/*  background-color: rgba(0,0,0,0.05);*/
/*  border-bottom: 1px solid rgba(0,0,0,0.05);*/
/*}*/
/*nav.woocommerce-MyAccount-navigation ul li.is-active {*/
/*  background-color: rgba(0,0,0,0.1);*/
/*}*/
/*nav.woocommerce-MyAccount-navigation ul li.is-active a {*/
/*  color: rgba(0,0,0,0.8); cursor: default;*/
/*}*/
/*nav.woocommerce-MyAccount-navigation ul li.is-active:after {*/
/*  content: "";*/
/*  height: 0;*/
/*  width: 0;*/
/*  border-top: 20px solid transparent;*/
/*  border-left: 14px solid rgba(0,0,0,0.1);*/
/*  border-bottom: 20px solid transparent;*/
/*  float: right;*/
/*  margin-right: -34px;*/
/*  margin-top: -7px;*/
/*}*/
/*nav.woocommerce-MyAccount-navigation ul li:not(.is-active):hover {*/
/*  background-color: rgba(0,0,0,0.07);*/
/*}*/
/*nav.woocommerce-MyAccount-navigation ul li:not(.is-active):hover:after { */
/*  content: "";*/
/*  height: 0;*/
/*  width: 0;*/
/*  border-top: 20px solid transparent;*/
/*  border-left: 14px solid rgba(0,0,0,0.07);*/
/*  border-bottom: 20px solid transparent;*/
/*  float: right;*/
/*  margin-right: -34px;*/
/*  margin-top: -7px;*/
/*}*/

/*.u-columns.woocommerce-Addresses.col2-set.addresses .col-1, .u-columns.woocommerce-Addresses.col2-set.addresses .col-2 {*/
/*    max-width: 100%;*/
/*    width: 48%;*/
/*}*/

/*nav.woocommerce-MyAccount-navigation a {*/
/*    font-size: 1.25rem;*/
/*    color: var(--black);*/
/*}*/

/*.woocommerce nav.woocommerce-MyAccount-navigation ul li {*/
/*    padding: 1.75rem 1.25rem;*/
/*    margin-bottom: 0;*/
/*    background-color: rgba(0, 0, 0, 0.03);*/
/*    border-bottom: 1px solid rgba(0, 0, 0, 0.125);*/
/*}*/

/*.woocommerce p {*/
/*    font-weight: 400;*/
/*    line-height: 2;*/
/*    color: #282828;*/
/*}*/

/*.woocommerce a {*/
/*    font-weight: 400;*/
/*    line-height: 2;*/
/*    color: #282828;*/
/*}*/

ul.sub-menu {
    display: none;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
    z-index: 9999999;
    position: absolute;
    left: 0;
    float: left;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    width: 100%;
    min-width: 16rem;
}

.navbar li:hover>ul {
    opacity: 1;
    z-index: 9999999;
    top: 100%;
    visibility: visible;
}

#menu li:hover .sub-menu {
    display: block;
}

aside#secondary {
    display: none;
}


.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images {
    opacity: 1 !important;
}