hello 404 Not Found
Al-HUWAITI Shell
Al-huwaiti


Server : Apache
System : Linux webm006.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User : chryzalihi ( 621211)
PHP Version : 8.3.31
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
Directory :  /home/c/h/r/chryzalihi/www/wp-content/languages/themes/the/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/c/h/r/chryzalihi/www/wp-content/languages/themes/the/compatibility.tar
woocommerce/woocommerce-functions.php000064400000015152152425750770014143 0ustar00<?php
/**
 * Bloglo WooCommerce compatibility functions.
 *
 * @package     Bloglo
 * @author      Peregrine Themes
 * @since       1.0.0
 */

if ( ! function_exists( 'bloglo_get_wc_version' ) ) :
	/**
	 * Get the version of the currently installed WooCommerce.
	 *
	 * @since 1.0.0
	 * @return woocommerce version number or null.
	 */
	function bloglo_get_wc_version() {
		return defined( 'WC_VERSION' ) && WC_VERSION ? WC_VERSION : null;
	}
endif;

if ( ! function_exists( 'bloglo_header_widget_cart' ) ) :
	/**
	 * Outputs the header cart widget.
	 *
	 * @since 1.0.0
	 * @param array $options Array of widget options.
	 */
	function bloglo_header_widget_cart( $options ) {

		// Cart widget.
		bloglo_wc_cart_icon();

		// Skip dropdown on checkout and cart.
		if ( is_checkout() || is_cart() ) {
			return;
		}

		// Cart dropdown contents.
		bloglo_wc_cart_dropdown();
	}
endif;

if ( ! function_exists( 'bloglo_wc_cart_icon' ) ) :
	/**
	 * Outputs the WooCommerce cart widget icon.
	 *
	 * @since 1.0.0
	 * @param boolean $echo Return or print.
	 */
	function bloglo_wc_cart_icon( $echo = true ) {

		ob_start();

		wc_get_template_part( 'cart/header-widget/icon' );

		$output = ob_get_clean();

		if ( true === $echo ) {
			echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		} else {
			return $output;
		}
	}
endif;

if ( ! function_exists( 'bloglo_wc_cart_dropdown' ) ) :
	/**
	 * Outputs the WooCommerce cart dropdown.
	 *
	 * @since 1.0.0
	 * @param bool $echo Print or return content.
	 */
	function bloglo_wc_cart_dropdown( $echo = true ) {

		ob_start();

		wc_get_template_part( 'cart/header-widget/dropdown' );

		$output = ob_get_clean();

		if ( true === $echo ) {
			echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		} else {
			return $output;
		}
	}
endif;

if ( ! function_exists( 'bloglo_wc_out_of_stock_badge' ) ) :
	/**
	 * Outputs out of stock (sold out) badge for product.
	 *
	 * @since 1.0.0
	 */
	function bloglo_wc_out_of_stock_badge() {

		global $product;

		if ( ! $product->is_in_stock() ) {
			esc_html( sprintf( apply_filters( 'bloglo_woocommerce_out_of_stock_badge', sprintf( '<span class="onsale sold-out">%s</span>', esc_html__( 'Sold Out', 'bloglo' ) ) ) ) );
		}
	}
endif;

if ( ! function_exists( 'bloglo_wc_add_percentage_to_sale_badge' ) ) :
	/**
	 * Outputs badge with percentage discount for product.
	 *
	 * @since 1.0.0
	 * @param string $html    Cart widget content.
	 * @param object $post    Post object.
	 * @param object $product Product object.
	 */
	function bloglo_wc_add_percentage_to_sale_badge( $html, $post, $product ) {

		$badge = bloglo_option( 'product_sale_badge' );

		if ( 'hide' === $badge ) {
			return '';
		}

		if ( ! $product->is_in_stock() && ! $product->backorders_allowed() ) {
			return '';
		}

		$text = '';

		if ( 'text' === $badge ) {

			$text = bloglo_option( 'product_sale_badge_text' );

		} elseif ( 'percentage' === $badge ) {

			if ( $product->is_type( 'variable' ) ) {

				$percentages = array();

				// Get all variation prices.
				$prices = $product->get_variation_prices();

				// Loop through variation prices.
				foreach ( $prices['price'] as $key => $price ) {

					// Only on sale variations.
					if ( $prices['regular_price'][ $key ] !== $price ) {

						// Prevent dividing by 0.
						if ( ! $prices['regular_price'][ $key ] ) {
							return $html;
						}

						// Calculate and set in the array the percentage for each variation on sale.
						$percentages[] = round( 100 - ( $prices['sale_price'][ $key ] / $prices['regular_price'][ $key ] * 100 ) );
					}
				}

				// We keep the highest value.
				$text = '-' . max( $percentages ) . '%';

			} else {

				$regular_price = (float) $product->get_regular_price();
				$sale_price    = (float) $product->get_sale_price();

				// Prevent dividing by 0.
				if ( ! $regular_price ) {
					return $html;
				}

				$text = '-' . round( 100 - ( $sale_price / $regular_price * 100 ) ) . '%';
			}
		}

		return $text || is_customize_preview() ? '<span class="onsale">' . esc_html( $text ) . '</span>' : '';
	}
endif;

if ( ! function_exists( 'bloglo_wc_empty_cart_button' ) ) :
	/**
	 * Add empty cart - button to return to cart page.
	 *
	 * @since 1.0.0
	 */
	function bloglo_wc_empty_cart_button() {

		if ( ! wc_get_page_id( 'shop' ) ) {
			return;
		}
		?>
		<p class="return-to-shop bloglo-woo-return">
			<a class="bloglo-btn btn-reveal btn-left-icon" href="<?php echo esc_url( apply_filters( 'woocommerce_return_to_shop_redirect', wc_get_page_permalink( 'shop' ) ) ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound ?>" role="button">
				<span><?php esc_html_e( 'Return to Shop', 'bloglo' ); ?></span>
				<?php echo bloglo()->icons->get_svg( 'arrow-left', array( 'aria-hidden' => 'true' ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
			</a>
		</p>
		<?php
	}
endif;

if ( ! function_exists( 'bloglo_wc_widget_shopping_cart_buttons' ) ) :
	/**
	 * Mini cart buttons for Shopping Cart Widget.
	 *
	 * @since 1.0.0
	 */
	function bloglo_wc_widget_shopping_cart_buttons() {
		wc_get_template_part( 'cart/header-widget/buttons' );
	}
endif;

if ( ! function_exists( 'bloglo_wc_layered_count_filter' ) ) :
	/**
	 * Removes parentheses from WooCommerce layered filter count.
	 *
	 * @since 1.0.0
	 *
	 * @param string $output The count output.
	 * @param array  $count The count.
	 * @param array  $term The term.
	 * @return string
	 */
	function bloglo_wc_layered_count_filter( $output, $count, $term ) {

		$output = str_replace( '(', ' ', $output );
		$output = str_replace( ')', ' ', $output );

		return $output;
	}
endif;

if ( ! function_exists( 'bloglo_wc_rating_count_filter' ) ) :
	/**
	 * Removes parentheses from WooCommerce rating filter count.
	 *
	 * @since 1.0.0
	 *
	 * @param string $output The count output.
	 * @param array  $count  The count.
	 * @param array  $rating The term.
	 * @return  string
	 */
	function bloglo_wc_rating_count_filter( $output, $count, $rating ) {

		$output = str_replace( '(', '<em>', $output );
		$output = str_replace( ')', '</em>', $output );

		return $output;
	}
endif;

if ( ! function_exists( 'bloglo_wc_cat_count_filter' ) ) :
	/**
	 * Filters product category subtitle (count).
	 *
	 * @since 1.0.0
	 *
	 * @param string $output   The count output.
	 * @param array  $category The category.
	 * @return  string
	 */
	function bloglo_wc_cat_count_filter( $output, $category ) {

		$count = $category->count;

		/* translators: %s is category count */
		$text = sprintf( _n( '%s product', '%s products', $count, 'bloglo' ), $count );

		return '<span class="count">' . esc_html( $text ) . '</span>';
	}
endif;
woocommerce/class-bloglo-customizer-woocommerce.php000064400000035543152425750770016724 0ustar00<?php
/**
 * Bloglo WooCommerce section in Customizer.
 *
 * @package Bloglo
 * @author Peregrine Themes
 * @since   1.0.0
 */

/**
 * Do not allow direct script access.
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'Bloglo_Customizer_WooCommerce' ) ) :
	/**
	 * Bloglo WooCommerce section in Customizer.
	 */
	class Bloglo_Customizer_WooCommerce {

		/**
		 * Primary class constructor.
		 *
		 * @since 1.0.0
		 */
		public function __construct() {

			// Registers our custom options in Customizer.
			add_filter( 'bloglo_customizer_options', array( $this, 'register_options' ), 20 );
			add_action( 'customize_register', array( $this, 'customizer_tweak' ), 20 );

			// Add default values for WooCommerce options.
			add_filter( 'bloglo_default_option_values', array( $this, 'default_customizer_values' ) );

			// Add localized strings to script.
			add_filter( 'bloglo_customizer_localized', array( $this, 'customizer_localized_strings' ) );
		}

		/**
		 * Add defaults for new WooCommerce customizer options.
		 *
		 * @param  array $defaults Array of default values.
		 * @return array           Array of default values.
		 */
		public function default_customizer_values( $defaults ) {

			$defaults['bloglo_wc_product_gallery_lightbox'] = true;
			$defaults['bloglo_wc_product_gallery_zoom']     = true;
			$defaults['bloglo_shop_product_hover']          = 'none';
			$defaults['bloglo_product_sale_badge']          = 'percentage';
			$defaults['bloglo_product_sale_badge_text']     = esc_html__( 'Sale!', 'bloglo' );
			$defaults['bloglo_wc_product_slider_arrows']    = true;
			$defaults['bloglo_wc_product_gallery_style']    = 'default';
			$defaults['bloglo_wc_product_sidebar_position'] = 'no-sidebar';
			$defaults['bloglo_wc_sidebar_position']         = 'no-sidebar';
			$defaults['bloglo_wc_upsell_products']          = true;
			$defaults['bloglo_wc_upsells_columns']          = 4;
			$defaults['bloglo_wc_upsells_rows']             = 1;
			$defaults['bloglo_wc_related_products']         = true;
			$defaults['bloglo_wc_related_columns']          = 4;
			$defaults['bloglo_wc_related_rows']             = 1;
			$defaults['bloglo_wc_cross_sell_products']      = true;
			$defaults['bloglo_wc_cross_sell_rows']          = 1;
			$defaults['bloglo_product_catalog_elements']    = array(
				'category' => true,
				'title'    => true,
				'ratings'  => true,
				'price'    => true,
			);

			return $defaults;
		}

		/**
		 * Tweak Customizer.
		 *
		 * @since 1.0.0
		 * @param WP_Customize_Manager $customizer Instance of WP_Customize_Manager class.
		 */
		public function customizer_tweak( $customizer ) {
			// Move WooCommerce panel.
			$customizer->get_panel( 'woocommerce' )->priority = 10;

			return $customizer;
		}

		/**
		 * Registers our custom options in Customizer.
		 *
		 * @since 1.0.0
		 * @param array $options Array of customizer options.
		 */
		public function register_options( $options ) {

			// Shop image hover effect.
			$options['setting']['bloglo_shop_product_hover'] = array(
				'transport'         => 'refresh',
				'sanitize_callback' => 'bloglo_sanitize_select',
				'control'           => array(
					'type'        => 'bloglo-select',
					'section'     => 'woocommerce_product_catalog',
					'label'       => esc_html__( 'Product image hover', 'bloglo' ),
					'description' => esc_html__( 'Effect for product image on hover', 'bloglo' ),
					'choices'     => array(
						'none'       => esc_html__( 'No Effect', 'bloglo' ),
						'image-swap' => esc_html__( 'Image Swap', 'bloglo' ),
					),
				),
			);

			// Sale badge.
			$options['setting']['bloglo_product_sale_badge'] = array(
				'transport'         => 'refresh',
				'sanitize_callback' => 'bloglo_sanitize_select',
				'control'           => array(
					'type'        => 'bloglo-select',
					'section'     => 'woocommerce_product_catalog',
					'label'       => esc_html__( 'Product sale badge', 'bloglo' ),
					'description' => esc_html__( 'Choose what to display on the product sale badge.', 'bloglo' ),
					'choices'     => array(
						'hide'       => esc_html__( 'Hide badge', 'bloglo' ),
						'percentage' => esc_html__( 'Show percentage', 'bloglo' ),
						'text'       => esc_html__( 'Show text', 'bloglo' ),
					),
				),
			);

			// Sale badge text.
			$options['setting']['bloglo_product_sale_badge_text'] = array(
				'transport'         => 'postMessage',
				'sanitize_callback' => 'sanitize_text_field',
				'control'           => array(
					'type'        => 'bloglo-text',
					'label'       => esc_html__( 'Sale badge text', 'bloglo' ),
					'description' => esc_html__( 'Add custom text for the product sale badge.', 'bloglo' ),
					'placeholder' => esc_html__( 'Sale!', 'bloglo' ),
					'section'     => 'woocommerce_product_catalog',
					'required'    => array(
						array(
							'control'  => 'bloglo_product_sale_badge',
							'value'    => 'text',
							'operator' => '==',
						),
					),
				),
			);

			// Catalog product elements.
			$options['setting']['bloglo_product_catalog_elements'] = array(
				'transport'         => 'refresh',
				'sanitize_callback' => 'bloglo_sanitize_sortable',
				'control'           => array(
					'type'        => 'bloglo-sortable',
					'section'     => 'woocommerce_product_catalog',
					'label'       => esc_html__( 'Product details', 'bloglo' ),
					'description' => esc_html__( 'Set order and visibility for product details.', 'bloglo' ),
					'choices'     => array(
						'title'    => esc_html__( 'Title', 'bloglo' ),
						'ratings'  => esc_html__( 'Ratings', 'bloglo' ),
						'price'    => esc_html__( 'Price', 'bloglo' ),
						'category' => esc_html__( 'Category', 'bloglo' ),
					),
				),
			);

			// Section.
			$options['section']['bloglo_woocommerce_single_product'] = array(
				'title'    => esc_html__( 'Single Product', 'bloglo' ),
				'priority' => 50,
				'panel'    => 'woocommerce',
			);

			// Product Gallery Zoom.
			$options['setting']['bloglo_wc_product_gallery_zoom'] = array(
				'transport'         => 'refresh',
				'sanitize_callback' => 'bloglo_sanitize_toggle',
				'control'           => array(
					'type'        => 'bloglo-toggle',
					'label'       => esc_html__( 'Gallery Zoom', 'bloglo' ),
					'description' => esc_html__( 'Enable zoom effect when hovering product gallery.', 'bloglo' ),
					'section'     => 'bloglo_woocommerce_single_product',
					'space'       => true,
				),
			);

			// Product Gallery Lightbox.
			$options['setting']['bloglo_wc_product_gallery_lightbox'] = array(
				'transport'         => 'refresh',
				'sanitize_callback' => 'bloglo_sanitize_toggle',
				'control'           => array(
					'type'        => 'bloglo-toggle',
					'label'       => esc_html__( 'Gallery Lightbox', 'bloglo' ),
					'description' => esc_html__( 'Open product gallery images in lightbox.', 'bloglo' ),
					'section'     => 'bloglo_woocommerce_single_product',
					'space'       => true,
				),
			);

			// Product slider arrows.
			$options['setting']['bloglo_wc_product_slider_arrows'] = array(
				'transport'         => 'refresh',
				'sanitize_callback' => 'bloglo_sanitize_toggle',
				'control'           => array(
					'type'        => 'bloglo-toggle',
					'label'       => esc_html__( 'Slider Arrows', 'bloglo' ),
					'description' => esc_html__( 'Enable left and right arrows on product gallery slider.', 'bloglo' ),
					'section'     => 'bloglo_woocommerce_single_product',
					'space'       => true,
				),
			);

			// Related Products.
			$options['setting']['bloglo_wc_related_products'] = array(
				'transport'         => 'refresh',
				'sanitize_callback' => 'bloglo_sanitize_toggle',
				'control'           => array(
					'type'        => 'bloglo-toggle',
					'label'       => esc_html__( 'Related Products', 'bloglo' ),
					'description' => esc_html__( 'Display related products.', 'bloglo' ),
					'section'     => 'bloglo_woocommerce_single_product',
					'space'       => true,
				),
			);

			// Related product column count.
			$options['setting']['bloglo_wc_related_columns'] = array(
				'transport'         => 'refresh',
				'sanitize_callback' => 'bloglo_sanitize_range',
				'control'           => array(
					'type'        => 'bloglo-range',
					'label'       => esc_html__( 'Related Products Columns', 'bloglo' ),
					'description' => esc_html__( 'How many related products should be shown per row?', 'bloglo' ),
					'section'     => 'bloglo_woocommerce_single_product',
					'min'         => 1,
					'max'         => 6,
					'step'        => 1,
					'required'    => array(
						array(
							'control'  => 'bloglo_wc_related_products',
							'value'    => true,
							'operator' => '==',
						),
					),
				),
			);

			// Related product row count.
			$options['setting']['bloglo_wc_related_rows'] = array(
				'transport'         => 'refresh',
				'sanitize_callback' => 'bloglo_sanitize_range',
				'control'           => array(
					'type'        => 'bloglo-range',
					'label'       => esc_html__( 'Related Products Rows', 'bloglo' ),
					'description' => esc_html__( 'How many rows of related products should be shown?', 'bloglo' ),
					'section'     => 'bloglo_woocommerce_single_product',
					'min'         => 1,
					'max'         => 5,
					'step'        => 1,
					'required'    => array(
						array(
							'control'  => 'bloglo_wc_related_products',
							'value'    => true,
							'operator' => '==',
						),
					),
				),
			);

			// Up-Sell Products.
			$options['setting']['bloglo_wc_upsell_products'] = array(
				'transport'         => 'refresh',
				'sanitize_callback' => 'bloglo_sanitize_toggle',
				'control'           => array(
					'type'        => 'bloglo-toggle',
					'label'       => esc_html__( 'Up-Sell Products', 'bloglo' ),
					'description' => esc_html__( 'Display linked upsell products.', 'bloglo' ),
					'section'     => 'bloglo_woocommerce_single_product',
					'space'       => true,
				),
			);

			// Up-Sells column count.
			$options['setting']['bloglo_wc_upsells_columns'] = array(
				'transport'         => 'refresh',
				'sanitize_callback' => 'bloglo_sanitize_range',
				'control'           => array(
					'type'        => 'bloglo-range',
					'label'       => esc_html__( 'Up-Sell Products Columns', 'bloglo' ),
					'description' => esc_html__( 'How many up-sell products should be shown per row?', 'bloglo' ),
					'section'     => 'bloglo_woocommerce_single_product',
					'min'         => 1,
					'max'         => 6,
					'step'        => 1,
					'required'    => array(
						array(
							'control'  => 'bloglo_wc_upsell_products',
							'value'    => true,
							'operator' => '==',
						),
					),
				),
			);

			// Up-Sells rows count.
			$options['setting']['bloglo_wc_upsells_rows'] = array(
				'transport'         => 'refresh',
				'sanitize_callback' => 'bloglo_sanitize_range',
				'control'           => array(
					'type'        => 'bloglo-range',
					'label'       => esc_html__( 'Up-Sell Products Rows', 'bloglo' ),
					'description' => esc_html__( 'How many rows of up-sell products should be shown?', 'bloglo' ),
					'section'     => 'bloglo_woocommerce_single_product',
					'min'         => 1,
					'max'         => 6,
					'step'        => 1,
					'required'    => array(
						array(
							'control'  => 'bloglo_wc_upsell_products',
							'value'    => true,
							'operator' => '==',
						),
					),
				),
			);

			// Cross-Sell Products.
			$options['setting']['bloglo_wc_cross_sell_products'] = array(
				'transport'         => 'refresh',
				'sanitize_callback' => 'bloglo_sanitize_toggle',
				'control'           => array(
					'type'        => 'bloglo-toggle',
					'label'       => esc_html__( 'Cross-Sell Products', 'bloglo' ),
					'description' => esc_html__( 'Display linked cross-sell products on cart page.', 'bloglo' ),
					'section'     => 'bloglo_woocommerce_single_product',
					'space'       => true,
				),
			);

			// Cross-Sells rows count.
			$options['setting']['bloglo_wc_cross_sell_rows'] = array(
				'transport'         => 'refresh',
				'sanitize_callback' => 'bloglo_sanitize_range',
				'control'           => array(
					'type'        => 'bloglo-range',
					'label'       => esc_html__( 'Cross-Sell Products Rows', 'bloglo' ),
					'description' => esc_html__( 'How many rows of cross-sell products should be shown?', 'bloglo' ),
					'section'     => 'bloglo_woocommerce_single_product',
					'min'         => 1,
					'max'         => 6,
					'step'        => 1,
					'required'    => array(
						array(
							'control'  => 'bloglo_wc_cross_sells_products',
							'value'    => true,
							'operator' => '==',
						),
					),
				),
			);

			$sidebar_options = array();

			$sidebar_options['bloglo_wc_sidebar_position'] = array(
				'transport'         => 'refresh',
				'sanitize_callback' => 'bloglo_sanitize_select',
				'control'           => array(
					'type'        => 'bloglo-select',
					'label'       => esc_html__( 'WooCommerce', 'bloglo' ),
					'description' => esc_html__( 'Choose default sidebar position for cart, checkout and catalog pages. You can change this setting per page via metabox settings.', 'bloglo' ),
					'section'     => 'bloglo_section_sidebar',
					'choices'     => array(
						'default'       => esc_html__( 'Default', 'bloglo' ),
						'no-sidebar'    => esc_html__( 'No Sidebar', 'bloglo' ),
						'left-sidebar'  => esc_html__( 'Left Sidebar', 'bloglo' ),
						'right-sidebar' => esc_html__( 'Right Sidebar', 'bloglo' ),
					),
				),
			);

			$sidebar_options['bloglo_wc_product_sidebar_position'] = array(
				'transport'         => 'refresh',
				'sanitize_callback' => 'bloglo_sanitize_select',
				'control'           => array(
					'type'        => 'bloglo-select',
					'label'       => esc_html__( 'WooCommerce - Single Product', 'bloglo' ),
					'description' => esc_html__( 'Choose default sidebar position layout for product pages. You can change this setting per product via metabox settings.', 'bloglo' ),
					'section'     => 'bloglo_section_sidebar',
					'choices'     => array(
						'default'       => esc_html__( 'Default', 'bloglo' ),
						'no-sidebar'    => esc_html__( 'No Sidebar', 'bloglo' ),
						'left-sidebar'  => esc_html__( 'Left Sidebar', 'bloglo' ),
						'right-sidebar' => esc_html__( 'Right Sidebar', 'bloglo' ),
					),
				),
			);

			$options['setting'] = hester_array_insert( $options['setting'], $sidebar_options, 'bloglo_archive_sidebar_position' );

			return $options;
		}

		/**
		 * Add localize strings.
		 *
		 * @param  array $strings Array of strings to be localized.
		 * @return array          Modified string array.
		 */
		public function customizer_localized_strings( $strings ) {

			// Preview a random single product for WooCommerce > Single Product section.
			$products = get_posts(
				array(
					'post_type'      => 'product',
					'posts_per_page' => 1,
					'orderby'        => 'rand',
				)
			);

			if ( count( $products ) ) {
				$strings['preview_url_for_section']['bloglo_woocommerce_single_product'] = get_permalink( $products[0] );
			}

			return $strings;
		}
	}
endif;
new Bloglo_Customizer_WooCommerce();
woocommerce/class-bloglo-customizer-widget-cart.php000064400000001745152425750770016614 0ustar00<?php
/**
 * Bloglo Customizer widgets class.
 *
 * @package Bloglo
 * @author Peregrine Themes
 * @since   1.0.0
 */

/**
 * Do not allow direct script access.
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'Bloglo_Customizer_Widget_Cart' ) ) :

	/**
	 * Bloglo Customizer widget class
	 */
	class Bloglo_Customizer_Widget_Cart extends Bloglo_Customizer_Widget {

		/**
		 * Primary class constructor.
		 *
		 * @since 1.0.0
		 * @param array $args An array of the values for this widget.
		 */
		public function __construct( $args = array() ) {

			parent::__construct( $args );

			$this->name        = esc_html__( 'Cart', 'bloglo' );
			$this->description = esc_html__( 'Displays WooCommerce cart.', 'bloglo' );
			$this->icon        = 'dashicons dashicons-cart';
			$this->type        = 'cart';
		}

		/**
		 * Displays the form for this widget on the Widgets page of the WP Admin area.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function form() {}
	}
endif;
woocommerce/class-bloglo-woocommerce.php000064400000105655152425750770014524 0ustar00<?php
/**
 * WooCommerce Compatibility File.
 *
 * @package Bloglo
 * @author Peregrine Themes
 * @since   1.0.0
 */

// If WooCommerce is not activated then return.
if ( ! bloglo_is_woocommerce_activated() ) {
	add_action( 'activate_woocommerce/woocommerce.php', array( bloglo_dynamic_styles(), 'delete_dynamic_file' ) );
	return;
}

/**
 * Bloglo WooCommerce Compatibility.
 */
if ( ! class_exists( 'Bloglo_Woocommerce' ) ) :

	/**
	 * Bloglo WooCommerce Compatibility
	 *
	 * @since 1.0.0
	 */
	class Bloglo_Woocommerce {

		/**
		 * Singleton instance of the class.
		 *
		 * @since 1.0.0
		 * @var object
		 */
		private static $instance;

		/**
		 * Main Instance.
		 *
		 * @since 1.0.0
		 * @return Bloglo_Woocommerce
		 */
		public static function instance() {

			if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Bloglo_Woocommerce ) ) {
				self::$instance = new Bloglo_Woocommerce();

				self::$instance->includes();
				self::$instance->actions();
			}

			return self::$instance;
		}

		/**
		 * Include files.
		 *
		 * @since 1.0.0
		 */
		private function includes() {

			require BLOGLO_THEME_PATH . '/inc/compatibility/woocommerce/woocommerce-functions.php'; // phpcs:ignore
			require BLOGLO_THEME_PATH . '/inc/compatibility/woocommerce/class-bloglo-customizer-woocommerce.php'; // phpcs:ignore
		}

		/**
		 * WooCommerce actions.
		 *
		 * @since 1.0.0
		 */
		private function actions() {

			// Cart fragment.
			if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '2.3', '>=' ) ) {
				add_filter( 'woocommerce_add_to_cart_fragments', array( $this, 'cart_widget_count_fragment' ) );
				add_filter( 'woocommerce_add_to_cart_fragments', array( $this, 'cart_widget_dropdown_fragment' ) );
			} else {
				add_filter( 'add_to_cart_fragments', array( $this, 'cart_widget_count_fragment' ) );
				add_filter( 'add_to_cart_fragments', array( $this, 'cart_widget_dropdown_fragment' ) );
			}

			// Frontend actions only.
			if ( ! is_admin() ) {

				add_action( 'wp', array( $this, 'product_catalog_elements' ) );

				// Disable WooCommerce shop title.
				add_filter( 'woocommerce_show_page_title', '__return_false' );

				// Disable Bloglo page description.
				add_filter( 'bloglo_page_header_description', array( $this, 'shop_remove_page_description' ) );

				// Remove WooCommerce content wrappers.
				remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
				remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );

				// Remove WooCommerce breadcrumbs.
				remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20 );

				// Extend Bloglo breadcrumb trail.
				add_filter( 'bloglo_breadcrumb_trail_items', array( $this, 'breadcrumbs' ), 20, 2 );
				add_filter( 'bloglo_post_type_archive_title', array( $this, 'breadcrumb_post_type_archive_title' ), 10, 2 );

				// Remove WooCommerce sidebar.
				remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar' );
				add_action( 'bloglo_woocommerce_sidebar', 'woocommerce_get_sidebar' );

				// Add our content wrappers.
				add_action( 'woocommerce_before_main_content', array( $this, 'content_wrapper_start' ), 10 );
				add_action( 'woocommerce_after_main_content', array( $this, 'content_wrapper_end' ), 10 );

				// Replace WooCommerce pagination with Bloglo pagination.
				remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 );
				add_action( 'woocommerce_after_shop_loop', 'bloglo_pagination' );

				// Add back to shop button to Empty Cart.
				add_action( 'woocommerce_cart_is_empty', 'bloglo_wc_empty_cart_button' );

				// Add wrapper to result count and catalog ordering.
				add_action( 'woocommerce_before_shop_loop', array( $this, 'result_wrapper_start' ), 19 );
				add_action( 'woocommerce_before_shop_loop', array( $this, 'result_wrapper_end' ), 31 );

				// Remove opening link tag.
				remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

				// Add thumbnail wrapper.
				add_action( 'woocommerce_before_shop_loop_item_title', array( $this, 'loop_product_thumb_wrap_start' ), 5 );
				add_action( 'woocommerce_before_shop_loop_item_title', array( $this, 'loop_product_thumb_wrap_end' ), 15 );

				// Add product link to thumnail.
				add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_link_open', 6 );
				add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_link_close', 13 );

				// Add alternative image to display on hover.
				add_action( 'woocommerce_before_shop_loop_item_title', array( $this, 'product_image_swap' ), 11 );

				// Add to cart button to display on hover.
				add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_add_to_cart', 14 );

				// Add wrapper to product meta details.
				add_action( 'woocommerce_before_shop_loop_item_title', array( $this, 'loop_product_details_wrap_open' ), 19 );
				add_action( 'woocommerce_after_shop_loop_item_title', array( $this, 'loop_product_details_wrap_end' ), 10 );

				add_action( 'woocommerce_before_single_product_summary', array( $this, 'single_product_wrapper_start' ), 5 );
				add_action( 'woocommerce_after_single_product_summary', array( $this, 'single_product_wrapper_end' ), 5 );

				// Remove add to cart button from catalog pages.
				remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

				// Percentage sale badge.
				add_filter( 'woocommerce_sale_flash', 'bloglo_wc_add_percentage_to_sale_badge', 20, 3 );

				// Out of stock product badge.
				add_action( 'woocommerce_before_shop_loop_item_title', 'bloglo_wc_out_of_stock_badge', 10 );
				add_action( 'woocommerce_before_single_product_summary', 'bloglo_wc_out_of_stock_badge', 10 );

				// Additional classes for add to cart button.
				add_filter( 'woocommerce_loop_add_to_cart_args', array( $this, 'loop_add_to_cart_args' ) );

				// Heading for checkout page order.
				add_action( 'woocommerce_review_order_before_payment', array( $this, 'review_order_heading' ) );

				// Remove mini cart buttons and replace with ours.
				remove_action( 'woocommerce_widget_shopping_cart_buttons', 'woocommerce_widget_shopping_cart_button_view_cart', 10 );
				remove_action( 'woocommerce_widget_shopping_cart_buttons', 'woocommerce_widget_shopping_cart_proceed_to_checkout', 20 );
				add_action( 'woocommerce_widget_shopping_cart_buttons', 'bloglo_wc_widget_shopping_cart_buttons', 10 );

				// Hide Yith wishlist - we show it in our page title anyway.
				add_filter( 'yith_wcwl_wishlist_title', '__return_false', 20 );

				// Remove checkout heading.
				add_action( 'woocommerce_checkout_shipping', array( $this, 'checkout_shipping_heading' ), 9 );

				add_filter( 'woocommerce_subcategory_count_html', 'bloglo_wc_cat_count_filter', 10, 2 );
				add_filter( 'woocommerce_rating_filter_count', 'bloglo_wc_rating_count_filter', 10, 3 );
				add_filter( 'woocommerce_layered_nav_count', 'bloglo_wc_layered_count_filter', 10, 3 );

				// Upsell Products.
				remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 15 );
				add_action( 'woocommerce_after_single_product_summary', array( $this, 'woocommerce_upsell_display' ), 15 );

				// Related Products.
				remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 );
				add_action( 'woocommerce_after_single_product_summary', array( $this, 'woocommerce_related_products' ), 15 );

				// Related products columns/count.
				add_filter( 'woocommerce_output_related_products_args', array( $this, 'single_product_related_products_args' ) );

				add_filter( 'woocommerce_single_product_carousel_options', array( $this, 'single_product_slider_options' ) );

				// Cross-Sell products.
				remove_action( 'woocommerce_cart_collaterals', 'woocommerce_cross_sell_display' );
				add_action( 'woocommerce_cart_collaterals', array( $this, 'woocommerce_cross_sell_display' ) );

				// Product gallery thumbnail columns.
				add_filter( 'woocommerce_product_thumbnails_columns', array( $this, 'product_thumbnails_columns' ) );
			}

			// Enqueue styles.
			add_action( 'bloglo_enqueue_scripts', array( $this, 'enqueue' ) );

			// Single product actions.
			add_action( 'wp_head', array( $this, 'product_actions' ), 9 );

			// Register WooCommerce sidebars.
			add_action( 'widgets_init', array( $this, 'register_wc_sidebars' ) );

			// Add correct sidebar.
			add_filter( 'bloglo_sidebar_name', array( $this, 'set_sidebar' ) );

			// Set sidebar position.
			add_filter( 'bloglo_default_sidebar_position', array( $this, 'set_default_sidebar_position' ) );

			// Remove item from cart.
			add_action( 'wp_ajax_bloglo_remove_wc_cart_item', array( $this, 'remove_item_from_cart' ) );
			add_action( 'wp_ajax_nopriv_bloglo_remove_wc_cart_item', array( $this, 'remove_item_from_cart' ) );

			// Add theme supports.
			add_action( 'after_setup_theme', array( $this, 'theme_supports' ), 20 );

			// Add customizer cart widget.
			add_filter( 'bloglo_customizer_widgets', array( $this, 'add_customizer_cart_widget' ) );
			add_filter( 'bloglo_main_header_widgets', array( $this, 'add_cart_to_main_header_widgets' ) );

			// Loads Cart Customizer widgets class.
			add_action( 'customize_register', array( $this, 'load_customizer_widget' ), 20 );

			// Handle admin redirects.
			add_action( 'admin_init', array( $this, 'admin_redirects' ), 9 );

			// Add dynamic CSS.
			add_filter( 'bloglo_dynamic_styles', array( $this, 'dynamic_css' ), 5 );

			// Update dynamic styles on deactivation.
			add_action( 'deactivate_woocommerce/woocommerce.php', array( bloglo_dynamic_styles(), 'delete_dynamic_file' ) );

			// Return Shop page ID.
			add_filter( 'bloglo_get_the_id', array( $this, 'get_the_id' ) );

			add_filter( 'woocommerce_product_related_products_heading', array( $this, 'related_products_heading' ) );
		}

		/**
		 * Declare WooCommerce support.
		 *
		 * @since 1.0.0
		 */
		public function theme_supports() {

			// Declare WooCommerce compatibility.
			add_theme_support(
				'woocommerce',
				array(
					'gallery_thumbnail_image_width' => 150,
				)
			);

			// Product Gallery Slider.
			add_theme_support( 'wc-product-gallery-slider' );

			// Product Gallery Zoom.
			if ( bloglo_option( 'wc_product_gallery_zoom' ) ) {
				add_theme_support( 'wc-product-gallery-zoom' );
			}

			// Product Gallery Lightbox.
			if ( bloglo_option( 'wc_product_gallery_lightbox' ) ) {
				add_theme_support( 'wc-product-gallery-lightbox' );
			}
		}

		/**
		 * Enqueue WooCommerce styles.
		 *
		 * @since 1.0.0
		 */
		public function enqueue() {

			// Script debug.
			$bloglo_dir    = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? 'dev/' : '';
			$bloglo_suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';

			// Enqueue WooCommerce compatibility stylesheet.
			wp_enqueue_style(
				'bloglo-woocommerce',
				BLOGLO_THEME_URI . '/assets/css/compatibility/woocommerce' . $bloglo_suffix . '.css',
				false,
				BLOGLO_THEME_VERSION,
				'all'
			);

			// Enqueue WooCommerce compatibility script.
			wp_enqueue_script(
				'bloglo-wc',
				BLOGLO_THEME_URI . '/assets/js/' . $bloglo_dir . 'bloglo-wc' . $bloglo_suffix . '.js',
				array( 'jquery' ),
				BLOGLO_THEME_VERSION,
				true
			);
		}

		/**
		 * Add or remove actions depending on enabled product catalog elements.
		 *
		 * @return void
		 */
		public function product_catalog_elements() {

			$elements = bloglo_option( 'product_catalog_elements' );

			$hook     = 'woocommerce_before_shop_loop_item_title';
			$priority = 20;

			if ( ! empty( $elements ) ) {
				foreach ( $elements as $element => $enabled ) {

					if ( 'title' === $element ) {

						if ( ! $enabled ) {
							remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title' );
						} else {
							remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_product_link_close' );

							add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_link_open', $priority );
							add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_product_link_close', 4 );
						}

						$hook     = 'woocommerce_after_shop_loop_item_title';
						$priority = 5;

					} elseif ( 'ratings' === $element ) {

						remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

						if ( $enabled ) {
							add_action( $hook, 'woocommerce_template_loop_rating', $priority );
							$priority++;
						}
					} elseif ( 'price' === $element ) {

						remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );

						if ( $enabled ) {
							add_action( $hook, 'woocommerce_template_loop_price', $priority );
							$priority++;
						}
					} elseif ( 'category' === $element ) {

						if ( $enabled ) {
							add_action( $hook, array( $this, 'template_loop_category' ), $priority );
							$priority++;
						}
					}
				}
			}
		}

		/**
		 * Print product categories in loop template.
		 *
		 * @return void
		 */
		public function template_loop_category() {

			global $product;

			$product_cats = wp_get_post_terms( $product->get_id(), 'product_cat' );
			$cats         = array();

			if ( is_array( $product_cats ) && ! empty( $product_cats ) ) {
				foreach ( $product_cats as $product_cat ) {
					$cats[] = '<a class="bloglo-loop-product__category" href="' . esc_url( get_term_link( $product_cat, 'product_cat' ) ) . '">' . esc_html( $product_cat->name ) . '</a>';
				}
			}

			echo '<span class="bloglo-loop-product__category-wrap">' . wp_kses_post( implode( ', ', $cats ) ) . '</span>';
		}

		/**
		 * Add start wrapper to result count and catalog ordering.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function result_wrapper_start() {

			if ( ! woocommerce_products_will_display() ) {
				return;
			}

			echo '<div class="bloglo-woo-before-shop clearfix">';
		}

		/**
		 * Add end wrapper to result count and catalog ordering.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function result_wrapper_end() {

			if ( ! woocommerce_products_will_display() ) {
				return;
			}

			echo '</div>';
		}

		/**
		 * Update cart count in Cart Widget via AJAX.
		 *
		 * @param  array $fragments Fragments to refresh via AJAX.
		 * @return array            Fragments to refresh via AJAX
		 * @since  1.0.0
		 */
		public function cart_widget_count_fragment( $fragments ) {

			$fragments['.bloglo-header-widget__cart a.bloglo-cart'] = bloglo_wc_cart_icon( false );

			return $fragments;
		}

		/**
		 * Update Cart Widget dropdown via AJAX.
		 *
		 * @param  array $fragments Fragments to refresh via AJAX.
		 * @return array            Fragments to refresh via AJAX
		 * @since  1.0.0
		 */
		public function cart_widget_dropdown_fragment( $fragments ) {

			$fragments['.bloglo-header-widget__cart .dropdown-item'] = bloglo_wc_cart_dropdown( false );

			return $fragments;
		}

		/**
		 * Add start of WooCommerce content wrapper.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function content_wrapper_start() {
			?>
			<div class="bloglo-container">

				<div id="primary" class="content-area">

					<?php do_action( 'bloglo_before_content' ); ?>

					<main id="content" class="site-content" role="main">
			<?php
		}

		/**
		 * Add end of WooCommerce content wrapper.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function content_wrapper_end() {
			?>
					</main><!-- #content .site-content -->

					<?php do_action( 'bloglo_after_content' ); ?>

				</div><!-- #primary .content-area -->

				<?php do_action( 'bloglo_woocommerce_sidebar' ); ?>

			</div><!-- END .bloglo-container -->
			<?php
		}

		/**
		 * Add start of Single Product content wrapper.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function single_product_wrapper_start() {
			echo '<div class="bloglo-wc-product-wrap">';
		}

		/**
		 * Add end of Single Product content wrapper.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function single_product_wrapper_end() {
			echo '</div><!-- END .bloglo-wc-product-wrap -->';
		}

		/**
		 * Single product actions.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function product_actions() {

			if ( ! is_product() ) {
				return;
			}

			// Remove Bloglo page title on WooCommerce product pages.
			add_filter( 'bloglo_page_header_has_title', '__return_false' );

			// Disable Comments toggle.
			add_filter( 'bloglo_display_comments_toggle', '__return_false' );
		}

		/**
		 * Add support for Customizer cart widget.
		 *
		 * @since 1.0.0
		 * @param array $widgets Array of available customizer widgets.
		 * @return array
		 */
		public function add_customizer_cart_widget( $widgets ) {

			$widgets['cart'] = 'Bloglo_Customizer_Widget_Cart';

			return $widgets;
		}

		/**
		 * Add cart widget to Header widgets.
		 *
		 * @since 1.0.0
		 * @param array $widgets Array of available main header widgets.
		 * @return array
		 */
		public function add_cart_to_main_header_widgets( $widgets ) {

			$widgets['cart'] = array(
				'max_uses' => 1,
			);

			return $widgets;
		}

		/**
		 * Overwrite the items for the breadcrumb trail.
		 *
		 * @since 1.0.0
		 * @param array $items Array of items belonging to the current breadcrumb trail.
		 * @param array $args  Arguments used to build the breadcrumb trail.
		 * @return array
		 */
		public function breadcrumbs( $items, $args ) {

			if ( function_exists( 'is_shop' ) && is_shop() ) {
				$items[ count( $items ) - 1 ] = get_the_title( wc_get_page_id( 'shop' ) );
			}

			return $items;
		}

		/**
		 * Overwrite the items for the breadcrumb trail.
		 *
		 * @since 1.0.0
		 * @param string $label           Current archive label.
		 * @param string $post_type_name  Post Type name.
		 * @return array
		 */
		public function breadcrumb_post_type_archive_title( $label, $post_type_name ) {

			if ( 'product' === $post_type_name ) {
				return get_the_title( wc_get_page_id( 'shop' ) );
			}

			return $label;
		}

		/**
		 * Register WooCommerce sidebars.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function register_wc_sidebars() {
			// Register WooCommerce Sidebar.
			register_sidebar(
				apply_filters(
					'bloglo_woocommerce_sidebar_name',
					array(
						'name'          => esc_html__( 'WooCommerce Sidebar', 'bloglo' ),
						'id'            => 'bloglo-wc-sidebar',
						'description'   => __( 'Widgets in this area are displayed on WooCommerce pages except Product pages.', 'bloglo' ),
						'before_widget' => '<div id="%1$s" class="bloglo-sidebar-widget bloglo-widget widget %2$s">',
						'after_widget'  => '</div>',
						'before_title'  => '<h4 class="widget-title">',
						'after_title'   => '</h4>',
					)
				)
			);

			// Register Product Sidebar.
			register_sidebar(
				apply_filters(
					'bloglo_woocommerce_product_sidebar_name',
					array(
						'name'          => esc_html__( 'Product Sidebar', 'bloglo' ),
						'id'            => 'bloglo-wc-product-sidebar',
						'description'   => __( 'Widgets in this area are displayed on WooCommerce Product pages.', 'bloglo' ),
						'before_widget' => '<div id="%1$s" class="bloglo-sidebar-widget bloglo-widget widget %2$s">',
						'after_widget'  => '</div>',
						'before_title'  => '<h4 class="widget-title">',
						'after_title'   => '</h4>',
					)
				)
			);
		}

		/**
		 * Change sidebar name on WooCommerce pages.
		 *
		 * @since 1.0.0
		 * @param string $sidebar_name Sidebar name for woocmmerce pages.
		 * @return string
		 */
		public function set_sidebar( $sidebar_name ) {

			if ( is_product() ) {
				$sidebar_name = 'bloglo-wc-product-sidebar';
			} elseif ( is_woocommerce() || is_cart() || is_checkout() ) {
				$sidebar_name = 'bloglo-wc-sidebar';
			}

			return $sidebar_name;
		}

		/**
		 * Change default sidebar position on WooCommerce pages.
		 *
		 * @since 1.0.0
		 * @param string $position Sidebar position for woocmmerce pages.
		 * @return string
		 */
		public function set_default_sidebar_position( $position ) {

			if ( is_product() ) {
				$position = bloglo_option( 'wc_product_sidebar_position' );
			} elseif ( is_woocommerce() || is_cart() || is_checkout() ) {
				$position = bloglo_option( 'wc_sidebar_position' );
			}

			if ( is_product() || is_woocommerce() || is_cart() || is_checkout() ) {
				if ( 'default' === $position ) {
					return bloglo_option( 'sidebar_position' );
				} else {
					return $position;
				}
			}

			return $position;
		}

		/**
		 * Remove Bloglo page description on WooCommerce pages.
		 *
		 * @since 1.0.0
		 * @param string $description Page description.
		 * @return boolean|string
		 */
		public function shop_remove_page_description( $description ) {

			if ( is_woocommerce() ) {
				return false;
			}

			return $description;
		}

		/**
		 * Remove item from cart.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function remove_item_from_cart() {

			check_ajax_referer( 'bloglo-nonce' );

			if ( ! isset( $_POST['product_key'] ) ) {
				wp_send_json_error();
			}

			$product_key = sanitize_text_field( wp_unslash( $_POST['product_key'] ) );

			$cart         = WC()->instance()->cart;
			$cart_item_id = $cart->find_product_in_cart( $product_key );

			if ( $cart_item_id ) {
				$cart->set_quantity( $cart_item_id, 0 );
				wp_send_json_success();
			}

			wp_send_json_error();
		}

		/**
		 * Display an alternative image (from product gallery) when hovering product image on catalog pages.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function product_image_swap() {

			global $product;

			$hover_style = bloglo_option( 'shop_product_hover' );

			if ( 'image-swap' === $hover_style ) {

				$attachment_ids = $product->get_gallery_image_ids();

				if ( $attachment_ids ) {

					$image_size    = apply_filters( 'single_product_archive_thumbnail_size', 'shop_catalog' ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
					$attachment_id = reset( $attachment_ids );

					echo wp_kses_post( apply_filters( 'bloglo_woocommerce_product_image_swap', wp_get_attachment_image( $attachment_id, $image_size, false, array( 'class' => 'show-on-hover' ) ) ) );
				}
			}
		}

		/**
		 * Add start wrapper for loop product thumbnail.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function loop_product_thumb_wrap_start() {

			$class = 'bloglo-product-thumb';

			if ( 'image-swap' === bloglo_option( 'shop_product_hover' ) ) {

				global $product;
				$attachment_ids = $product->get_gallery_image_ids();

				if ( $attachment_ids ) {
					$class .= ' swap-on-hover';
				}
			}

			echo '<div class="' . esc_attr( $class ) . '">';
		}

		/**
		 * Add end wrapper for loop product thumbnail.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function loop_product_thumb_wrap_end() {
			echo '</div><!-- END .bloglo-product-thumb -->';
		}

		/**
		 * Add start wrapper for loop product details.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function loop_product_details_wrap_open() {
			echo '<div class="meta-wrap">';
		}

		/**
		 * Add end wrapper for loop product details.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function loop_product_details_wrap_end() {
			echo '</div>';
		}

		/**
		 * Additional classes for add to cart button on loop products.
		 *
		 * @since 1.0.0
		 * @param array $args Arguments for add to cart button in loop products.
		 * @return array
		 */
		public function loop_add_to_cart_args( $args ) {

			$args['class'] .= ' bloglo-btn';

			return $args;
		}

		/**
		 * Loads Customizer widgets classes.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function load_customizer_widget() {

			$path = BLOGLO_THEME_PATH . '/inc/compatibility/woocommerce/class-bloglo-customizer-widget-cart.php';

			if ( file_exists( $path ) ) {
				require $path; // phpcs:ignore
			}
		}

		/**
		 * Review order heading.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function review_order_heading() {

			echo wp_kses_post( apply_filters( 'bloglo_review_order_heading', '<h3>' . __( 'Payment', 'bloglo' ) . '</h3>' ) );
		}

		/**
		 * Display a heading on Checkout / Shipping.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function checkout_shipping_heading() {

			if ( true !== WC()->cart->needs_shipping_address() ) {
				return;
			}

			echo wp_kses_post( apply_filters( 'bloglo_checkout_shipping_heading', '<h3>' . __( 'Shipping', 'bloglo' ) . '</h3>' ) );
		}

		/**
		 * Related products column count.
		 *
		 * @since 1.0.0
		 * @param array $args Arguments for related products on single product page.
		 * @return array
		 */
		public function single_product_related_products_args( $args ) {

			$columns = intval( bloglo_option( 'wc_related_columns' ) );
			$rows    = intval( bloglo_option( 'wc_related_rows' ) );

			$args['posts_per_page'] = $columns * $rows;
			$args['columns']        = $columns;

			return $args;
		}

		/**
		 * Cross-Sell Products.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function woocommerce_cross_sell_display() {

			// Check if cross-sells are enabled.
			if ( bloglo_option( 'wc_cross_sell_products' ) ) {

				$rows = intval( bloglo_option( 'wc_cross_sell_rows' ) );

				woocommerce_cross_sell_display( 2 * $rows, 2 );
			}
		}

		/**
		 * Upsell Products.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function woocommerce_upsell_display() {

			// Check if upsells are enabled.
			if ( bloglo_option( 'wc_upsell_products' ) ) {

				$columns = intval( bloglo_option( 'wc_upsells_columns' ) );
				$rows    = intval( bloglo_option( 'wc_upsells_rows' ) );

				woocommerce_upsell_display( $columns * $rows, $columns );
			}
		}

		/**
		 * Related Products.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function woocommerce_related_products() {

			// Check if related products are enabled.
			if ( bloglo_option( 'wc_related_products' ) ) {
				woocommerce_output_related_products();
			}
		}

		/**
		 * Add arrows to product slider on single product.
		 *
		 * @since 1.0.0
		 * @param array $options Array of options for product slider.
		 * @return array
		 */
		public function single_product_slider_options( $options ) {

			if ( ! bloglo_option( 'wc_product_slider_arrows' ) ) {
				return $options;
			}

			$options['directionNav'] = true;
			$options['prevText']     = bloglo_animated_arrow( 'left', false );
			$options['nextText']     = bloglo_animated_arrow( 'right', false );

			return $options;
		}

		/**
		 * Product gallery thumbnail columns.
		 *
		 * @since 1.0.0
		 * @param integer $columns Number of product thumnail columns on single product page.
		 * @return integer
		 */
		public function product_thumbnails_columns( $columns ) {
			return 5;
		}

		/**
		 * Related products heading on single product pages.
		 *
		 * @since  1.0.0
		 * @param  string $heading Related products heading.
		 * @return string
		 */
		public function related_products_heading( $heading ) {
			return __( 'Related Products', 'bloglo' );
		}

		/**
		 * Handle redirects to setup/welcome page after install and updates.
		 *
		 * @since 1.0.0
		 *
		 * @return void
		 */
		public function admin_redirects() {

			$current_page = isset( $_GET['page'] ) ? wc_clean( wp_unslash( $_GET['page'] ) ) : false; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized, WordPress.Security.NonceVerification

			// Prevent WooCommerce automatic wizard redirect.
			if ( false !== strpos( $current_page, 'bloglo' ) ) {
				add_filter( 'woocommerce_prevent_automatic_wizard_redirect', '__return_true' );
			}
		}

		/**
		 * Generates dynamic CSS code for woocommerce.
		 *
		 * @param  string $css Dynamic CSS code generated by the theme.
		 * @return string      Modified CSS code.
		 * @since  1.0.0
		 */
		public function dynamic_css( $css ) {

			// Accent Color.
			$accent_color = bloglo_option( 'accent_color' );

			$css .= '';

			// Content text color.
			$content_text_color = bloglo_option( 'content_text_color' );

			$css .= '
				.bloglo-cart-item .bloglo-x,
				.woocommerce form.login .lost_password a,
				.woocommerce form.register .lost_password a,
				.woocommerce a.remove,
				#add_payment_method .cart-collaterals .cart_totals .woocommerce-shipping-destination, 
				.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-destination, 
				.woocommerce-checkout .cart-collaterals .cart_totals .woocommerce-shipping-destination,
				.woocommerce ul.products li.product .bloglo-loop-product__category-wrap a,
				.woocommerce ul.products li.product .bloglo-loop-product__category-wrap,
				.woocommerce .woocommerce-checkout-review-order table.shop_table thead th,
				#add_payment_method #payment div.payment_box, 
				.woocommerce-cart #payment div.payment_box, 
				.woocommerce-checkout #payment div.payment_box,
				#add_payment_method #payment ul.payment_methods .about_paypal, 
				.woocommerce-cart #payment ul.payment_methods .about_paypal, 
				.woocommerce-checkout #payment ul.payment_methods .about_paypal,
				.woocommerce table dl,
				.woocommerce table .wc-item-meta,
				.widget.woocommerce .reviewer,
				.woocommerce.widget_shopping_cart .cart_list li a.remove:before,
				.woocommerce .widget_shopping_cart .cart_list li a.remove:before,
				.woocommerce .widget_shopping_cart .cart_list li .quantity, 
				.woocommerce.widget_shopping_cart .cart_list li .quantity,
				.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link,
				.woocommerce div.product .woocommerce-tabs table.shop_attributes td,
				.woocommerce div.product .product_meta > span span:not(.bloglo-woo-meta-title), 
				.woocommerce div.product .product_meta > span a,
				.woocommerce .star-rating::before,
				.woocommerce div.product #reviews #comments ol.commentlist li .comment-text p.meta,
				.ywar_review_count,
				.woocommerce .add_to_cart_inline del,
				.woocommerce div.product p.price del, 
				.woocommerce div.product span.price del,
				.woocommerce #yith-wcwl-form table.shop_table thead,
				.woocommerce .woocommerce-cart-form table.shop_table thead,
				.woocommerce .woocommerce-checkout-review-order table.shop_table thead,
				.woocommerce div.product .woocommerce-tabs ul.tabs li a {
					color: ' . bloglo_hex2rgba( $content_text_color, 0.73 ) . ';
				}

				.woocommerce-message,
				.woocommerce-error,
				.woocommerce-info,
				.woocommerce-message,
				.woocommerce div.product .woocommerce-tabs ul.tabs li:not(.active) a:hover {
					color: ' . $content_text_color . ';
				}

				.woocommerce div.product .woocommerce-product-gallery .flex-direction-nav svg path {
					fill: ' . $content_text_color . ' !important;
				}
			';

			// Background Color - generated from text color.
			$background_color = bloglo_get_background_color();

			$css .= '
				.woocommerce div.product .woocommerce-product-gallery .flex-direction-nav .flex-prev,
				.woocommerce div.product .woocommerce-product-gallery .flex-direction-nav .flex-next,
				.woocommerce .quantity .bloglo-woo-minus,
				.woocommerce .quantity .bloglo-woo-plus {
					background-color: ' . $background_color . ';
				}
			';

			$content_text_color_offset = bloglo_light_or_dark( $background_color, bloglo_luminance( $background_color, -0.045 ), bloglo_luminance( $background_color, 0.2 ) );

			$css .= '
				.woocommerce #yith-wcwl-form table.shop_table thead th,
				.woocommerce .woocommerce-cart-form table.shop_table thead th,
				.woocommerce .woocommerce-checkout-review-order table.shop_table thead th,
				.woocommerce .cart_totals table.shop_table .order-total th,
				.woocommerce .cart_totals table.shop_table .order-total td,
				.woocommerce div.product .woocommerce-tabs .wc-tab,
				#page .woocommerce-error,
				#page .woocommerce-info,
				#page .woocommerce-message,
				.woocommerce div.product .woocommerce-tabs ul.tabs:before,
				.woocommerce div.product .woocommerce-tabs ul.tabs:after {
					background-color: ' . $content_text_color_offset . ';
				}
			';

			// Border color.
			$css .= '
				.woocommerce #yith-wcwl-form table.shop_table th:first-child,
				.woocommerce #yith-wcwl-form table.shop_table td:first-child,
				.woocommerce .woocommerce-cart-form table.shop_table th:first-child,
				.woocommerce .woocommerce-cart-form table.shop_table td:first-child,
				.woocommerce .woocommerce-checkout-review-order table.shop_table th:first-child,
				.woocommerce .woocommerce-checkout-review-order table.shop_table td:first-child,
				.woocommerce #yith-wcwl-form table.shop_table td,
				.woocommerce .woocommerce-cart-form table.shop_table td,
				.woocommerce .woocommerce-checkout-review-order table.shop_table td,
				.woocommerce #yith-wcwl-form table.shop_table tr:nth-last-child(2) td,
				.woocommerce .woocommerce-cart-form table.shop_table tr:nth-last-child(2) td,
				.woocommerce .cart_totals table.shop_table,
				.woocommerce .cart_totals table.shop_table th,
				.woocommerce .cart_totals table.shop_table td {
					border-color: ' . $content_text_color_offset . ';
				}
			';

			// Content link hover color.
			$css .= '
				#add_payment_method #payment ul.payment_methods .about_paypal:hover,
				.bloglo-woo-before-shop select.custom-select-loaded:hover ~ #bloglo-orderby, 
				.woocommerce-cart #payment ul.payment_methods .about_paypal:hover, 
				.woocommerce-checkout #payment ul.payment_methods .about_paypal:hover,
				.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link:hover,
				.woocommerce ul.products li.product .meta-wrap .woocommerce-loop-product__link:hover,
				.woocommerce ul.products li.product .bloglo-loop-product__category-wrap a:hover {
					color: ' . bloglo_option( 'content_link_hover_color' ) . ';
				}
			';

			/**
			 * Header.
			 */

			// Background.
			$header_background = bloglo_option( 'header_background' );

			if ( 'color' === $header_background['background-type'] && $header_background['background-color'] ) {
				$css .= '
					.bloglo-header-widget__cart .bloglo-cart .bloglo-cart-count { 
						border: 2px solid ' . $header_background['background-color'] . '; 
					}
				';
			}

			/**
			 * Typography.
			 */

			// Headings.
			$css .= bloglo_dynamic_styles()->get_typography_field_css( '.woocommerce div.product h1.product_title, .woocommerce #reviews #comments h2, .woocommerce .cart_totals h2, .woocommerce .cross-sells > h4, .woocommerce #reviews #respond .comment-reply-title', 'headings_font' );

			$css .= bloglo_dynamic_styles()->get_typography_field_css( '.woocommerce div.product h1.product_title', 'h2_font' );
			$css .= bloglo_dynamic_styles()->get_typography_field_css( '.woocommerce #reviews #comments h2', 'h3_font' );
			$css .= bloglo_dynamic_styles()->get_typography_field_css( '.woocommerce .cart_totals h2, .woocommerce .cross-sells > h4, .woocommerce #reviews #respond .comment-reply-title', 'h4_font' );

			return $css;
		}

		/**
		 * Return post ID.
		 *
		 * @param  int $post_id Post ID.
		 * @return int          Modified post ID.
		 */
		public function get_the_id( $post_id ) {

			if ( is_shop() ) {
				$post_id = wc_get_page_id( 'shop' );
			}

			return $post_id;
		}
	}

