/* ======================== General ======================== */

:root{
    --bg-color:#f5f5f5;
    --text-color:#6c757d;
    --accent-color:#d4d4d4;
    --contrast-color:#4b4738;
    --gray-color:#333333;
    --red-color:#ee6e73;
    --light-gray-color:#4444;
}

div[class1="row"] {
    outline: 1px dotted rgba(0, 0, 0, 0.25);
}

div[class1^="col-"] {
    background-color: rgba(255, 0, 0, 0.2);
    outline: 1px dotted rgba(0, 0, 0, 0.5);
}
@font-face {
    font-family: "JosefinSans-Regular";
    src: url("JosefinSans-Regular.ttf") format("truetype");
   }


html,body{
    height: 100%;
}

body
{
    min-width: 320px;
    background-color: var(--bg-color);
    font-family: 'JosefinSans-Regular',sans-serif;
    color: var(--text-color);
    
}

textarea {
    resize: none;
}

a {
    color: var(--text-color);
    text-decoration: underline;
}

a:hover {
text-decoration: none;
}

img {
max-width: 100%;
height: auto;
}

.btn, .dropdown-menu, .form-control, .form-select {
    border-radius: 0;
}

.form-control:focus,
.form-select:focus {
    color: var(--text-color);
    border-color: #d4d4d4;
    box-shadow: none;
}
.form-control::placeholder {
    color: var(--text-color);
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main.main{
    flex: 1 1 auto;
    background:#fff;
}

section {
    padding: 50px 0;
}

.section-title {
    position: relative;
    text-transform: uppercase;
    color: var(--contrast-color);
    font-weight: 700;
}

.section-title span {
    background-color: #fff;
    padding-right: 1rem;
    position: relative;
    z-index: 1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 100%;
    top: 50%;
    left: 0;
    border-top: 1px dashed var(--contrast-color);
    /*z-index: -1;*/
}

label.required::before {
    content: '* ';
    color: #dc3545;
    font-weight: bold;
}

/* ======================== General end ======================== */

/* ======================== Header ======================== */

.header-top {
background-color: #fefefe;
border-bottom: 1px solid;
border-color: rgba(51,51,51,0.1);
font-size: 1.3rem;
} 

.header-top-phone a {
text-decoration: none;
}

.header-top-phone i {
padding-left: 20px;
}

ul.social-icons {
list-style: none;
display: flex;
justify-content: center;
margin-bottom: 0;
padding: 0;
}

ul.social-icons li {
    margin-right: 10px;
}

ul.social-icons a {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    float: left;
    text-align: center;
    transition: all .3s;
}

ul.social-icons a:hover {
    background-color: var(--contrast-color);
    color: var(--accent-color);
}

.header-logo img {
max-width: 100%;
height: auto;
}

.cart-buttons i {
    font-size: 25px;
}

.cart-buttons .btn {
    color: var(--contrast-color);
    transition: all .5s;
  
}

.cart-buttons .btn:hover {
    border: 1px solid var(--contrast-color);
    border-radius: 10px;
}

/* Cart total */
.offcanvas {
font-size: 20px;
width: 40% !important;
}

#offcanvasCartLabel {
font-size: 30px;
color: #fff;
}

.offcanvasCart-table td {
    vertical-align: middle;
}

.offcanvasCart-table .product-img-td {
    width: 70px;
    text-align: center;
}

.offcanvasCart-table img {
    max-width: 100px;
}

.offcanvasCart-table a {
   text-decoration: none;
   display: block;
}

.offcanvasCart-table a:hover {
  text-decoration: underline;
}

.minicart-buttons {
    width: 100%;
    height: auto;
    text-align: center;
}

.minicart-buttons a {
margin: 5px;
text-transform: uppercase;
text-decoration: none;
transition: all, 0.5s;
}

.minicart-buttons a:hover {
text-decoration: underline;
color: #000;
border-color: #000;
}

.btn-cart {
display: block;
padding: 0.5rem;
border: 1px solid; 
border-color: rgba(0, 0, 0, 0.1);  
}

/* Cart total end */

