.switch-radio-button {
	width:  100%;
	border: solid 1px #004195;
    border-radius: 50px;
}

.switch-radio-button  a.noActive ~ a.noActive {
	border-left: 1px solid #004195;
}

.switch-radio-button a {
	width: 50%;
    display: inline-block;
    float: left;
    text-align: center;
    padding: 7px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s;
}

.switch-radio-button .noActive{
	color: #004195;
}

.switch-radio-button .active {
	color: #fff;
	background-color: #004195;
	border-radius: 50px;
}

.switch-radio-button .noActive:hover {
	color: #209be1;
	background: rgba(32, 155, 225, 0.05);
}

.switch-radio-button .active:hover {
	background: #209be1;	
}

.switch-radio-button.disabled {
	opacity: 0.6;
	pointer-events: none;
}