endif;

if ( ! function_exists( 'bloglo_woocommerce' ) ) :
	/**
	 * The function which returns the one Bloglo_Woocommerce instance.
	 *
	 * @since 1.0.0
	 * @return object
	 */
	function bloglo_woocommerce() {
		return Bloglo_Woocommerce::instance();
	}
endif;

bloglo_woocommerce();
class-bloglo-beaver-themer.php000064400000012104152425750770012376 0ustar00<?php
/**
 * Bloglo compatibility class for Beaver Themer.
 *
 * @package Bloglo
 * @author Peregrine Themes
 * @since   1.0.0
 */

/**
 * Do not allow direct script access.
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Return if Beaver Themer not active.
if ( ! class_exists( 'FLThemeBuilderLoader' ) || ! class_exists( 'FLThemeBuilderLayoutData' ) ) {
	return;
}

// PHP 5.3+ is required.
if ( ! version_compare( PHP_VERSION, '5.3', '>=' ) ) {
	return;
}

if ( ! class_exists( 'Bloglo_Beaver_Themer' ) ) :

	/**
	 * Beaver Themer compatibility.
	 */
	class Bloglo_Beaver_Themer {

		/**
		 * Singleton instance of the class.
		 *
		 * @var object
		 */
		private static $instance;

		/**
		 * Instance.
		 *
		 * @since 1.0.0
		 * @return Bloglo_Beaver_Themer
		 */
		public static function instance() {
			if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Bloglo_Beaver_Themer ) ) {
				self::$instance = new Bloglo_Beaver_Themer();
			}
			return self::$instance;
		}

		/**
		 * Primary class constructor.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function __construct() {
			add_action( 'after_setup_theme', array( $this, 'add_theme_support' ) );
			add_action( 'wp', array( $this, 'header_footer_render' ) );
			add_action( 'wp', array( $this, 'page_header_render' ) );
			add_filter( 'fl_theme_builder_part_hooks', array( $this, 'register_part_hooks' ) );
		}

		/**
		 * Add theme support
		 *
		 * @since 1.0.0
		 */
		public function add_theme_support() {
			add_theme_support( 'fl-theme-builder-headers' );
			add_theme_support( 'fl-theme-builder-footers' );
			add_theme_support( 'fl-theme-builder-parts' );
		}

		/**
		 * Update header/footer with Beaver template
		 *
		 * @since 1.0.0
		 */
		public function header_footer_render() {

			// Get the header ID.
			$header_ids = FLThemeBuilderLayoutData::get_current_page_header_ids();

			// If we have a header, remove the theme header and hook in Theme Builder's.
			if ( ! empty( $header_ids ) ) {

				// Remove Top Bar.
				remove_action( 'bloglo_header', 'bloglo_topbar_output', 10 );

				// Remove Main Header.
				remove_action( 'bloglo_header', 'bloglo_header_output', 20 );

				// Replacement header.
				add_action( 'bloglo_header', 'FLThemeBuilderLayoutRenderer::render_header' );
			}

			// Get the footer ID.
			$footer_ids = FLThemeBuilderLayoutData::get_current_page_footer_ids();

			// If we have a footer, remove the theme footer and hook in Theme Builder's.
			if ( ! empty( $footer_ids ) ) {

				// Remove Main Footer.
				remove_action( 'bloglo_footer', 'bloglo_footer_output', 20 );

				// Remove Copyright Bar.
				remove_action( 'bloglo_footer', 'bloglo_copyright_bar_output', 30 );

				// Replacement footer.
				add_action( 'bloglo_footer', 'FLThemeBuilderLayoutRenderer::render_footer' );
			}
		}

		/**
		 * Remove page header if using Beaver Themer.
		 *
		 * @since 1.0.0
		 */
		public function page_header_render() {

			// Get the page ID.
			$page_ids = FLThemeBuilderLayoutData::get_current_page_content_ids();

			// If we have a content layout, remove the theme page header.
			if ( ! empty( $page_ids ) ) {
				remove_action( 'bloglo_page_header', 'bloglo_page_header_template' );
			}
		}

		/**
		 * Register hooks
		 *
		 * @since 1.0.0
		 */
		public function register_part_hooks() {
			return array(
				array(
					'label' => 'Header',
					'hooks' => array(
						'bloglo_before_masthead' => esc_html__( 'Before Header', 'bloglo' ),
						'bloglo_after_masthead'  => esc_html__( 'After Header', 'bloglo' ),
					),
				),
				array(
					'label' => 'Main',
					'hooks' => array(
						'bloglo_before_main' => esc_html__( 'Before Main', 'bloglo' ),
						'bloglo_after_main'  => esc_html__( 'After Main', 'bloglo' ),
					),
				),
				array(
					'label' => 'Content',
					'hooks' => array(
						'bloglo_before_page_content' => esc_html__( 'Before Content', 'bloglo' ),
						'bloglo_after_page_content'  => esc_html__( 'After Content', 'bloglo' ),
					),
				),
				array(
					'label' => 'Footer',
					'hooks' => array(
						'bloglo_before_colophon' => esc_html__( 'Before Footer', 'bloglo' ),
						'bloglo_after_colophon'  => esc_html__( 'After Footer', 'bloglo' ),
					),
				),
				array(
					'label' => 'Sidebar',
					'hooks' => array(
						'bloglo_before_sidebar' => esc_html__( 'Before Sidebar', 'bloglo' ),
						'bloglo_after_sidebar'  => esc_html__( 'After Sidebar', 'bloglo' ),
					),
				),
				array(
					'label' => 'Singular',
					'hooks' => array(
						'bloglo_before_singular'       => __( 'Before Singular', 'bloglo' ),
						'bloglo_after_singular'        => __( 'After Singular', 'bloglo' ),
						'bloglo_before_comments'       => __( 'Before Comments', 'bloglo' ),
						'bloglo_after_comments'        => __( 'After Comments', 'bloglo' ),
						'bloglo_before_single_content' => __( 'Before Single Content', 'bloglo' ),
						'bloglo_after_single_content'  => __( 'After Single Content', 'bloglo' ),
					),
				),
			);
		}

	}

endif;

/**
 * Returns the one Bloglo_Beaver_Themer instance.
 */
function bloglo_beaver_themer() {
	return Bloglo_Beaver_Themer::instance();
}

bloglo_beaver_themer();
class-bloglo-jetpack.php000064400000005312152425750770011274 0ustar00<?php
/**
 * Jetpack compatibility class.
 *
 * @package Bloglo
 * @author Peregrine Themes
 * @since   1.0.0
 */

/**
 * Do not allow direct script access.
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Check if Jetpack is installed & activated.
if ( ! class_exists( 'Jetpack' ) ) {
	return;
}

if ( ! class_exists( 'Bloglo_Jetpack' ) ) :
	/**
	 * Jetpack compatibility class.
	 */
	class Bloglo_Jetpack {

		/**
		 * Primary class constructor.
		 *
		 * @since 1.0.0
		 */
		public function __construct() {

			add_action( 'after_setup_theme', array( $this, 'jetpack_supports' ) );

			add_filter( 'infinite_scroll_credit', array( $this, 'tweak_credits_link' ) );
			add_filter( 'infinite_scroll_js_settings', array( $this, 'filter_infinite_scroll_js_settings' ) );
		}

		/**
		 * Add Jetpack theme supports.
		 *
		 * @since 1.0.0
		 */
		public function jetpack_supports() {

			/**
			 * Add theme support for Infinite Scroll.
			 */
			add_theme_support(
				'infinite-scroll',
				array(
					'container'      => 'content',
					'render'         => array( $this, 'infinite_scroll_render' ),
					'footer'         => 'page',
					'posts_per_page' => get_option( 'posts_per_page' ), // phpcs:ignore WordPress.WP.PostsPerPage.posts_per_page_posts_per_page
					'type'           => 'click',
				)
			);

			/**
			 * Add theme support for Responsive Videos.
			 */
			add_theme_support( 'jetpack-responsive-videos' );

			/**
			 * Add theme support for geo-location.
			 */
			add_theme_support( 'jetpack-geo-location' );
		}

		/**
		 * Custom render function for Infinite Scroll.
		 *
		 * @since 1.0.0
		 */
		public function infinite_scroll_render() {

			// WooCommerce products.
			if ( function_exists( 'is_shop' ) && is_shop() || function_exists( 'is_product_taxonomy' ) && is_product_taxonomy() ) {

				// Shop & category pages handled by default.
				return;

			} else {

				while ( have_posts() ) :
					the_post();
					get_template_part( 'template-parts/content/content', bloglo_get_article_feed_layout() );
				endwhile;
			}
		}

		/**
		 * Tweak footer credits bar link.
		 *
		 * @since 1.0.0
		 */
		public function tweak_credits_link() {
			return '<a href="https://wordpress.org/" rel="noopener noreferrer" target="_blank">' . esc_html__( 'Proudly powered by WordPress', 'bloglo' ) . '</a> | <a href="https://peregrine-themes.com/" rel="noopener noreferrer" target="_blank">Peregrine Themes</a>';
		}

		/**
		 * Filter Jetpack infinite scroll JS settings.
		 *
		 * @since 1.0.0
		 * @param array $settings Infinite Scroll JS settings.
		 */
		public function filter_infinite_scroll_js_settings( $settings ) {

			$settings['text'] = esc_html__( 'Load More', 'bloglo' );

			return $settings;
		}

	}
endif;

new Bloglo_Jetpack();
socialsnap/socialsnap-functions.php000064400000001466152425750770013600 0ustar00<?php
/**
 * Bloglo Social Snap compatibility functions.
 *
 * @package     Bloglo
 * @author      Peregrine Themes
 * @since       1.0.0
 */

if ( ! function_exists( 'bloglo_entry_meta_shares' ) ) :
	/**
	 * Add share count information to entry meta.
	 *
	 * @since 1.0.0
	 */
	function bloglo_entry_meta_shares() {

		$share_count = socialsnap_get_total_share_count();

		// Icon.
		$icon = bloglo()->icons->get_meta_icon( 'share', bloglo()->icons->get_svg( 'share-2', array( 'aria-hidden' => 'true' ) ) );

		$output = sprintf(
			'<span class="share-count">%3$s%1$s %2$s</span>',
			socialsnap_format_number( $share_count ),
			esc_html( _n( 'Share', 'Shares', $share_count, 'bloglo' ) ),
			$icon
		);

		echo wp_kses( apply_filters( 'bloglo_entry_share_count', $output ), bloglo_get_allowed_html_tags() );
	}
endif;
socialsnap/class-bloglo-socialsnap.php000064400000005201152425750770014140 0ustar00<?php
/**
 * Social Snap compatibility class.
 *
 * @package Bloglo
 * @author Peregrine Themes
 * @since   1.0.0
 */

/**
 * Do not allow direct script access.
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'Bloglo_SocialSnap' ) ) :
	/**
	 * Social Snap compatibility class.
	 */
	class Bloglo_SocialSnap {

		/**
		 * Primary class constructor.
		 *
		 * @since 1.0.0
		 */
		public function __construct() {

			add_action( 'activate_socialsnap/socialsnap.php', array( $this, 'disable_redirect_on_activation' ), 20 );

			// If Social Snap is not activated then return.
			if ( ! class_exists( 'SocialSnap' ) ) {
				return;
			}

			// Filter Customizer options.
			add_filter( 'bloglo_customizer_options', array( $this, 'register_options' ), 20 );

			// Set default Customizer values.
			add_filter( 'bloglo_default_option_values', array( $this, 'default_customizer_values' ), 20 );

			// Remove Social Snap Lite from recommended plugins.
			add_filter( 'bloglo_recommended_plugins', array( $this, 'update_recommended_plugins' ) );

			// Include helper functions.
			require BLOGLO_THEME_PATH . '/inc/compatibility/socialsnap/socialsnap-functions.php'; // phpcs:ignore
		}

		/**
		 * Disable admin page redirect on plugin activation.
		 *
		 * @since 1.0.0
		 */
		public static function disable_redirect_on_activation() {
			delete_site_transient( 'socialsnap_activation_redirect' );
		}

		/**
		 * Filter options to include Social Snap.
		 *
		 * @since 1.0.0
		 * @param array $options Array of customizer options.
		 */
		public function register_options( $options ) {

			$options['setting']['bloglo_single_post_meta_elements']['control']['choices']['shares'] = esc_html__( 'Shares', 'bloglo' );

			$options['setting']['bloglo_blog_entry_meta_elements']['control']['choices']['shares'] = esc_html__( 'Shares', 'bloglo' );

			return $options;
		}

		/**
		 * Add defaults for Social Snap options.
		 *
		 * @param  array $defaults Array of default values.
		 * @return array           Array of default values.
		 */
		public function default_customizer_values( $defaults ) {

			$defaults['bloglo_single_post_meta_elements']['shares'] = false;
			$defaults['bloglo_blog_entry_meta_elements']['shares']  = false;

			return $defaults;
		}

		/**
		 * Removes Social Snap lite from recommended plugins if premium version of Social Snap is activated.
		 *
		 * @param  array $plugins Plugins array.
		 * @return array
		 */
		public function update_recommended_plugins( $plugins ) {

			// Check if pro version is installed.
			if ( socialsnap()->pro ) {
				unset( $plugins['socialsnap'] );
			}

			return $plugins;
		}
	}
endif;
new Bloglo_SocialSnap();
class-bloglo-hfe.php000064400000004165152425750770010422 0ustar00<?php
/**
 * Bloglo compatibility class for Header Footer Elementor plugin.
 *
 * @package Bloglo
 * @author Peregrine Themes
 * @since   1.0.0
 */