.header-middle {
    border: 1px solid #f4f4f4;
    box-shadow: 0 0px 1px rgba(0, 0, 0, .1);
    background-color: #fff;
    margin: 5px 0px 5px 0px;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

/* Main Menu */
.header-bottom .nav-item:first-child .nav-link {
padding-left: 10px;
}

.main-menu .navbar .nav-link {
    font-family: "JosefinSans-Regular";
    color: #000;
    transition: .5s all;
    letter-spacing: .1rem;
    font-size: 22px;
    font-weight: 500;
}

.main-menu .navbar .nav-link:hover {
color: var(--text-color);
text-decoration: underline  var(--gray-color);
text-underline-offset: 10px;
text-decoration-color: var(--text-color);
}

.main-menu .active{
    color: var(--accent-color) !important;
}
/* Main Menu End */

.input-group-append .btn {
    transition: all .5s;
    background-color: var(--contrast-color);
}

.input-group-append .btn:hover {
    border: 1px solid var(--contrast-color);
    border-radius: 10px;
}

/* ======================== Header end ======================== */

/* ======================== Main ======================== */

/* Slider */

.carousel-caption {
    text-shadow: 0 0 5px rgba(0, 0, 0, .9);
    background-color: rgba(0, 0, 0, .5);
}

.carousel-caption p {
    font-size: 1.5rem;
}

.carousel img{
    object-fit: cover;
    vertical-align: middle;
    border-style: none;
    height: 70vh;
}
/* Slider end */

/* Main Page Category */
.category-section {
background-color: #fff;
}

.category-products {
margin: 0 auto;
}

.main-page-category{
border:1px solid rgba(0,0,0,.1);
transition: all 0.5s;
margin: 5px;
padding: 0px;
width: 300px;

}

.main-page-category:hover {
box-shadow:0 0 10px rgba(0,0,0,.2);
}

.main-page-category1 .product-image{
position:relative;
}

.main-page-category1 .product-image a{
display:block;
line-height: inherit;
color:var(--text-color);
text-decoration: none;
cursor: pointer;
}

.main-page-category1 .product-image a:hover{
color:#ef5777;
transition: all 0.5s;
}

.main-page-category1 .product-image img{
width:100%; 
height:auto;
}

.main-page-category .product-image img:hover {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
transition: all 0.5s;
}

.main-page-category a {
text-decoration: none;
}

.main-page-category h3{
font-size:24px;
font-weight:600;
text-align: center;
color: black;
padding: 10px;
}

.main-page-category span {
    padding-left: 0.5rem;
}
/* Main Page Category End */

/* Content Page */
.page-content {
    background-color: #fff;
}
.page-content .section-title span {
    background-color: #fff;
}
/* Content Page End */

/* Featured Product */

.featured-product {
    background-color: #fff;
}
.featured-product .section-title span {
    background-color: #fff;
}

/* Featured Product End */

.new-products {
   background-color: #fff;
}

.new-products .section-title span {
    background-color: #fff;
}


/* Product card */
.product-card {
    transition: all .5s;
    transition-delay:.15s;
    border: 1px solid rgb(20, 20, 20, 0.2);
    background-color: #fff;
    position: relative;
}
.product-card:hover {
box-shadow:0 0 10px rgba(0,0,0,.2);
}

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

.product-thumb img {
    max-height: 300px;
    width: auto;
}

.product-details {
    padding: 10px;
}
.product-details a {
    text-decoration: none;
    font-size: 1.5rem;
}
#product-float {
    display: flex;
    justify-content: end;
}

.product-details h3 a {
    display: inline-block;
    font-size: 20px;
    text-decoration: none;
    color: var(--gray-color);
    transition: all .5s;
}

.product-details h4 a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 10px;
    color: #000;
    font-weight: bold;
}



.product-details h3 a:hover {
color: var(--text-color);
}

.product-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    /* height: 45px;  */
    overflow: hidden;
}

.product-bottom-details {
   border-top: 1px solid var(--light-gray-color);
   /*padding-top: 1rem; */
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--red-color);

}

.product-price small {
    color:var(--light-gray-color);
    font-weight: 400;
    text-decoration: line-through;
    font-size: 1rem;
    
}

