/*Hides Theme Credit in Footer*/
.blog-credits{
  display:none;
}

.my-button { 
display: inline-block; 
padding: 12px 24px; 
border-radius: 6px; 
border: 0; 
font-weight: bold; 
letter-spacing: 0.0625em; 
text-transform: uppercase; 
background: #dd3333; 
color: #fff; 
} 

/* Add a rollover background colour but keep the text white */ 
.my-button:hover, 
.my-button:focus, 
.my-button:active { 
background: #202020; 
color: #fff; 
}



/*  hide shipping destination| SKO #1612555-zen */
p.woocommerce-shipping-destination {
    display: none;
}

/* Remove text underline from sale price 1625740-zen */
.price ins {text-decoration: none;}

/* Widget - AT WooCommerce Categories: hide the product count -- 1664687-zen (EZ) */ .widget_online_shop_wc_feature_cats .single-list span { display: none; }


/*Removed caption in product gallery in WooCommerce */
.pswp__caption__center {
    display: none;
}


/* Hide JP carousel title | JC-1726603-zen */
.jp-carousel-titleanddesc-title {
    display: none;
}



/*     */

.pswp__bg {
    background:#ffffff;
}




/* Hide 'No Products' message on 'term-805951' page : ZD2456561 | JG */

.term-805951 .woocommerce-info {
   display:none;
}


/* Hide green checkmark next to item images / 2535419-zen JAR */
.wc-block-review-list-item__verified {display: none;}

/* center align button block due to 3rd-party theme issue 3561286-zd rs */
.wp-block-button {
text-align: center;
}

/* Remove the underline from links SS-3786608-hc */
.entry-content p a, .comment-content p a, .comment-content li a, .textwidget a {
  text-decoration: none;
}




/* Changes the color and font size of the sales banner */
.woocommerce span.onsale {
    background-color: transparent;
    color: red !important;
    font-size: 13.5px !important; /* Измените значение на нужный вам размер */
} 

 


/* Add the following rule to make the corner transparent */
.woocommerce span.onsale::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid gray; /* Измените цвет на "transparent" */
    border-top: 20px solid gray; /* Измените цвет на "transparent" */
    opacity: 0; /* Делаем уголок прозрачным */
}

/* Change Add to Cart button from Shop page */
.woocommerce a.button.add_to_cart_button {
    background-color: transparent; /* Прозрачный фон кнопки */
    color: black; /* Черный цвет текста кнопки */
    border: 1px solid transparent; /* Прозрачная обводка */
}

/* Изменение цвета звездочек отзывов */
.star-rating span::before {
    color: orange;
}

/* Изменение цвета товара в корзине при переходе цвета темы на черный */
.woocommerce-cart .product-name,
.woocommerce .cart_item .product-name,
.woocommerce .cart td.product-name a {
    color: #000000 !important;
    display: inline !important;
}

/* скрываем дату отзывов */
.cr-review__date,
.woocommerce-review__published-date,
.cr-summaryBox-date {
    display: none !important;
}

/* в отзывах скрыть разделитель тире между именем и датой */

.woocommerce-review__dash,
.cr-review__dash,
.cr-dash {
    display: none !important;
}