/**
 * Do not allow direct script access.
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Return if Elementor not active.
if ( ! class_exists( '\Elementor\Plugin' ) ) {
	return;
}

// Return if HFE not active.
if ( ! class_exists( 'Header_Footer_Elementor' ) ) {
	return false;
}

if ( ! class_exists( 'Bloglo_HFE' ) ) :

	/**
	 * HFE compatibility.
	 */
	class Bloglo_HFE {

		/**
		 * Singleton instance of the class.
		 *
		 * @var object
		 */
		private static $instance;

		/**
		 * Instance.
		 *
		 * @since 1.0.0
		 * @return Bloglo_HFE
		 */
		public static function instance() {
			if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Bloglo_HFE ) ) {
				self::$instance = new Bloglo_HFE();
			}
			return self::$instance;
		}

		/**
		 * Primary class constructor.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function __construct() {
			add_action( 'after_setup_theme', array( $this, 'add_theme_support' ) );
			add_action( 'bloglo_header', array( $this, 'do_header' ), 0 );
			add_action( 'bloglo_footer', array( $this, 'do_footer' ), 0 );
		}

		/**
		 * Add theme support
		 *
		 * @since 1.0.0
		 */
		public function add_theme_support() {
			add_theme_support( 'header-footer-elementor' );
		}

		/**
		 * Override Header
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function do_header() {
			if ( ! hfe_header_enabled() ) {
				return;
			}

			hfe_render_header();

			remove_action( 'bloglo_header', 'bloglo_topbar_output', 10 );
			remove_action( 'bloglo_header', 'bloglo_header_output', 20 );
		}

		/**
		 * Override Footer
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function do_footer() {
			if ( ! hfe_footer_enabled() ) {
				return;
			}

			hfe_render_footer();

			remove_action( 'bloglo_footer', 'bloglo_footer_output', 20 );
			remove_action( 'bloglo_footer', 'bloglo_copyright_bar_output', 30 );
		}

	}

endif;

/**
 * Returns the one Bloglo_HFE instance.
 */
function bloglo_hfe() {
	return Bloglo_HFE::instance();
}

bloglo_hfe();
back-compat.php000064400000005643152425750770007464 0ustar00<?php
/**
 * Theme back compatibility functionality
 *
 * Prevents Bloglo from running on WordPress versions prior to 4.7,
 * since this theme is not meant to be backward compatible beyond that and
 * relies on many newer functions and markup changes introduced in 4.7.
 *
 * @package Bloglo
 * @author Peregrine Themes
 * @since   1.0.0
 */

/**
 * Do not allow direct script access.
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Prevent switching to Highend X on old versions of WordPress.
 *
 * Switches to the default theme.
 *
 * @since 1.0.0
 */
function bloglo_switch_theme() {
	switch_theme( WP_DEFAULT_THEME );
	unset( $_GET['activated'] ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended
	add_action( 'admin_notices', 'bloglo_upgrade_notice' );
}
add_action( 'after_switch_theme', 'bloglo_switch_theme' );

/**
 * Adds a message for unsuccessful theme switch.
 *
 * Prints an update nag after an unsuccessful attempt to switch to
 * Bloglo on WordPress versions prior to 4.7.
 *
 * @since 1.0.0
 * @global string $wp_version WordPress version.
 */
function bloglo_upgrade_notice() {
	/* translators: %s WordPress version */
	$message = sprintf( esc_html__( 'Bloglo theme requires at least WordPress version 4.7. You are running version %s. Please upgrade and try again.', 'bloglo' ), $GLOBALS['wp_version'] );
	printf( '<div class="error"><p>%s</p></div>', esc_html( $message ) );
}

/**
 * Prevents the Customizer from being loaded on WordPress versions prior to 4.7.
 *
 * @since 1.0.0
 * @global string $wp_version WordPress version.
 */
function bloglo_customize_prevent() {

	/* translators: %s WordPress version */
	$message = sprintf( esc_html__( 'Bloglo theme requires at least WordPress version 4.7. You are running version %s. Please upgrade your WordPress and try again.', 'bloglo' ), $GLOBALS['wp_version'] );

	wp_die( esc_html( $message ), '', array( 'back_link' => true ) );
}
add_action( 'load-customize.php', 'bloglo_customize_prevent' );

/**
 * Prevents the Theme Preview from being loaded on WordPress versions prior to 4.7.
 *
 * @since 1.0.0
 * @global string $wp_version WordPress version.
 */
function bloglo_preview_prevent() {
	if ( isset( $_GET['preview'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
		/* translators: %s WordPress version */
		$message = sprintf( esc_html__( 'Bloglo theme requires at least WordPress version 4.7. You are running version %s. Please upgrade and try again.', 'bloglo' ), $GLOBALS['wp_version'] );
		wp_die( esc_html( $message ) );
	}
}
add_action( 'template_redirect', 'bloglo_preview_prevent' );

if ( ! function_exists( 'wp_body_open' ) ) {
	/**
	 * Backward compatibility for wp_body_open hook.
	 *
	 * @since 1.0.0
	 */
	function wp_body_open() { // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
		do_action( 'wp_body_open' ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
	}
}
class-bloglo-wpforms.php000064400000001545152425750770011354 0ustar00<?php
/**
 * WP Forms compatibility class.
 *
 * @package Bloglo
 * @author Peregrine Themes
 * @since   1.0.0
 */

/**
 * Do not allow direct script access.
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'Bloglo_WPForms' ) ) :
	/**
	 * WPForms compatibility class.
	 */
	class Bloglo_WPForms {

		/**
		 * Primary class constructor.
		 *
		 * @since 1.0.0
		 */
		public function __construct() {

			add_action( 'activate_wpforms-lite/wpforms.php', array( $this, 'disable_redirect_on_activation' ), 20 );

			// If WPForms is not activated then return.
			if ( ! class_exists( 'WPForms' ) ) {
				return;
			}
		}

		/**
		 * Disable admin page redirect on plugin activation.
		 *
		 * @since 1.0.0
		 */
		public function disable_redirect_on_activation() {
			delete_transient( 'wpforms_activation_redirect' );
		}
	}
endif;
new Bloglo_WPForms();
class-bloglo-elementor-pro.php000064400000011016152425750770012441 0ustar00<?php
/**
 * Bloglo compatibility class for Elementor Pro.
 *
 * @package Bloglo
 * @author Peregrine Themes
 * @since   1.0.0
 */

/**
 * Do not allow direct script access.
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Return if Elementor not active.
if ( ! class_exists( '\Elementor\Plugin' ) || ! class_exists( 'ElementorPro\Modules\ThemeBuilder\Module' ) ) {
	return;
}

// PHP 5.3+ is required.
if ( ! version_compare( PHP_VERSION, '5.3', '>=' ) ) {
	return;
}

if ( ! class_exists( 'Bloglo_Elementor_Pro' ) ) :

	/**
	 * Elementor compatibility.
	 */
	class Bloglo_Elementor_Pro {

		/**
		 * Singleton instance of the class.
		 *
		 * @var object
		 */
		private static $instance;

		/**
		 * Elementor location manager
		 *
		 * @var object
		 */
		public $elementor_location_manager;

		/**
		 * Instance.
		 *
		 * @since 1.0.0
		 * @return Bloglo_Elementor_Pro
		 */
		public static function instance() {
			if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Bloglo_Elementor_Pro ) ) {
				self::$instance = new Bloglo_Elementor_Pro();
			}
			return self::$instance;
		}

		/**
		 * Primary class constructor.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function __construct() {

			// Register theme locations.
			add_action( 'elementor/theme/register_locations', array( $this, 'register_locations' ) );

			// Override templates.
			add_action( 'bloglo_header', array( $this, 'do_header' ), 0 );
			add_action( 'bloglo_footer', array( $this, 'do_footer' ), 0 );
			add_action( 'bloglo_content_404', array( $this, 'do_content_none' ), 0 );
			add_action( 'bloglo_content_single', array( $this, 'do_content_single_post' ), 0 );
			add_action( 'bloglo_content_page', array( $this, 'do_content_single_page' ), 0 );
			add_action( 'bloglo_content_archive', array( $this, 'do_archive' ), 0 );
		}

		/**
		 * Register Theme Location for Elementor.
		 *
		 * @param object $manager Elementor object.
		 * @since 1.0.0
		 * @return void
		 */
		public function register_locations( $manager ) {
			$manager->register_all_core_location();

			$this->elementor_location_manager = \ElementorPro\Modules\ThemeBuilder\Module::instance()->get_locations_manager(); // phpcs:ignore PHPCompatibility.Syntax.NewDynamicAccessToStatic.Found
		}

		/**
		 * Override Header.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function do_header() {
			$did_location = $this->elementor_location_manager->do_location( 'header' );

			if ( $did_location ) {
				remove_action( 'bloglo_header', 'bloglo_topbar_output', 10 );
				remove_action( 'bloglo_header', 'bloglo_header_output', 20 );
			}
		}

		/**
		 * Override Footer.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function do_footer() {
			$did_location = $this->elementor_location_manager->do_location( 'footer' );

			if ( $did_location ) {
				remove_action( 'bloglo_footer', 'bloglo_footer_output', 20 );
				remove_action( 'bloglo_footer', 'bloglo_copyright_bar_output', 30 );
			}
		}

		/**
		 * Override Footer.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function do_content_none() {
			if ( ! is_404() ) {
				return;
			}

			$did_location = $this->elementor_location_manager->do_location( 'single' );

			if ( $did_location ) {
				remove_action( 'bloglo_content_404', 'bloglo_404_page_content' );
			}
		}

		/**
		 * Override Single Post.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function do_content_single_post() {
			$did_location = $this->elementor_location_manager->do_location( 'single' );

			if ( $did_location ) {
				remove_action( 'bloglo_content_single', 'bloglo_content_single' );
				remove_action( 'bloglo_after_singular', 'bloglo_output_comments' );
			}
		}

		/**
		 * Override Single Page.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function do_content_single_page() {
			$did_location = $this->elementor_location_manager->do_location( 'single' );

			if ( $did_location ) {
				remove_action( 'bloglo_content_page', 'bloglo_content_page' );
				remove_action( 'bloglo_after_singular', 'bloglo_output_comments' );
			}
		}

		/**
		 * Override Archive.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function do_archive() {
			$did_location = $this->elementor_location_manager->do_location( 'archive' );

			if ( $did_location ) {
				remove_action( 'bloglo_before_content', 'bloglo_archive_info' );
				remove_action( 'bloglo_content_archive', 'bloglo_content' );
			}
		}
	}

endif;

/**
 * Returns the one Bloglo_Elementor_Pro instance.
 */
function bloglo_elementor_pro() {
	return Bloglo_Elementor_Pro::instance();
}

bloglo_elementor_pro();
class-bloglo-elementor.php000064400000010666152425750770011655 0ustar00<?php
/**
 * Bloglo compatibility class for Elementor.
 *
 * @package Bloglo
 * @author Peregrine Themes
 * @since   1.0.0
 */

namespace Elementor; // phpcs:ignore

/**
 * Do not allow direct script access.
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Return if Elementor not active.
if ( ! class_exists( '\Elementor\Plugin' ) ) {
	return;
}

if ( ! class_exists( 'Bloglo_Elementor' ) ) :

	/**
	 * Elementor compatibility.
	 */
	class Bloglo_Elementor {

		/**
		 * Singleton instance of the class.
		 *
		 * @var object
		 */
		private static $instance;

		/**
		 * Instance.
		 *
		 * @since 1.0.0
		 * @return Bloglo_Elementor
		 */
		public static function instance() {
			if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Bloglo_Elementor ) ) {
				self::$instance = new Bloglo_Elementor();
			}
			return self::$instance;
		}

		/**
		 * Primary class constructor.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function __construct() {

			// Enqueue Elementor editor styles.
			add_action( 'elementor/preview/enqueue_styles', array( $this, 'enqueue_editor_style' ) );

			// Setup postdata for Elementor pages.
			add_action( 'wp', array( $this, 'setup_postdata' ), 1 );
			add_action( 'elementor/preview/init', array( $this, 'setup_postdata' ), 5 );

			// Enqueue additional Elementor styles.
			add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_additional' ) );
		}

		/**
		 * Editor stylesheet.
		 *
		 * @since 1.0.0
		 */
		public function enqueue_editor_style() {

			// Script debug.
			$bloglo_dir    = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? 'dev/' : '';
			$bloglo_suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';

			wp_enqueue_style(
				'bloglo-elementor-editor',
				BLOGLO_THEME_URI . '/assets/css/compatibility/elementor-editor-style' . $bloglo_suffix . '.css',
				false,
				BLOGLO_THEME_VERSION,
				'all'
			);
		}

		/**
		 * Setup default postdata for Elementor pages.
		 *
		 * @since 1.0.0
		 *
		 * @return void
		 */
		public function setup_postdata() {

			// Page builder compatibility disabled.
			if ( ! bloglo_enable_page_builder_compatibility() ) {
				return;
			}

			// Skip posts.
			if ( 'post' === get_post_type() ) {
				return;
			}

			// Don't modify postdata if we are not on Elementor's edit page.
			if ( ! $this->is_elementor_editor() ) {
				return;
			}

			global $post;

			$id = bloglo_get_the_id();

			$setup = get_post_meta( $id, '_bloglo_page_builder_setup', true );

			if ( isset( $post ) && empty( $setup ) && ( is_admin() || is_singular() ) && empty( $post->post_content ) && $this->is_built_with_elementor( $id ) ) {

				update_post_meta( $id, '_bloglo_page_builder_setup', true );
				update_post_meta( $id, 'bloglo_disable_page_title', true );
				update_post_meta( $id, 'bloglo_disable_breadcrumbs', true );
				update_post_meta( $id, 'bloglo_disable_thumbnail', true );
				update_post_meta( $id, 'bloglo_sidebar_position', 'no-sidebar' );

				update_post_meta( $id, '_wp_page_template', 'page-templates/template-bloglo-fullwidth.php' );
			}

		}

		/**
		 * Additional Elementor styles.
		 *
		 * @since 1.0.0
		 */
		public function enqueue_additional() {

			// Script debug.
			$bloglo_dir    = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? 'dev/' : '';
			$bloglo_suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';

			// Enqueue theme stylesheet.
			wp_enqueue_style(
				'bloglo-elementor',
				BLOGLO_THEME_URI . '/assets/css/compatibility/elementor' . $bloglo_suffix . '.css',
				false,
				BLOGLO_THEME_VERSION,
				'all'
			);
		}

		/**
		 * Check if page is built with elementor.
		 *
		 * @param int $id Post/Page Id.
		 * @since 1.0.0
		 *
		 * @return boolean
		 */
		public function is_built_with_elementor( $id ) {
			if ( version_compare( ELEMENTOR_VERSION, '1.5.0', '<' ) ) {
				return ( 'builder' === Plugin::$instance->db->get_edit_mode( $id ) );
			} else {
				return Plugin::$instance->db->is_built_with_elementor( $id );
			}
		}

		/**
		 * Check if Elementor Editor is loaded.
		 *
		 * @since 1.0.0
		 *
		 * @return boolean Elementor editor is loaded.
		 */
		private function is_elementor_editor() {
			return ( isset( $_REQUEST['action'] ) && 'elementor' === $_REQUEST['action'] ) || isset( $_REQUEST['elementor-preview'] ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended
		}
	}

endif;

/**
 * Returns the one Bloglo_Elementor instance.
 */
function bloglo_elementor() {
	return Bloglo_Elementor::instance();
}

bloglo_elementor();
woocommerce.css000064400000317243152425774300007620 0ustar00/* ==========================================================================
*  Bloglo WooCommerce styles.
*  ========================================================================== */
.woocommerce #yith-wcwl-form table.shop_table thead th,
.woocommerce .woocommerce-cart-form table.shop_table thead th,
.woocommerce .woocommerce-checkout-review-order table.shop_table thead th,
.woocommerce table.my_account_orders thead th,
.woocommerce table.woocommerce-table--order-details thead th,
.woocommerce table.woocommerce-table--order-downloads thead th {
  text-transform: uppercase;
  letter-spacing: 0.16rem;
}

.woocommerce div.product .woocommerce-tabs:after,
.woocommerce div.product .woocommerce-tabs:before,
.woocommerce div.product form.cart .variations_button:after,
.woocommerce div.product form.cart .variations_button:before {
  content: "";
  display: table;
  clear: both;
}

.bloglo-header-widget__cart .dropdown-item {
  position: absolute;
  right: -1.5rem;
  top: 100%;
  z-index: 9;
  border-top-width: 0.2rem;
  border-top-style: solid;
}

.bloglo-header-widget__cart .dropdown-item:after {
  bottom: 100%;
  right: 1.6rem;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  margin-left: -0.7rem;
  border-color: transparent;
  border-width: 0.7rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

#page .woocommerce-error a:not(.button):not(.bloglo-btn),
#page .woocommerce-info a:not(.button):not(.bloglo-btn),
#page .woocommerce-message a:not(.button):not(.bloglo-btn),
#page .woocommerce-error .button.wc-forward,
#page .woocommerce-info .button.wc-forward,
#page .woocommerce-message .button.wc-forward,
.woocommerce form.login .lost_password a,
.woocommerce form.register .lost_password a,
.shipping-calculator-button,
.bloglo-woo-before-shop #bloglo-orderby,
#add_payment_method #payment ul.payment_methods .about_paypal,
.woocommerce-cart #payment ul.payment_methods .about_paypal,
.woocommerce-checkout #payment ul.payment_methods .about_paypal,
#main .woocommerce-MyAccount-navigation ul li a,
.woocommerce-Addresses header.title a.edit,
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  position: relative;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

#page .woocommerce-error a:not(.bloglo-btn):not(.button):before,
#page .woocommerce-info a:not(.bloglo-btn):not(.button):before,
#page .woocommerce-message a:not(.bloglo-btn):not(.button):before,
#page .woocommerce-error .button.wc-forward:before,
#page .woocommerce-info .button.wc-forward:before,
#page .woocommerce-message .button.wc-forward:before,
.woocommerce form.login .lost_password a:before,
.woocommerce form.register .lost_password a:before,
.shipping-calculator-button:before,
.bloglo-woo-before-shop #bloglo-orderby:before,
#add_payment_method #payment ul.payment_methods .about_paypal:before,
.woocommerce-cart #payment ul.payment_methods .about_paypal:before,
.woocommerce-checkout #payment ul.payment_methods .about_paypal:before,
#main .woocommerce-MyAccount-navigation ul li a:before,
.woocommerce-Addresses header.title a.edit:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  border-radius: var(--bloglo-normal-radius);
  background: currentColor;
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1) translateZ(0.1rem);
  transform: scale(0, 1) translateZ(0.1rem);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.35s
    cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1),
    -webkit-transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: scale;
}

#page .woocommerce-error a:not(.bloglo-btn):not(.button):hover:before,
#page .woocommerce-info a:not(.bloglo-btn):not(.button):hover:before,
#page .woocommerce-message a:not(.bloglo-btn):not(.button):hover:before,
#page .woocommerce-error .button.wc-forward:hover:before,
#page .woocommerce-info .button.wc-forward:hover:before,
#page .woocommerce-message .button.wc-forward:hover:before,
.woocommerce form.login .lost_password a:hover:before,
.woocommerce form.register .lost_password a:hover:before,
.shipping-calculator-button:hover:before,
.bloglo-woo-before-shop #bloglo-orderby:hover:before,
#add_payment_method #payment ul.payment_methods .about_paypal:hover:before,
.woocommerce-cart #payment ul.payment_methods .about_paypal:hover:before,
.woocommerce-checkout #payment ul.payment_methods .about_paypal:hover:before,
#main .woocommerce-MyAccount-navigation ul li a:hover:before,
.woocommerce-Addresses header.title a.edit:hover:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover:before {
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1) translateZ(0.1rem);
  transform: scale(1, 1) translateZ(0.1rem);
}

.woocommerce .show-on-hover,
.woocommerce ul.products li.product.product-category > a:after,
.woocommerce .widget_shopping_cart .cart_list li a.remove:after,
.woocommerce.widget_shopping_cart .cart_list li a.remove:after,
.woocommerce .widget_shopping_cart .cart_list li a.remove:before,
.woocommerce.widget_shopping_cart .cart_list li a.remove:before,
.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color li a:before,
.woocommerce
  #secondary
  .widget_layered_nav
  ul.yith-wcan-color
  li.chosen
  a:after,
.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__trigger:before,
.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__trigger:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bloglo-empty-cart,
.bloglo-cart-item-title,
.woocommerce form.checkout_coupon p,
.woocommerce .show-on-hover,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .woocommerce-loop-category__title h3,
#ship-to-different-address,
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment,
#add_payment_method #payment div.form-row,
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row,
#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods,
#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box,
.woocommerce-checkout-review-order h3,
#main .woocommerce-MyAccount-navigation ul,
#main .woocommerce-MyAccount-navigation ul li,
.woocommerce-Addresses header.title h3,
.woocommerce .widget_layered_nav_filters ul li,
.woocommerce .widget_shopping_cart p,
.woocommerce.widget_shopping_cart p,
.yith-wcwl-share,
.yith-wcwl-share ul,
.woocommerce div.product .woocommerce-product-rating .star-rating,
.woocommerce div.product .woocommerce-tabs ul.tabs,
.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce div.product .woocommerce-tabs table.shop_attributes,
.woocommerce div.product .woocommerce-tabs table.shop_attributes td p,
.woocommerce div.product .woocommerce-pagination ul li a,
.woocommerce div.product .woocommerce-pagination ul li span {
  margin: 0;
  padding: 0;
}

.woocommerce #respond input#submit:after,
.woocommerce a.button:after,
.woocommerce button.button:after,
.woocommerce input.button:after,
.bloglo-header-widget__cart .wc-cart-widget-header,
.bloglo-cart-item,
.bloglo-cart-item-meta,
.bloglo-cart-buttons,
.woocommerce form.checkout_coupon,
.woocommerce .quantity .bloglo-woo-minus,
.woocommerce .quantity .bloglo-woo-plus,
.bloglo-woo-before-shop,
#ship-to-different-address,
#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice),
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice),
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice),
#add_payment_method
  #payment
  ul.payment_methods
  li.payment_method_paypal:not(.woocommerce-notice),
.woocommerce-cart
  #payment
  ul.payment_methods
  li.payment_method_paypal:not(.woocommerce-notice),
.woocommerce-checkout
  #payment
  ul.payment_methods
  li.payment_method_paypal:not(.woocommerce-notice),
#main .woocommerce-MyAccount-navigation ul li,
.woocommerce-Addresses header.title,
.widget.woocommerce .wc-layered-nav-rating a,
.woocommerce .widget_price_filter .price_slider_amount,
.woocommerce
  div.product
  .woocommerce-product-gallery
  .flex-direction-nav
  .flex-prev,
.woocommerce
  div.product
  .woocommerce-product-gallery
  .flex-direction-nav
  .flex-next,
.woocommerce div.product .woocommerce-product-rating,
.woocommerce div.product div.images .flex-control-thumbs {
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#main .wc-block-grid__products,
#main .woocommerce-MyAccount-navigation ul li,
.woocommerce div.product .woocommerce-product-gallery .flex-direction-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.widget.woocommerce a {
  text-decoration: none;
}

.bloglo-cart-item,
.bloglo-cart-item .bloglo-remove-cart-item,
.woocommerce .star-rating span:before,
.woocommerce ul.products li.product.product-category > a:after,
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-category__title span,
.woocommerce ul.products li.product.outofstock a img,
.woocommerce ul.products li.product a.bloglo-btn,
.woocommerce ul.products li.product a.added_to_cart,
.widget.woocommerce .product-categories li .count,
.widget.woocommerce .wc-layered-nav-term .count,
.widget.woocommerce .wc-layered-nav-rating em,
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle:after,
.woocommerce .widget_shopping_cart .cart_list li a.remove:after,
.woocommerce.widget_shopping_cart .cart_list li a.remove:after,
.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color li a,
.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color li a:before,
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
.woocommerce div.product .woocommerce-pagination ul li a,
.woocommerce div.product .woocommerce-pagination ul li span {
  -webkit-transition: var(--bloglo-transition-primary);
  transition: var(--bloglo-transition-primary);
}

.woocommerce .cart_totals table.shop_table {
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.woocommerce
  #secondary
  .widget_layered_nav
  ul.yith-wcan-color
  li.chosen
  a:after {
  display: inline-block;
  fill: currentColor;
  width: auto;
}

#page .woocommerce-error:before,
#page .woocommerce-info:before,
#page .woocommerce-message:before,
.woocommerce ul.products li.product .added_to_cart:before,
#main .woocommerce-MyAccount-navigation ul li:before,
.widget.woocommerce
  .woocommerce-widget-layered-nav-list
  .woocommerce-widget-layered-nav-list__item
  a:after,
.widget.woocommerce .wc-layered-nav-rating a:after,
.woocommerce .widget_layered_nav_filters ul a:before,
.woocommerce .widget_shopping_cart .cart_list li a.remove:before,
.woocommerce.widget_shopping_cart .cart_list li a.remove:before,
.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__trigger:after {
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: currentColor;
  width: 1.6rem;
  height: 1.6rem;
}

/*****************************************/
/* Responsive styles.
/*****************************************/
/* 
  ##Device = Most of the smartphones (portrait)
  ##Screen = 480px and under.
*/
/* 
  ##Device = Most of the tablets (portrait)
  ##Screen = Between 481px and 768px.
*/
/* 
  ##Device = Most of the tablets and smartphones
  ##Screen = 768px and under.
*/
/* 
  ##Device = Desktops and landscape tablets
  ##Screen = 769px and upper.
*/
/* 
  ##Device = Large desktops and upper (incl. iPad Pro in landscape mode)
  ##Screen = 1281px and upper.
*/
/*****************************************/
/* WooCommerce styles.
/*****************************************/
.woocommerce #respond input#submit:after,
.woocommerce a.button:after,
.woocommerce button.button:after,
.woocommerce input.button:after {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  right: 0 !important;
  top: 50% !important;
  padding: 0 2.4rem 0 0;
  position: absolute;
  opacity: 0;
  margin-top: -0.8rem;
  width: 1.6rem;
  height: 1.6rem;
}

.woocommerce #respond input#submit.loading:after,
.woocommerce #respond input#submit.added:after,
.woocommerce a.button.loading:after,
.woocommerce a.button.added:after,
.woocommerce button.button.loading:after,
.woocommerce button.button.added:after,
.woocommerce input.button.loading:after,
.woocommerce input.button.added:after {
  opacity: 1;
}

.woocommerce #respond input#submit.loading:before,
.woocommerce #respond input#submit.loading:after,
.woocommerce a.button.loading:before,
.woocommerce a.button.loading:after,
.woocommerce button.button.loading:before,
.woocommerce button.button.loading:after,
.woocommerce input.button.loading:before,
.woocommerce input.button.loading:after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  text-indent: -99999.9rem;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-animation: si_bounce 1.6s infinite ease-in-out;
  animation: si_bounce 1.6s infinite ease-in-out;
  margin-right: 1em !important;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 100%;
  margin-top: -0.8rem;
}

.woocommerce #respond input#submit.loading:after,
.woocommerce a.button.loading:after,
.woocommerce button.button.loading:after,
.woocommerce input.button.loading:after {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.woocommerce p.cart-empty {
  margin-top: 0;
}

.woocommerce .blockOverlay {
  background-color: #fff !important;
  opacity: 0.75 !important;
}

.woocommerce.add_to_cart_inline .add_to_cart_button {
  min-width: 17rem;
  margin-right: 1.5rem !important;
}

.woocommerce.add_to_cart_inline .added_to_cart {
  text-transform: capitalize;
}

.woocommerce.add_to_cart_inline ins {
  text-decoration: none;
  margin-right: 1.5rem;
}

.bloglo-header-widget__cart .dropdown-item {
  font-size: 1.3rem;
  background-color: #fff;
  width: 34rem;
  color: #232323;
}

.bloglo-header-widget__cart .wc-cart-widget-header {
  padding: 1.3rem 2rem 1.4rem 2rem;
  border-bottom: 0.1rem solid rgba(190, 190, 190, 0.3);
}

.bloglo-header-widget__cart .wc-cart-widget-header > span:first-child {
  margin-right: auto;
}

.bloglo-header-widget__cart .wc-cart-widget-header > span.bloglo-cart-subtotal {
  margin-left: auto;
  font-weight: 500;
}

.bloglo-header-widget__cart
  .wc-cart-widget-header
  > span.bloglo-cart-subtotal
  span {
  font-weight: 600;
}

.bloglo-header-widget__cart .woocommerce-placeholder {
  border: none;
}

.bloglo-tsp-header .bloglo-header-widget__cart .bloglo-cart-count {
  border: none;
}

.bloglo-tsp-header .bloglo-header-widgets p.bloglo-cart-item-title a,
.bloglo-tsp-header
  .bloglo-header-widgets
  .bloglo-cart-item
  a.bloglo-remove-cart-item {
  color: inherit;
}

.animate-pop {
  -webkit-animation: 0.5s ease-in-out 0.1s normal both 1 si_bounce_in;
  animation: 0.5s ease-in-out 0.1s normal both 1 si_bounce_in;
}

.wc-cart-widget-content {
  padding: 0.6rem 0;
  max-height: 40rem;
  overflow-y: auto;
}

.bloglo-empty-cart {
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.5;
  padding: 2.5rem;
}

.bloglo-empty-cart p {
  margin-top: 0.88rem;
  margin-bottom: 0;
}

.bloglo-cart-item {
  overflow: hidden;
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  padding-top: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 4rem;
  padding-left: 2rem;
}

.bloglo-cart-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.bloglo-cart-item:hover .bloglo-remove-cart-item {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.bloglo-cart-item.removing .bloglo-cart-image,
.bloglo-cart-item.removing .bloglo-cart-item-details {
  opacity: 0.3;
}

.bloglo-cart-item .bloglo-remove-cart-item {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  -webkit-transform: translateX(3rem);
  -ms-transform: translateX(3rem);
  transform: translateX(3rem);
  opacity: 0;
}

.bloglo-cart-item .bloglo-remove-cart-item:hover .bloglo-icon {
  color: inherit;
}

.bloglo-cart-item .bloglo-remove-cart-item .bloglo-icon {
  height: 1.4rem !important;
}

.bloglo-cart-image {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
}

.bloglo-cart-image img {
  width: 6.5rem;
  margin-right: 2rem;
  height: auto;
  display: block;
  border-radius: var(--bloglo-normal-radius);
}

.bloglo-cart-item-quantity {
  font-weight: 500;
}

.bloglo-cart-item-quantity:after {
  content: "\00d7";
  display: inline-block;
  font-weight: 400;
  padding: 0 0.4rem;
}

.bloglo-cart-item-meta {
  margin-top: 0.4rem;
}

.bloglo-cart-item-meta ins {
  text-decoration: none;
}

.bloglo-cart-item-meta ins .amount {
  font-weight: 500;
}

.bloglo-cart-item-meta del {
  opacity: 1;
  color: #afafaf;
}

.bloglo-cart-buttons {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.6rem 2rem;
  border-top: 0.1rem solid rgba(190, 190, 190, 0.3);
}

.bloglo-cart-buttons > a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.bloglo-cart-buttons > a:first-child {
  margin-right: 1rem;
}

.bloglo-cart-item-title {
  font-size: 1.6rem;
  line-height: 1.25;
  color: #232323;
  font-weight: 500;
}

@-webkit-keyframes si_bounce_in {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  20% {
    -webkit-transform: scale(1.4, 1.4);
    transform: scale(1.4, 1.4);
  }

  50% {
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }

  85% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes si_bounce_in {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  20% {
    -webkit-transform: scale(1.4, 1.4);
    transform: scale(1.4, 1.4);
  }

  50% {
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }

  85% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

#page .woocommerce-notices-wrapper {
  margin-top: -2rem;
  margin-bottom: 4rem;
}

#page .woocommerce-notices-wrapper:empty {
  display: none;
}

#page .woocommerce-error,
#page .woocommerce-info,
#page .woocommerce-message {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1rem;
  border-radius: 0 0.3rem 0.3rem 0;
  padding-left: 4.8rem;
  border-top: none;
  border-left-width: 0.4rem;
  border-left-style: solid;
  padding: 1.28rem 3.2rem 1.28rem 5rem;
  line-height: 1.5;
}

#page .woocommerce-error:before,
#page .woocommerce-info:before,
#page .woocommerce-message:before {
  left: 2rem;
  top: 1.6rem;
  height: 2rem;
  width: 2rem;
  line-height: 1;
}

#page .woocommerce-error a:not(.button):not(.bloglo-btn),
#page .woocommerce-info a:not(.button):not(.bloglo-btn),
#page .woocommerce-message a:not(.button):not(.bloglo-btn) {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#page .woocommerce-error .button,
#page .woocommerce-info .button,
#page .woocommerce-message .button {
  padding: 0;
  line-height: inherit;
  background: none;
  color: inherit;
  min-height: auto;
  border: none;
}

#page .woocommerce-error .button.wc-forward,
#page .woocommerce-info .button.wc-forward,
#page .woocommerce-message .button.wc-forward {
  font-weight: 500;
  text-transform: capitalize;
}

#page .woocommerce-info {
  border-left-color: #1e85be;
}

#page .woocommerce-info:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M16.016.74C7.875.74 1.335 7.28 1.335 15.421s6.54 14.681 14.681 14.681 14.681-6.54 14.681-14.681S24.157.74 16.016.74zm0 26.693c-6.673 0-12.012-5.339-12.012-12.012S9.343 3.409 16.016 3.409s12.012 5.339 12.012 12.012-5.339 12.012-12.012 12.012zm0-13.346c-.801 0-1.335.534-1.335 1.335v5.339c0 .801.534 1.335 1.335 1.335s1.335-.534 1.335-1.335v-5.339c0-.801-.534-1.335-1.335-1.335zm-.935-4.938c-.267.267-.4.534-.4.934s.133.667.4.934.534.4.934.4.667-.133.934-.4.4-.534.4-.934-.133-.667-.4-.934a1.29 1.29 0 00-1.868 0z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M16.016.74C7.875.74 1.335 7.28 1.335 15.421s6.54 14.681 14.681 14.681 14.681-6.54 14.681-14.681S24.157.74 16.016.74zm0 26.693c-6.673 0-12.012-5.339-12.012-12.012S9.343 3.409 16.016 3.409s12.012 5.339 12.012 12.012-5.339 12.012-12.012 12.012zm0-13.346c-.801 0-1.335.534-1.335 1.335v5.339c0 .801.534 1.335 1.335 1.335s1.335-.534 1.335-1.335v-5.339c0-.801-.534-1.335-1.335-1.335zm-.935-4.938c-.267.267-.4.534-.4.934s.133.667.4.934.534.4.934.4.667-.133.934-.4.4-.534.4-.934-.133-.667-.4-.934a1.29 1.29 0 00-1.868 0z"/></svg>');
}

#page .woocommerce-error {
  border-left-color: #b81c23;
}

#page .woocommerce-error:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M16.016.74C7.875.74 1.335 7.28 1.335 15.421s6.54 14.681 14.681 14.681 14.681-6.54 14.681-14.681S24.157.74 16.016.74zm0 26.693c-6.673 0-12.012-5.339-12.012-12.012S9.343 3.409 16.016 3.409s12.012 5.339 12.012 12.012-5.339 12.012-12.012 12.012zm4.938-16.95a1.29 1.29 0 00-1.868 0l-3.07 3.07-3.07-3.07c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l3.07 3.07-3.07 3.07a1.29 1.29 0 000 1.868c.267.267.534.4.934.4s.667-.133.934-.4l3.07-3.07 3.07 3.07c.267.267.667.4.934.4s.667-.133.934-.4a1.29 1.29 0 000-1.868l-3.07-3.07 3.07-3.07a1.29 1.29 0 000-1.868z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M16.016.74C7.875.74 1.335 7.28 1.335 15.421s6.54 14.681 14.681 14.681 14.681-6.54 14.681-14.681S24.157.74 16.016.74zm0 26.693c-6.673 0-12.012-5.339-12.012-12.012S9.343 3.409 16.016 3.409s12.012 5.339 12.012 12.012-5.339 12.012-12.012 12.012zm4.938-16.95a1.29 1.29 0 00-1.868 0l-3.07 3.07-3.07-3.07c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l3.07 3.07-3.07 3.07a1.29 1.29 0 000 1.868c.267.267.534.4.934.4s.667-.133.934-.4l3.07-3.07 3.07 3.07c.267.267.667.4.934.4s.667-.133.934-.4a1.29 1.29 0 000-1.868l-3.07-3.07 3.07-3.07a1.29 1.29 0 000-1.868z"/></svg>');
}

#page .woocommerce-message {
  border-left-color: #8fae1b;
}

#page .woocommerce-message:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M0 17.824l3.203-3.203 8.008 8.008L28.828 5.012l3.203 3.203-20.82 20.82z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M0 17.824l3.203-3.203 8.008 8.008L28.828 5.012l3.203 3.203-20.82 20.82z"/></svg>');
}

.woocommerce ul#shipping_method li {
  margin-bottom: 0.96rem;
}

.woocommerce ul#shipping_method li input {
  margin: 0 1.12rem 0 0;
  vertical-align: middle;
}

