/*
Theme Name: Valence Analytical
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Valerii Vasyliev
Author URI: https://www.codeable.io/developers/valerii-vasyliev/?ref=OaT0y
Template: hello-elementor
Version: 2.2.1
Text Domain: vaan
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* Fix huge blue bar on WooCommerce password fields */
/* Restore WooCommerce eye icon */
.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
    position: absolute;
    right: .7em;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important;
    border: 0;
    padding: 0;
    margin: 0;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: none !important;
}

/* Restore the icon itself */
.woocommerce form .show-password-input::after,
.woocommerce-page form .show-password-input::after {
    font-family: WooCommerce !important;
    content: "\e010" !important;
    /* eye icon */
    font-size: 18px;
    speak: none;
    line-height: 1;
}

/* When active (showing the password) Woo removes the icon unless we set it again */
.woocommerce form .show-password-input.display-password::after,
.woocommerce-page form .show-password-input.display-password::after {
    content: "\e011" !important;
    /* eye-off icon */
}

/* My Account Menu Icons */
/* Target any link containing 'getting-started' in the My Account navigation */
.woocommerce-MyAccount-navigation a[href*="getting-started"]:before {
    font-family: "dashicons";
    content: "\f348";
    /* dashicons-info (solid circle with i) - widely available in WP */
    font-weight: 400;
    /* Dashicons are not 900 weight */
    margin-right: 0.5em;
    display: inline-block;
    width: 1.25em;
    text-align: center;
    vertical-align: middle;
}

/* Hide the placeholder avatar in My Account sidebar */
.jet-listing-dynamic-image .grjet-avatar {
    display: none !important;
}

.jet-listing-dynamic-image:has(.grjet-avatar) {
    display: none !important;
}