/*
#vat-switch-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f7f7f7;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 9999;
}
 */


.price-incl-vat{
    color: grey !important;
    font-size: 12px !important;
}
.price-incl-vat .woocommerce-Price-amount{
    font-size:12px !important;
}
.price-incl-vat bdi{
    font-size: 12px !important;
    color: grey !important;
}

.price-excl-vat{
    color: grey !important;
    font-size: 12px !important;
}
.price-excl-vat .woocommerce-Price-amount{
    font-size:12px !important;
}
.price-excl-vat bdi{
    font-size: 12px !important;
    color: grey !important;
}
/*
.single-product .price-incl-vat .woocommerce-Price-amount.amount bdi{
	font-size: 12px !important;
}
*/

span.from{
    color: black;
}


#vat-switch {
    margin-left: 10px;
}
.inactive {
    color: #ccc; /* Gray out the text */
    pointer-events: none; /* Disable clicking */
    opacity: 0.6; /* Slightly fade the text */
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 25px;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    box-sizing: border-box;
    color: white;
    font-size: 12px;
    font-weight: bold;
}
.slider .switch-label {
    pointer-events: none;
}
.slider .on {
    display: none;
}
.slider .off {
    display: block;
    margin-left:30px;

}
.slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #4caf50;
}
input:checked + .slider:before {
    transform: translateX(45px);
}
input:checked + .slider .on {
    display: block;
    margin-left: 10px;
}
input:checked + .slider .off {
    display: none;
}
.woocommerce-Price-amount.amount bdi{
    /* color: red !important; */
    font-size: 19px !important;
    /* display:none; */
}
.price-excl-vat .woocommerce-Price-amount.amount bdi{
    /* color:blue !important; */
    font-size: 12px !important;
}
.price-incl-vat .woocommerce-Price-amount.amount bdi{
    /* color:blue !important; */
    font-size: 12px !important;
}

.single-product .woocommerce-Price-amount.amount bdi{
    /* color: green !important; */
    font-size:24px !important;;
}

.single-product .price-incl-vat .woocommerce-Price-amount.amount bdi{
    /* color:black !important; */
    font-size:12px !important;
}
.single-product .price-excl-vat .woocommerce-Price-amount.amount bdi{
    font-size: 12px !important;
}