.woocommerce .woocommerce-customer-details address {
  border-right-width: 0.1rem;
  border-radius: var(--bloglo-normal-radius);
  border-color: rgba(190, 190, 190, 0.3);
  border-bottom-width: 0.1rem;
  padding: 1.2rem 2rem;
}

.woocommerce form.checkout_coupon {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 3rem;
  border: 0.2rem dashed rgba(190, 190, 190, 0.3);
  border-radius: var(--bloglo-normal-radius);
  margin-top: 1.5rem;
}

.woocommerce form.checkout_coupon p {
  width: auto;
}

.woocommerce form.checkout_coupon p.form-row-first {
  margin-right: 1.5rem;
}

.woocommerce form.checkout_coupon p:first-child {
  text-align: center;
  margin-bottom: 1.6rem;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.woocommerce form.checkout_coupon .button {
  text-transform: capitalize;
}

.woocommerce #customer_login h2 {
  margin-top: 0;
}

.woocommerce #customer_login h2 form.login,
.woocommerce #customer_login h2 form.register {
  margin: 0;
  min-height: 35.1rem;
  padding: 3rem 10%;
}

.woocommerce form.login,
.woocommerce form.register {
  padding: 0;
  margin-top: 1.5rem;
  border: none;
  max-width: 60rem;
}

.woocommerce form.login p:first-child,
.woocommerce form.register p:first-child {
  margin-top: 0;
}

.woocommerce form.login .form-row,
.woocommerce form.register .form-row {
  margin: 0 0 2.4rem;
}

.woocommerce form.login .form-row:last-child,
.woocommerce form.register .form-row:last-child {
  margin-bottom: 0;
}

.woocommerce form.login .button,
.woocommerce form.register .button {
  margin-right: 2rem;
}

.woocommerce form.login label span,
.woocommerce form.register label span {
  font-weight: 400;
}

.woocommerce form.login .woocommerce-form-login__rememberme,
.woocommerce form.register .woocommerce-form-login__rememberme {
  margin-top: 1.3rem;
  line-height: 1;
}

.woocommerce form.login .lost_password,
.woocommerce form.register .lost_password {
  font-size: 1.3rem;
  margin-bottom: -rem(15px);
  margin-top: 0;
}

.woocommerce form.login .form-row-first,
.woocommerce form.login .form-row-last,
.woocommerce form.register .form-row-first,
.woocommerce form.register .form-row-last {
  width: 49%;
}

.woocommerce strong {
  font-weight: 600;
}

.woocommerce .woocommerce-additional-fields {
  margin-top: 1.6rem;
}

.woocommerce .woocommerce-additional-fields textarea {
  min-height: 20rem;
}

.woocommerce .nav-links {
  text-align: center;
}

.woocommerce #yith-wcwl-form table.shop_table,
.woocommerce .woocommerce-cart-form table.shop_table,
.woocommerce .woocommerce-checkout-review-order table.shop_table {
  margin: 0;
  border: 0;
  border-radius: var(--bloglo-normal-radius);
  color: #232323;
  border-spacing: 0;
}

.woocommerce #yith-wcwl-form table.shop_table a,
.woocommerce .woocommerce-cart-form table.shop_table a,
.woocommerce .woocommerce-checkout-review-order table.shop_table a {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.woocommerce
  #yith-wcwl-form
  table.shop_table
  a:not(.bloglo-woo-plus):not(.bloglo-woo-minus):not(.bloglo-btn):not(
    .remove_from_wishlist
  ),
.woocommerce
  .woocommerce-cart-form
  table.shop_table
  a:not(.bloglo-woo-plus):not(.bloglo-woo-minus):not(.bloglo-btn):not(
    .remove_from_wishlist
  ),
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  a:not(.bloglo-woo-plus):not(.bloglo-woo-minus):not(.bloglo-btn):not(
    .remove_from_wishlist
  ) {
  color: inherit;
}

.woocommerce #yith-wcwl-form table.shop_table thead,
.woocommerce .woocommerce-cart-form table.shop_table thead,
.woocommerce .woocommerce-checkout-review-order table.shop_table thead {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.032rem;
}

.woocommerce #yith-wcwl-form table.shop_table thead th,
.woocommerce .woocommerce-cart-form table.shop_table thead th,
.woocommerce .woocommerce-checkout-review-order table.shop_table thead th {
  font-size: 1.2rem;
  font-weight: 400;
  padding: 2rem 0;
  border: 0 !important;
}

.woocommerce #yith-wcwl-form table.shop_table thead th:first-child,
.woocommerce .woocommerce-cart-form table.shop_table thead th:first-child,
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  thead
  th:first-child {
  border-radius: 0.3rem 0 0 0;
}

.woocommerce #yith-wcwl-form table.shop_table thead th:last-child,
.woocommerce .woocommerce-cart-form table.shop_table thead th:last-child,
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  thead
  th:last-child {
  border-radius: 0 0.3rem 0 0;
}

.woocommerce #yith-wcwl-form table.shop_table th,
.woocommerce #yith-wcwl-form table.shop_table td,
.woocommerce .woocommerce-cart-form table.shop_table th,
.woocommerce .woocommerce-cart-form table.shop_table td,
.woocommerce .woocommerce-checkout-review-order table.shop_table th,
.woocommerce .woocommerce-checkout-review-order table.shop_table td {
  font-weight: 400;
  border: none;
  text-align: center;
}

.woocommerce #yith-wcwl-form table.shop_table th:first-child,
.woocommerce #yith-wcwl-form table.shop_table td:first-child,
.woocommerce .woocommerce-cart-form table.shop_table th:first-child,
.woocommerce .woocommerce-cart-form table.shop_table td:first-child,
.woocommerce .woocommerce-checkout-review-order table.shop_table th:first-child,
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  td:first-child {
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: left;
  border-left: 0.3rem solid rgba(190, 190, 190, 0.2);
}

.woocommerce #yith-wcwl-form table.shop_table th:last-child,
.woocommerce #yith-wcwl-form table.shop_table td:last-child,
.woocommerce .woocommerce-cart-form table.shop_table th:last-child,
.woocommerce .woocommerce-cart-form table.shop_table td:last-child,
.woocommerce .woocommerce-checkout-review-order table.shop_table th:last-child,
.woocommerce .woocommerce-checkout-review-order table.shop_table td:last-child {
  padding-right: 2rem;
  padding-left: 2rem;
  border-right-width: 0.3rem;
}

.woocommerce #yith-wcwl-form table.shop_table td,
.woocommerce .woocommerce-cart-form table.shop_table td,
.woocommerce .woocommerce-checkout-review-order table.shop_table td {
  padding: 1.6rem 0;
  border-right: 0.1rem solid rgba(190, 190, 190, 0.2);
  border-bottom: 0.1rem solid rgba(190, 190, 190, 0.2);
}

.woocommerce #yith-wcwl-form table.shop_table tr:nth-last-child(2) td,
.woocommerce .woocommerce-cart-form table.shop_table tr:nth-last-child(2) td {
  border-bottom-width: 0.3rem;
  border-bottom-color: rgba(190, 190, 190, 0.2);
}

.woocommerce
  #yith-wcwl-form
  table.shop_table
  tr:nth-last-child(2)
  td:first-child,
.woocommerce
  .woocommerce-cart-form
  table.shop_table
  tr:nth-last-child(2)
  td:first-child {
  border-radius: 0 0 0 0.3rem;
}

.woocommerce
  #yith-wcwl-form
  table.shop_table
  tr:nth-last-child(2)
  td:last-child,
.woocommerce
  .woocommerce-cart-form
  table.shop_table
  tr:nth-last-child(2)
  td:last-child {
  border-radius: 0 0 0.3rem 0;
}

.woocommerce #yith-wcwl-form table.shop_table tr:last-child td,
.woocommerce .woocommerce-cart-form table.shop_table tr:last-child td {
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 2rem;
}

.woocommerce .woocommerce-checkout-review-order table.shop_table th,
.woocommerce .woocommerce-checkout-review-order table.shop_table td {
  text-align: left;
}

.woocommerce .woocommerce-checkout-review-order table.shop_table tfoot tr td,
.woocommerce .woocommerce-checkout-review-order table.shop_table tfoot tr th {
  border-radius: 0 !important;
  background-color: transparent;
}

.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  tfoot
  tr
  td:first-child,
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  tfoot
  tr
  th:first-child {
  border-left: 0.3rem solid rgba(190, 190, 190, 0.2) !important;
  border-bottom: 0.1rem solid rgba(190, 190, 190, 0.2) !important;
}

.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  tfoot
  tr:last-child
  th:first-child {
  border-bottom-width: 0.3rem !important;
}

.woocommerce .woocommerce-checkout-review-order table.shop_table tfoot tr th {
  border-right: 0.1rem solid rgba(190, 190, 190, 0.2) !important;
}

.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  tfoot
  tr:first-child
  td,
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  tfoot
  tr:first-child
  th {
  border-top: solid 1.5rem rgba(190, 190, 190, 0.2) !important;
}

.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  tfoot
  tr:last-child
  td {
  border-bottom-width: 0.3rem;
  border-bottom-color: rgba(190, 190, 190, 0.2);
}

.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  tfoot
  tr:last-child
  td:first-child {
  border-radius: 0 0 0 0.3rem;
}

.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  tfoot
  tr:last-child
  td:last-child {
  border-radius: 0 0 0.3rem 0;
}

.woocommerce td.product-name img {
  display: block;
  width: 6.4rem;
  margin-right: 1.6rem;
  border-radius: var(--bloglo-normal-radius);
}

.woocommerce td.product-name a {
  display: inline-block;
  vertical-align: middle;
}

.woocommerce a.remove {
  height: 2.4rem;
  width: 2.4rem;
  line-height: 2.368rem;
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.woocommerce .product-remove {
  width: 3rem;
}

.woocommerce .product-remove .bloglo-icon {
  height: 1.6rem;
}

.woocommerce .quantity {
  display: inline-block;
  position: relative;
  padding-right: 2.8rem;
}

.woocommerce .quantity .bloglo-woo-minus,
.woocommerce .quantity .bloglo-woo-plus {
  text-decoration: none;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 2.8rem;
  height: 2.55rem;
  line-height: 2rem;
  border: 0.1rem solid rgba(190, 190, 190, 0.3);
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  color: inherit !important;
  font-size: 1.5rem;
  background-color: #fff;
}

.woocommerce .quantity .bloglo-woo-minus:hover,
.woocommerce .quantity .bloglo-woo-plus:hover {
  background-color: rgba(190, 190, 190, 0.2);
}

.woocommerce .quantity .bloglo-woo-plus {
  border-radius: 0 0.2rem 0 0;
}

.woocommerce .quantity .bloglo-woo-minus {
  top: auto;
  bottom: 0;
  height: 2.55rem;
  border-radius: 0 0 0.2rem 0;
}

.woocommerce .quantity .qty {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 0.1rem solid rgba(190, 190, 190, 0.3);
  border-right: none;
  height: 5rem;
  border-radius: 0.2rem 0 0 0.2rem;
  width: 6rem;
}

.woocommerce .quantity input[type="number"]::-webkit-inner-spin-button,
.woocommerce .quantity input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce .quantity input[type="number"] {
  -moz-appearance: textfield;
}

.woocommerce #coupon_code {
  margin-right: 1.5rem;
  min-width: 21rem;
  min-height: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.woocommerce .cart-collaterals {
  margin-top: 5rem;
}

.woocommerce .cart_totals h2,
.woocommerce .cross-sells > h4 {
  margin-bottom: 1.6rem;
}

.woocommerce .cart_totals {
  margin-left: auto;
  margin-bottom: 0;
}

.woocommerce .cart_totals table.shop_table {
  border: 0.3rem solid rgba(190, 190, 190, 0.2);
  border-radius: var(--bloglo-normal-radius);
}

.woocommerce .cart_totals table.shop_table th {
  border-right: 0.1rem solid rgba(190, 190, 190, 0.2);
}

.woocommerce .cart_totals table.shop_table td,
.woocommerce .cart_totals table.shop_table th {
  padding: 1.6rem 2rem;
}

.woocommerce .cart_totals table.shop_table th,
.woocommerce .cart_totals table.shop_table td {
  border-color: rgba(190, 190, 190, 0.2);
  border-top-width: 0.1rem;
  font-weight: 400;
}

.woocommerce .cart_totals table.shop_table .order-total th,
.woocommerce .cart_totals table.shop_table .order-total td {
  background-color: rgba(190, 190, 190, 0.2);
}

.woocommerce .show-on-hover {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear,
    -webkit-transform 5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: opacity 0.2s linear,
    -webkit-transform 5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: opacity 0.2s linear, transform 5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: opacity 0.2s linear, transform 5s cubic-bezier(0.25, 0.8, 0.25, 1),
    -webkit-transform 5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.woocommerce li.product:hover .show-on-hover {
  opacity: 1;
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
}

.woocommerce form .form-row {
  margin: 1.6rem 0 1.6rem;
  padding: 0;
}

.woocommerce form .form-row.notes {
  margin-bottom: 0;
}

.shipping-calculator-form > p:last-of-type {
  margin-bottom: 0;
}

.shipping-calculator-button {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  text-transform: capitalize;
}

.shipping-calculator-button:after {
  display: none;
}

.woocommerce-shipping-methods label,
.woocommerce-remove-coupon,
.woocommerce .optional {
  font-weight: 400;
}

.woocommerce-cart .return-to-shop:not(.bloglo-woo-return) {
  display: none !important;
}

#add_payment_method
  .cart-collaterals
  .cart_totals
  .woocommerce-shipping-destination,
.woocommerce-cart
  .cart-collaterals
  .cart_totals
  .woocommerce-shipping-destination,
.woocommerce-checkout
  .cart-collaterals
  .cart_totals
  .woocommerce-shipping-destination {
  font-size: 1.3rem;
  margin-top: 1.6rem;
  margin-bottom: 0.72rem;
}

.bloglo-woo-before-shop {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3rem;
}

.bloglo-woo-before-shop .woocommerce-ordering {
  position: relative;
  margin-left: auto;
}

.bloglo-woo-before-shop .woocommerce-ordering .orderby {
  width: 12.6rem;
}

.bloglo-woo-before-shop #bloglo-orderby {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.bloglo-woo-before-shop #bloglo-orderby > svg {
  height: 1.386rem;
  margin-left: 1rem;
}

.bloglo-woo-before-shop select {
  background-position: calc(100%) 1.28rem;
  background-color: rgba(0, 0, 0, 0);
  padding-left: 0;
  padding-right: 1.9rem;
  border: none;
  cursor: pointer;
  height: initial;
  line-height: inherit;
}

.bloglo-woo-before-shop select.custom-select-loaded {
  position: absolute;
  opacity: 0;
  z-index: 2;
}

.bloglo-woo-before-shop
  select.custom-select-loaded:hover
  ~ #bloglo-orderby:before {
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1) translateZ(0.1rem);
  transform: scale(1, 1) translateZ(0.1rem);
}

.woocommerce .star-rating {
  min-height: 1.6rem;
  position: relative;
  display: inline-block;
  font-size: 1.3rem !important;
  width: 7.7rem;
  max-width: 7.7rem;
  margin: 0.5rem 0 0;
  font-weight: 400 !important;
  letter-spacing: 0.2rem;
  white-space: nowrap;
}

.woocommerce .star-rating span {
  padding-top: 1.6rem;
}

.woocommerce .star-rating span:before {
  white-space: nowrap;
}

.woocommerce .star-rating:before {
  content: "\53\53\53\53\53";
  white-space: nowrap;
  opacity: 0.4;
}

.woocommerce .cross-sells ul.products {
  margin-top: 0;
}

.woocommerce ul.products {
  margin-top: -4rem;
  margin-bottom: 0;
}

.woocommerce ul.products li.product {
  position: relative;
  margin-top: 4rem;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 1rem;
  z-index: 0;
  border: 0.1rem solid rgba(190, 190, 190, 0.3);
  -webkit-transition: var(--bloglo-transition-primary);
  transition: var(--bloglo-transition-primary);
}

.woocommerce ul.products.columns-1 li.product:nth-child(1n),
.woocommerce-page ul.products.columns-1 li.product:nth-child(1n),
.woocommerce ul.products.columns-2 li.product:nth-child(2n),
.woocommerce-page ul.products.columns-2 li.product:nth-child(2n),
.woocommerce ul.products.columns-3 li.product:nth-child(3n),
.woocommerce-page ul.products.columns-3 li.product:nth-child(3n),
.woocommerce ul.products.columns-4 li.product:nth-child(4n),
.woocommerce-page ul.products.columns-4 li.product:nth-child(4n) {
  margin-right: 0;
}

.woocommerce ul.products.columns-1 li.product:nth-child(1n + 2),
.woocommerce-page ul.products.columns-1 li.product:nth-child(1n + 2),
.woocommerce ul.products.columns-2 li.product:nth-child(2n + 3),
.woocommerce-page ul.products.columns-2 li.product:nth-child(2n + 3),
.woocommerce ul.products.columns-3 li.product:nth-child(3n + 4),
.woocommerce-page ul.products.columns-3 li.product:nth-child(3n + 4),
.woocommerce ul.products.columns-4 li.product:nth-child(4n + 5),
.woocommerce-page ul.products.columns-4 li.product:nth-child(4n + 5) {
  clear: both;
}

.woocommerce ul.products li.product:hover,
.woocommerce ul.products li.product:focus-within {
  border-color: transparent;
  box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.08);
}

.woocommerce ul.products li.product .meta-wrap {
  padding: 1.9rem;
  padding-top: 0.3rem;
}

.woocommerce ul.products li.product .meta-wrap > * {
  margin: 1.2rem 0 1.2rem 0;
  display: block;
}

.woocommerce ul.products li.product .meta-wrap > .price {
  margin-top: 1.76rem;
  margin-bottom: 1.76rem;
  line-height: 1;
}

.woocommerce ul.products li.product .meta-wrap > .star-rating {
  line-height: 1;
}

.woocommerce
  ul.products
  li.product
  .meta-wrap
  > .bloglo-loop-product__category-wrap {
  font-size: 1.486rem;
}

.woocommerce ul.products li.product .meta-wrap > *:first-child {
  margin-top: 0 !important;
}

.woocommerce ul.products li.product .meta-wrap > *:last-child {
  margin-bottom: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__link h2,
.woocommerce ul.products li.product .bloglo-loop-product__category-wrap a,
.woocommerce ul.products li.product .price {
  padding: 0;
  line-height: 1.5;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link h2 {
  font-size: 1.707rem;
  font-family: inherit;
  font-style: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  font-weight: 500;
}

.woocommerce ul.products li.product .bloglo-loop-product__category-wrap {
  line-height: 1;
}

.woocommerce ul.products li.product .bloglo-loop-product__category-wrap a {
  line-height: inherit;
}

.woocommerce ul.products li.product .price {
  color: inherit;
  font-size: inherit;
  font-weight: 500;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  font-weight: 500;
}

.woocommerce ul.products li.product .price del {
  opacity: 1;
  color: #afafaf;
}

.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product.product-category {
  border-radius: var(--bloglo-normal-radius);
}

.woocommerce ul.products li.product a img {
  margin: 0;
}

.woocommerce ul.products li.product .woocommerce-placeholder {
  border: none;
}

.woocommerce ul.products li.product.product-category {
  overflow: hidden;
}

.woocommerce ul.products li.product.product-category:hover > a:after {
  opacity: 1;
}

.woocommerce ul.products li.product.product-category > a {
  display: block;
}

.woocommerce ul.products li.product.product-category > a:after {
  content: "";
  z-index: 1;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#000),
    to(transparent)
  );
  background-image: linear-gradient(to top, #000 0%, transparent 100%);
  -webkit-transform: translateY(40%);
  -ms-transform: translateY(40%);
  transform: translateY(40%);
  opacity: 0.85;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  font-size: 1.6rem;
  color: #fff;
  z-index: 2;
  -webkit-transform: translate3d(0, 1.8rem, 0);
  transform: translate3d(0, 1.8rem, 0);
}

.woocommerce ul.products li.product .woocommerce-loop-category__title span {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 0.5rem;
  line-height: 1;
  -webkit-transform: translate3d(0, 1.3rem, 0);
  transform: translate3d(0, 1.3rem, 0);
  opacity: 0;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-category__title {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.woocommerce
  ul.products
  li.product:hover
  .woocommerce-loop-category__title
  span {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title h3 {
  margin: 0;
}

.woocommerce ul.products li.product.outofstock a img {
  opacity: 0.5;
}

.woocommerce ul.products li.product.outofstock a img.show-on-hover {
  opacity: 0;
}

.woocommerce ul.products li.product.outofstock:hover .swap-on-hover a img {
  opacity: 0;
}

.woocommerce
  ul.products
  li.product.outofstock:hover
  .swap-on-hover
  a
  img.show-on-hover {
  opacity: 0.5;
}

.woocommerce ul.products li.product .added_to_cart {
  white-space: nowrap;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  background-color: #232323;
}

.woocommerce ul.products li.product .added_to_cart:hover {
  background-color: #2e353b;
}

.woocommerce ul.products li.product .added_to_cart:before {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 20 20"><path d="M3 2h14a1 1 0 011 1v14a1 1 0 01-1 1H3a1 1 0 01-1-1V3a1 1 0 011-1zM0 3a3 3 0 013-3h14a3 3 0 013 3v14a3 3 0 01-3 3H3a3 3 0 01-3-3zm10 7c-2.761 0-5-2.686-5-6h2c0 2.566 1.669 4 3 4s3-1.434 3-4h2c0 3.314-2.239 6-5 6z" fill="currentColor" fill-rule="evenodd"></path></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 20 20"><path d="M3 2h14a1 1 0 011 1v14a1 1 0 01-1 1H3a1 1 0 01-1-1V3a1 1 0 011-1zM0 3a3 3 0 013-3h14a3 3 0 013 3v14a3 3 0 01-3 3H3a3 3 0 01-3-3zm10 7c-2.761 0-5-2.686-5-6h2c0 2.566 1.669 4 3 4s3-1.434 3-4h2c0 3.314-2.239 6-5 6z" fill="currentColor" fill-rule="evenodd"></path></svg>');
  margin-right: 1rem;
}

.woocommerce ul.products li.product a.bloglo-btn,
.woocommerce ul.products li.product a.added_to_cart {
  position: absolute;
  z-index: 2;
  padding: 0.8rem 1.6rem;
  -webkit-transition-delay: 0.25s !important;
  transition-delay: 0.25s !important;
}

.woocommerce ul.products li.product .bloglo-product-thumb {
  margin-bottom: 1.5rem;
  border-radius: var(--bloglo-normal-radius);
  position: relative;
  overflow: hidden;
}

.woocommerce ul.products li.product .bloglo-product-thumb .bloglo-btn {
  -webkit-transform: translate3d(0, 3rem, 0);
  transform: translate3d(0, 3rem, 0);
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  opacity: 0;
  visibility: hidden;
  width: auto;
}

.woocommerce ul.products li.product:hover .bloglo-btn,
.woocommerce ul.products li.product .loading.bloglo-btn {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s !important;
  transition-delay: 0s !important;
}

.woocommerce ul.products li.product .loading.bloglo-btn {
  opacity: 0.75;
}

.woocommerce ul.products li.product:hover .added_to_cart {
  -webkit-transform: translate3d(0, -120%, 0);
  transform: translate3d(0, -120%, 0);
  -webkit-transition-delay: 0s !important;
  transition-delay: 0s !important;
}

.woocommerce ul.products.yith-wcan-loading {
  margin-bottom: 4rem;
}

.woocommerce ul#shipping_method .amount {
  font-weight: 600;
}

.woocommerce-page .entry-content {
  font-size: 1.5rem;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 0;
}

.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
  min-width: initial;
  min-height: initial;
  min-height: auto;
  margin: 0;
  left: 1.2rem;
  top: 1.2rem;
  right: auto;
  bottom: auto;
  border-radius: var(--bloglo-full-radius);
  line-height: inherit;
  padding: 0.3rem 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  z-index: 2;
}

.woocommerce span.onsale.sold-out,
.woocommerce ul.products li.product .onsale.sold-out {
  background-color: #232323;
}

.woocommerce-checkout p.woocommerce-notice {
  margin-top: 0;
}

.woocommerce .woocommerce-checkout-review-order {
  padding: 0.2rem 2.7rem 3rem;
  background-color: rgba(190, 190, 190, 0.2);
  border-radius: 0 0 0.3rem 0.3rem;
}

.woocommerce .woocommerce-checkout-review-order strong,
.woocommerce
  .woocommerce-checkout-review-order
  .woocommerce-Price-amount.amount,
.woocommerce .woocommerce-checkout-review-order th,
.woocommerce .woocommerce-checkout-review-order td {
  font-weight: 400;
}

.woocommerce .woocommerce-checkout-review-order .order-total th {
  font-weight: 600 !important;
}

.woocommerce
  .woocommerce-checkout-review-order
  .order-total
  .woocommerce-Price-amount.amount {
  font-weight: 600;
}

.woocommerce .woocommerce-checkout-review-order table.shop_table {
  background-color: #fff;
  border-radius: 0.6rem;
  margin-bottom: 2rem;
}

.woocommerce .woocommerce-checkout-review-order table.shop_table thead th {
  background-color: #fff;
  border: 0.3rem solid rgba(190, 190, 190, 0.2) !important;
}

.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  thead
  th:first-child {
  border-right: 0 !important;
}

.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  thead
  th:last-child {
  border-left: 0 !important;
}

.woocommerce-checkout .col2-set .col-2 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

#order_review_heading {
  background-color: rgba(190, 190, 190, 0.2);
  text-align: center;
  padding: 2.4rem 0 1.6rem;
  margin-bottom: 0;
  position: relative;
  text-transform: capitalize;
  z-index: -1;
}

#order_review_heading:after {
  content: "";
  display: block;
  position: absolute;
  top: -2rem;
  right: 0;
  left: 0;
  height: 2rem;
  background: linear-gradient(
      -45deg,
      rgba(190, 190, 190, 0.2) 33.333%,
      transparent 33.333%,
      transparent 66.667%,
      rgba(190, 190, 190, 0.2) 66.667%
    ),
    linear-gradient(
      45deg,
      rgba(190, 190, 190, 0.2) 33.333%,
      transparent 33.333%,
      transparent 66.667%,
      rgba(190, 190, 190, 0.2) 66.667%
    );
  background-size: 1.2rem 4.4rem;
  background-position: 0 -2.2rem;
}

#ship-to-different-address {
  margin-bottom: 1.6rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.6rem 2rem;
  background-color: rgba(190, 190, 190, 0.2);
  color: inherit;
  border-radius: var(--bloglo-normal-radius);
  font-size: inherit;
}

#ship-to-different-address label {
  cursor: pointer;
  font-weight: 400;
  margin-bottom: 0;
}

.woocommerce-invalid #terms {
  outline: none;
  border-color: #f00;
}

.woocommerce-invalid #terms + span a {
  color: inherit;
}

#place_order {
  float: none;
  display: block;
  width: 100%;
  text-transform: capitalize;
  margin-top: 1.6rem;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  border-radius: 0;
  background: none;
  border-bottom-color: rgba(190, 190, 190, 0.3);
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  margin: 0 0.3rem 2rem 0.3rem;
  border-bottom: none;
}

#add_payment_method #payment ul.payment_methods .woocommerce-notice,
.woocommerce-cart #payment ul.payment_methods .woocommerce-notice,
.woocommerce-checkout #payment ul.payment_methods .woocommerce-notice {
  background-color: #fff;
}

#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice),
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice),
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice) {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  padding: 1.6rem 2rem;
  border-bottom: 0.3rem solid rgba(190, 190, 190, 0.2);
}

#add_payment_method
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal,
.woocommerce-cart
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal,
.woocommerce-checkout
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal {
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

#add_payment_method
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal
  label,
.woocommerce-cart
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal
  label,
.woocommerce-checkout
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal
  label {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -js-display: inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#add_payment_method
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal
  img,
.woocommerce-cart
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal
  img,
.woocommerce-checkout
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal
  img {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  margin-left: auto;
  padding-left: 2rem;
  max-height: 5rem;
}

#add_payment_method
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice)
  input,
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice) input,
.woocommerce-checkout
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice)
  input {
  margin-right: 1.12rem;
}

#add_payment_method #payment ul.payment_methods .about_paypal,
.woocommerce-cart #payment ul.payment_methods .about_paypal,
.woocommerce-checkout #payment ul.payment_methods .about_paypal {
  line-height: inherit;
  font-size: 1.2rem;
  margin-left: 1.4rem;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#add_payment_method #payment ul.payment_methods li.woocommerce-info,
.woocommerce-cart #payment ul.payment_methods li.woocommerce-info,
.woocommerce-checkout #payment ul.payment_methods li.woocommerce-info {
  line-height: inherit;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  background: none;
  border-radius: 0;
  line-height: 1.6;
  font-size: 1.4rem;
  margin-top: 1rem;
}

#add_payment_method #payment div.payment_box p,
.woocommerce-cart #payment div.payment_box p,
.woocommerce-checkout #payment div.payment_box p {
  margin-top: 0;
}

#add_payment_method #payment div.payment_box:before,
.woocommerce-cart #payment div.payment_box:before,
.woocommerce-checkout #payment div.payment_box:before {
  display: none;
}

.woocommerce-checkout-review-order h3 {
  margin-top: 4rem;
  margin-bottom: 1.6rem;
  text-align: center;
}

.woocommerce-privacy-policy-text p {
  margin: 0 0.3rem 2rem 0.3rem;
  font-size: 1.4rem;
}

.woocommerce-checkout-review-order .woocommerce-form__label {
  font-weight: 500;
  margin: 2rem 0.3rem;
}

.woocommerce-password-strength {
  font-weight: 400;
  color: #232323;
}

.woocommerce-Button.button,
.woocommerce-address-fields .button {
  text-transform: capitalize;
}

.woocommerce-MyAccount-content > p:first-of-type {
  margin-top: 0;
}

.woocommerce-MyAccount-content > form > h3 {
  margin-top: 0;
  margin-bottom: 2rem;
}

.woocommerce-pagination .woocommerce-button {
  margin: 0 1rem !important;
}

#main .woocommerce-MyAccount-navigation {
  width: 25%;
}

#main .woocommerce-MyAccount-navigation ul li:before {
  content: "";
  display: inline-block;
  margin-right: 1.6rem;
}

#main .woocommerce-MyAccount-navigation ul li:first-child a {
  margin-top: 0;
}

#main .woocommerce-MyAccount-navigation ul li.is-active > a {
  font-weight: 500;
}

#main .woocommerce-MyAccount-navigation ul li a {
  display: inline-block;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  color: inherit;
  margin: 0.5rem 0;
  text-transform: capitalize;
}

#main
  .woocommerce-MyAccount-navigation
  ul
  li.woocommerce-MyAccount-navigation-link--dashboard:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M29.362 14.087h-5.339c-.534 0-1.068.4-1.201.934l-2.803 8.141-6.807-20.153c-.133-.534-.667-.934-1.201-.934s-1.068.4-1.201.934L7.073 14.086H2.669c-.801 0-1.335.534-1.335 1.335s.534 1.335 1.335 1.335h5.339c.534 0 1.068-.4 1.201-.934l2.803-8.141 6.807 20.286c.133.534.667.934 1.201.934s1.068-.4 1.201-.934l3.737-11.077h4.404c.801 0 1.335-.534 1.335-1.335s-.534-1.468-1.335-1.468z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M29.362 14.087h-5.339c-.534 0-1.068.4-1.201.934l-2.803 8.141-6.807-20.153c-.133-.534-.667-.934-1.201-.934s-1.068.4-1.201.934L7.073 14.086H2.669c-.801 0-1.335.534-1.335 1.335s.534 1.335 1.335 1.335h5.339c.534 0 1.068-.4 1.201-.934l2.803-8.141 6.807 20.286c.133.534.667.934 1.201.934s1.068-.4 1.201-.934l3.737-11.077h4.404c.801 0 1.335-.534 1.335-1.335s-.534-1.468-1.335-1.468z"/></svg>');
}

#main
  .woocommerce-MyAccount-navigation
  ul
  li.woocommerce-MyAccount-navigation-link--orders:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M28.428 5.545L17.751.206c-1.068-.534-2.402-.534-3.604 0L3.47 5.545a3.846 3.846 0 00-2.135 3.47v12.679c0 1.468.801 2.936 2.269 3.604l10.677 5.339c.534.267 1.201.4 1.735.4.667 0 1.201-.133 1.735-.4l10.677-5.339c1.335-.667 2.269-2.002 2.269-3.604V9.015c0-1.468-.801-2.803-2.269-3.47zm-12.946-3.07c.133-.133.4-.133.534-.133.267 0 .4 0 .534.133l9.876 4.938-3.737 1.868-10.41-5.205 3.203-1.602zm.534 10.144L5.606 7.414l3.737-1.868 10.41 5.205-3.737 1.868zM4.671 23.029c-.4-.267-.667-.801-.667-1.201V9.549l10.677 5.339v13.079l-10.01-4.938zm22.556 0l-9.876 4.938V14.888l10.677-5.339v12.279c0 .534-.267.934-.801 1.201z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M28.428 5.545L17.751.206c-1.068-.534-2.402-.534-3.604 0L3.47 5.545a3.846 3.846 0 00-2.135 3.47v12.679c0 1.468.801 2.936 2.269 3.604l10.677 5.339c.534.267 1.201.4 1.735.4.667 0 1.201-.133 1.735-.4l10.677-5.339c1.335-.667 2.269-2.002 2.269-3.604V9.015c0-1.468-.801-2.803-2.269-3.47zm-12.946-3.07c.133-.133.4-.133.534-.133.267 0 .4 0 .534.133l9.876 4.938-3.737 1.868-10.41-5.205 3.203-1.602zm.534 10.144L5.606 7.414l3.737-1.868 10.41 5.205-3.737 1.868zM4.671 23.029c-.4-.267-.667-.801-.667-1.201V9.549l10.677 5.339v13.079l-10.01-4.938zm22.556 0l-9.876 4.938V14.888l10.677-5.339v12.279c0 .534-.267.934-.801 1.201z"/></svg>');
}

#main
  .woocommerce-MyAccount-navigation
  ul
  li.woocommerce-MyAccount-navigation-link--downloads:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M20.42 21.16l-3.07 3.07v-8.809c0-.801-.534-1.335-1.335-1.335s-1.335.534-1.335 1.335v8.809l-3.07-3.07c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l5.339 5.339c.133.133.267.267.4.267.133.133.4.133.534.133s.4 0 .534-.133c.133-.133.267-.133.4-.267l5.339-5.339c.534-.534.534-1.335 0-1.868s-1.335-.534-1.868 0zm10.143-7.741c-1.468-2.002-3.87-3.337-6.54-3.337h-.667C21.354 4.21 15.081.873 9.075 2.475c-3.203.801-5.739 2.669-7.474 5.472C-.001 10.75-.534 13.953.266 17.023c.534 1.868 1.335 3.604 2.669 4.938.534.534 1.335.667 1.868.133s.667-1.335.133-1.868c-.934-1.068-1.735-2.402-2.002-3.87-.667-2.402-.267-4.938 1.068-7.074s3.337-3.737 5.739-4.271c4.938-1.335 10.143 1.735 11.344 6.673.133.534.667 1.068 1.335 1.068h1.602c1.735 0 3.337.801 4.404 2.269.801 1.201 1.201 2.536.934 4.004s-1.068 2.669-2.135 3.47c-.667.4-.801 1.201-.267 1.868.267.4.667.534 1.068.534.267 0 .534-.133.801-.267 1.735-1.201 2.936-3.07 3.337-5.205s-.4-4.137-1.602-6.006z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M20.42 21.16l-3.07 3.07v-8.809c0-.801-.534-1.335-1.335-1.335s-1.335.534-1.335 1.335v8.809l-3.07-3.07c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l5.339 5.339c.133.133.267.267.4.267.133.133.4.133.534.133s.4 0 .534-.133c.133-.133.267-.133.4-.267l5.339-5.339c.534-.534.534-1.335 0-1.868s-1.335-.534-1.868 0zm10.143-7.741c-1.468-2.002-3.87-3.337-6.54-3.337h-.667C21.354 4.21 15.081.873 9.075 2.475c-3.203.801-5.739 2.669-7.474 5.472C-.001 10.75-.534 13.953.266 17.023c.534 1.868 1.335 3.604 2.669 4.938.534.534 1.335.667 1.868.133s.667-1.335.133-1.868c-.934-1.068-1.735-2.402-2.002-3.87-.667-2.402-.267-4.938 1.068-7.074s3.337-3.737 5.739-4.271c4.938-1.335 10.143 1.735 11.344 6.673.133.534.667 1.068 1.335 1.068h1.602c1.735 0 3.337.801 4.404 2.269.801 1.201 1.201 2.536.934 4.004s-1.068 2.669-2.135 3.47c-.667.4-.801 1.201-.267 1.868.267.4.667.534 1.068.534.267 0 .534-.133.801-.267 1.735-1.201 2.936-3.07 3.337-5.205s-.4-4.137-1.602-6.006z"/></svg>');
}