.product-links a {
    color: var(--contrast-color);
    transition: all .5s;
    text-decoration: none;

}

.product-links a:hover {
    border: 1px solid var(--contrast-color);
    border-radius: 10px;
}

.product-labels {
  top: 15px;
  left: -10px;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  z-index: 1;
  max-width: 60%;
  transition: opacity .3s ease;
}

.product-labels .onsale {
  border-color: #f9423a;
  color: #f9423a;
  padding: 5px 15px 3px 15px;
  border: 2px solid;
  background-color: #fff;
}

.product-labels .featured {
  border-color: #fd922a;
  color: #fd922a;
  padding: 5px 15px 3px 15px;
  border: 2px solid;
  background-color: #fff;
}

.product-labels .news {
    padding: 5px 15px 3px 15px;
    color: rgb(127, 159, 255);
    border: 2px solid;
    border-color: rgb(127, 159, 255);
    background-color: #fff;
    font-weight: bold;
 
}

.product-label {
  display: inline-block;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 10px;
}

.owl-carousel-full .owl-item img {
    display: inline-block;
    width: auto;
}

/* Product card */

/* Featured Product end*/

/* About us */
.about-us {
    background-color: #fff;
    font-size: 18px;
}

.about-us .section-title span,
.sidebar .section-title span,
.product-content .section-title span,
.bg-white .section-title span {
    background-color: #fff;
    
}
/* About us end */


/* About-info */

.about-info { 
    border: 0px solid red;
    padding-left: 0px; 
    padding-right: 0px;
    font-size: 22px;
    line-height: 1.2em;
    height: 500px;
    }
    
    .about-info h3 {
      padding-top: 2rem;
      padding-left: 2rem;
    }
    
    .about-info p {
    padding-top: 1rem;
    padding-left: 2rem;
    }
    
    .bg {
      background-position: center !important;
      background-repeat: no-repeat !important;
      background-size: cover !important;
    }
    
    .bg-left {
      background-image: url("../../assets/images/home-bg-01.jpg");
    }
    
    .bg-right {
      background-image: url("../../assets/images/home-bg-02.jpg");
    }
    
    #about-info {
      padding-top: 0;
      padding-bottom: 0rem;
    }
/* About-info End */

/* Footer */

footer {
  background-color: var(--gray-color);  
  padding: 50px 0;
  color: #fff;
}

footer h4 {
    color: var(--accent-color);
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: all .3s;
}

footer a:hover {
    color: var(--accent-color)
}

.footer-icons {
    list-style: none;
    display: flex;
    gap:20px;
    padding: 0;
    font-size: 20px;
}

/* Footer end */


/* Button top */
#top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    opacity: .5;
    color: var(--gray-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 0;
    font-size: 25px;
    transition: all .5s;
    z-index: 10;
    display: none;
}

#top:hover {
    opacity: 1;
}

/* Button top end */


/* ======================== Main end ======================== */

/* ======================== Category Page end ======================== */

.breadcrumbs {
    margin: 20px 0;
    background-color: #fafafa;
    padding: 1rem;
    border-radius: 5px;
}

.breadcrumbs ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--contrast-color);
    transition: all .5s;
    margin-right: 0.5rem;
}
.breadcrumbs a:hover {
    color: #ee6e73;
}

.breadcrumbs a::after {
    content: "/";
    padding-left: 0.5rem;
}
 
.sidebar {
    background-color: #fff;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    box-shadow:0 0 3px rgba(0,0,0,.2);
}

.filter-block:not(:last-child) {
    margin-bottom: 2rem;

}

.filter-block .form-check {
    margin-bottom: 0.5rem;
}

.form-check-input[type="checkbox"] {
    border-radius: 0;
    border-color:var(--gray-color);
}


.form-check-input:focus {
  background-color: var(--gray-color);
  box-shadow: none;  
}

.form-check-input:checked {
    background-color: var(--red-color);
    border-color: var(--red-color);
}
     
.filter-block .badge {
    color: var(--text-color);
}

/* ======================== Category Page end ======================== */

/* ======================== Product Page  ======================== */

