.global-vat-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
}
.vat-toggle {
    position: relative;
    display: inline-block;
    width: 34.5px;
    height: 19.55px;
}
.vat-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.vat-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 19.55px;
}
.vat-toggle-slider:before {
    position: absolute;
    content: '';
    height: 14.95px;
    width: 14.95px;
    left: 2.3px;
    bottom: 2.3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .vat-toggle-slider {
    background-color: #cc0001;
}
input:checked + .vat-toggle-slider:before {
    transform: translateX(14.95px);
}
.vat-label {
    color: #000000;
}
.vat-label.ex-vat {
    font-weight: bold;
}
.vat-label.inc-vat {
    font-weight: normal;
}
.woo-vat-price {
    display: inline-block;
}
.vat-text {
    font-size: 0.6em;
    margin-left: 4px;
    color: #666666;
}