#main
  .woocommerce-MyAccount-navigation
  ul
  li.woocommerce-MyAccount-navigation-link--edit-address:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M31.364.874a1.213 1.213 0 00-1.335 0l-8.675 5.072L11.211.874h-.133c-.133-.133-.267-.133-.4-.133s-.267 0-.534.133h-.133-.133L.536 6.213C.269 6.48.002 6.88.002 7.414v21.354c0 .534.267.934.667 1.201s.934.267 1.335 0l8.675-5.072 10.01 5.072c.267.133.4.133.667.133.133 0 .267 0 .4-.133h.266l9.342-5.339c.4-.267.667-.667.667-1.201V2.075c0-.534-.267-.934-.667-1.201zM12.012 4.21l8.008 4.004v18.418l-8.008-4.004V4.21zM2.669 8.214l6.673-3.87v18.285l-6.673 3.87V8.214zm26.693 14.414l-6.673 3.87V8.213l6.673-3.87v18.285z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M31.364.874a1.213 1.213 0 00-1.335 0l-8.675 5.072L11.211.874h-.133c-.133-.133-.267-.133-.4-.133s-.267 0-.534.133h-.133-.133L.536 6.213C.269 6.48.002 6.88.002 7.414v21.354c0 .534.267.934.667 1.201s.934.267 1.335 0l8.675-5.072 10.01 5.072c.267.133.4.133.667.133.133 0 .267 0 .4-.133h.266l9.342-5.339c.4-.267.667-.667.667-1.201V2.075c0-.534-.267-.934-.667-1.201zM12.012 4.21l8.008 4.004v18.418l-8.008-4.004V4.21zM2.669 8.214l6.673-3.87v18.285l-6.673 3.87V8.214zm26.693 14.414l-6.673 3.87V8.213l6.673-3.87v18.285z"/></svg>');
}

#main
  .woocommerce-MyAccount-navigation
  ul
  li.woocommerce-MyAccount-navigation-link--edit-account:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M21.354 18.091H10.677c-3.737 0-6.673 2.936-6.673 6.673v2.669c0 .801.534 1.335 1.335 1.335s1.335-.534 1.335-1.335v-2.669c0-2.269 1.735-4.004 4.004-4.004h10.677c2.269 0 4.004 1.735 4.004 4.004v2.669c0 .801.534 1.335 1.335 1.335s1.335-.534 1.335-1.335v-2.669c0-3.737-2.936-6.673-6.673-6.673zm-5.338-2.67c3.737 0 6.673-2.936 6.673-6.673s-2.936-6.673-6.673-6.673-6.673 2.936-6.673 6.673 2.936 6.673 6.673 6.673zm0-10.677c2.269 0 4.004 1.735 4.004 4.004s-1.735 4.004-4.004 4.004-4.004-1.735-4.004-4.004 1.735-4.004 4.004-4.004z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M21.354 18.091H10.677c-3.737 0-6.673 2.936-6.673 6.673v2.669c0 .801.534 1.335 1.335 1.335s1.335-.534 1.335-1.335v-2.669c0-2.269 1.735-4.004 4.004-4.004h10.677c2.269 0 4.004 1.735 4.004 4.004v2.669c0 .801.534 1.335 1.335 1.335s1.335-.534 1.335-1.335v-2.669c0-3.737-2.936-6.673-6.673-6.673zm-5.338-2.67c3.737 0 6.673-2.936 6.673-6.673s-2.936-6.673-6.673-6.673-6.673 2.936-6.673 6.673 2.936 6.673 6.673 6.673zm0-10.677c2.269 0 4.004 1.735 4.004 4.004s-1.735 4.004-4.004 4.004-4.004-1.735-4.004-4.004 1.735-4.004 4.004-4.004z"/></svg>');
}

#main
  .woocommerce-MyAccount-navigation
  ul
  li.woocommerce-MyAccount-navigation-link--customer-logout:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M12.012 26.098H6.673c-.801 0-1.335-.534-1.335-1.335V6.078c0-.801.534-1.335 1.335-1.335h5.339c.801 0 1.335-.534 1.335-1.335s-.534-1.335-1.335-1.335H6.673c-2.269 0-4.004 1.735-4.004 4.004v18.685c0 2.269 1.735 4.004 4.004 4.004h5.339c.801 0 1.335-.534 1.335-1.335s-.534-1.335-1.335-1.335zm17.217-10.143c.133-.267.133-.667 0-1.068-.133-.133-.133-.267-.267-.4l-6.673-6.673c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l4.404 4.404H12.012c-.801 0-1.335.534-1.335 1.335s.534 1.335 1.335 1.335h12.813l-4.404 4.404a1.29 1.29 0 000 1.868c.267.267.667.4.934.4s.667-.133.934-.4l6.673-6.673c.133-.133.267-.267.267-.4z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M12.012 26.098H6.673c-.801 0-1.335-.534-1.335-1.335V6.078c0-.801.534-1.335 1.335-1.335h5.339c.801 0 1.335-.534 1.335-1.335s-.534-1.335-1.335-1.335H6.673c-2.269 0-4.004 1.735-4.004 4.004v18.685c0 2.269 1.735 4.004 4.004 4.004h5.339c.801 0 1.335-.534 1.335-1.335s-.534-1.335-1.335-1.335zm17.217-10.143c.133-.267.133-.667 0-1.068-.133-.133-.133-.267-.267-.4l-6.673-6.673c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l4.404 4.404H12.012c-.801 0-1.335.534-1.335 1.335s.534 1.335 1.335 1.335h12.813l-4.404 4.404a1.29 1.29 0 000 1.868c.267.267.667.4.934.4s.667-.133.934-.4l6.673-6.673c.133-.133.267-.267.267-.4z"/></svg>');
}

#main .woocommerce-MyAccount-content {
  width: 73%;
}

.woocommerce-form-register .woocommerce-privacy-policy-text {
  margin-bottom: 2.656rem;
}

.woocommerce-account .woocommerce h3,
.woocommerce-account .woocommerce h2,
.woocommerce-order-received .woocommerce h3,
.woocommerce-order-received .woocommerce h2,
.woocommerce-order-details h3,
.woocommerce-order-details h2,
.woocommerce-customer-details h3,
.woocommerce-customer-details h2 {
  font-size: 2rem;
  line-height: 2;
}

.woocommerce table {
  border-spacing: 0;
}

.woocommerce table dl,
.woocommerce table .wc-item-meta {
  margin-left: 0;
  padding-left: 0;
  font-size: 1.376rem;
}

.woocommerce table dl dt,
.woocommerce table dl strong,
.woocommerce table .wc-item-meta dt,
.woocommerce table .wc-item-meta strong {
  font-weight: normal;
}

.woocommerce table.my_account_orders,
.woocommerce table.woocommerce-table--order-downloads,
.woocommerce table.woocommerce-table--order-details {
  border-radius: var(--bloglo-normal-radius);
  font-size: inherit;
}

.woocommerce table.my_account_orders th,
.woocommerce table.my_account_orders td,
.woocommerce table.woocommerce-table--order-downloads th,
.woocommerce table.woocommerce-table--order-downloads td,
.woocommerce table.woocommerce-table--order-details th,
.woocommerce table.woocommerce-table--order-details td {
  padding: 1.5rem 2rem;
  font-weight: 400 !important;
}

.woocommerce table.my_account_orders strong,
.woocommerce table.woocommerce-table--order-downloads strong,
.woocommerce table.woocommerce-table--order-details strong {
  font-weight: 400 !important;
}

.woocommerce table.my_account_orders thead th,
.woocommerce table.woocommerce-table--order-downloads thead th,
.woocommerce table.woocommerce-table--order-details thead th {
  color: #232323;
  font-weight: 400;
  font-size: 1.2rem;
  background-color: rgba(190, 190, 190, 0.2);
}

.woocommerce table .button {
  height: 4rem !important;
  padding: 0 3.2rem !important;
  font-size: 1.3rem !important;
}

.woocommerce-Addresses header.title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.6rem;
}

.woocommerce-Addresses header.title a.edit {
  margin-left: 2rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 1.3rem;
}

.widget.woocommerce ul.product_list_widget li .product-title {
  display: block;
  padding-top: 0.4rem;
  line-height: 1.5;
}

.widget.woocommerce
  .woocommerce-widget-layered-nav-list
  .woocommerce-widget-layered-nav-list__item
  a,
.widget.woocommerce .wc-layered-nav-rating a {
  position: relative;
  padding-left: 2.7rem;
}

.widget.woocommerce
  .woocommerce-widget-layered-nav-list
  .woocommerce-widget-layered-nav-list__item
  a:before,
.widget.woocommerce .wc-layered-nav-rating a:before {
  content: "" !important;
  border: 0.2rem solid currentColor;
  border-radius: var(--bloglo-normal-radius);
  background: none;
  clear: none;
  cursor: pointer;
  line-height: 0;
  outline: 0;
  padding: 0 !important;
  text-align: center;
  vertical-align: middle;
  height: 1.7rem;
  width: 1.7rem;
  min-width: 1.7rem;
  opacity: 0.65;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.widget.woocommerce
  .woocommerce-widget-layered-nav-list
  .woocommerce-widget-layered-nav-list__item
  a:after,
.widget.woocommerce .wc-layered-nav-rating a:after {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M0 17.824l3.203-3.203 8.008 8.008L28.828 5.012l3.203 3.203-20.82 20.82z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M0 17.824l3.203-3.203 8.008 8.008L28.828 5.012l3.203 3.203-20.82 20.82z"/></svg>');
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0.3rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.1rem;
  opacity: 0;
}

.widget.woocommerce
  .woocommerce-widget-layered-nav-list
  .woocommerce-widget-layered-nav-list__item.chosen
  a,
.widget.woocommerce .wc-layered-nav-rating.chosen a {
  font-weight: 600;
}

.widget.woocommerce
  .woocommerce-widget-layered-nav-list
  .woocommerce-widget-layered-nav-list__item.chosen
  a:before,
.widget.woocommerce
  .woocommerce-widget-layered-nav-list
  .woocommerce-widget-layered-nav-list__item.chosen
  a:after,
.widget.woocommerce .wc-layered-nav-rating.chosen a:before,
.widget.woocommerce .wc-layered-nav-rating.chosen a:after {
  opacity: 1;
}

.widget.woocommerce .wc-layered-nav-rating a {
  -webkit-transition: none !important;
  transition: none !important;
  min-height: 2.5rem;
}

.widget.woocommerce .wc-layered-nav-rating a .star-rating {
  position: relative;
  top: -0.1rem;
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.widget.woocommerce .product-categories li .count,
.widget.woocommerce .wc-layered-nav-term .count,
.widget.woocommerce .wc-layered-nav-rating em {
  font-style: normal;
  margin-left: auto;
  -js-display: inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0.3rem;
  background-color: rgba(145, 145, 145, 0.1);
  min-width: 2.4rem;
  min-height: 2.4rem;
  padding: 0.5rem 0.8rem;
  border-radius: 4rem;
  line-height: 1;
  font-size: 1.386rem;
  font-weight: 400;
  pointer-events: none;
}

.widget.woocommerce .wc-layered-nav-rating a:hover em,
.widget.woocommerce .wc-layered-nav-rating.chosen a em {
  color: #fff;
}

.widget.woocommerce .product-categories li,
.widget.woocommerce .wc-layered-nav-term {
  position: relative;
}

.widget.woocommerce .product-categories li a,
.widget.woocommerce .wc-layered-nav-term a {
  display: block;
}

.widget.woocommerce .product-categories li a:hover ~ .count,
.widget.woocommerce .wc-layered-nav-term a:hover ~ .count {
  color: #fff;
}

.widget.woocommerce .product-categories li.chosen > .count,
.widget.woocommerce .wc-layered-nav-term.chosen > .count {
  color: #fff;
}

.widget.woocommerce .product-categories li.current-cat > a {
  font-weight: 600;
}

.widget.woocommerce .product-categories li.current-cat > .count {
  color: #fff;
}

.widget.woocommerce .reviewer {
  font-size: 1.386rem;
}

.woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item,
.widget_rating_filter .wc-layered-nav-rating {
  padding: 0;
  margin-bottom: 1rem;
}

.woocommerce-widget-layered-nav-list
  .woocommerce-widget-layered-nav-list__item:last-child,
.widget_rating_filter .wc-layered-nav-rating:last-child {
  margin-bottom: 0;
}

.woocommerce ul.cart_list li,
.woocommerce ul.product_list_widget li {
  padding: 0;
  margin-bottom: 2rem;
}

.woocommerce ul.cart_list li:last-child,
.woocommerce ul.product_list_widget li:last-child {
  margin-bottom: 0;
}

.woocommerce ul.cart_list li ins,
.woocommerce ul.product_list_widget li ins {
  text-decoration: none;
  font-weight: 500;
}

.woocommerce ul.cart_list li del,
.woocommerce ul.product_list_widget li del {
  opacity: 1;
  color: #afafaf;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  float: left;
  width: 7rem;
  margin-left: 0;
  margin-right: 1.5rem;
  border-radius: var(--bloglo-normal-radius);
}

.woocommerce ul.cart_list li a,
.woocommerce ul.product_list_widget li a {
  font-weight: 500;
}

.woocommerce ul.cart_list li a:hover .product-title,
.woocommerce ul.product_list_widget li a:hover .product-title {
  color: inherit;
}

.woocommerce ul.cart_list li .product-title,
.woocommerce ul.product_list_widget li .product-title {
  color: #232323;
}

.woocommerce ul.cart_list li .star-rating,
.woocommerce ul.product_list_widget li .star-rating {
  display: block;
  margin: 0.5rem 0;
}

.woocommerce ul.product_list_widget li .product-title {
  color: inherit;
}

.woocommerce .widget_price_filter .ui-slider-horizontal {
  height: 0.2rem;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background-color: #e4e4e4;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.woocommerce .widget_price_filter .price_slider_amount {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3rem;
}

.woocommerce .widget_price_filter .price_label {
  font-size: 1.4rem;
  margin-left: auto;
}

.woocommerce .widget_price_filter .price_label span {
  color: #232323;
  font-weight: 500;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  -webkit-transition: -webkit-transform 0.35s
    cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1),
    -webkit-transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 1.6rem;
  height: 1.6rem;
  z-index: 2;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-transform-origin: center top;
  -ms-transform-origin: center top;
  transform-origin: center top;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-50%, -50%, 0);
  transform: scale3d(0, 0, 0) translate3d(-50%, -50%, 0);
  width: 1.6rem;
  height: 1.6rem;
  opacity: 0.125;
  z-index: 1;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  border-radius: 50%;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -webkit-transform: scale3d(1.35, 1.35, 1.35) translate3d(0, -50%, 0);
  transform: scale3d(1.35, 1.35, 1.35) translate3d(0, -50%, 0);
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle:active:after {
  -webkit-transform: scale3d(0, 0, 0) translate3d(-50%, -50%, 0) !important;
  transform: scale3d(0, 0, 0) translate3d(-50%, -50%, 0) !important;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle:hover:after {
  -webkit-transform: scale3d(2, 2, 1) translate3d(-50%, -50%, 0);
  transform: scale3d(2, 2, 1) translate3d(-50%, -50%, 0);
}

.woocommerce .widget_layered_nav_filters ul {
  margin-top: -0.8rem;
}

.woocommerce .widget_layered_nav_filters ul li {
  display: inline-block;
}

.woocommerce .widget_layered_nav_filters ul a {
  color: inherit;
  display: block;
  float: left;
  text-transform: none;
  letter-spacing: 0;
  border-radius: var(--bloglo-normal-radius);
  padding: 0.8rem 1.2rem;
  margin: 0.8rem 0.8rem 0 0;
  background-color: rgba(145, 145, 145, 0.1);
  line-height: 1;
  font-size: 1.486rem;
}

.woocommerce .widget_layered_nav_filters ul a:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M17.884 15.421l7.074-7.074c.534-.534.534-1.335 0-1.868s-1.335-.534-1.868 0l-7.074 7.074-7.074-7.074c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l7.074 7.074-7.074 7.074a1.29 1.29 0 000 1.868c.267.267.534.4.934.4s.667-.133.934-.4l7.074-7.074 7.074 7.074c.267.267.667.4.934.4s.667-.133.934-.4a1.29 1.29 0 000-1.868l-7.074-7.074z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M17.884 15.421l7.074-7.074c.534-.534.534-1.335 0-1.868s-1.335-.534-1.868 0l-7.074 7.074-7.074-7.074c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l7.074 7.074-7.074 7.074a1.29 1.29 0 000 1.868c.267.267.534.4.934.4s.667-.133.934-.4l7.074-7.074 7.074 7.074c.267.267.667.4.934.4s.667-.133.934-.4a1.29 1.29 0 000-1.868l-7.074-7.074z"/></svg>');
  vertical-align: middle !important;
}

.woocommerce .widget_layered_nav_filters ul a:hover,
.woocommerce .widget_layered_nav_filters ul a:hover:before {
  color: #fff !important;
}

.woocommerce #colophon .widget_layered_nav_filters ul a:before {
  bottom: 0 !important;
}

.woocommerce .widget_shopping_cart .woocommerce-mini-cart__total,
.woocommerce.widget_shopping_cart .woocommerce-mini-cart__total {
  margin-top: 2rem;
}

.woocommerce .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
  border-top: 0.4rem double rgba(190, 190, 190, 0.3);
  padding: 1.3rem 0 1.4rem 0;
  text-align: center;
}

.woocommerce .widget_shopping_cart .total strong,
.woocommerce.widget_shopping_cart .total strong {
  font-weight: 500;
}

.woocommerce .widget_shopping_cart .total .amount,
.woocommerce .widget_shopping_cart .total .tax_label,
.woocommerce.widget_shopping_cart .total .amount,
.woocommerce.widget_shopping_cart .total .tax_label {
  font-weight: 600;
}

.woocommerce .widget_shopping_cart .bloglo-cart-buttons,
.woocommerce.widget_shopping_cart .bloglo-cart-buttons {
  border-top: 0.4rem double rgba(190, 190, 190, 0.3);
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.woocommerce .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li {
  color: #232323;
  padding-left: 0;
  position: relative;
}

.woocommerce .widget_shopping_cart .cart_list li a.remove,
.woocommerce.widget_shopping_cart .cart_list li a.remove {
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
  top: 0.3rem;
  right: 1.2rem;
  left: auto;
  color: rgba(0, 0, 0, 0) !important;
  width: 2.4rem;
  height: 2.4rem;
  background: none;
}

.woocommerce .widget_shopping_cart .cart_list li a.remove:after,
.woocommerce.widget_shopping_cart .cart_list li a.remove:after {
  content: "";
  background-color: rgba(190, 190, 190, 0.2);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  border-radius: 50%;
}

.woocommerce .widget_shopping_cart .cart_list li a.remove:before,
.woocommerce.widget_shopping_cart .cart_list li a.remove:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M17.884 15.421l7.074-7.074c.534-.534.534-1.335 0-1.868s-1.335-.534-1.868 0l-7.074 7.074-7.074-7.074c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l7.074 7.074-7.074 7.074a1.29 1.29 0 000 1.868c.267.267.534.4.934.4s.667-.133.934-.4l7.074-7.074 7.074 7.074c.267.267.667.4.934.4s.667-.133.934-.4a1.29 1.29 0 000-1.868l-7.074-7.074z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M17.884 15.421l7.074-7.074c.534-.534.534-1.335 0-1.868s-1.335-.534-1.868 0l-7.074 7.074-7.074-7.074c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l7.074 7.074-7.074 7.074a1.29 1.29 0 000 1.868c.267.267.534.4.934.4s.667-.133.934-.4l7.074-7.074 7.074 7.074c.267.267.667.4.934.4s.667-.133.934-.4a1.29 1.29 0 000-1.868l-7.074-7.074z"/></svg>');
  content: "";
  height: 1.2rem;
  width: 1.2rem;
  z-index: 2;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.woocommerce .widget_shopping_cart .cart_list li a.remove:hover:after,
.woocommerce.widget_shopping_cart .cart_list li a.remove:hover:after {
  -webkit-transform: scale3d(1.25, 1.25, 1.25);
  transform: scale3d(1.25, 1.25, 1.25);
}

.woocommerce .widget_shopping_cart .cart_list li:hover a.remove,
.woocommerce.widget_shopping_cart .cart_list li:hover a.remove {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.woocommerce .widget_shopping_cart .cart_list li .quantity,
.woocommerce.widget_shopping_cart .cart_list li .quantity {
  font-size: 1.3rem;
  display: block;
}

.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color {
  margin-bottom: -0.7rem;
}

.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color li {
  margin-bottom: 0.7rem;
}

.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color li a {
  position: relative;
  border-radius: 50%;
  height: 2.8rem;
  width: 2.8rem;
  border: none;
  margin: 0 0.7rem 0 0;
  overflow: visible;
  text-indent: -999.9rem;
}

.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color li a:before {
  content: "";
  background-color: inherit;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  border-radius: 50%;
  z-index: -1;
}

.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color li a:hover,
.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color li.chosen a {
  -webkit-box-shadow: inset 0 0 0 0.3rem #ffffff;
  box-shadow: inset 0 0 0 0.3rem #ffffff;
}

.woocommerce
  #secondary
  .widget_layered_nav
  ul.yith-wcan-color
  li
  a:hover:before,
.woocommerce
  #secondary
  .widget_layered_nav
  ul.yith-wcan-color
  li.chosen
  a:before {
  -webkit-transform: scale3d(1.15, 1.15, 1.15);
  transform: scale3d(1.15, 1.15, 1.15);
}

.woocommerce
  #secondary
  .widget_layered_nav
  ul.yith-wcan-color
  li.chosen
  a:after {
  line-height: 2.8rem;
  text-align: center;
  content: "\e9fd";
  color: #fff;
  text-indent: 0;
  font-size: 1.2rem;
}

.woocommerce .cart-collaterals h2,
.woocommerce .cart-collaterals h3,
.woocommerce .cart-collaterals h4,
.woocommerce .cart-collaterals h5 {
  margin-top: 0;
}

.woocommerce table.wishlist_table {
  font-size: inherit;
}

.woocommerce table.wishlist_table td.product-add-to-cart a {
  -js-display: flex !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.woocommerce table.wishlist_table a.remove {
  line-height: 2.24rem;
}

.yith-wcwl-share h4.yith-wcwl-share-title {
  margin: 2.5rem 0 1.5rem 0;
}

.wishlist-title {
  display: none;
}

.woocommerce div.product span.onsale {
  font-size: inherit;
  top: 2rem;
  left: 2rem;
}

.woocommerce div.product div.summary,
.woocommerce div.product div.images {
  margin-bottom: 0;
}

.woocommerce div.product .entry-summary p {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.woocommerce div.product .entry-summary > *:last-child {
  margin-bottom: 0;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  margin-bottom: 2rem;
}

.woocommerce div.product .woocommerce-product-gallery {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.woocommerce
  div.product
  .woocommerce-product-gallery
  .flex-direction-nav
  .flex-prev,
.woocommerce
  div.product
  .woocommerce-product-gallery
  .flex-direction-nav
  .flex-next {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 2.5rem - 6.2rem);
  z-index: 2;
  width: 5rem;
  height: 5rem;
  background-color: #fff;
  border-radius: 50%;
}

.woocommerce
  div.product
  .woocommerce-product-gallery
  .flex-direction-nav
  .flex-prev {
  left: -2.5rem;
  right: auto;
}

.woocommerce
  div.product
  .woocommerce-product-gallery
  .flex-direction-nav
  .flex-next {
  right: -2.5rem;
  left: auto;
}

.woocommerce div.product .woocommerce-product-gallery .flex-direction-nav svg {
  width: 2.2rem;
}

.woocommerce
  div.product
  .woocommerce-product-gallery
  .flex-direction-nav
  svg
  path {
  fill: #232323 !important;
}

.woocommerce div.product h1.product_title {
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.woocommerce div.product .woocommerce-product-rating {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.5rem;
  margin-bottom: 1.6rem;
}

.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link {
  font-size: 1.3rem;
  margin-left: 1.2rem;
  position: relative;
  top: 0.1rem;
}

.woocommerce
  div.product
  .woocommerce-product-rating
  .woocommerce-review-link:hover {
  text-decoration: underline;
}

.woocommerce div.product form.cart {
  margin: 3rem 0;
}

.woocommerce div.product form.cart div.quantity {
  margin-right: 1.4rem;
}

.woocommerce div.product form.cart .variations {
  margin: 0;
  margin: 0 0 2rem 0;
}

.woocommerce div.product form.cart .variations select {
  min-width: auto;
  width: 100%;
  max-width: 22rem;
}

.woocommerce div.product form.cart .variations td {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

.woocommerce div.product form.cart .variations td.label {
  width: 10.1rem;
  line-height: 1.5;
  vertical-align: middle;
}

.woocommerce div.product form.cart .variations td.label label {
  font-weight: 500;
  margin-bottom: 0;
}

.woocommerce div.product form.cart .variations_button {
  margin-top: 3rem;
}

.woocommerce div.product form.cart .woocommerce-variation p {
  margin-top: 0;
}

.woocommerce div.product form.cart .woocommerce-variation-description p {
  margin-top: 0;
  font-size: 1.4rem;
}

.woocommerce div.product form.cart .woocommerce-variation-availability {
  margin-bottom: 0;
}

.woocommerce div.product form.cart .woocommerce-variation-price .price {
  font-size: 2rem;
}

.woocommerce div.product form.cart .group_table {
  margin-top: 0;
}

.woocommerce div.product form.cart .group_table td {
  vertical-align: middle;
  padding: 1rem 0;
}

.woocommerce div.product form.cart .group_table td:first-child {
  min-width: 16rem;
  padding-left: 2rem;
  text-align: left;
}

.woocommerce div.product form.cart .group_table td label {
  margin: 0;
  font-weight: 500;
  font-size: inherit;
}

.woocommerce div.product form.cart .group_table td del {
  color: #afafaf;
  opacity: 1;
}

.woocommerce div.product form.cart .group_table td ins {
  text-decoration: none;
}

.woocommerce div.product form.cart .group_table .button {
  background: none;
  padding: 0 !important;
  min-height: auto;
  height: auto !important;
  font-size: inherit !important;
  padding: 0;
  color: inherit;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  margin-top: 0.7rem;
  font-size: 2.6rem;
}

.woocommerce div.product p.price del,
.woocommerce div.product p.price ins,
.woocommerce div.product span.price del,
.woocommerce div.product span.price ins {
  font-weight: 400;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  opacity: 0.75;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  text-decoration: none;
}

.woocommerce div.product p.stock {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
}

.woocommerce div.product .bloglo-wc-product-wrap {
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.woocommerce div.product .bloglo-wc-product-wrap .images {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  margin-right: 5rem;
  max-width: 100%;
}

.woocommerce div.product .bloglo-wc-product-wrap .images,
.woocommerce div.product .bloglo-wc-product-wrap .entry-summary {
  width: auto !important;
  float: none !important;
}

.woocommerce div.product .bloglo-wc-product-wrap .entry-summary {
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.woocommerce
  div.product
  div.images.woocommerce-product-gallery--columns-6
  .flex-control-thumbs
  li {
  width: 16.67%;
  -ms-flex-preferred-size: 16.67%;
  flex-basis: 16.67%;
}

.woocommerce
  div.product
  div.images.woocommerce-product-gallery--columns-5
  .flex-control-thumbs
  li {
  width: 20%;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
}

.woocommerce
  div.product
  div.images.woocommerce-product-gallery--columns-4
  .flex-control-thumbs
  li {
  width: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}

.woocommerce
  div.product
  div.images.woocommerce-product-gallery--columns-3
  .flex-control-thumbs
  li {
  width: 33%;
  -ms-flex-preferred-size: 33%;
  flex-basis: 33%;
}

.woocommerce
  div.product
  div.images.woocommerce-product-gallery--columns-2
  .flex-control-thumbs
  li {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.woocommerce div.product div.images .flex-control-thumbs {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.8rem;
  margin-left: -0.2rem;
  margin-right: -0.2rem;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  padding: 0.2rem 0.2rem;
  clear: none !important;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
  opacity: 1;
  padding: 0.2rem;
  border: 0.2rem solid rgba(0, 0, 0, 0);
  display: block;
  border-radius: var(--bloglo-normal-radius);
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  max-width: initial;
}

.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__wrapper
  > div {
  border-radius: var(--bloglo-normal-radius);
}

.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__wrapper
  > div
  img {
  border-radius: var(--bloglo-normal-radius);
}

.woocommerce div.product .woocommerce-tabs {
  margin-bottom: 4rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  text-align: center;
}

.woocommerce div.product .woocommerce-tabs ul.tabs:before,
.woocommerce div.product .woocommerce-tabs ul.tabs:after {
  position: absolute;
  bottom: auto;
  right: auto;
  top: 0;
  display: block;
  width: 100%;
  height: 0.1rem;
  border: 0 !important;
  background: rgba(190, 190, 190, 0.3);
  content: "";
}

.woocommerce div.product .woocommerce-tabs ul.tabs:after {
  top: auto;
  bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none;
  background: none;
  border-radius: 0;
  margin: 0 1.6rem;
  padding: 2rem 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:not(.active) a:hover {
  color: #232323;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active > a:before {
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1) translateZ(0.1rem);
  transform: scale(1, 1) translateZ(0.1rem);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
  content: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-weight: 500;
}

.woocommerce div.product .woocommerce-tabs .wc-tab {
  background-color: rgba(190, 190, 190, 0.2);
  padding: 4rem 0;
  margin-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs .wc-tab > .bloglo-container {
  max-width: 80rem;
}

.woocommerce
  div.product
  .woocommerce-tabs
  .wc-tab
  > .bloglo-container
  > h2:first-child {
  display: none;
}

.woocommerce div.product .woocommerce-tabs .wc-tab > .bloglo-container p {
  margin-top: 0;
}

.woocommerce
  div.product
  .woocommerce-tabs
  .wc-tab
  > .bloglo-container
  p:last-child {
  margin-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs table.shop_attributes {
  background: #ffffff;
  font-size: 1.4rem;
}

.woocommerce div.product .woocommerce-tabs table.shop_attributes tr {
  background: none;
}

.woocommerce div.product .woocommerce-tabs table.shop_attributes th,
.woocommerce div.product .woocommerce-tabs table.shop_attributes td {
  padding: 1rem 2rem;
  border-top: none;
  border-bottom: none;
}

.woocommerce div.product .woocommerce-tabs table.shop_attributes th {
  border-right: 0.1rem solid rgba(190, 190, 190, 0.3);
}

.woocommerce div.product .woocommerce-tabs table.shop_attributes td {
  font-style: normal;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
  background: none;
  text-indent: 0;
  z-index: 1;
  text-indent: -9999.9rem;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger img {
  display: none !important;
}

.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__trigger:before {
  border-radius: 50%;
  content: "";
  border: none !important;
  z-index: 1;
  -webkit-transition: var(--bloglo-transition-primary);
  transition: var(--bloglo-transition-primary);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__trigger:hover:before {
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
}

.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__trigger:after {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M29.229 2.876a1.6 1.6 0 00-.667-.667c-.133-.133-.4-.133-.534-.133H20.02c-.801 0-1.335.534-1.335 1.335s.534 1.335 1.335 1.335h4.805l-7.074 7.074a1.29 1.29 0 000 1.868c.267.267.667.4.934.4s.667-.133.934-.4l7.074-7.074v4.805c0 .801.534 1.335 1.335 1.335s1.335-.534 1.335-1.335V3.411c0-.133 0-.4-.133-.534zm-16.817 14.28L5.338 24.23v-4.805c0-.801-.534-1.335-1.335-1.335s-1.335.534-1.335 1.335v8.008c0 .133 0 .4.133.534.133.267.4.534.667.667.133.133.4.133.534.133h8.008c.801 0 1.335-.534 1.335-1.335s-.534-1.335-1.335-1.335H7.205l7.074-7.074c.534-.534.534-1.335 0-1.868s-1.335-.534-1.868 0z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M29.229 2.876a1.6 1.6 0 00-.667-.667c-.133-.133-.4-.133-.534-.133H20.02c-.801 0-1.335.534-1.335 1.335s.534 1.335 1.335 1.335h4.805l-7.074 7.074a1.29 1.29 0 000 1.868c.267.267.667.4.934.4s.667-.133.934-.4l7.074-7.074v4.805c0 .801.534 1.335 1.335 1.335s1.335-.534 1.335-1.335V3.411c0-.133 0-.4-.133-.534zm-16.817 14.28L5.338 24.23v-4.805c0-.801-.534-1.335-1.335-1.335s-1.335.534-1.335 1.335v8.008c0 .133 0 .4.133.534.133.267.4.534.667.667.133.133.4.133.534.133h8.008c.801 0 1.335-.534 1.335-1.335s-.534-1.335-1.335-1.335H7.205l7.074-7.074c.534-.534.534-1.335 0-1.868s-1.335-.534-1.868 0z"/></svg>');
  color: #fff;
  z-index: 2;
  text-indent: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.woocommerce div.product .related.products > h2,
.woocommerce div.product .upsells > h2 {
  margin-top: 5rem;
  margin-bottom: 2.4rem;
  text-align: center;
}

.woocommerce div.product .product_meta {
  padding: 1.6rem 0;
  margin: 4rem 0;
  border-top: 0.1rem solid rgba(190, 190, 190, 0.3);
  border-bottom: 0.1rem solid rgba(190, 190, 190, 0.3);
}

.woocommerce div.product .product_meta .bloglo-woo-meta-title {
  min-width: 11rem;
  display: inline-block;
}

.woocommerce div.product .product_meta > span {
  display: block;
}

.woocommerce div.product .product_meta > span a:hover {
  color: inherit;
}

.woocommerce div.product #reviews #comments {
  margin-top: 0;
}

.woocommerce div.product #reviews #comments h2 {
  margin-top: 0;
  margin-bottom: 4rem;
  text-align: center;
}

.woocommerce div.product #reviews #comments .woocommerce-noreviews {
  text-align: center;
  margin-top: -rem(30px);
}

.woocommerce div.product #reviews #comments ol.commentlist li img.avatar {
  display: block;
  position: absolute;
  z-index: 1;
  left: 2.5rem;
  top: 2.5rem;
  max-width: 50px;
  border-radius: 50%;
  width: initial;
  height: initial;
  padding: 0;
  border: none;
}

.woocommerce div.product #reviews #comments ol.commentlist li .comment-text {
  padding: 0;
  border: none;
  margin: 0;
}

.woocommerce
  div.product
  #reviews
  #comments
  ol.commentlist
  li
  .comment-text
  p:last-child {
  margin-bottom: 0;
}

.woocommerce
  div.product
  #reviews
  #comments
  ol.commentlist
  li
  .comment-text
  p.meta {
  font-size: 1.6rem;
}

.woocommerce
  div.product
  #reviews
  #comments
  ol.commentlist
  li
  .comment-text
  p.meta
  strong {
  font-weight: 500;
  font-size: 1.6rem;
  color: #232323;
}

.woocommerce
  div.product
  #reviews
  #comments
  ol.commentlist
  li
  .comment-text
  p.meta
  span,
.woocommerce
  div.product
  #reviews
  #comments
  ol.commentlist
  li
  .comment-text
  p.meta
  em,
.woocommerce
  div.product
  #reviews
  #comments
  ol.commentlist
  li
  .comment-text
  p.meta
  time {
  font-size: 1.376rem;
}

.woocommerce div.product #reviews #comments .comment_container {
  background-color: #fff;
}

.woocommerce div.product #reviews #respond {
  margin-top: 4rem;
}

.woocommerce div.product #reviews #respond p {
  margin: 0 0 2rem;
}

.woocommerce div.product #reviews #respond p:last-child {
  margin-bottom: 0;
}

.woocommerce div.product #reviews .comment-form-rating {
  margin-bottom: 2.4rem;
}

.woocommerce div.product #reviews .comment-form-rating label {
  display: block;
}

.woocommerce div.product #reviews .comment-form-rating .stars {
  display: inline-block;
  line-height: 1;
  font-size: 2rem;
  margin-bottom: 0 !important;
}

.woocommerce div.product #reviews .comment-form-rating .stars a {
  width: 1.84rem;
}

.woocommerce div.product #reviews #reply-title {
  margin-bottom: 2rem;
}

.woocommerce div.product .woocommerce-pagination ul {
  border: none;
}