.product-content .product-price {
    font-size: 25px;
}

.product-content .input-group {
    width: 150px;
    border: 1px solid #dee2e6;
}

/* ======================== Product Page end ======================== */

/* ======================== Cart Page  ======================== */

.cart-content table img {
    max-width: 50px;
}

.cart-content table th {
    text-align: center;
}

.cart-content table td {
    padding: 1rem;
}

.cart-content-title {
    text-decoration: none;
    display: block;
}

.cart-qty {
    width: 70px;
}

#colorful {
width: 25px;
}

.btn-coupon {
color: var(--text-color);

}

.btn-coupon:hover{
    color: var(--contrast-color);
}

.cart-summary h3 {
    color: #000;
}

.cart-summary .btn {
    padding: 1rem;
}

/*============================= Star Rating ============================*/
.wooeshop-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    margin-bottom: 10px;
}

@font-face {
    font-family:star;
    src:url(../fonts/star.eot);
    src:url(../fonts/star.eot?#iefix) format("embedded-opentype"),url(../fonts/star.woff) format("woff"),url(../fonts/star.ttf) format("truetype"),url(../fonts/star.svg#star) format("svg");
    font-weight:400;
    font-style:normal;
}

@font-face {
    font-family: WooCommerce;
    src: url(../fonts/WooCommerce.eot);
    src: url(../fonts/WooCommerce.eot?#iefix) format("embedded-opentype"), url(../fonts/WooCommerce.woff) format("woff"), url(../fonts/WooCommerce.ttf) format("truetype"), url(../fonts/WooCommerce.svg#WooCommerce) format("svg");
    font-weight: 400;
    font-style: normal;
}

.products .product .star-rating {
    font-size: .857em;
}
.woocommerce .star-rating {
    float: right;
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 1em;
    width: 5.4em;
    font-family: star;
}
.woocommerce .star-rating::before {
    content: "sssss";
    color: #d3ced2;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}
.woocommerce .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}
.woocommerce .star-rating span::before {
    content: "SSSSS";
    top: 0;
    position: absolute;
    left: 0;
    color: #FFD333;
}
.woocommerce .woocommerce-product-rating {
    line-height: 2;
    display: block;
}
.woocommerce .woocommerce-product-rating::after,
.woocommerce .woocommerce-product-rating::before {
    content: " ";
    display: table;
}
.woocommerce .woocommerce-product-rating::after {
    clear: both;
}
.woocommerce .woocommerce-product-rating .star-rating {
    margin: .5em 4px 0 0;
    float: left;
}
.woocommerce .products .star-rating {
    display: block;
    float: none;
}
.woocommerce .hreview-aggregate .star-rating {
    margin: 10px 0 0;
}
/* comments */
.woocommerce p.stars a {
    position: relative;
    height: 1em;
    width: 1em;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none;
}

.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";
    color: var(--accent-color);
}

.woocommerce p.stars.selected a.active::before {
    content: "\e020";
    color: var(--accent-color);
}

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

.woocommerce p.stars.selected a:not(.active)::before {
    content: "\e020";
    color: var(--accent-color);
}
/*============================= Star Rating ============================*/

/* --- Price style --- */
span.price {
    display: block;
    text-align: center;
}

span.price,
.price ins {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--red-color);
}

span.price del {
    color: var(--gray-color);
    font-weight: 400;
    font-size: 1rem;
    text-decoration: line-through;
}

.product-bottom-details a {
    font-size: 1rem;
}

a.added_to_cart {
    font-size: .9rem;
    margin-left: 10px;
}

.add_to_cart_button{
text-decoration: none;
border:1px solid #e5e5e5;
display:inline-block;
padding:10px 20px;
color:var(--contrast-color);
font-weight:600;
font-size:14px;
border-radius:10px;
transition: all .5s;
}

.add_to_cart_button:hover{
border: 1px solid var(--contrast-color);
border-radius: 10px;
}


/* --- Price style End --- */

/* ======================== Cart Page end ======================== */

.page-link {
  color: var(--contrast-color);  
}

