/* Price mode buttons */
.price-tax-toggle {
    position: relative;
    cursor: pointer !important;
    border: 1px solid transparent;
    border-radius: 0px;
    box-sizing: border-box;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

/* Active button */
.price-tax-toggle.active {
    border: 1px solid #111 !important;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Inactive button */
.price-tax-toggle:not(.active) {
    border: 1px solid transparent;
    background-color: transparent;
}

/* Hover on inactive button */
.price-tax-toggle:not(.active):hover {
    border-color: #d5d8da;
    background-color: #f7f7f7;
}

/* Prevent inner divs from affecting the click */
.price-tax-toggle > div {
    pointer-events: none;
}