@media (-webkit-device-pixel-ratio: 1.50) {
  * {
    zoom: 0.97;
  }
}
@media (min-width: 1025px){
.Switch-box {
    align-self: center;
    border-left: 1px solid #ADADAD;
    height: 40px;
    align-items: center;
    padding-left: 15px;
    display: flex;
}
	.Switch-box [data-value="FLItem-9"] {
		display: none;
	}
	.switch-btn {
    border: 1px solid currentColor;
    padding: 2px 10px;
    border-radius: 4px;
    transition: all ease 0.2s;
}
}
$(document).ready(function () {

    if ($('.site-map .nav-item').length) {
        $.each($('.site-map .nav-item'), function () {
            if ($(this).children('ul.nav').length) {
                $(this).addClass('sub-child')
            }
        })
    }
});