.page-link:hover {
    color: #fff;
    background-color: var(--accent-color);  
    border-color: var(--accent-color);
  }
  
  .page-link:hover {
    color: #fff;
    background-color: var(--accent-color);  
    border-color: var(--accent-color);
  }

  .active>.page-link, 
  .page-link:active {
    background-color: var(--red-color);  
    border-color: var(--accent-color);
  }

  .sidebar .collapse-btn {
    color: var(--accent-color);
  }


@media only screen and (min-width: 768px) {
    .sidebar .collapse-filters {
        display: block;
    }

    .sidebar .collapse-filters-btn {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    .product-content .input-group {
        width: 130px;
    }
}

@media only screen and (max-width: 576px) {
    #offcanvasCart {
        width: 95% !important;
    }

}

#offcanvasNavbar {
    width: 45% !important;
}



.product-card .ajax-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .5);
    z-index: 2;
    display: none;
}

.product-card .ajax-loader img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-100px, -100px);
}
.woocommerce-message {
    background-color: var(--accent-color);
    padding: 1rem;
    margin-bottom: 1rem;
    color: #000;
}

.woocommerce-message .button {
    float: right;
    color: #000;
    text-decoration: underline;
}

.woocommerce-message .button:hover {
    text-decoration: none;
}

.wooeshop-ordering p {
    margin-bottom: 0;
}

.woocommerce-pagination ul.page-numbers {
    display: flex;
    list-style: none;
    padding-left: 0;
}

.woocommerce-pagination li .page-numbers {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--accent-color);
    background-color: #fff;
    border: 1px solid #dee2e6;
    text-decoration: none;
}

.woocommerce-pagination span.page-numbers {
    z-index: 3;
    color: #fff;
    background-color: #FFD333;
    border-color: #FFD333;
}

.woocommerce-pagination a.page-numbers:hover {
    z-index: 2;
    color: #e6b400;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.widget_block {
    padding: 0px;
    margin-bottom: 3.75rem;
    color: #000;
}
.widget_block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-content .onsale {
   background-color: var(--red-color);
    color: #fff;
    padding: 5px 10px;
    margin-bottom: 10px;
    display: inline;
    border: 1px solid var(--gray-color);
}

.product-content .price > span > bdi,
.product-content .price ins{
    color: var(--red-color);
    font-weight: 600;
    font-size: 25px;
}

.product-content .price > del > span{
color: var(--gray-color);
    font-weight: 400;
    text-decoration: line-through;
    font-size: 1rem;
}

.product_meta {
    margin-top: 20px;
}

.product_meta > span {
   display: block;
}

/* product gallery */
.woocommerce-product-gallery {
    position: relative;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 2;
    text-decoration: none;
}
.woocommerce-product-gallery .flex-control-thumbs {
    list-style: none;
    overflow: hidden;
    padding: 0;
}

.woocommerce-product-gallery .flex-control-thumbs li {
    width: 25%;
    float: left;
}
.woocommerce-product-gallery .flex-control-thumbs li:nth-child(4n+1) {
    clear: left;
}
.woocommerce-product-gallery .flex-control-thumbs li img {
    cursor: pointer;
    opacity: .5;
    transition: all .3s;
}
.woocommerce-product-gallery .flex-control-thumbs li img:hover,
.woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
    opacity: 1;
}
.product-gallery .carousel-item img {
    cursor: pointer;
}

.woocommerce-product-gallery .onsale {
    display: none;
}

/* Home categories */
section.widget {
    padding-top: 0;
    padding-bottom: 0;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0px;
    font-size: 22px;
   text-decoration: none;
}