.woocommerce div.product .woocommerce-pagination ul li {
  border: none;
}

.woocommerce div.product .woocommerce-pagination ul li a,
.woocommerce div.product .woocommerce-pagination ul li span {
  text-transform: uppercase;
  -js-display: inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.2rem;
  width: 4rem;
  height: 4rem;
  text-align: center;
  vertical-align: middle;
  color: inherit;
  border-radius: var(--bloglo-normal-radius);
  font-weight: 600;
  border: 0.2rem solid rgba(0, 0, 0, 0);
  background: none !important;
}

.term-description {
  margin-bottom: 3.2rem;
  padding-bottom: 1.6rem;
  border-bottom: 0.1rem solid rgba(190, 190, 190, 0.3);
}

ul#uploadFileList {
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 2rem;
}

ul#uploadFileList li {
  margin: 0;
  padding: 0 0.6rem 0 0;
}

ul#uploadFileList li img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--bloglo-normal-radius);
}

#do_uploadFile {
  display: inline-block;
  width: auto;
  margin-left: 1rem;
  min-height: 3rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #232323;
  text-shadow: none;
  color: #fff !important;
  border: none;
  border-radius: var(--bloglo-normal-radius);
  padding: 0 1.4rem;
}

.review_thumbnail {
  padding: 0.4rem 0;
}

.review_thumbnail a {
  margin: 0.6rem 0.6rem 0.6rem 0;
  vertical-align: middle;
  display: inline-block;
}

.review_thumbnail a img.ywar_thumbnail {
  display: block;
  padding: 0;
  border-radius: var(--bloglo-normal-radius);
}

.ywar_review_count {
  margin-left: 1.6rem;
}

.ywar_review_row span {
  color: #232323 !important;
}

.reviews_bar {
  margin: 2rem 0;
}

.yith-woocommerce-advanced-reviews #submit {
  font-size: inherit !important;
}

.wishlist_table .add_to_cart,
a.add_to_wishlist.button.alt {
  -js-display: inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: var(--bloglo-normal-radius);
  padding: 0.8rem 3.2rem;
  font-weight: 500;
  font-size: 1.3rem;
  min-height: 4rem;
}

.term-description > h1:first-child,
.term-description > h2:first-child,
.term-description > h3:first-child,
.term-description > h4:first-child,
.term-description > h5:first-child,
.term-description > h6:first-child,
.term-description > p:first-child,
.term-description > ul:first-child,
.term-description > ol:first-child {
  margin-top: 0;
}

.term-description > h1:last-child,
.term-description > h2:last-child,
.term-description > h3:last-child,
.term-description > h4:last-child,
.term-description > h5:last-child,
.term-description > h6:last-child,
.term-description > p:last-child,
.term-description > ul:last-child,
.term-description > ol:last-child {
  margin-bottom: 0;
}

.wc-block-grid__products {
  list-style: none;
}

.pswp__caption__center {
  text-align: center;
}

@media screen and (max-width: 480px) {
  .woocommerce ul.products[class*="columns-"] li.product,
  .woocommerce-page ul.products[class*="columns-"] li.product {
    width: 100%;
    float: none;
  }
}

@media screen and (max-width: 768px) {
  .woocommerce #yith-wcwl-form table.shop_table tr,
  .woocommerce .woocommerce-cart-form table.shop_table tr,
  .woocommerce .woocommerce-checkout-review-order table.shop_table tr {
    border-bottom: solid 0.3rem rgba(190, 190, 190, 0.2);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .woocommerce #yith-wcwl-form table.shop_table tr:last-child,
  .woocommerce .woocommerce-cart-form table.shop_table tr:last-child,
  .woocommerce
    .woocommerce-checkout-review-order
    table.shop_table
    tr:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .woocommerce .coupon {
    background: rgba(190, 190, 190, 0.2);
    padding: 1.6rem !important;
    border-radius: var(--bloglo-normal-radius);
    margin-bottom: 3.2rem;
  }

  .woocommerce .product-remove {
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }

  .woocommerce .product-remove:before {
    display: inline-block !important;
    content: attr(data-title) ": ";
    font-weight: 700;
    float: left;
  }

  .woocommerce .product-remove a {
    margin-left: auto;
  }

  .woocommerce table.shop_table_responsive tr:nth-child(2n) td,
  .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
    background: none;
  }

  .woocommerce ul.products {
    margin-top: 0;
  }
}

@media screen and (max-width: 960px) {
  #main .woocommerce-MyAccount-navigation {
    width: 100%;
    margin-bottom: 3rem;
  }

  .woocommerce div.product .woocommerce-product-gallery .flex-direction-nav {
    display: none;
  }

  .woocommerce div.product .bloglo-wc-product-wrap .images {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 599px) {
  .woocommerce div.product #reviews #comments ol.commentlist li img.avatar {
    display: none;
  }
}
woocommerce.min.css000064400000314215152425774300010376 0ustar00.woocommerce #yith-wcwl-form table.shop_table thead th,
.woocommerce .woocommerce-cart-form table.shop_table thead th,
.woocommerce .woocommerce-checkout-review-order table.shop_table thead th,
.woocommerce table.my_account_orders thead th,
.woocommerce table.woocommerce-table--order-details thead th,
.woocommerce table.woocommerce-table--order-downloads thead th {
  text-transform: uppercase;
  letter-spacing: 0.16rem;
}
.woocommerce div.product .woocommerce-tabs:after,
.woocommerce div.product .woocommerce-tabs:before,
.woocommerce div.product form.cart .variations_button:after,
.woocommerce div.product form.cart .variations_button:before {
  content: "";
  display: table;
  clear: both;
}
.bloglo-header-widget__cart .dropdown-item {
  position: absolute;
  right: -1.5rem;
  top: 100%;
  z-index: 9;
  border-top-width: 0.2rem;
  border-top-style: solid;
}
.bloglo-header-widget__cart .dropdown-item:after {
  bottom: 100%;
  right: 1.6rem;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  margin-left: -0.7rem;
  border-color: transparent;
  border-width: 0.7rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
#page .woocommerce-error a:not(.button):not(.bloglo-btn),
#page .woocommerce-info a:not(.button):not(.bloglo-btn),
#page .woocommerce-message a:not(.button):not(.bloglo-btn),
#page .woocommerce-error .button.wc-forward,
#page .woocommerce-info .button.wc-forward,
#page .woocommerce-message .button.wc-forward,
.woocommerce form.login .lost_password a,
.woocommerce form.register .lost_password a,
.shipping-calculator-button,
.bloglo-woo-before-shop #bloglo-orderby,
#add_payment_method #payment ul.payment_methods .about_paypal,
.woocommerce-cart #payment ul.payment_methods .about_paypal,
.woocommerce-checkout #payment ul.payment_methods .about_paypal,
#main .woocommerce-MyAccount-navigation ul li a,
.woocommerce-Addresses header.title a.edit,
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  position: relative;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}
#page .woocommerce-error a:not(.bloglo-btn):not(.button):before,
#page .woocommerce-info a:not(.bloglo-btn):not(.button):before,
#page .woocommerce-message a:not(.bloglo-btn):not(.button):before,
#page .woocommerce-error .button.wc-forward:before,
#page .woocommerce-info .button.wc-forward:before,
#page .woocommerce-message .button.wc-forward:before,
.woocommerce form.login .lost_password a:before,
.woocommerce form.register .lost_password a:before,
.shipping-calculator-button:before,
.bloglo-woo-before-shop #bloglo-orderby:before,
#add_payment_method #payment ul.payment_methods .about_paypal:before,
.woocommerce-cart #payment ul.payment_methods .about_paypal:before,
.woocommerce-checkout #payment ul.payment_methods .about_paypal:before,
#main .woocommerce-MyAccount-navigation ul li a:before,
.woocommerce-Addresses header.title a.edit:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  border-radius: var(--bloglo-normal-radius);
  background: currentColor;
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1) translateZ(0.1rem);
  transform: scale(0, 1) translateZ(0.1rem);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.35s
    cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1),
    -webkit-transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: scale;
}
#page .woocommerce-error a:not(.bloglo-btn):not(.button):hover:before,
#page .woocommerce-info a:not(.bloglo-btn):not(.button):hover:before,
#page .woocommerce-message a:not(.bloglo-btn):not(.button):hover:before,
#page .woocommerce-error .button.wc-forward:hover:before,
#page .woocommerce-info .button.wc-forward:hover:before,
#page .woocommerce-message .button.wc-forward:hover:before,
.woocommerce form.login .lost_password a:hover:before,
.woocommerce form.register .lost_password a:hover:before,
.shipping-calculator-button:hover:before,
.bloglo-woo-before-shop #bloglo-orderby:hover:before,
#add_payment_method #payment ul.payment_methods .about_paypal:hover:before,
.woocommerce-cart #payment ul.payment_methods .about_paypal:hover:before,
.woocommerce-checkout #payment ul.payment_methods .about_paypal:hover:before,
#main .woocommerce-MyAccount-navigation ul li a:hover:before,
.woocommerce-Addresses header.title a.edit:hover:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover:before {
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1) translateZ(0.1rem);
  transform: scale(1, 1) translateZ(0.1rem);
}
.woocommerce .show-on-hover,
.woocommerce ul.products li.product.product-category > a:after,
.woocommerce .widget_shopping_cart .cart_list li a.remove:after,
.woocommerce.widget_shopping_cart .cart_list li a.remove:after,
.woocommerce .widget_shopping_cart .cart_list li a.remove:before,
.woocommerce.widget_shopping_cart .cart_list li a.remove:before,
.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color li a:before,
.woocommerce
  #secondary
  .widget_layered_nav
  ul.yith-wcan-color
  li.chosen
  a:after,
.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__trigger:before,
.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__trigger:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bloglo-empty-cart,
.bloglo-cart-item-title,
.woocommerce form.checkout_coupon p,
.woocommerce .show-on-hover,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .woocommerce-loop-category__title h3,
#ship-to-different-address,
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment,
#add_payment_method #payment div.form-row,
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row,
#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods,
#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box,
.woocommerce-checkout-review-order h3,
#main .woocommerce-MyAccount-navigation ul,
#main .woocommerce-MyAccount-navigation ul li,
.woocommerce-Addresses header.title h3,
.woocommerce .widget_layered_nav_filters ul li,
.woocommerce .widget_shopping_cart p,
.woocommerce.widget_shopping_cart p,
.yith-wcwl-share,
.yith-wcwl-share ul,
.woocommerce div.product .woocommerce-product-rating .star-rating,
.woocommerce div.product .woocommerce-tabs ul.tabs,
.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce div.product .woocommerce-tabs table.shop_attributes,
.woocommerce div.product .woocommerce-tabs table.shop_attributes td p,
.woocommerce div.product .woocommerce-pagination ul li a,
.woocommerce div.product .woocommerce-pagination ul li span {
  margin: 0;
  padding: 0;
}
.woocommerce #respond input#submit:after,
.woocommerce a.button:after,
.woocommerce button.button:after,
.woocommerce input.button:after,
.bloglo-header-widget__cart .wc-cart-widget-header,
.bloglo-cart-item,
.bloglo-cart-item-meta,
.bloglo-cart-buttons,
.woocommerce form.checkout_coupon,
.woocommerce .quantity .bloglo-woo-minus,
.woocommerce .quantity .bloglo-woo-plus,
.bloglo-woo-before-shop,
#ship-to-different-address,
#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice),
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice),
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice),
#add_payment_method
  #payment
  ul.payment_methods
  li.payment_method_paypal:not(.woocommerce-notice),
.woocommerce-cart
  #payment
  ul.payment_methods
  li.payment_method_paypal:not(.woocommerce-notice),
.woocommerce-checkout
  #payment
  ul.payment_methods
  li.payment_method_paypal:not(.woocommerce-notice),
#main .woocommerce-MyAccount-navigation ul li,
.woocommerce-Addresses header.title,
.widget.woocommerce .wc-layered-nav-rating a,
.woocommerce .widget_price_filter .price_slider_amount,
.woocommerce
  div.product
  .woocommerce-product-gallery
  .flex-direction-nav
  .flex-prev,
.woocommerce
  div.product
  .woocommerce-product-gallery
  .flex-direction-nav
  .flex-next,
.woocommerce div.product .woocommerce-product-rating,
.woocommerce div.product div.images .flex-control-thumbs {
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#main .wc-block-grid__products,
#main .woocommerce-MyAccount-navigation ul li,
.woocommerce div.product .woocommerce-product-gallery .flex-direction-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}
.widget.woocommerce a {
  text-decoration: none;
}
.bloglo-cart-item,
.bloglo-cart-item .bloglo-remove-cart-item,
.woocommerce .star-rating span:before,
.woocommerce ul.products li.product.product-category > a:after,
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-category__title span,
.woocommerce ul.products li.product.outofstock a img,
.woocommerce ul.products li.product a.bloglo-btn,
.woocommerce ul.products li.product a.added_to_cart,
.widget.woocommerce .product-categories li .count,
.widget.woocommerce .wc-layered-nav-term .count,
.widget.woocommerce .wc-layered-nav-rating em,
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle:after,
.woocommerce .widget_shopping_cart .cart_list li a.remove:after,
.woocommerce.widget_shopping_cart .cart_list li a.remove:after,
.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color li a,
.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color li a:before,
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
.woocommerce div.product .woocommerce-pagination ul li a,
.woocommerce div.product .woocommerce-pagination ul li span {
  -webkit-transition: var(--bloglo-transition-primary);
  transition: var(--bloglo-transition-primary);
}
.woocommerce .cart_totals table.shop_table {
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}
.woocommerce
  #secondary
  .widget_layered_nav
  ul.yith-wcan-color
  li.chosen
  a:after {
  display: inline-block;
  fill: currentColor;
  width: auto;
}
#page .woocommerce-error:before,
#page .woocommerce-info:before,
#page .woocommerce-message:before,
.woocommerce ul.products li.product .added_to_cart:before,
#main .woocommerce-MyAccount-navigation ul li:before,
.widget.woocommerce
  .woocommerce-widget-layered-nav-list
  .woocommerce-widget-layered-nav-list__item
  a:after,
.widget.woocommerce .wc-layered-nav-rating a:after,
.woocommerce .widget_layered_nav_filters ul a:before,
.woocommerce .widget_shopping_cart .cart_list li a.remove:before,
.woocommerce.widget_shopping_cart .cart_list li a.remove:before,
.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__trigger:after {
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: currentColor;
  width: 1.6rem;
  height: 1.6rem;
}
.woocommerce #respond input#submit:after,
.woocommerce a.button:after,
.woocommerce button.button:after,
.woocommerce input.button:after {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  right: 0 !important;
  top: 50% !important;
  padding: 0 2.4rem 0 0;
  position: absolute;
  opacity: 0;
  margin-top: -0.8rem;
  width: 1.6rem;
  height: 1.6rem;
}
.woocommerce #respond input#submit.loading:after,
.woocommerce #respond input#submit.added:after,
.woocommerce a.button.loading:after,
.woocommerce a.button.added:after,
.woocommerce button.button.loading:after,
.woocommerce button.button.added:after,
.woocommerce input.button.loading:after,
.woocommerce input.button.added:after {
  opacity: 1;
}
.woocommerce #respond input#submit.loading:before,
.woocommerce #respond input#submit.loading:after,
.woocommerce a.button.loading:before,
.woocommerce a.button.loading:after,
.woocommerce button.button.loading:before,
.woocommerce button.button.loading:after,
.woocommerce input.button.loading:before,
.woocommerce input.button.loading:after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  text-indent: -99999.9rem;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-animation: si_bounce 1.6s infinite ease-in-out;
  animation: si_bounce 1.6s infinite ease-in-out;
  margin-right: 1em !important;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 100%;
  margin-top: -0.8rem;
}
.woocommerce #respond input#submit.loading:after,
.woocommerce a.button.loading:after,
.woocommerce button.button.loading:after,
.woocommerce input.button.loading:after {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.woocommerce p.cart-empty {
  margin-top: 0;
}
.woocommerce .blockOverlay {
  background-color: #fff !important;
  opacity: 0.75 !important;
}
.woocommerce.add_to_cart_inline .add_to_cart_button {
  min-width: 17rem;
  margin-right: 1.5rem !important;
}
.woocommerce.add_to_cart_inline .added_to_cart {
  text-transform: capitalize;
}
.woocommerce.add_to_cart_inline ins {
  text-decoration: none;
  margin-right: 1.5rem;
}
.bloglo-header-widget__cart .dropdown-item {
  font-size: 1.3rem;
  background-color: #fff;
  width: 34rem;
  color: #232323;
}
.bloglo-header-widget__cart .wc-cart-widget-header {
  padding: 1.3rem 2rem 1.4rem;
  border-bottom: 0.1rem solid rgba(190, 190, 190, 0.3);
}
.bloglo-header-widget__cart .wc-cart-widget-header > span:first-child {
  margin-right: auto;
}
.bloglo-header-widget__cart .wc-cart-widget-header > span.bloglo-cart-subtotal {
  margin-left: auto;
  font-weight: 500;
}
.bloglo-header-widget__cart
  .wc-cart-widget-header
  > span.bloglo-cart-subtotal
  span {
  font-weight: 600;
}
.bloglo-header-widget__cart .woocommerce-placeholder {
  border: none;
}
.bloglo-tsp-header .bloglo-header-widget__cart .bloglo-cart-count {
  border: none;
}
.bloglo-tsp-header .bloglo-header-widgets p.bloglo-cart-item-title a,
.bloglo-tsp-header
  .bloglo-header-widgets
  .bloglo-cart-item
  a.bloglo-remove-cart-item {
  color: inherit;
}
.animate-pop {
  -webkit-animation: 0.5s ease-in-out 0.1s normal both 1 si_bounce_in;
  animation: 0.5s ease-in-out 0.1s normal both 1 si_bounce_in;
}
.wc-cart-widget-content {
  padding: 0.6rem 0;
  max-height: 40rem;
  overflow-y: auto;
}
.bloglo-empty-cart {
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.5;
  padding: 2.5rem;
}
.bloglo-empty-cart p {
  margin-top: 0.88rem;
  margin-bottom: 0;
}
.bloglo-cart-item {
  overflow: hidden;
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 4rem 1rem 2rem;
}
.bloglo-cart-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.bloglo-cart-item:hover .bloglo-remove-cart-item {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.bloglo-cart-item.removing .bloglo-cart-image,
.bloglo-cart-item.removing .bloglo-cart-item-details {
  opacity: 0.3;
}
.bloglo-cart-item .bloglo-remove-cart-item {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  -webkit-transform: translateX(3rem);
  -ms-transform: translateX(3rem);
  transform: translateX(3rem);
  opacity: 0;
}
.bloglo-cart-item .bloglo-remove-cart-item:hover .bloglo-icon {
  color: inherit;
}
.bloglo-cart-item .bloglo-remove-cart-item .bloglo-icon {
  height: 1.4rem !important;
}
.bloglo-cart-image {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
}
.bloglo-cart-image img {
  width: 6.5rem;
  margin-right: 2rem;
  height: auto;
  display: block;
  border-radius: var(--bloglo-normal-radius);
}
.bloglo-cart-item-quantity {
  font-weight: 500;
}
.bloglo-cart-item-quantity:after {
  content: "\00d7";
  display: inline-block;
  font-weight: 400;
  padding: 0 0.4rem;
}
.bloglo-cart-item-meta {
  margin-top: 0.4rem;
}
.bloglo-cart-item-meta ins {
  text-decoration: none;
}
.bloglo-cart-item-meta ins .amount {
  font-weight: 500;
}
.bloglo-cart-item-meta del {
  opacity: 1;
  color: #afafaf;
}
.bloglo-cart-buttons {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.6rem 2rem;
  border-top: 0.1rem solid rgba(190, 190, 190, 0.3);
}
.bloglo-cart-buttons > a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.bloglo-cart-buttons > a:first-child {
  margin-right: 1rem;
}
.bloglo-cart-item-title {
  font-size: 1.6rem;
  line-height: 1.25;
  color: #232323;
  font-weight: 500;
}
@-webkit-keyframes si_bounce_in {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  20% {
    -webkit-transform: scale(1.4, 1.4);
    transform: scale(1.4, 1.4);
  }
  50% {
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  85% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes si_bounce_in {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  20% {
    -webkit-transform: scale(1.4, 1.4);
    transform: scale(1.4, 1.4);
  }
  50% {
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  85% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
#page .woocommerce-notices-wrapper {
  margin-top: -2rem;
  margin-bottom: 4rem;
}
#page .woocommerce-notices-wrapper:empty {
  display: none;
}
#page .woocommerce-error,
#page .woocommerce-info,
#page .woocommerce-message {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1rem;
  border-radius: 0 0.3rem 0.3rem 0;
  border-top: none;
  border-left-width: 0.4rem;
  border-left-style: solid;
  padding: 1.28rem 3.2rem 1.28rem 5rem;
  line-height: 1.5;
}
#page .woocommerce-error:before,
#page .woocommerce-info:before,
#page .woocommerce-message:before {
  left: 2rem;
  top: 1.6rem;
  height: 2rem;
  width: 2rem;
  line-height: 1;
}
#page .woocommerce-error a:not(.button):not(.bloglo-btn),
#page .woocommerce-info a:not(.button):not(.bloglo-btn),
#page .woocommerce-message a:not(.button):not(.bloglo-btn) {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#page .woocommerce-error .button,
#page .woocommerce-info .button,
#page .woocommerce-message .button {
  padding: 0;
  line-height: inherit;
  background: none;
  color: inherit;
  min-height: auto;
  border: none;
}
#page .woocommerce-error .button.wc-forward,
#page .woocommerce-info .button.wc-forward,
#page .woocommerce-message .button.wc-forward {
  font-weight: 500;
  text-transform: capitalize;
}
#page .woocommerce-info {
  border-left-color: #1e85be;
}
#page .woocommerce-info:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M16.016.74C7.875.74 1.335 7.28 1.335 15.421s6.54 14.681 14.681 14.681 14.681-6.54 14.681-14.681S24.157.74 16.016.74zm0 26.693c-6.673 0-12.012-5.339-12.012-12.012S9.343 3.409 16.016 3.409s12.012 5.339 12.012 12.012-5.339 12.012-12.012 12.012zm0-13.346c-.801 0-1.335.534-1.335 1.335v5.339c0 .801.534 1.335 1.335 1.335s1.335-.534 1.335-1.335v-5.339c0-.801-.534-1.335-1.335-1.335zm-.935-4.938c-.267.267-.4.534-.4.934s.133.667.4.934.534.4.934.4.667-.133.934-.4.4-.534.4-.934-.133-.667-.4-.934a1.29 1.29 0 00-1.868 0z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M16.016.74C7.875.74 1.335 7.28 1.335 15.421s6.54 14.681 14.681 14.681 14.681-6.54 14.681-14.681S24.157.74 16.016.74zm0 26.693c-6.673 0-12.012-5.339-12.012-12.012S9.343 3.409 16.016 3.409s12.012 5.339 12.012 12.012-5.339 12.012-12.012 12.012zm0-13.346c-.801 0-1.335.534-1.335 1.335v5.339c0 .801.534 1.335 1.335 1.335s1.335-.534 1.335-1.335v-5.339c0-.801-.534-1.335-1.335-1.335zm-.935-4.938c-.267.267-.4.534-.4.934s.133.667.4.934.534.4.934.4.667-.133.934-.4.4-.534.4-.934-.133-.667-.4-.934a1.29 1.29 0 00-1.868 0z"/></svg>');
}
#page .woocommerce-error {
  border-left-color: #b81c23;
}
#page .woocommerce-error:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M16.016.74C7.875.74 1.335 7.28 1.335 15.421s6.54 14.681 14.681 14.681 14.681-6.54 14.681-14.681S24.157.74 16.016.74zm0 26.693c-6.673 0-12.012-5.339-12.012-12.012S9.343 3.409 16.016 3.409s12.012 5.339 12.012 12.012-5.339 12.012-12.012 12.012zm4.938-16.95a1.29 1.29 0 00-1.868 0l-3.07 3.07-3.07-3.07c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l3.07 3.07-3.07 3.07a1.29 1.29 0 000 1.868c.267.267.534.4.934.4s.667-.133.934-.4l3.07-3.07 3.07 3.07c.267.267.667.4.934.4s.667-.133.934-.4a1.29 1.29 0 000-1.868l-3.07-3.07 3.07-3.07a1.29 1.29 0 000-1.868z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M16.016.74C7.875.74 1.335 7.28 1.335 15.421s6.54 14.681 14.681 14.681 14.681-6.54 14.681-14.681S24.157.74 16.016.74zm0 26.693c-6.673 0-12.012-5.339-12.012-12.012S9.343 3.409 16.016 3.409s12.012 5.339 12.012 12.012-5.339 12.012-12.012 12.012zm4.938-16.95a1.29 1.29 0 00-1.868 0l-3.07 3.07-3.07-3.07c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l3.07 3.07-3.07 3.07a1.29 1.29 0 000 1.868c.267.267.534.4.934.4s.667-.133.934-.4l3.07-3.07 3.07 3.07c.267.267.667.4.934.4s.667-.133.934-.4a1.29 1.29 0 000-1.868l-3.07-3.07 3.07-3.07a1.29 1.29 0 000-1.868z"/></svg>');
}
#page .woocommerce-message {
  border-left-color: #8fae1b;
}
#page .woocommerce-message:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M0 17.824l3.203-3.203 8.008 8.008L28.828 5.012l3.203 3.203-20.82 20.82z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M0 17.824l3.203-3.203 8.008 8.008L28.828 5.012l3.203 3.203-20.82 20.82z"/></svg>');
}
.woocommerce ul#shipping_method li {
  margin-bottom: 0.96rem;
}
.woocommerce ul#shipping_method li input {
  margin: 0 1.12rem 0 0;
  vertical-align: middle;
}
.woocommerce .woocommerce-customer-details address {
  border-right-width: 0.1rem;
  border-radius: var(--bloglo-normal-radius);
  border-color: rgba(190, 190, 190, 0.3);
  border-bottom-width: 0.1rem;
  padding: 1.2rem 2rem;
}
.woocommerce form.checkout_coupon {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 3rem;
  border: 0.2rem dashed rgba(190, 190, 190, 0.3);
  border-radius: var(--bloglo-normal-radius);
  margin-top: 1.5rem;
}
.woocommerce form.checkout_coupon p {
  width: auto;
}
.woocommerce form.checkout_coupon p.form-row-first {
  margin-right: 1.5rem;
}
.woocommerce form.checkout_coupon p:first-child {
  text-align: center;
  margin-bottom: 1.6rem;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.woocommerce form.checkout_coupon .button {
  text-transform: capitalize;
}
.woocommerce #customer_login h2 {
  margin-top: 0;
}
.woocommerce #customer_login h2 form.login,
.woocommerce #customer_login h2 form.register {
  margin: 0;
  min-height: 35.1rem;
  padding: 3rem 10%;
}
.woocommerce form.login,
.woocommerce form.register {
  padding: 0;
  margin-top: 1.5rem;
  border: none;
  max-width: 60rem;
}
.woocommerce form.login p:first-child,
.woocommerce form.register p:first-child {
  margin-top: 0;
}
.woocommerce form.login .form-row,
.woocommerce form.register .form-row {
  margin: 0 0 2.4rem;
}
.woocommerce form.login .form-row:last-child,
.woocommerce form.register .form-row:last-child {
  margin-bottom: 0;
}
.woocommerce form.login .button,
.woocommerce form.register .button {
  margin-right: 2rem;
}
.woocommerce form.login label span,
.woocommerce form.register label span {
  font-weight: 400;
}
.woocommerce form.login .woocommerce-form-login__rememberme,
.woocommerce form.register .woocommerce-form-login__rememberme {
  margin-top: 1.3rem;
  line-height: 1;
}
.woocommerce form.login .lost_password,
.woocommerce form.register .lost_password {
  font-size: 1.3rem;
  margin-bottom: -rem(15px);
  margin-top: 0;
}
.woocommerce form.login .form-row-first,
.woocommerce form.login .form-row-last,
.woocommerce form.register .form-row-first,
.woocommerce form.register .form-row-last {
  width: 49%;
}
.woocommerce strong {
  font-weight: 600;
}
.woocommerce .woocommerce-additional-fields {
  margin-top: 1.6rem;
}
.woocommerce .woocommerce-additional-fields textarea {
  min-height: 20rem;
}
.woocommerce .nav-links {
  text-align: center;
}
.woocommerce #yith-wcwl-form table.shop_table,
.woocommerce .woocommerce-cart-form table.shop_table,
.woocommerce .woocommerce-checkout-review-order table.shop_table {
  margin: 0;
  border: 0;
  border-radius: var(--bloglo-normal-radius);
  color: #232323;
  border-spacing: 0;
}
.woocommerce #yith-wcwl-form table.shop_table a,
.woocommerce .woocommerce-cart-form table.shop_table a,
.woocommerce .woocommerce-checkout-review-order table.shop_table a {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.woocommerce
  #yith-wcwl-form
  table.shop_table
  a:not(.bloglo-woo-plus):not(.bloglo-woo-minus):not(.bloglo-btn):not(
    .remove_from_wishlist
  ),
.woocommerce
  .woocommerce-cart-form
  table.shop_table
  a:not(.bloglo-woo-plus):not(.bloglo-woo-minus):not(.bloglo-btn):not(
    .remove_from_wishlist
  ),
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  a:not(.bloglo-woo-plus):not(.bloglo-woo-minus):not(.bloglo-btn):not(
    .remove_from_wishlist
  ) {
  color: inherit;
}
.woocommerce #yith-wcwl-form table.shop_table thead,
.woocommerce .woocommerce-cart-form table.shop_table thead,
.woocommerce .woocommerce-checkout-review-order table.shop_table thead {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.032rem;
}
.woocommerce #yith-wcwl-form table.shop_table thead th,
.woocommerce .woocommerce-cart-form table.shop_table thead th,
.woocommerce .woocommerce-checkout-review-order table.shop_table thead th {
  font-size: 1.2rem;
  font-weight: 400;
  padding: 2rem 0;
  border: 0 !important;
}
.woocommerce #yith-wcwl-form table.shop_table thead th:first-child,
.woocommerce .woocommerce-cart-form table.shop_table thead th:first-child,
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  thead
  th:first-child {
  border-radius: 0.3rem 0 0 0;
}
.woocommerce #yith-wcwl-form table.shop_table thead th:last-child,
.woocommerce .woocommerce-cart-form table.shop_table thead th:last-child,
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  thead
  th:last-child {
  border-radius: 0 0.3rem 0 0;
}
.woocommerce #yith-wcwl-form table.shop_table th,
.woocommerce #yith-wcwl-form table.shop_table td,
.woocommerce .woocommerce-cart-form table.shop_table th,
.woocommerce .woocommerce-cart-form table.shop_table td,
.woocommerce .woocommerce-checkout-review-order table.shop_table th,
.woocommerce .woocommerce-checkout-review-order table.shop_table td {
  font-weight: 400;
  border: none;
  text-align: center;
}
.woocommerce #yith-wcwl-form table.shop_table th:first-child,
.woocommerce #yith-wcwl-form table.shop_table td:first-child,
.woocommerce .woocommerce-cart-form table.shop_table th:first-child,
.woocommerce .woocommerce-cart-form table.shop_table td:first-child,
.woocommerce .woocommerce-checkout-review-order table.shop_table th:first-child,
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  td:first-child {
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: left;
  border-left: 0.3rem solid rgba(190, 190, 190, 0.2);
}
.woocommerce #yith-wcwl-form table.shop_table th:last-child,
.woocommerce #yith-wcwl-form table.shop_table td:last-child,
.woocommerce .woocommerce-cart-form table.shop_table th:last-child,
.woocommerce .woocommerce-cart-form table.shop_table td:last-child,
.woocommerce .woocommerce-checkout-review-order table.shop_table th:last-child,
.woocommerce .woocommerce-checkout-review-order table.shop_table td:last-child {
  padding-right: 2rem;
  padding-left: 2rem;
  border-right-width: 0.3rem;
}
.woocommerce #yith-wcwl-form table.shop_table td,
.woocommerce .woocommerce-cart-form table.shop_table td,
.woocommerce .woocommerce-checkout-review-order table.shop_table td {
  padding: 1.6rem 0;
  border-right: 0.1rem solid rgba(190, 190, 190, 0.2);
  border-bottom: 0.1rem solid rgba(190, 190, 190, 0.2);
}
.woocommerce #yith-wcwl-form table.shop_table tr:nth-last-child(2) td,
.woocommerce .woocommerce-cart-form table.shop_table tr:nth-last-child(2) td {
  border-bottom-width: 0.3rem;
  border-bottom-color: rgba(190, 190, 190, 0.2);
}
.woocommerce
  #yith-wcwl-form
  table.shop_table
  tr:nth-last-child(2)
  td:first-child,
.woocommerce
  .woocommerce-cart-form
  table.shop_table
  tr:nth-last-child(2)
  td:first-child {
  border-radius: 0 0 0 0.3rem;
}
.woocommerce
  #yith-wcwl-form
  table.shop_table
  tr:nth-last-child(2)
  td:last-child,
.woocommerce
  .woocommerce-cart-form
  table.shop_table
  tr:nth-last-child(2)
  td:last-child {
  border-radius: 0 0 0.3rem 0;
}
.woocommerce #yith-wcwl-form table.shop_table tr:last-child td,
.woocommerce .woocommerce-cart-form table.shop_table tr:last-child td {
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  padding: 2rem 0 0;
}
.woocommerce .woocommerce-checkout-review-order table.shop_table th,
.woocommerce .woocommerce-checkout-review-order table.shop_table td {
  text-align: left;
}
.woocommerce .woocommerce-checkout-review-order table.shop_table tfoot tr td,
.woocommerce .woocommerce-checkout-review-order table.shop_table tfoot tr th {
  border-radius: 0 !important;
  background-color: transparent;
}
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  tfoot
  tr
  td:first-child,
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  tfoot
  tr
  th:first-child {
  border-left: 0.3rem solid rgba(190, 190, 190, 0.2) !important;
  border-bottom: 0.1rem solid rgba(190, 190, 190, 0.2) !important;
}
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  tfoot
  tr:last-child
  th:first-child {
  border-bottom-width: 0.3rem !important;
}
.woocommerce .woocommerce-checkout-review-order table.shop_table tfoot tr th {
  border-right: 0.1rem solid rgba(190, 190, 190, 0.2) !important;
}
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  tfoot
  tr:first-child
  td,
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  tfoot
  tr:first-child
  th {
  border-top: solid 1.5rem rgba(190, 190, 190, 0.2) !important;
}
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  tfoot
  tr:last-child
  td {
  border-bottom-width: 0.3rem;
  border-bottom-color: rgba(190, 190, 190, 0.2);
}
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  tfoot
  tr:last-child
  td:first-child {
  border-radius: 0 0 0 0.3rem;
}
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  tfoot
  tr:last-child
  td:last-child {
  border-radius: 0 0 0.3rem 0;
}
.woocommerce td.product-name img {
  display: block;
  width: 6.4rem;
  margin-right: 1.6rem;
  border-radius: var(--bloglo-normal-radius);
}
.woocommerce td.product-name a {
  display: inline-block;
  vertical-align: middle;
}
.woocommerce a.remove {
  height: 2.4rem;
  width: 2.4rem;
  line-height: 2.368rem;
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.woocommerce .product-remove {
  width: 3rem;
}
.woocommerce .product-remove .bloglo-icon {
  height: 1.6rem;
}
.woocommerce .quantity {
  display: inline-block;
  position: relative;
  padding-right: 2.8rem;
}
.woocommerce .quantity .bloglo-woo-minus,
.woocommerce .quantity .bloglo-woo-plus {
  text-decoration: none;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 2.8rem;
  height: 2.55rem;
  line-height: 2rem;
  border: 0.1rem solid rgba(190, 190, 190, 0.3);
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  color: inherit !important;
  font-size: 1.5rem;
  background-color: #fff;
}
.woocommerce .quantity .bloglo-woo-minus:hover,
.woocommerce .quantity .bloglo-woo-plus:hover {
  background-color: rgba(190, 190, 190, 0.2);
}
.woocommerce .quantity .bloglo-woo-plus {
  border-radius: 0 0.2rem 0 0;
}
.woocommerce .quantity .bloglo-woo-minus {
  top: auto;
  bottom: 0;
  height: 2.55rem;
  border-radius: 0 0 0.2rem 0;
}
.woocommerce .quantity .qty {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 0.1rem solid rgba(190, 190, 190, 0.3);
  border-right: none;
  height: 5rem;
  border-radius: 0.2rem 0 0 0.2rem;
  width: 6rem;
}
.woocommerce .quantity input[type="number"]::-webkit-inner-spin-button,
.woocommerce .quantity input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce .quantity input[type="number"] {
  -moz-appearance: textfield;
}
.woocommerce #coupon_code {
  margin-right: 1.5rem;
  min-width: 21rem;
  min-height: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.woocommerce .cart-collaterals {
  margin-top: 5rem;
}
.woocommerce .cart_totals h2,
.woocommerce .cross-sells > h4 {
  margin-bottom: 1.6rem;
}
.woocommerce .cart_totals {
  margin-left: auto;
  margin-bottom: 0;
}
.woocommerce .cart_totals table.shop_table {
  border: 0.3rem solid rgba(190, 190, 190, 0.2);
  border-radius: var(--bloglo-normal-radius);
}
.woocommerce .cart_totals table.shop_table th {
  border-right: 0.1rem solid rgba(190, 190, 190, 0.2);
}
.woocommerce .cart_totals table.shop_table td,
.woocommerce .cart_totals table.shop_table th {
  padding: 1.6rem 2rem;
}
.woocommerce .cart_totals table.shop_table th,
.woocommerce .cart_totals table.shop_table td {
  border-color: rgba(190, 190, 190, 0.2);
  border-top-width: 0.1rem;
  font-weight: 400;
}
.woocommerce .cart_totals table.shop_table .order-total th,
.woocommerce .cart_totals table.shop_table .order-total td {
  background-color: rgba(190, 190, 190, 0.2);
}
.woocommerce .show-on-hover {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear,
    -webkit-transform 5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: opacity 0.2s linear,
    -webkit-transform 5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: opacity 0.2s linear, transform 5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: opacity 0.2s linear, transform 5s cubic-bezier(0.25, 0.8, 0.25, 1),
    -webkit-transform 5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.woocommerce li.product:hover .show-on-hover {
  opacity: 1;
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
}
.woocommerce form .form-row {
  margin: 1.6rem 0;
  padding: 0;
}
.woocommerce form .form-row.notes {
  margin-bottom: 0;
}
.shipping-calculator-form > p:last-of-type {
  margin-bottom: 0;
}
.shipping-calculator-button {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  text-transform: capitalize;
}
.shipping-calculator-button:after {
  display: none;
}
.woocommerce-shipping-methods label,
.woocommerce-remove-coupon,
.woocommerce .optional {
  font-weight: 400;
}
.woocommerce-cart .return-to-shop:not(.bloglo-woo-return) {
  display: none !important;
}
#add_payment_method
  .cart-collaterals
  .cart_totals
  .woocommerce-shipping-destination,
.woocommerce-cart
  .cart-collaterals
  .cart_totals
  .woocommerce-shipping-destination,
.woocommerce-checkout
  .cart-collaterals
  .cart_totals
  .woocommerce-shipping-destination {
  font-size: 1.3rem;
  margin-top: 1.6rem;
  margin-bottom: 0.72rem;
}
.bloglo-woo-before-shop {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3rem;
}
.bloglo-woo-before-shop .woocommerce-ordering {
  position: relative;
  margin-left: auto;
}
.bloglo-woo-before-shop .woocommerce-ordering .orderby {
  width: 12.6rem;
}
.bloglo-woo-before-shop #bloglo-orderby {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.bloglo-woo-before-shop #bloglo-orderby > svg {
  height: 1.386rem;
  margin-left: 1rem;
}
.bloglo-woo-before-shop select {
  background-position: calc(100%) 1.28rem;
  background-color: rgba(0, 0, 0, 0);
  padding-left: 0;
  padding-right: 1.9rem;
  border: none;
  cursor: pointer;
  height: initial;
  line-height: inherit;
}
.bloglo-woo-before-shop select.custom-select-loaded {
  position: absolute;
  opacity: 0;
  z-index: 2;
}
.bloglo-woo-before-shop
  select.custom-select-loaded:hover
  ~ #bloglo-orderby:before {
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1) translateZ(0.1rem);
  transform: scale(1, 1) translateZ(0.1rem);
}
.woocommerce .star-rating {
  min-height: 1.6rem;
  position: relative;
  display: inline-block;
  font-size: 1.3rem !important;
  width: 7.7rem;
  max-width: 7.7rem;
  margin: 0.5rem 0 0;
  font-weight: 400 !important;
  letter-spacing: 0.2rem;
  white-space: nowrap;
}
.woocommerce .star-rating span {
  padding-top: 1.6rem;
}
.woocommerce .star-rating span:before {
  white-space: nowrap;
}
.woocommerce .star-rating:before {
  content: "\53\53\53\53\53";
  white-space: nowrap;
  opacity: 0.4;
}
.woocommerce .cross-sells ul.products {
  margin-top: 0;
}
.woocommerce ul.products {
  margin-top: -4rem;
  margin-bottom: 0;
}
.woocommerce ul.products li.product {
  position: relative;
  margin-top: 4rem;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 1rem;
  z-index: 0;
  border: 0.1rem solid rgba(190, 190, 190, 0.3);
  -webkit-transition: var(--bloglo-transition-primary);
  transition: var(--bloglo-transition-primary);
}
.woocommerce ul.products.columns-1 li.product:nth-child(1n),
.woocommerce-page ul.products.columns-1 li.product:nth-child(1n),
.woocommerce ul.products.columns-2 li.product:nth-child(2n),
.woocommerce-page ul.products.columns-2 li.product:nth-child(2n),
.woocommerce ul.products.columns-3 li.product:nth-child(3n),
.woocommerce-page ul.products.columns-3 li.product:nth-child(3n),
.woocommerce ul.products.columns-4 li.product:nth-child(4n),
.woocommerce-page ul.products.columns-4 li.product:nth-child(4n) {
  margin-right: 0;
}
.woocommerce ul.products.columns-1 li.product:nth-child(1n + 2),
.woocommerce-page ul.products.columns-1 li.product:nth-child(1n + 2),
.woocommerce ul.products.columns-2 li.product:nth-child(2n + 3),
.woocommerce-page ul.products.columns-2 li.product:nth-child(2n + 3),
.woocommerce ul.products.columns-3 li.product:nth-child(3n + 4),
.woocommerce-page ul.products.columns-3 li.product:nth-child(3n + 4),
.woocommerce ul.products.columns-4 li.product:nth-child(4n + 5),
.woocommerce-page ul.products.columns-4 li.product:nth-child(4n + 5) {
  clear: both;
}
.woocommerce ul.products li.product:hover,
.woocommerce ul.products li.product:focus-within {
  border-color: transparent;
  box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.08);
}
.woocommerce ul.products li.product .meta-wrap {
  padding: 1.9rem;
  padding-top: 0.3rem;
}
.woocommerce ul.products li.product .meta-wrap > * {
  margin: 1.2rem 0;
  display: block;
}
.woocommerce ul.products li.product .meta-wrap > .price {
  margin-top: 1.76rem;
  margin-bottom: 1.76rem;
  line-height: 1;
}
.woocommerce ul.products li.product .meta-wrap > .star-rating {
  line-height: 1;
}
.woocommerce
  ul.products
  li.product
  .meta-wrap
  > .bloglo-loop-product__category-wrap {
  font-size: 1.486rem;
}
.woocommerce ul.products li.product .meta-wrap > :first-child {
  margin-top: 0 !important;
}
.woocommerce ul.products li.product .meta-wrap > :last-child {
  margin-bottom: 0 !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__link h2,
.woocommerce ul.products li.product .bloglo-loop-product__category-wrap a,
.woocommerce ul.products li.product .price {
  padding: 0;
  line-height: 1.5;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link h2 {
  font-size: 1.707rem;
  font-family: inherit;
  font-style: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  font-weight: 500;
}
.woocommerce ul.products li.product .bloglo-loop-product__category-wrap {
  line-height: 1;
}
.woocommerce ul.products li.product .bloglo-loop-product__category-wrap a {
  line-height: inherit;
}
.woocommerce ul.products li.product .price {
  color: inherit;
  font-size: inherit;
  font-weight: 500;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  font-weight: 500;
}
.woocommerce ul.products li.product .price del {
  opacity: 1;
  color: #afafaf;
}
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product.product-category {
  border-radius: var(--bloglo-normal-radius);
}
.woocommerce ul.products li.product a img {
  margin: 0;
}
.woocommerce ul.products li.product .woocommerce-placeholder {
  border: none;
}
.woocommerce ul.products li.product.product-category {
  overflow: hidden;
}
.woocommerce ul.products li.product.product-category:hover > a:after {
  opacity: 1;
}
.woocommerce ul.products li.product.product-category > a {
  display: block;
}
.woocommerce ul.products li.product.product-category > a:after {
  content: "";
  z-index: 1;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#000),
    to(transparent)
  );
  background-image: linear-gradient(to top, #000 0%, transparent 100%);
  -webkit-transform: translateY(40%);
  -ms-transform: translateY(40%);
  transform: translateY(40%);
  opacity: 0.85;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  font-size: 1.6rem;
  color: #fff;
  z-index: 2;
  -webkit-transform: translate3d(0, 1.8rem, 0);
  transform: translate3d(0, 1.8rem, 0);
}
.woocommerce ul.products li.product .woocommerce-loop-category__title span {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 0.5rem;
  line-height: 1;
  -webkit-transform: translate3d(0, 1.3rem, 0);
  transform: translate3d(0, 1.3rem, 0);
  opacity: 0;
}
.woocommerce ul.products li.product:hover .woocommerce-loop-category__title {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.woocommerce
  ul.products
  li.product:hover
  .woocommerce-loop-category__title
  span {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title h3 {
  margin: 0;
}
.woocommerce ul.products li.product.outofstock a img {
  opacity: 0.5;
}
.woocommerce ul.products li.product.outofstock a img.show-on-hover {
  opacity: 0;
}
.woocommerce ul.products li.product.outofstock:hover .swap-on-hover a img {
  opacity: 0;
}
.woocommerce
  ul.products
  li.product.outofstock:hover
  .swap-on-hover
  a
  img.show-on-hover {
  opacity: 0.5;
}
.woocommerce ul.products li.product .added_to_cart {
  white-space: nowrap;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  background-color: #232323;
}
.woocommerce ul.products li.product .added_to_cart:hover {
  background-color: #2e353b;
}
.woocommerce ul.products li.product .added_to_cart:before {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 20 20"><path d="M3 2h14a1 1 0 011 1v14a1 1 0 01-1 1H3a1 1 0 01-1-1V3a1 1 0 011-1zM0 3a3 3 0 013-3h14a3 3 0 013 3v14a3 3 0 01-3 3H3a3 3 0 01-3-3zm10 7c-2.761 0-5-2.686-5-6h2c0 2.566 1.669 4 3 4s3-1.434 3-4h2c0 3.314-2.239 6-5 6z" fill="currentColor" fill-rule="evenodd"></path></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 20 20"><path d="M3 2h14a1 1 0 011 1v14a1 1 0 01-1 1H3a1 1 0 01-1-1V3a1 1 0 011-1zM0 3a3 3 0 013-3h14a3 3 0 013 3v14a3 3 0 01-3 3H3a3 3 0 01-3-3zm10 7c-2.761 0-5-2.686-5-6h2c0 2.566 1.669 4 3 4s3-1.434 3-4h2c0 3.314-2.239 6-5 6z" fill="currentColor" fill-rule="evenodd"></path></svg>');
  margin-right: 1rem;
}
.woocommerce ul.products li.product a.bloglo-btn,
.woocommerce ul.products li.product a.added_to_cart {
  position: absolute;
  z-index: 2;
  padding: 0.8rem 1.6rem;
  -webkit-transition-delay: 0.25s !important;
  transition-delay: 0.25s !important;
}
.woocommerce ul.products li.product .bloglo-product-thumb {
  margin-bottom: 1.5rem;
  border-radius: var(--bloglo-normal-radius);
  position: relative;
  overflow: hidden;
}
.woocommerce ul.products li.product .bloglo-product-thumb .bloglo-btn {
  -webkit-transform: translate3d(0, 3rem, 0);
  transform: translate3d(0, 3rem, 0);
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  opacity: 0;
  visibility: hidden;
  width: auto;
}
.woocommerce ul.products li.product:hover .bloglo-btn,
.woocommerce ul.products li.product .loading.bloglo-btn {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0 !important;
  transition-delay: 0 !important;
}
.woocommerce ul.products li.product .loading.bloglo-btn {
  opacity: 0.75;
}
.woocommerce ul.products li.product:hover .added_to_cart {
  -webkit-transform: translate3d(0, -120%, 0);
  transform: translate3d(0, -120%, 0);
  -webkit-transition-delay: 0 !important;
  transition-delay: 0 !important;
}
.woocommerce ul.products.yith-wcan-loading {
  margin-bottom: 4rem;
}
.woocommerce ul#shipping_method .amount {
  font-weight: 600;
}
.woocommerce-page .entry-content {
  font-size: 1.5rem;
}
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 0;
}
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
  min-width: initial;
  min-height: initial;
  min-height: auto;
  margin: 0;
  left: 1.2rem;
  top: 1.2rem;
  right: auto;
  bottom: auto;
  border-radius: var(--bloglo-full-radius);
  line-height: inherit;
  padding: 0.3rem 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  z-index: 2;
}
.woocommerce span.onsale.sold-out,
.woocommerce ul.products li.product .onsale.sold-out {
  background-color: #232323;
}
.woocommerce-checkout p.woocommerce-notice {
  margin-top: 0;
}
.woocommerce .woocommerce-checkout-review-order {
  padding: 0.2rem 2.7rem 3rem;
  background-color: rgba(190, 190, 190, 0.2);
  border-radius: 0 0 0.3rem 0.3rem;
}
.woocommerce .woocommerce-checkout-review-order strong,
.woocommerce
  .woocommerce-checkout-review-order
  .woocommerce-Price-amount.amount,
.woocommerce .woocommerce-checkout-review-order th,
.woocommerce .woocommerce-checkout-review-order td {
  font-weight: 400;
}
.woocommerce .woocommerce-checkout-review-order .order-total th {
  font-weight: 600 !important;
}
.woocommerce
  .woocommerce-checkout-review-order
  .order-total
  .woocommerce-Price-amount.amount {
  font-weight: 600;
}
.woocommerce .woocommerce-checkout-review-order table.shop_table {
  background-color: #fff;
  border-radius: 0.6rem;
  margin-bottom: 2rem;
}
.woocommerce .woocommerce-checkout-review-order table.shop_table thead th {
  background-color: #fff;
  border: 0.3rem solid rgba(190, 190, 190, 0.2) !important;
}
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  thead
  th:first-child {
  border-right: 0 !important;
}
.woocommerce
  .woocommerce-checkout-review-order
  table.shop_table
  thead
  th:last-child {
  border-left: 0 !important;
}
.woocommerce-checkout .col2-set .col-2 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
#order_review_heading {
  background-color: rgba(190, 190, 190, 0.2);
  text-align: center;
  padding: 2.4rem 0 1.6rem;
  margin-bottom: 0;
  position: relative;
  text-transform: capitalize;
  z-index: -1;
}
#order_review_heading:after {
  content: "";
  display: block;
  position: absolute;
  top: -2rem;
  right: 0;
  left: 0;
  height: 2rem;
  background: linear-gradient(
      -45deg,
      rgba(190, 190, 190, 0.2) 33.333%,
      transparent 33.333%,
      transparent 66.667%,
      rgba(190, 190, 190, 0.2) 66.667%
    ),
    linear-gradient(
      45deg,
      rgba(190, 190, 190, 0.2) 33.333%,
      transparent 33.333%,
      transparent 66.667%,
      rgba(190, 190, 190, 0.2) 66.667%
    );
  background-size: 1.2rem 4.4rem;
  background-position: 0 -2.2rem;
}
#ship-to-different-address {
  margin-bottom: 1.6rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.6rem 2rem;
  background-color: rgba(190, 190, 190, 0.2);
  color: inherit;
  border-radius: var(--bloglo-normal-radius);
  font-size: inherit;
}
#ship-to-different-address label {
  cursor: pointer;
  font-weight: 400;
  margin-bottom: 0;
}
.woocommerce-invalid #terms {
  outline: none;
  border-color: red;
}
.woocommerce-invalid #terms + span a {
  color: inherit;
}
#place_order {
  float: none;
  display: block;
  width: 100%;
  text-transform: capitalize;
  margin-top: 1.6rem;
}
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  border-radius: 0;
  background: none;
  border-bottom-color: rgba(190, 190, 190, 0.3);
}
#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  margin: 0 0.3rem 2rem;
  border-bottom: none;
}
#add_payment_method #payment ul.payment_methods .woocommerce-notice,
.woocommerce-cart #payment ul.payment_methods .woocommerce-notice,
.woocommerce-checkout #payment ul.payment_methods .woocommerce-notice {
  background-color: #fff;
}
#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice),
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice),
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice) {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  padding: 1.6rem 2rem;
  border-bottom: 0.3rem solid rgba(190, 190, 190, 0.2);
}
#add_payment_method
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal,
.woocommerce-cart
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal,
.woocommerce-checkout
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal {
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}
#add_payment_method
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal
  label,
