/* Radio Switch Buttons */
.bigta-switch-radio {
	overflow: hidden;
	display: inline;
}
.bigta-switch-radio:after {
	content: "";
	display: table;
	clear: both;
}

.switch-title {
	margin-bottom: 6px;
}

.bigta-switch-radio input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.bigta-switch-radio label {
	float: left;
	background-color: #e1e1e1;
	color: #777;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	text-shadow: none;
	padding: 12px 15px;
	min-width: 150px;
	/*border: 1px solid #449447;*/
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.misc-pub-section .bigta-switch-radio label {
	min-width: 50px;
}
.bigta-switch-radio label:hover {
	cursor: pointer;
}

.bigta-switch-radio input:checked + label {
	background-color: #6bbd6e;
	color: #fff;
}

.bigta-switch-radio label:first-of-type {
	border-radius: 3px 0 0 3px;
	border-right: none;
}
.bigta-switch-radio label:last-of-type {
	border-radius: 0 3px 3px 0;
}
.bigta-switch-radio input:checked + label:last-of-type {
	background-color: #aaa;
}
.bigta-switch-radio label.bigta-disabled {
	background-color: #cbcbcb;
	color: #666;
}

.bigta-switch-radio .bigta-tooltip {
	margin-top: 8px;
	margin-left: 3px;
}
.bigta-switch-radio .bigta-tooltip .bigta-tooltiptext {
	width: 400px;
	font-size: 12px;
	padding: 10px 15px;
}