/* Category style */
.widget ul li:not(:last-child) { margin: 0 0 0.25rem; }
.widget ul li:last-child { margin-bottom: 0; }
.widget ul li a { font-size: 94%; line-height: 1.4; color: #333; }
.widget ul li a:hover { color: #000; }
.widget ul li ul { margin-top: 0.25rem; margin-bottom: 0; }
.widget li abbr { border-bottom: 1px dashed; }
.widget .wc-block-product-categories ul li:not(:last-child) { margin: 0 0 0.25rem; }
.widget .wc-block-product-categories ul li:last-child { margin-bottom: 0; }
.widget .wc-block-product-categories ul li a { font-size: 94%; line-height: 1.4; color: #333; text-decoration: none; }
.widget .wc-block-product-categories ul li a:hover { color: #000; }
.widget .wc-block-product-categories ul li ul { margin-top: 0.25rem; margin-bottom: 0; }
.widget .wc-block-product-categories .wc-block-product-categories-list li { padding: 0; }
.widget .wc-block-product-categories .wc-block-product-categories-list li:not(:last-child) { margin: 0 0 5px 0; }
.widget .wc-block-product-categories .wc-block-product-categories-list li > a { color: #000; font-size: 110%; line-height: 1.4; display: inline-block; transition: all 0.75s; }
.widget .wc-block-product-categories .wc-block-product-categories-list li > a:hover { opacity: 0.7; color: gray; }
.widget .wc-block-product-categories .wc-block-product-categories-list li span.wc-block-product-categories-list-item-count { display: inline-block; vertical-align: top; letter-spacing: 0px; color: #000; font-weight: 400; font-size: 12px; margin-top: 0px; margin-left: 0px; }
.widget .wc-block-product-categories .wc-block-product-categories-list li span.wc-block-product-categories-list-item-count:before, .widget .wc-block-product-categories .wc-block-product-categories-list li span.wc-block-product-categories-list-item-count:after { display: none; }
.widget .wc-block-product-categories .wc-block-product-categories-list li ul.wc-block-product-categories-list--depth-1 { margin-top: 8px; margin-left: 10px; }
.widget .wc-block-product-categories .wc-block-product-categories-list li ul.wc-block-product-categories-list--depth-1 li { padding-left: 20px; border: 0; margin: 0; position: relative; }
.widget .wc-block-product-categories .wc-block-product-categories-list li ul.wc-block-product-categories-list--depth-1 li a { font-size: 90%; font-weight: 300; padding-bottom: 0; line-height: 1.2; background-image: none;  }
.widget .wc-block-product-categories .wc-block-product-categories-list li ul.wc-block-product-categories-list--depth-1 li a:hover { opacity: 0.7; }
.widget .wc-block-product-categories .wc-block-product-categories-list li ul.wc-block-product-categories-list--depth-1 li span.wc-block-product-categories-list-item-count { font-size: 10px; font-weight: 300; margin-top: 2px; margin-left: -4px; }
.widget .wc-block-product-categories .wc-block-product-categories-list li ul.wc-block-product-categories-list--depth-1 li:before, .widget .wc-block-product-categories .wc-block-product-categories-list li ul.wc-block-product-categories-list--depth-1 li:after { position: absolute; width: 10px; border-left: 1px solid #d6d6d6; left: 2px; top: 7px; content: ''; }
.widget .wc-block-product-categories .wc-block-product-categories-list li ul.wc-block-product-categories-list--depth-1 li:after { height: 11px; border-bottom: 1px solid #d6d6d6; }
.widget .wc-block-product-categories .wc-block-product-categories-list li ul.wc-block-product-categories-list--depth-1 li:before { height: 105%; }
.widget .wc-block-product-categories .wc-block-product-categories-list li ul.wc-block-product-categories-list--depth-1 li:last-child:before { display: none; }
.widget .wc-block-product-categories .wc-block-product-categories-list li ul.wc-block-product-categories-list--depth-1 li:last-child:after { border-bottom-left-radius: 1px; }

/* Category style */

/*

.home-categories a {
    text-decoration: none;
}

.home-categories a:hover {
    text-decoration: underline;
}

.categories-home span {
    font-size: 14px;
}

*/

.add2cart-btn {
    margin-left: 10px;
    border: 1px solid #dee2e6;
}

/* Chrome, Safari, Edge, Opera */
.product-add2cart input.qty::-webkit-outer-spin-button,
.product-add2cart input.qty::-webkit-inner-spin-button,
.woocommerce-grouped-product-list-item input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    text-align: center;
}

/* Firefox */

.product-add2cart input.qty[type=number],
.woocommerce-grouped-product-list-item input.qty[type=number],
.woocommerce-cart-form input.qty[type=number] {
    -moz-appearance: textfield;
    text-align: center;
}

.product-content .variations label {
    margin-right: 10px;
}

.product-content .reset_variations {
    display: inline-block;
    margin: 10px 0;
}

.product-content .woocommerce-variation-price span.price {
    text-align: left;
}

.grouped_form .add2cart-btn,
.product-type-external .add2cart-btn {
    margin-left: 0;
}



.product-review {
    margin-bottom: 20px;
}

.product-review-header {
    display: flex;
    justify-content: space-between;
}

.product-review-header .review-date {
    color: var(--gray-color);
}

.product-review-header .avatar {
    max-height: 60px;
}

.product-review .card-text {
    margin-top: 20px;
}

.comment-author-rating {
    text-align: right;
}

.comment-author-rating .meta {
    margin-bottom: 5px;
}

/* Cart style */

.shop_table th {
    color: var(--text-color);
    font-weight: 500;
}

.woocommerce-cart-form__contents td,
.shop_table_responsive td,
.woocommerce-checkout-review-order-table tr td:last-child,
.woocommerce-checkout-review-order-table tr th:last-child{
    text-align: right;
    color: var(--text-color);
    font-weight: 500;
}

.shop_table ul {
    list-style: none;
    padding-left: 0;
}

.shop_table ul input {
    margin-left: 5px;
}

.shop_table ul {
    list-style: none;
}

.woocommerce-notices-wrapper .woocommerce-error {
    color: #fff;
    background: #dc3545;
    padding: 1rem;
}

ul.woocommerce-error {
    color: #fff;
    background: #dc3545;
    padding: 1rem;
    list-style: none;
}

.woocommerce-billing-fields__field-wrapper,
.woocommerce-additional-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.woocommerce-billing-fields__field-wrapper p,
.woocommerce-additional-fields__field-wrapper p,
.woocommerce-shipping-fields__field-wrapper p {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
    flex-direction: column;
}

.woocommerce-checkout p .input-text,
.woocommerce-address-fields p .input-text {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.woocommerce-checkout p .input-text:focus {
    color: #495057;
    background-color: #fff;
    border-color: #ffefb3;
    outline: 0;
    box-shadow: none;
}

.woocommerce-checkout p .select2-container--default .select2-selection--single,
.woocommerce-address-fields p .select2-container--default .select2-selection--single {
    border-radius: 0;
}

.woocommerce-checkout p .select2-container .select2-selection--single,
.woocommerce-address-fields p .select2-container .select2-selection--single {
    height: 38px;
}

.woocommerce-checkout p .select2-container .select2-selection--single .select2-selection__rendered,
.woocommerce-address-fields p .select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: 4px;
}

.woocommerce-checkout p .select2-container--default .select2-selection--single .select2-selection__arrow,
.woocommerce-address-fields p .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px;
}

.woocommerce-additional-fields__field-wrapper p {
    flex: 100%;
    max-width: 100%;
}

.woocommerce-checkout textarea {
    min-height: 100px;
}

@media only screen and (max-width : 768px) {
    .woocommerce-checkout p {
        flex: 100%;
        max-width: 100%;
    }
}

.woocommerce-checkout-payment ul {
    list-style: none;
    padding-left: 0;
}

.woocommerce-thankyou-order-received {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 10px;
}

.woocommerce-order-details,
.woocommerce-customer-details {
    padding: 20px 0;
}

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

.woocommerce-password-strength.good {
    color: #00A8EF;
}

.woocommerce-password-strength.strong {
    color: #00A510;
}

.woocommerce-password-hint {
    border: 1px solid #ccc;
    display: block;
    padding: 10px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding-left: 0;
}

.woocommerce-orders-table td {
    text-align: left;
}

.woocommerce-Address {
    width: 100%;
}

/* News post */
.news-post{
    transition: all .5s;
    transition-delay:.15s;
    border: 1px solid rgb(20, 20, 20, 0.2);
    background-color: #fff;
    position: relative;
    padding: 10px;
    margin: 10px;
}
.news-post:hover {
    box-shadow:0 0 10px rgba(0,0,0,.2);
}
/* News post end*/