.woocommerce-cart
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal
  label,
.woocommerce-checkout
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal
  label {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -js-display: inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#add_payment_method
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal
  img,
.woocommerce-cart
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal
  img,
.woocommerce-checkout
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice).payment_method_paypal
  img {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  margin-left: auto;
  padding-left: 2rem;
  max-height: 5rem;
}
#add_payment_method
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice)
  input,
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice) input,
.woocommerce-checkout
  #payment
  ul.payment_methods
  li:not(.woocommerce-notice)
  input {
  margin-right: 1.12rem;
}
#add_payment_method #payment ul.payment_methods .about_paypal,
.woocommerce-cart #payment ul.payment_methods .about_paypal,
.woocommerce-checkout #payment ul.payment_methods .about_paypal {
  line-height: inherit;
  font-size: 1.2rem;
  margin-left: 1.4rem;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#add_payment_method #payment ul.payment_methods li.woocommerce-info,
.woocommerce-cart #payment ul.payment_methods li.woocommerce-info,
.woocommerce-checkout #payment ul.payment_methods li.woocommerce-info {
  line-height: inherit;
}
#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  background: none;
  border-radius: 0;
  line-height: 1.6;
  font-size: 1.4rem;
  margin-top: 1rem;
}
#add_payment_method #payment div.payment_box p,
.woocommerce-cart #payment div.payment_box p,
.woocommerce-checkout #payment div.payment_box p {
  margin-top: 0;
}
#add_payment_method #payment div.payment_box:before,
.woocommerce-cart #payment div.payment_box:before,
.woocommerce-checkout #payment div.payment_box:before {
  display: none;
}
.woocommerce-checkout-review-order h3 {
  margin-top: 4rem;
  margin-bottom: 1.6rem;
  text-align: center;
}
.woocommerce-privacy-policy-text p {
  margin: 0 0.3rem 2rem;
  font-size: 1.4rem;
}
.woocommerce-checkout-review-order .woocommerce-form__label {
  font-weight: 500;
  margin: 2rem 0.3rem;
}
.woocommerce-password-strength {
  font-weight: 400;
  color: #232323;
}
.woocommerce-Button.button,
.woocommerce-address-fields .button {
  text-transform: capitalize;
}
.woocommerce-MyAccount-content > p:first-of-type {
  margin-top: 0;
}
.woocommerce-MyAccount-content > form > h3 {
  margin-top: 0;
  margin-bottom: 2rem;
}
.woocommerce-pagination .woocommerce-button {
  margin: 0 1rem !important;
}
#main .woocommerce-MyAccount-navigation {
  width: 25%;
}
#main .woocommerce-MyAccount-navigation ul li:before {
  content: "";
  display: inline-block;
  margin-right: 1.6rem;
}
#main .woocommerce-MyAccount-navigation ul li:first-child a {
  margin-top: 0;
}
#main .woocommerce-MyAccount-navigation ul li.is-active > a {
  font-weight: 500;
}
#main .woocommerce-MyAccount-navigation ul li a {
  display: inline-block;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  color: inherit;
  margin: 0.5rem 0;
  text-transform: capitalize;
}
#main
  .woocommerce-MyAccount-navigation
  ul
  li.woocommerce-MyAccount-navigation-link--dashboard:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M29.362 14.087h-5.339c-.534 0-1.068.4-1.201.934l-2.803 8.141-6.807-20.153c-.133-.534-.667-.934-1.201-.934s-1.068.4-1.201.934L7.073 14.086H2.669c-.801 0-1.335.534-1.335 1.335s.534 1.335 1.335 1.335h5.339c.534 0 1.068-.4 1.201-.934l2.803-8.141 6.807 20.286c.133.534.667.934 1.201.934s1.068-.4 1.201-.934l3.737-11.077h4.404c.801 0 1.335-.534 1.335-1.335s-.534-1.468-1.335-1.468z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M29.362 14.087h-5.339c-.534 0-1.068.4-1.201.934l-2.803 8.141-6.807-20.153c-.133-.534-.667-.934-1.201-.934s-1.068.4-1.201.934L7.073 14.086H2.669c-.801 0-1.335.534-1.335 1.335s.534 1.335 1.335 1.335h5.339c.534 0 1.068-.4 1.201-.934l2.803-8.141 6.807 20.286c.133.534.667.934 1.201.934s1.068-.4 1.201-.934l3.737-11.077h4.404c.801 0 1.335-.534 1.335-1.335s-.534-1.468-1.335-1.468z"/></svg>');
}
#main
  .woocommerce-MyAccount-navigation
  ul
  li.woocommerce-MyAccount-navigation-link--orders:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M28.428 5.545L17.751.206c-1.068-.534-2.402-.534-3.604 0L3.47 5.545a3.846 3.846 0 00-2.135 3.47v12.679c0 1.468.801 2.936 2.269 3.604l10.677 5.339c.534.267 1.201.4 1.735.4.667 0 1.201-.133 1.735-.4l10.677-5.339c1.335-.667 2.269-2.002 2.269-3.604V9.015c0-1.468-.801-2.803-2.269-3.47zm-12.946-3.07c.133-.133.4-.133.534-.133.267 0 .4 0 .534.133l9.876 4.938-3.737 1.868-10.41-5.205 3.203-1.602zm.534 10.144L5.606 7.414l3.737-1.868 10.41 5.205-3.737 1.868zM4.671 23.029c-.4-.267-.667-.801-.667-1.201V9.549l10.677 5.339v13.079l-10.01-4.938zm22.556 0l-9.876 4.938V14.888l10.677-5.339v12.279c0 .534-.267.934-.801 1.201z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M28.428 5.545L17.751.206c-1.068-.534-2.402-.534-3.604 0L3.47 5.545a3.846 3.846 0 00-2.135 3.47v12.679c0 1.468.801 2.936 2.269 3.604l10.677 5.339c.534.267 1.201.4 1.735.4.667 0 1.201-.133 1.735-.4l10.677-5.339c1.335-.667 2.269-2.002 2.269-3.604V9.015c0-1.468-.801-2.803-2.269-3.47zm-12.946-3.07c.133-.133.4-.133.534-.133.267 0 .4 0 .534.133l9.876 4.938-3.737 1.868-10.41-5.205 3.203-1.602zm.534 10.144L5.606 7.414l3.737-1.868 10.41 5.205-3.737 1.868zM4.671 23.029c-.4-.267-.667-.801-.667-1.201V9.549l10.677 5.339v13.079l-10.01-4.938zm22.556 0l-9.876 4.938V14.888l10.677-5.339v12.279c0 .534-.267.934-.801 1.201z"/></svg>');
}
#main
  .woocommerce-MyAccount-navigation
  ul
  li.woocommerce-MyAccount-navigation-link--downloads:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M20.42 21.16l-3.07 3.07v-8.809c0-.801-.534-1.335-1.335-1.335s-1.335.534-1.335 1.335v8.809l-3.07-3.07c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l5.339 5.339c.133.133.267.267.4.267.133.133.4.133.534.133s.4 0 .534-.133c.133-.133.267-.133.4-.267l5.339-5.339c.534-.534.534-1.335 0-1.868s-1.335-.534-1.868 0zm10.143-7.741c-1.468-2.002-3.87-3.337-6.54-3.337h-.667C21.354 4.21 15.081.873 9.075 2.475c-3.203.801-5.739 2.669-7.474 5.472C-.001 10.75-.534 13.953.266 17.023c.534 1.868 1.335 3.604 2.669 4.938.534.534 1.335.667 1.868.133s.667-1.335.133-1.868c-.934-1.068-1.735-2.402-2.002-3.87-.667-2.402-.267-4.938 1.068-7.074s3.337-3.737 5.739-4.271c4.938-1.335 10.143 1.735 11.344 6.673.133.534.667 1.068 1.335 1.068h1.602c1.735 0 3.337.801 4.404 2.269.801 1.201 1.201 2.536.934 4.004s-1.068 2.669-2.135 3.47c-.667.4-.801 1.201-.267 1.868.267.4.667.534 1.068.534.267 0 .534-.133.801-.267 1.735-1.201 2.936-3.07 3.337-5.205s-.4-4.137-1.602-6.006z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M20.42 21.16l-3.07 3.07v-8.809c0-.801-.534-1.335-1.335-1.335s-1.335.534-1.335 1.335v8.809l-3.07-3.07c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l5.339 5.339c.133.133.267.267.4.267.133.133.4.133.534.133s.4 0 .534-.133c.133-.133.267-.133.4-.267l5.339-5.339c.534-.534.534-1.335 0-1.868s-1.335-.534-1.868 0zm10.143-7.741c-1.468-2.002-3.87-3.337-6.54-3.337h-.667C21.354 4.21 15.081.873 9.075 2.475c-3.203.801-5.739 2.669-7.474 5.472C-.001 10.75-.534 13.953.266 17.023c.534 1.868 1.335 3.604 2.669 4.938.534.534 1.335.667 1.868.133s.667-1.335.133-1.868c-.934-1.068-1.735-2.402-2.002-3.87-.667-2.402-.267-4.938 1.068-7.074s3.337-3.737 5.739-4.271c4.938-1.335 10.143 1.735 11.344 6.673.133.534.667 1.068 1.335 1.068h1.602c1.735 0 3.337.801 4.404 2.269.801 1.201 1.201 2.536.934 4.004s-1.068 2.669-2.135 3.47c-.667.4-.801 1.201-.267 1.868.267.4.667.534 1.068.534.267 0 .534-.133.801-.267 1.735-1.201 2.936-3.07 3.337-5.205s-.4-4.137-1.602-6.006z"/></svg>');
}
#main
  .woocommerce-MyAccount-navigation
  ul
  li.woocommerce-MyAccount-navigation-link--edit-address:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M31.364.874a1.213 1.213 0 00-1.335 0l-8.675 5.072L11.211.874h-.133c-.133-.133-.267-.133-.4-.133s-.267 0-.534.133h-.133-.133L.536 6.213C.269 6.48.002 6.88.002 7.414v21.354c0 .534.267.934.667 1.201s.934.267 1.335 0l8.675-5.072 10.01 5.072c.267.133.4.133.667.133.133 0 .267 0 .4-.133h.266l9.342-5.339c.4-.267.667-.667.667-1.201V2.075c0-.534-.267-.934-.667-1.201zM12.012 4.21l8.008 4.004v18.418l-8.008-4.004V4.21zM2.669 8.214l6.673-3.87v18.285l-6.673 3.87V8.214zm26.693 14.414l-6.673 3.87V8.213l6.673-3.87v18.285z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M31.364.874a1.213 1.213 0 00-1.335 0l-8.675 5.072L11.211.874h-.133c-.133-.133-.267-.133-.4-.133s-.267 0-.534.133h-.133-.133L.536 6.213C.269 6.48.002 6.88.002 7.414v21.354c0 .534.267.934.667 1.201s.934.267 1.335 0l8.675-5.072 10.01 5.072c.267.133.4.133.667.133.133 0 .267 0 .4-.133h.266l9.342-5.339c.4-.267.667-.667.667-1.201V2.075c0-.534-.267-.934-.667-1.201zM12.012 4.21l8.008 4.004v18.418l-8.008-4.004V4.21zM2.669 8.214l6.673-3.87v18.285l-6.673 3.87V8.214zm26.693 14.414l-6.673 3.87V8.213l6.673-3.87v18.285z"/></svg>');
}
#main
  .woocommerce-MyAccount-navigation
  ul
  li.woocommerce-MyAccount-navigation-link--edit-account:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M21.354 18.091H10.677c-3.737 0-6.673 2.936-6.673 6.673v2.669c0 .801.534 1.335 1.335 1.335s1.335-.534 1.335-1.335v-2.669c0-2.269 1.735-4.004 4.004-4.004h10.677c2.269 0 4.004 1.735 4.004 4.004v2.669c0 .801.534 1.335 1.335 1.335s1.335-.534 1.335-1.335v-2.669c0-3.737-2.936-6.673-6.673-6.673zm-5.338-2.67c3.737 0 6.673-2.936 6.673-6.673s-2.936-6.673-6.673-6.673-6.673 2.936-6.673 6.673 2.936 6.673 6.673 6.673zm0-10.677c2.269 0 4.004 1.735 4.004 4.004s-1.735 4.004-4.004 4.004-4.004-1.735-4.004-4.004 1.735-4.004 4.004-4.004z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M21.354 18.091H10.677c-3.737 0-6.673 2.936-6.673 6.673v2.669c0 .801.534 1.335 1.335 1.335s1.335-.534 1.335-1.335v-2.669c0-2.269 1.735-4.004 4.004-4.004h10.677c2.269 0 4.004 1.735 4.004 4.004v2.669c0 .801.534 1.335 1.335 1.335s1.335-.534 1.335-1.335v-2.669c0-3.737-2.936-6.673-6.673-6.673zm-5.338-2.67c3.737 0 6.673-2.936 6.673-6.673s-2.936-6.673-6.673-6.673-6.673 2.936-6.673 6.673 2.936 6.673 6.673 6.673zm0-10.677c2.269 0 4.004 1.735 4.004 4.004s-1.735 4.004-4.004 4.004-4.004-1.735-4.004-4.004 1.735-4.004 4.004-4.004z"/></svg>');
}
#main
  .woocommerce-MyAccount-navigation
  ul
  li.woocommerce-MyAccount-navigation-link--customer-logout:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M12.012 26.098H6.673c-.801 0-1.335-.534-1.335-1.335V6.078c0-.801.534-1.335 1.335-1.335h5.339c.801 0 1.335-.534 1.335-1.335s-.534-1.335-1.335-1.335H6.673c-2.269 0-4.004 1.735-4.004 4.004v18.685c0 2.269 1.735 4.004 4.004 4.004h5.339c.801 0 1.335-.534 1.335-1.335s-.534-1.335-1.335-1.335zm17.217-10.143c.133-.267.133-.667 0-1.068-.133-.133-.133-.267-.267-.4l-6.673-6.673c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l4.404 4.404H12.012c-.801 0-1.335.534-1.335 1.335s.534 1.335 1.335 1.335h12.813l-4.404 4.404a1.29 1.29 0 000 1.868c.267.267.667.4.934.4s.667-.133.934-.4l6.673-6.673c.133-.133.267-.267.267-.4z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M12.012 26.098H6.673c-.801 0-1.335-.534-1.335-1.335V6.078c0-.801.534-1.335 1.335-1.335h5.339c.801 0 1.335-.534 1.335-1.335s-.534-1.335-1.335-1.335H6.673c-2.269 0-4.004 1.735-4.004 4.004v18.685c0 2.269 1.735 4.004 4.004 4.004h5.339c.801 0 1.335-.534 1.335-1.335s-.534-1.335-1.335-1.335zm17.217-10.143c.133-.267.133-.667 0-1.068-.133-.133-.133-.267-.267-.4l-6.673-6.673c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l4.404 4.404H12.012c-.801 0-1.335.534-1.335 1.335s.534 1.335 1.335 1.335h12.813l-4.404 4.404a1.29 1.29 0 000 1.868c.267.267.667.4.934.4s.667-.133.934-.4l6.673-6.673c.133-.133.267-.267.267-.4z"/></svg>');
}
#main .woocommerce-MyAccount-content {
  width: 73%;
}
.woocommerce-form-register .woocommerce-privacy-policy-text {
  margin-bottom: 2.656rem;
}
.woocommerce-account .woocommerce h3,
.woocommerce-account .woocommerce h2,
.woocommerce-order-received .woocommerce h3,
.woocommerce-order-received .woocommerce h2,
.woocommerce-order-details h3,
.woocommerce-order-details h2,
.woocommerce-customer-details h3,
.woocommerce-customer-details h2 {
  font-size: 2rem;
  line-height: 2;
}
.woocommerce table {
  border-spacing: 0;
}
.woocommerce table dl,
.woocommerce table .wc-item-meta {
  margin-left: 0;
  padding-left: 0;
  font-size: 1.376rem;
}
.woocommerce table dl dt,
.woocommerce table dl strong,
.woocommerce table .wc-item-meta dt,
.woocommerce table .wc-item-meta strong {
  font-weight: 400;
}
.woocommerce table.my_account_orders,
.woocommerce table.woocommerce-table--order-downloads,
.woocommerce table.woocommerce-table--order-details {
  border-radius: var(--bloglo-normal-radius);
  font-size: inherit;
}
.woocommerce table.my_account_orders th,
.woocommerce table.my_account_orders td,
.woocommerce table.woocommerce-table--order-downloads th,
.woocommerce table.woocommerce-table--order-downloads td,
.woocommerce table.woocommerce-table--order-details th,
.woocommerce table.woocommerce-table--order-details td {
  padding: 1.5rem 2rem;
  font-weight: 400 !important;
}
.woocommerce table.my_account_orders strong,
.woocommerce table.woocommerce-table--order-downloads strong,
.woocommerce table.woocommerce-table--order-details strong {
  font-weight: 400 !important;
}
.woocommerce table.my_account_orders thead th,
.woocommerce table.woocommerce-table--order-downloads thead th,
.woocommerce table.woocommerce-table--order-details thead th {
  color: #232323;
  font-weight: 400;
  font-size: 1.2rem;
  background-color: rgba(190, 190, 190, 0.2);
}
.woocommerce table .button {
  height: 4rem !important;
  padding: 0 3.2rem !important;
  font-size: 1.3rem !important;
}
.woocommerce-Addresses header.title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.6rem;
}
.woocommerce-Addresses header.title a.edit {
  margin-left: 2rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 1.3rem;
}
.widget.woocommerce ul.product_list_widget li .product-title {
  display: block;
  padding-top: 0.4rem;
  line-height: 1.5;
}
.widget.woocommerce
  .woocommerce-widget-layered-nav-list
  .woocommerce-widget-layered-nav-list__item
  a,
.widget.woocommerce .wc-layered-nav-rating a {
  position: relative;
  padding-left: 2.7rem;
}
.widget.woocommerce
  .woocommerce-widget-layered-nav-list
  .woocommerce-widget-layered-nav-list__item
  a:before,
