.vat-switcher-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}
.vat-switcher-popup-container {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-height: 260px;
    box-shadow: 1px 1px rgba(188, 188, 188, 0.5);
    z-index: 9999;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    flex-direction: column;
    max-width: 90%;
    padding: 1rem;
    width: 560px;
    height: 260px;
}
.vat-switcher-info {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.vat-switcher-info h2 {
    margin: 0 auto 18px;
    text-align: center;
}
.vat-switcher-info p {
    margin: 0 auto 1.5rem;
}
.vat-switcher-account-types {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.vat-switcher-account {
    cursor: pointer;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-left: 1rem;
    margin-right: 1rem;
}
.vat-switcher-account button {
    padding: 1rem;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
}
.vat-switcher-account p {
    margin: 0 auto;
}
.vat-switcher-popup-container .close-btn {
    border-radius: 50%;
    background: #fff;
    color: #dedede;
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 3rem;
    height: 3rem;
    text-align: center;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}
.vat-switcher-inline {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.vat-switcher-inline a {
    text-decoration: none;
    margin-left: 1rem;
    margin-right: 1rem;
}
.vat-switcher-inline h2 {
    margin: 0 auto;
    font-weight: 700;
    text-align: center;
}
.vat-switcher-inline p {
    margin: 0;
    text-align: center;
}
.hidden-selector {
    display: none;
}
span.tax-price-helper {
    padding-left: 5px;
}
@media screen and (max-width: 749px) {
    .visible-desktop {
        display: none;
    }
    .visible-mobile {
        display: flex;
    }
}
@media screen and (min-width: 749px) {
    .visible-mobile {
        display: none;
    }
    .visible-desktop {
        display: flex;
    }
}

.t-selector-option{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.t-selector-option > div{
    padding: 5px;
}
.t-selector-option > div strong, .t-selector-option > div span {
    display: block;
    line-height: 1.1;
    font-size: 16px;
    text-align: center;
}
.t-selector-option input[type=checkbox] {
	height: 0;
	width: 0;
    position: absolute;
	visibility: hidden;
}
.t-selector-option label {
    cursor: pointer;
    text-indent: -9999px;
    width: 60px;
    height: 30px;
    background: transparent; /* Toggle switch Off background color */
    border: 1px solid #333333; /* Toggle switch border color */
    display: block;
    border-radius: 100px;
    position: relative;
}
.t-selector-option label:after {
	content: '';
    position: absolute;
    top: 4px;
    left: 5px;
    width: 20px;
    height: 20px;
    background: #333333; /* Toggle circle background color */
    border-radius: 90px;
    transition: 0.2s;
}
.t-selector-option input:checked + label {
	background: #ffffff; /* Toggle switch On background color */
}
.t-selector-option input:checked + label:after {
	left: calc(100% - 5px);
	transform: translateX(-100%);
}
.t-selector-option .left-content, .t-selector-option .right-content {
    cursor: pointer;
}