#header .header-nav .priceswitcher-selector {
    margin-top: .9375rem;
    margin-left: .9375rem;
    white-space: nowrap;
}

#priceswitcher-modal{color:#232323}
#priceswitcher-modal .modal-header{background:#fff}
#priceswitcher-modal .modal-header .close{opacity:1}
#priceswitcher-modal .modal-header .close .material-icons{color:#363a42}
#priceswitcher-modal .modal-body{background:#fff;padding:3.125rem 1.875rem}
#priceswitcher-modal .modal-body .divide-right span{display:inline-block;margin-bottom:.3125rem}
@media (max-width:767px){
    #priceswitcher-modal .modal-body .divide-right span{display:block;padding:0 .5rem}
}
#priceswitcher-modal .modal-dialog{max-width:900px;width:100%}
#priceswitcher-modal .modal-dialog .modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (30px * 2));
}
#priceswitcher-modal .modal-title{color:#353943;font-size:1rem;font-weight:400}
#priceswitcher-modal .modal-title i.material-icons{margin-right:1.875rem;color:#4cbb6c}

.priceswitcher_block > :not(.div_toggleswitch_container) {
	display: none;
}
.priceswitcher_block input[type="radio"]:not(:checked) ~ .div_toggleswitch_container {
	display: none;
}
.priceswitcher_block input[type="radio"]:checked ~ .div_toggleswitch_container {
	display: flex;
    align-items: center;
    gap: 8px;
}
.priceswitcher_block .div_toggleswitch_container label {
	margin-bottom: 0;
}
.priceswitcher_block .span_custom_switch {
    display: inline-block;
    width: 30px;
    height: 14px;
    background: var(--btn-color-variant);
    border-radius: 50px;
    position: relative;
	cursor: pointer;
    transition: 0.5s;
}
.priceswitcher_block .span_custom_switch:after {
	content: "";
	width: 15px;
    height: 15px;
    background-color: var(--primary-bg-color);
    position: absolute;
    border-radius: 20px;
    top: -1px;    
    transition: 0.5s;
}
.priceswitcher_block .span_custom_switch.pon {
	pointer-events: none;
}
.priceswitcher_block #priceswitcher_tax_excl_1:checked ~ .div_toggleswitch_container .span_custom_switch:after {	
	left: 0px;
}
.priceswitcher_block #priceswitcher_tax_excl_0:checked ~ .div_toggleswitch_container .span_custom_switch:after {
	left: calc(100% - 0px);
    transform: translateX(-100%);
}
.priceswitcher_block #priceswitcher_tax_excl_0:checked ~ .div_toggleswitch_container .span_custom_switch {
	background: var(--btn-color-variant);
}


#header .header-nav .col-sm-4 {
    display: flex;
    align-items: center;
    gap: 25px;
}

@media (min-width: 768px) {
	#header .header-nav .col-sm-4,
	#header .header-nav .col-sm-8 {
	    width: 50%;
	}
	#header .header-nav .priceswitcher_block {
		margin-top: 10px;
		border-left: 1px solid white;
		padding-left: 25px;
	}
	body#checkout #header .header-nav .col-md-6.text-xs-right {
		display: flex;
		align-items: center;		
		justify-content: end;
		gap: 25px;
	}
	.priceswitcher_block {
		padding-top: 7px;
		padding-bottom: 7px;
	}
}
@media (min-width:992px) {
	.priceswitcher_block {
		margin-right: 10px;
		padding-right: 30px;
		border-right: 1px solid rgba(105, 105, 105, 0.8);
		padding-top: 7px;
		padding-bottom: 7px;
	}
}

@media (max-width:991px) {
	.priceswitcher_block input[type="radio"]:checked ~ .div_toggleswitch_container {
		font-size: 11px;
	}
}

@media (max-width: 767px) {
	.div_priceswitcher_mobile {
		min-height: 30px;
		background: var(--secondary-bg-color-variant);
		text-align: center;
		color: var(--header-top-text-color);
	}
	#_mobile_priceswitcher_block .priceswitcher_block {
	    padding: 7px 15px;
	}
	.priceswitcher_block #priceswitcher_tax_excl_0:checked ~ .div_toggleswitch_container .span_custom_switch,
	.priceswitcher_block .span_custom_switch {
		background: #333134;
	}
}

@media (min-width:768px) and (max-width:991px) {
	.priceswitcher_block input[type="radio"]:checked ~ .div_toggleswitch_container {
		column-gap: 5px;
	}
}