.widget.woocommerce .wc-layered-nav-rating a:before {
  content: "" !important;
  border: 0.2rem solid currentColor;
  border-radius: var(--bloglo-normal-radius);
  background: none;
  clear: none;
  cursor: pointer;
  line-height: 0;
  outline: 0;
  padding: 0 !important;
  text-align: center;
  vertical-align: middle;
  height: 1.7rem;
  width: 1.7rem;
  min-width: 1.7rem;
  opacity: 0.65;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.widget.woocommerce
  .woocommerce-widget-layered-nav-list
  .woocommerce-widget-layered-nav-list__item
  a:after,
.widget.woocommerce .wc-layered-nav-rating a:after {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M0 17.824l3.203-3.203 8.008 8.008L28.828 5.012l3.203 3.203-20.82 20.82z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M0 17.824l3.203-3.203 8.008 8.008L28.828 5.012l3.203 3.203-20.82 20.82z"/></svg>');
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0.3rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.1rem;
  opacity: 0;
}
.widget.woocommerce
  .woocommerce-widget-layered-nav-list
  .woocommerce-widget-layered-nav-list__item.chosen
  a,
.widget.woocommerce .wc-layered-nav-rating.chosen a {
  font-weight: 600;
}
.widget.woocommerce
  .woocommerce-widget-layered-nav-list
  .woocommerce-widget-layered-nav-list__item.chosen
  a:before,
.widget.woocommerce
  .woocommerce-widget-layered-nav-list
  .woocommerce-widget-layered-nav-list__item.chosen
  a:after,
.widget.woocommerce .wc-layered-nav-rating.chosen a:before,
.widget.woocommerce .wc-layered-nav-rating.chosen a:after {
  opacity: 1;
}
.widget.woocommerce .wc-layered-nav-rating a {
  -webkit-transition: none !important;
  transition: none !important;
  min-height: 2.5rem;
}
.widget.woocommerce .wc-layered-nav-rating a .star-rating {
  position: relative;
  top: -0.1rem;
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.widget.woocommerce .product-categories li .count,
.widget.woocommerce .wc-layered-nav-term .count,
.widget.woocommerce .wc-layered-nav-rating em {
  font-style: normal;
  margin-left: auto;
  -js-display: inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0.3rem;
  background-color: rgba(145, 145, 145, 0.1);
  min-width: 2.4rem;
  min-height: 2.4rem;
  padding: 0.5rem 0.8rem;
  border-radius: 4rem;
  line-height: 1;
  font-size: 1.386rem;
  font-weight: 400;
  pointer-events: none;
}
.widget.woocommerce .wc-layered-nav-rating a:hover em,
.widget.woocommerce .wc-layered-nav-rating.chosen a em {
  color: #fff;
}
.widget.woocommerce .product-categories li,
.widget.woocommerce .wc-layered-nav-term {
  position: relative;
}
.widget.woocommerce .product-categories li a,
.widget.woocommerce .wc-layered-nav-term a {
  display: block;
}
.widget.woocommerce .product-categories li a:hover ~ .count,
.widget.woocommerce .wc-layered-nav-term a:hover ~ .count {
  color: #fff;
}
.widget.woocommerce .product-categories li.chosen > .count,
.widget.woocommerce .wc-layered-nav-term.chosen > .count {
  color: #fff;
}
.widget.woocommerce .product-categories li.current-cat > a {
  font-weight: 600;
}
.widget.woocommerce .product-categories li.current-cat > .count {
  color: #fff;
}
.widget.woocommerce .reviewer {
  font-size: 1.386rem;
}
.woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item,
.widget_rating_filter .wc-layered-nav-rating {
  padding: 0;
  margin-bottom: 1rem;
}
.woocommerce-widget-layered-nav-list
  .woocommerce-widget-layered-nav-list__item:last-child,
.widget_rating_filter .wc-layered-nav-rating:last-child {
  margin-bottom: 0;
}
.woocommerce ul.cart_list li,
.woocommerce ul.product_list_widget li {
  padding: 0;
  margin-bottom: 2rem;
}
.woocommerce ul.cart_list li:last-child,
.woocommerce ul.product_list_widget li:last-child {
  margin-bottom: 0;
}
.woocommerce ul.cart_list li ins,
.woocommerce ul.product_list_widget li ins {
  text-decoration: none;
  font-weight: 500;
}
.woocommerce ul.cart_list li del,
.woocommerce ul.product_list_widget li del {
  opacity: 1;
  color: #afafaf;
}
.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  float: left;
  width: 7rem;
  margin-left: 0;
  margin-right: 1.5rem;
  border-radius: var(--bloglo-normal-radius);
}
.woocommerce ul.cart_list li a,
.woocommerce ul.product_list_widget li a {
  font-weight: 500;
}
.woocommerce ul.cart_list li a:hover .product-title,
.woocommerce ul.product_list_widget li a:hover .product-title {
  color: inherit;
}
.woocommerce ul.cart_list li .product-title,
.woocommerce ul.product_list_widget li .product-title {
  color: #232323;
}
.woocommerce ul.cart_list li .star-rating,
.woocommerce ul.product_list_widget li .star-rating {
  display: block;
  margin: 0.5rem 0;
}
.woocommerce ul.product_list_widget li .product-title {
  color: inherit;
}
.woocommerce .widget_price_filter .ui-slider-horizontal {
  height: 0.2rem;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background-color: #e4e4e4;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.woocommerce .widget_price_filter .price_slider_amount {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3rem;
}
.woocommerce .widget_price_filter .price_label {
  font-size: 1.4rem;
  margin-left: auto;
}
.woocommerce .widget_price_filter .price_label span {
  color: #232323;
  font-weight: 500;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  -webkit-transition: -webkit-transform 0.35s
    cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1),
    -webkit-transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 1.6rem;
  height: 1.6rem;
  z-index: 2;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-transform-origin: center top;
  -ms-transform-origin: center top;
  transform-origin: center top;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-50%, -50%, 0);
  transform: scale3d(0, 0, 0) translate3d(-50%, -50%, 0);
  width: 1.6rem;
  height: 1.6rem;
  opacity: 0.125;
  z-index: 1;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  border-radius: 50%;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -webkit-transform: scale3d(1.35, 1.35, 1.35) translate3d(0, -50%, 0);
  transform: scale3d(1.35, 1.35, 1.35) translate3d(0, -50%, 0);
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle:active:after {
  -webkit-transform: scale3d(0, 0, 0) translate3d(-50%, -50%, 0) !important;
  transform: scale3d(0, 0, 0) translate3d(-50%, -50%, 0) !important;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle:hover:after {
  -webkit-transform: scale3d(2, 2, 1) translate3d(-50%, -50%, 0);
  transform: scale3d(2, 2, 1) translate3d(-50%, -50%, 0);
}
.woocommerce .widget_layered_nav_filters ul {
  margin-top: -0.8rem;
}
.woocommerce .widget_layered_nav_filters ul li {
  display: inline-block;
}
.woocommerce .widget_layered_nav_filters ul a {
  color: inherit;
  display: block;
  float: left;
  text-transform: none;
  letter-spacing: 0;
  border-radius: var(--bloglo-normal-radius);
  padding: 0.8rem 1.2rem;
  margin: 0.8rem 0.8rem 0 0;
  background-color: rgba(145, 145, 145, 0.1);
  line-height: 1;
  font-size: 1.486rem;
}
.woocommerce .widget_layered_nav_filters ul a:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M17.884 15.421l7.074-7.074c.534-.534.534-1.335 0-1.868s-1.335-.534-1.868 0l-7.074 7.074-7.074-7.074c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l7.074 7.074-7.074 7.074a1.29 1.29 0 000 1.868c.267.267.534.4.934.4s.667-.133.934-.4l7.074-7.074 7.074 7.074c.267.267.667.4.934.4s.667-.133.934-.4a1.29 1.29 0 000-1.868l-7.074-7.074z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M17.884 15.421l7.074-7.074c.534-.534.534-1.335 0-1.868s-1.335-.534-1.868 0l-7.074 7.074-7.074-7.074c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l7.074 7.074-7.074 7.074a1.29 1.29 0 000 1.868c.267.267.534.4.934.4s.667-.133.934-.4l7.074-7.074 7.074 7.074c.267.267.667.4.934.4s.667-.133.934-.4a1.29 1.29 0 000-1.868l-7.074-7.074z"/></svg>');
  vertical-align: middle !important;
}
.woocommerce .widget_layered_nav_filters ul a:hover,
.woocommerce .widget_layered_nav_filters ul a:hover:before {
  color: #fff !important;
}
.woocommerce #colophon .widget_layered_nav_filters ul a:before {
  bottom: 0 !important;
}
.woocommerce .widget_shopping_cart .woocommerce-mini-cart__total,
.woocommerce.widget_shopping_cart .woocommerce-mini-cart__total {
  margin-top: 2rem;
}
.woocommerce .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
  border-top: 0.4rem double rgba(190, 190, 190, 0.3);
  padding: 1.3rem 0 1.4rem;
  text-align: center;
}
.woocommerce .widget_shopping_cart .total strong,
.woocommerce.widget_shopping_cart .total strong {
  font-weight: 500;
}
.woocommerce .widget_shopping_cart .total .amount,
.woocommerce .widget_shopping_cart .total .tax_label,
.woocommerce.widget_shopping_cart .total .amount,
.woocommerce.widget_shopping_cart .total .tax_label {
  font-weight: 600;
}
.woocommerce .widget_shopping_cart .bloglo-cart-buttons,
.woocommerce.widget_shopping_cart .bloglo-cart-buttons {
  border-top: 0.4rem double rgba(190, 190, 190, 0.3);
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.woocommerce .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li {
  color: #232323;
  padding-left: 0;
  position: relative;
}
.woocommerce .widget_shopping_cart .cart_list li a.remove,
.woocommerce.widget_shopping_cart .cart_list li a.remove {
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
  top: 0.3rem;
  right: 1.2rem;
  left: auto;
  color: rgba(0, 0, 0, 0) !important;
  width: 2.4rem;
  height: 2.4rem;
  background: none;
}
.woocommerce .widget_shopping_cart .cart_list li a.remove:after,
.woocommerce.widget_shopping_cart .cart_list li a.remove:after {
  content: "";
  background-color: rgba(190, 190, 190, 0.2);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  border-radius: 50%;
}
.woocommerce .widget_shopping_cart .cart_list li a.remove:before,
.woocommerce.widget_shopping_cart .cart_list li a.remove:before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M17.884 15.421l7.074-7.074c.534-.534.534-1.335 0-1.868s-1.335-.534-1.868 0l-7.074 7.074-7.074-7.074c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l7.074 7.074-7.074 7.074a1.29 1.29 0 000 1.868c.267.267.534.4.934.4s.667-.133.934-.4l7.074-7.074 7.074 7.074c.267.267.667.4.934.4s.667-.133.934-.4a1.29 1.29 0 000-1.868l-7.074-7.074z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M17.884 15.421l7.074-7.074c.534-.534.534-1.335 0-1.868s-1.335-.534-1.868 0l-7.074 7.074-7.074-7.074c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l7.074 7.074-7.074 7.074a1.29 1.29 0 000 1.868c.267.267.534.4.934.4s.667-.133.934-.4l7.074-7.074 7.074 7.074c.267.267.667.4.934.4s.667-.133.934-.4a1.29 1.29 0 000-1.868l-7.074-7.074z"/></svg>');
  content: "";
  height: 1.2rem;
  width: 1.2rem;
  z-index: 2;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.woocommerce .widget_shopping_cart .cart_list li a.remove:hover:after,
.woocommerce.widget_shopping_cart .cart_list li a.remove:hover:after {
  -webkit-transform: scale3d(1.25, 1.25, 1.25);
  transform: scale3d(1.25, 1.25, 1.25);
}
.woocommerce .widget_shopping_cart .cart_list li:hover a.remove,
.woocommerce.widget_shopping_cart .cart_list li:hover a.remove {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.woocommerce .widget_shopping_cart .cart_list li .quantity,
.woocommerce.widget_shopping_cart .cart_list li .quantity {
  font-size: 1.3rem;
  display: block;
}
.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color {
  margin-bottom: -0.7rem;
}
.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color li {
  margin-bottom: 0.7rem;
}
.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color li a {
  position: relative;
  border-radius: 50%;
  height: 2.8rem;
  width: 2.8rem;
  border: none;
  margin: 0 0.7rem 0 0;
  overflow: visible;
  text-indent: -999.9rem;
}
.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color li a:before {
  content: "";
  background-color: inherit;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  border-radius: 50%;
  z-index: -1;
}
.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color li a:hover,
.woocommerce #secondary .widget_layered_nav ul.yith-wcan-color li.chosen a {
  -webkit-box-shadow: inset 0 0 0 0.3rem #fff;
  box-shadow: inset 0 0 0 0.3rem #fff;
}
.woocommerce
  #secondary
  .widget_layered_nav
  ul.yith-wcan-color
  li
  a:hover:before,
.woocommerce
  #secondary
  .widget_layered_nav
  ul.yith-wcan-color
  li.chosen
  a:before {
  -webkit-transform: scale3d(1.15, 1.15, 1.15);
  transform: scale3d(1.15, 1.15, 1.15);
}
.woocommerce
  #secondary
  .widget_layered_nav
  ul.yith-wcan-color
  li.chosen
  a:after {
  line-height: 2.8rem;
  text-align: center;
  content: "\e9fd";
  color: #fff;
  text-indent: 0;
  font-size: 1.2rem;
}
.woocommerce .cart-collaterals h2,
.woocommerce .cart-collaterals h3,
.woocommerce .cart-collaterals h4,
.woocommerce .cart-collaterals h5 {
  margin-top: 0;
}
.woocommerce table.wishlist_table {
  font-size: inherit;
}
.woocommerce table.wishlist_table td.product-add-to-cart a {
  -js-display: flex !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.woocommerce table.wishlist_table a.remove {
  line-height: 2.24rem;
}
.yith-wcwl-share h4.yith-wcwl-share-title {
  margin: 2.5rem 0 1.5rem;
}
.wishlist-title {
  display: none;
}
.woocommerce div.product span.onsale {
  font-size: inherit;
  top: 2rem;
  left: 2rem;
}
.woocommerce div.product div.summary,
.woocommerce div.product div.images {
  margin-bottom: 0;
}
.woocommerce div.product .entry-summary p {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.woocommerce div.product .entry-summary > :last-child {
  margin-bottom: 0;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  margin-bottom: 2rem;
}
.woocommerce div.product .woocommerce-product-gallery {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.woocommerce
  div.product
  .woocommerce-product-gallery
  .flex-direction-nav
  .flex-prev,
.woocommerce
  div.product
  .woocommerce-product-gallery
  .flex-direction-nav
  .flex-next {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 2.5rem - 6.2rem);
  z-index: 2;
  width: 5rem;
  height: 5rem;
  background-color: #fff;
  border-radius: 50%;
}
.woocommerce
  div.product
  .woocommerce-product-gallery
  .flex-direction-nav
  .flex-prev {
  left: -2.5rem;
  right: auto;
}
.woocommerce
  div.product
  .woocommerce-product-gallery
  .flex-direction-nav
  .flex-next {
  right: -2.5rem;
  left: auto;
}
.woocommerce div.product .woocommerce-product-gallery .flex-direction-nav svg {
  width: 2.2rem;
}
.woocommerce
  div.product
  .woocommerce-product-gallery
  .flex-direction-nav
  svg
  path {
  fill: #232323 !important;
}
.woocommerce div.product h1.product_title {
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.woocommerce div.product .woocommerce-product-rating {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.5rem;
  margin-bottom: 1.6rem;
}
.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link {
  font-size: 1.3rem;
  margin-left: 1.2rem;
  position: relative;
  top: 0.1rem;
}
.woocommerce
  div.product
  .woocommerce-product-rating
  .woocommerce-review-link:hover {
  text-decoration: underline;
}
.woocommerce div.product form.cart {
  margin: 3rem 0;
}
.woocommerce div.product form.cart div.quantity {
  margin-right: 1.4rem;
}
.woocommerce div.product form.cart .variations {
  margin: 0;
  margin: 0 0 2rem 0;
}
.woocommerce div.product form.cart .variations select {
  min-width: auto;
  width: 100%;
  max-width: 22rem;
}
.woocommerce div.product form.cart .variations td {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.woocommerce div.product form.cart .variations td.label {
  width: 10.1rem;
  line-height: 1.5;
  vertical-align: middle;
}
.woocommerce div.product form.cart .variations td.label label {
  font-weight: 500;
  margin-bottom: 0;
}
.woocommerce div.product form.cart .variations_button {
  margin-top: 3rem;
}
.woocommerce div.product form.cart .woocommerce-variation p {
  margin-top: 0;
}
.woocommerce div.product form.cart .woocommerce-variation-description p {
  margin-top: 0;
  font-size: 1.4rem;
}
.woocommerce div.product form.cart .woocommerce-variation-availability {
  margin-bottom: 0;
}
.woocommerce div.product form.cart .woocommerce-variation-price .price {
  font-size: 2rem;
}
.woocommerce div.product form.cart .group_table {
  margin-top: 0;
}
.woocommerce div.product form.cart .group_table td {
  vertical-align: middle;
  padding: 1rem 0;
}
.woocommerce div.product form.cart .group_table td:first-child {
  min-width: 16rem;
  padding-left: 2rem;
  text-align: left;
}
.woocommerce div.product form.cart .group_table td label {
  margin: 0;
  font-weight: 500;
  font-size: inherit;
}
.woocommerce div.product form.cart .group_table td del {
  color: #afafaf;
  opacity: 1;
}
.woocommerce div.product form.cart .group_table td ins {
  text-decoration: none;
}
.woocommerce div.product form.cart .group_table .button {
  background: none;
  padding: 0 !important;
  min-height: auto;
  height: auto !important;
  font-size: inherit !important;
  padding: 0;
  color: inherit;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  margin-top: 0.7rem;
  font-size: 2.6rem;
}
.woocommerce div.product p.price del,
.woocommerce div.product p.price ins,
.woocommerce div.product span.price del,
.woocommerce div.product span.price ins {
  font-weight: 400;
}
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  opacity: 0.75;
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  text-decoration: none;
}
.woocommerce div.product p.stock {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
}
.woocommerce div.product .bloglo-wc-product-wrap {
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.woocommerce div.product .bloglo-wc-product-wrap .images {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  margin-right: 5rem;
  max-width: 100%;
}
.woocommerce div.product .bloglo-wc-product-wrap .images,
.woocommerce div.product .bloglo-wc-product-wrap .entry-summary {
  width: auto !important;
  float: none !important;
}
.woocommerce div.product .bloglo-wc-product-wrap .entry-summary {
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.woocommerce
  div.product
  div.images.woocommerce-product-gallery--columns-6
  .flex-control-thumbs
  li {
  width: 16.67%;
  -ms-flex-preferred-size: 16.67%;
  flex-basis: 16.67%;
}
.woocommerce
  div.product
  div.images.woocommerce-product-gallery--columns-5
  .flex-control-thumbs
  li {
  width: 20%;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
}
.woocommerce
  div.product
  div.images.woocommerce-product-gallery--columns-4
  .flex-control-thumbs
  li {
  width: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}
.woocommerce
  div.product
  div.images.woocommerce-product-gallery--columns-3
  .flex-control-thumbs
  li {
  width: 33%;
  -ms-flex-preferred-size: 33%;
  flex-basis: 33%;
}
.woocommerce
  div.product
  div.images.woocommerce-product-gallery--columns-2
  .flex-control-thumbs
  li {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.woocommerce div.product div.images .flex-control-thumbs {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.8rem;
  margin-left: -0.2rem;
  margin-right: -0.2rem;
}
.woocommerce div.product div.images .flex-control-thumbs li {
  padding: 0.2rem;
  clear: none !important;
}
.woocommerce div.product div.images .flex-control-thumbs li img {
  opacity: 1;
  padding: 0.2rem;
  border: 0.2rem solid rgba(0, 0, 0, 0);
  display: block;
  border-radius: var(--bloglo-normal-radius);
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  max-width: initial;
}
.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__wrapper
  > div {
  border-radius: var(--bloglo-normal-radius);
}
.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__wrapper
  > div
  img {
  border-radius: var(--bloglo-normal-radius);
}
.woocommerce div.product .woocommerce-tabs {
  margin-bottom: 4rem;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  text-align: center;
}
.woocommerce div.product .woocommerce-tabs ul.tabs:before,
.woocommerce div.product .woocommerce-tabs ul.tabs:after {
  position: absolute;
  bottom: auto;
  right: auto;
  top: 0;
  display: block;
  width: 100%;
  height: 0.1rem;
  border: 0 !important;
  background: rgba(190, 190, 190, 0.3);
  content: "";
}
.woocommerce div.product .woocommerce-tabs ul.tabs:after {
  top: auto;
  bottom: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none;
  background: none;
  border-radius: 0;
  margin: 0 1.6rem;
  padding: 2rem 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:not(.active) a:hover {
  color: #232323;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active > a:before {
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1) translateZ(0.1rem);
  transform: scale(1, 1) translateZ(0.1rem);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
  content: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-weight: 500;
}
.woocommerce div.product .woocommerce-tabs .wc-tab {
  background-color: rgba(190, 190, 190, 0.2);
  padding: 4rem 0;
  margin-bottom: 0;
}
.woocommerce div.product .woocommerce-tabs .wc-tab > .bloglo-container {
  max-width: 80rem;
}
.woocommerce
  div.product
  .woocommerce-tabs
  .wc-tab
  > .bloglo-container
  > h2:first-child {
  display: none;
}
.woocommerce div.product .woocommerce-tabs .wc-tab > .bloglo-container p {
  margin-top: 0;
}
.woocommerce
  div.product
  .woocommerce-tabs
  .wc-tab
  > .bloglo-container
  p:last-child {
  margin-bottom: 0;
}
.woocommerce div.product .woocommerce-tabs table.shop_attributes {
  background: #fff;
  font-size: 1.4rem;
}
.woocommerce div.product .woocommerce-tabs table.shop_attributes tr {
  background: none;
}
.woocommerce div.product .woocommerce-tabs table.shop_attributes th,
.woocommerce div.product .woocommerce-tabs table.shop_attributes td {
  padding: 1rem 2rem;
  border-top: none;
  border-bottom: none;
}
.woocommerce div.product .woocommerce-tabs table.shop_attributes th {
  border-right: 0.1rem solid rgba(190, 190, 190, 0.3);
}
.woocommerce div.product .woocommerce-tabs table.shop_attributes td {
  font-style: normal;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
  background: none;
  text-indent: 0;
  z-index: 1;
  text-indent: -9999.9rem;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger img {
  display: none !important;
}
.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__trigger:before {
  border-radius: 50%;
  content: "";
  border: none !important;
  z-index: 1;
  -webkit-transition: var(--bloglo-transition-primary);
  transition: var(--bloglo-transition-primary);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__trigger:hover:before {
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
}
.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__trigger:after {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M29.229 2.876a1.6 1.6 0 00-.667-.667c-.133-.133-.4-.133-.534-.133H20.02c-.801 0-1.335.534-1.335 1.335s.534 1.335 1.335 1.335h4.805l-7.074 7.074a1.29 1.29 0 000 1.868c.267.267.667.4.934.4s.667-.133.934-.4l7.074-7.074v4.805c0 .801.534 1.335 1.335 1.335s1.335-.534 1.335-1.335V3.411c0-.133 0-.4-.133-.534zm-16.817 14.28L5.338 24.23v-4.805c0-.801-.534-1.335-1.335-1.335s-1.335.534-1.335 1.335v8.008c0 .133 0 .4.133.534.133.267.4.534.667.667.133.133.4.133.534.133h8.008c.801 0 1.335-.534 1.335-1.335s-.534-1.335-1.335-1.335H7.205l7.074-7.074c.534-.534.534-1.335 0-1.868s-1.335-.534-1.868 0z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M29.229 2.876a1.6 1.6 0 00-.667-.667c-.133-.133-.4-.133-.534-.133H20.02c-.801 0-1.335.534-1.335 1.335s.534 1.335 1.335 1.335h4.805l-7.074 7.074a1.29 1.29 0 000 1.868c.267.267.667.4.934.4s.667-.133.934-.4l7.074-7.074v4.805c0 .801.534 1.335 1.335 1.335s1.335-.534 1.335-1.335V3.411c0-.133 0-.4-.133-.534zm-16.817 14.28L5.338 24.23v-4.805c0-.801-.534-1.335-1.335-1.335s-1.335.534-1.335 1.335v8.008c0 .133 0 .4.133.534.133.267.4.534.667.667.133.133.4.133.534.133h8.008c.801 0 1.335-.534 1.335-1.335s-.534-1.335-1.335-1.335H7.205l7.074-7.074c.534-.534.534-1.335 0-1.868s-1.335-.534-1.868 0z"/></svg>');
  color: #fff;
  z-index: 2;
  text-indent: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.woocommerce div.product .related.products > h2,
.woocommerce div.product .upsells > h2 {
  margin-top: 5rem;
  margin-bottom: 2.4rem;
  text-align: center;
}
.woocommerce div.product .product_meta {
  padding: 1.6rem 0;
  margin: 4rem 0;
  border-top: 0.1rem solid rgba(190, 190, 190, 0.3);
  border-bottom: 0.1rem solid rgba(190, 190, 190, 0.3);
}
.woocommerce div.product .product_meta .bloglo-woo-meta-title {
  min-width: 11rem;
  display: inline-block;
}
.woocommerce div.product .product_meta > span {
  display: block;
}
.woocommerce div.product .product_meta > span a:hover {
  color: inherit;
}
.woocommerce div.product #reviews #comments {
  margin-top: 0;
}
.woocommerce div.product #reviews #comments h2 {
  margin-top: 0;
  margin-bottom: 4rem;
  text-align: center;
}
.woocommerce div.product #reviews #comments .woocommerce-noreviews {
  text-align: center;
  margin-top: -rem(30px);
}
.woocommerce div.product #reviews #comments ol.commentlist li img.avatar {
  display: block;
  position: absolute;
  z-index: 1;
  left: 2.5rem;
  top: 2.5rem;
  max-width: 50px;
  border-radius: 50%;
  width: initial;
  height: initial;
  padding: 0;
  border: none;
}
.woocommerce div.product #reviews #comments ol.commentlist li .comment-text {
  padding: 0;
  border: none;
  margin: 0;
}
.woocommerce
  div.product
  #reviews
  #comments
  ol.commentlist
  li
  .comment-text
  p:last-child {
  margin-bottom: 0;
}
.woocommerce
  div.product
  #reviews
  #comments
  ol.commentlist
  li
  .comment-text
  p.meta {
  font-size: 1.6rem;
}
.woocommerce
  div.product
  #reviews
  #comments
  ol.commentlist
  li
  .comment-text
  p.meta
  strong {
  font-weight: 500;
  font-size: 1.6rem;
  color: #232323;
}
.woocommerce
  div.product
  #reviews
  #comments
  ol.commentlist
  li
  .comment-text
  p.meta
  span,
.woocommerce
  div.product
  #reviews
  #comments
  ol.commentlist
  li
  .comment-text
  p.meta
  em,
.woocommerce
  div.product
  #reviews
  #comments
  ol.commentlist
  li
  .comment-text
  p.meta
  time {
  font-size: 1.376rem;
}
.woocommerce div.product #reviews #comments .comment_container {
  background-color: #fff;
}
.woocommerce div.product #reviews #respond {
  margin-top: 4rem;
}
.woocommerce div.product #reviews #respond p {
  margin: 0 0 2rem;
}
.woocommerce div.product #reviews #respond p:last-child {
  margin-bottom: 0;
}
.woocommerce div.product #reviews .comment-form-rating {
  margin-bottom: 2.4rem;
}
.woocommerce div.product #reviews .comment-form-rating label {
  display: block;
}
.woocommerce div.product #reviews .comment-form-rating .stars {
  display: inline-block;
  line-height: 1;
  font-size: 2rem;
  margin-bottom: 0 !important;
}
.woocommerce div.product #reviews .comment-form-rating .stars a {
  width: 1.84rem;
}
.woocommerce div.product #reviews #reply-title {
  margin-bottom: 2rem;
}
.woocommerce div.product .woocommerce-pagination ul {
  border: none;
}
.woocommerce div.product .woocommerce-pagination ul li {
  border: none;
}
.woocommerce div.product .woocommerce-pagination ul li a,
.woocommerce div.product .woocommerce-pagination ul li span {
  text-transform: uppercase;
  -js-display: inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.2rem;
  width: 4rem;
  height: 4rem;
  text-align: center;
  vertical-align: middle;
  color: inherit;
  border-radius: var(--bloglo-normal-radius);
  font-weight: 600;
  border: 0.2rem solid rgba(0, 0, 0, 0);
  background: none !important;
}
.term-description {
  margin-bottom: 3.2rem;
  padding-bottom: 1.6rem;
  border-bottom: 0.1rem solid rgba(190, 190, 190, 0.3);
}
ul#uploadFileList {
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 2rem;
}
ul#uploadFileList li {
  margin: 0;
  padding: 0 0.6rem 0 0;
}
ul#uploadFileList li img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--bloglo-normal-radius);
}
#do_uploadFile {
  display: inline-block;
  width: auto;
  margin-left: 1rem;
  min-height: 3rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #232323;
  text-shadow: none;
  color: #fff !important;
  border: none;
  border-radius: var(--bloglo-normal-radius);
  padding: 0 1.4rem;
}
.review_thumbnail {
  padding: 0.4rem 0;
}
.review_thumbnail a {
  margin: 0.6rem 0.6rem 0.6rem 0;
  vertical-align: middle;
  display: inline-block;
}
.review_thumbnail a img.ywar_thumbnail {
  display: block;
  padding: 0;
  border-radius: var(--bloglo-normal-radius);
}
.ywar_review_count {
  margin-left: 1.6rem;
}
.ywar_review_row span {
  color: #232323 !important;
}
.reviews_bar {
  margin: 2rem 0;
}
.yith-woocommerce-advanced-reviews #submit {
  font-size: inherit !important;
}
.wishlist_table .add_to_cart,
a.add_to_wishlist.button.alt {
  -js-display: inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: var(--bloglo-normal-radius);
  padding: 0.8rem 3.2rem;
  font-weight: 500;
  font-size: 1.3rem;
  min-height: 4rem;
}
.term-description > h1:first-child,
.term-description > h2:first-child,
.term-description > h3:first-child,
.term-description > h4:first-child,
.term-description > h5:first-child,
.term-description > h6:first-child,
.term-description > p:first-child,
.term-description > ul:first-child,
.term-description > ol:first-child {
  margin-top: 0;
}
.term-description > h1:last-child,
.term-description > h2:last-child,
.term-description > h3:last-child,
.term-description > h4:last-child,
.term-description > h5:last-child,
.term-description > h6:last-child,
.term-description > p:last-child,
.term-description > ul:last-child,
.term-description > ol:last-child {
  margin-bottom: 0;
}
.wc-block-grid__products {
  list-style: none;
}
.pswp__caption__center {
  text-align: center;
}
@media screen and (max-width: 480px) {
  .woocommerce ul.products[class*="columns-"] li.product,
  .woocommerce-page ul.products[class*="columns-"] li.product {
    width: 100%;
    float: none;
  }
}
@media screen and (max-width: 768px) {
  .woocommerce #yith-wcwl-form table.shop_table tr,
  .woocommerce .woocommerce-cart-form table.shop_table tr,
  .woocommerce .woocommerce-checkout-review-order table.shop_table tr {
    border-bottom: solid 0.3rem rgba(190, 190, 190, 0.2);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .woocommerce #yith-wcwl-form table.shop_table tr:last-child,
  .woocommerce .woocommerce-cart-form table.shop_table tr:last-child,
  .woocommerce
    .woocommerce-checkout-review-order
    table.shop_table
    tr:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .woocommerce .coupon {
    background: rgba(190, 190, 190, 0.2);
    padding: 1.6rem !important;
    border-radius: var(--bloglo-normal-radius);
    margin-bottom: 3.2rem;
  }
  .woocommerce .product-remove {
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
  .woocommerce .product-remove:before {
    display: inline-block !important;
    content: attr(data-title) ": ";
    font-weight: 700;
    float: left;
  }
  .woocommerce .product-remove a {
    margin-left: auto;
  }
  .woocommerce table.shop_table_responsive tr:nth-child(2n) td,
  .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
    background: none;
  }
  .woocommerce ul.products {
    margin-top: 0;
  }
}
@media screen and (max-width: 960px) {
  #main .woocommerce-MyAccount-navigation {
    width: 100%;
    margin-bottom: 3rem;
  }
  .woocommerce div.product .woocommerce-product-gallery .flex-direction-nav {
    display: none;
  }
  .woocommerce div.product .bloglo-wc-product-wrap .images {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .woocommerce div.product #reviews #comments ol.commentlist li img.avatar {
    display: none;
  }
}
elementor.min.css000064400000003570152425774300010050 0ustar00.bloglo-layout__boxed-separated.bloglo-sidebar-style-3 .elementor-widget-sidebar .bloglo-widget {border-radius: 3px;border: 1px solid rgba(190, 190, 190, 0.3);}.elementor-text-editor > *:first-child {margin-top: 0;}.elementor-text-editor > *:last-child {margin-bottom: 0;}.bloglo-sidebar-style-2 .elementor-widget-sidebar .widget-title {padding-left: 1rem;}.bloglo-sidebar-style-2 .elementor-widget-sidebar .widget-title:before {content: "";position: absolute;top: 16%;left: 0;display: inline-block;width: 3px;height: 70%;}.bloglo-sidebar-style-2 .elementor-widget-sidebar .widget-title:after, .bloglo-sidebar-style-3 .elementor-widget-sidebar .widget-title:after {content: "";position: absolute;top: 50%;width: 100%;height: 1px;background-color: rgba(190, 190, 190, 0.3);margin-left: 1.25rem;-webkit-transform-style: preserve-3d;}.bloglo-sidebar-style-3 .elementor-widget-sidebar .bloglo-widget {border: solid 1px rgba(190, 190, 190, 0.3);border-radius: 3px;margin-bottom: 20px;padding: 25px;}.bloglo-sidebar-style-3 .elementor-widget-sidebar .bloglo-widget:last-child {margin-bottom: 0;}.bloglo-sidebar-style-3 .elementor-widget-sidebar .widget-title {border-left-style: solid;border-left-width: 2px;margin-left: -26px;padding-left: 22px;}.bloglo-layout__boxed-separated.bloglo-sidebar-style-3 .elementor-widget-sidebar .bloglo-widget {margin-bottom: 20px;}.bloglo-layout__boxed-separated.bloglo-sidebar-style-3 .elementor-widget-sidebar .bloglo-widget.widget_media_image {padding: 0;overflow: hidden;}.bloglo-layout__boxed-separated.bloglo-sidebar-style-3 .elementor-widget-sidebar .widget_media_image .widget-title {padding-left: 25px;margin-left: 0;margin-top: 20px;}@media screen and (max-width: 960px) {.bloglo-layout__boxed-separated.bloglo-sidebar-style-3 .elementor-widget-sidebar .bloglo-widget {background: none !important;-webkit-box-shadow: none;box-shadow: none;border: none;margin-bottom: 40px;}}elementor.css000064400000005446152425774300007272 0ustar00/* ==========================================================================
*  Elementor styles.
*  ========================================================================== */
.bloglo-layout__boxed-separated.bloglo-sidebar-style-3
  .elementor-widget-sidebar
  .bloglo-widget {
  border-radius: 3px;
  border: 1px solid rgba(190, 190, 190, 0.3);
}

/*****************************************/
/* Responsive styles.
/*****************************************/
/* 
  ##Device = Most of the smartphones (portrait)
  ##Screen = 480px and under.
*/
/* 
  ##Device = Most of the tablets (portrait)
  ##Screen = Between 481px and 768px.
*/
/* 
  ##Device = Most of the tablets and smartphones
  ##Screen = 768px and under.
*/
/* 
  ##Device = Desktops and landscape tablets
  ##Screen = 769px and upper.
*/
/* 
  ##Device = Large desktops and upper (incl. iPad Pro in landscape mode)
  ##Screen = 1281px and upper.
*/
.elementor-text-editor > *:first-child {
  margin-top: 0;
}

.elementor-text-editor > *:last-child {
  margin-bottom: 0;
}

.bloglo-sidebar-style-2 .elementor-widget-sidebar .widget-title {
  padding-left: 1rem;
}

.bloglo-sidebar-style-2 .elementor-widget-sidebar .widget-title:before {
  content: "";
  position: absolute;
  top: 16%;
  left: 0;
  display: inline-block;
  width: 3px;
  height: 70%;
}

.bloglo-sidebar-style-2 .elementor-widget-sidebar .widget-title:after,
.bloglo-sidebar-style-3 .elementor-widget-sidebar .widget-title:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: rgba(190, 190, 190, 0.3);
  margin-left: 1.25rem;
  -webkit-transform-style: preserve-3d;
}

.bloglo-sidebar-style-3 .elementor-widget-sidebar .bloglo-widget {
  border: solid 1px rgba(190, 190, 190, 0.3);
  border-radius: 3px;
  margin-bottom: 20px;
  padding: 25px;
}

.bloglo-sidebar-style-3 .elementor-widget-sidebar .bloglo-widget:last-child {
  margin-bottom: 0;
}

.bloglo-sidebar-style-3 .elementor-widget-sidebar .widget-title {
  border-left-style: solid;
  border-left-width: 2px;
  margin-left: -26px;
  padding-left: 22px;
}

.bloglo-layout__boxed-separated.bloglo-sidebar-style-3
  .elementor-widget-sidebar
  .bloglo-widget {
  margin-bottom: 20px;
}

.bloglo-layout__boxed-separated.bloglo-sidebar-style-3
  .elementor-widget-sidebar
  .bloglo-widget.widget_media_image {
  padding: 0;
  overflow: hidden;
}

.bloglo-layout__boxed-separated.bloglo-sidebar-style-3
  .elementor-widget-sidebar
  .widget_media_image
  .widget-title {
  padding-left: 25px;
  margin-left: 0;
  margin-top: 20px;
}

@media screen and (max-width: 960px) {
  .bloglo-layout__boxed-separated.bloglo-sidebar-style-3
    .elementor-widget-sidebar
    .bloglo-widget {
    background: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    margin-bottom: 40px;
  }
}
elementor-editor-style.min.css000064400000000111152425774300012456 0ustar00#elementor ul.elementor-editor-element-settings{margin:0;list-style:none}elementor-editor-style.css000064400000000420152425774300011677 0ustar00/* ==========================================================================
*  Elementor editor styles.
*  ========================================================================== */
#elementor ul.elementor-editor-element-settings {
  margin: 0;
  list-style: none;
}

Al-HUWAITI Shell