.wd-content .wd-nav
{
	width: 100%;
	display: block;
	flex-flow: wrap;
	align-items: center;
	margin-bottom: .85rem;
}
.wd-content .wd-nav > li
{
	padding-bottom: 0;
	font-size: .9em;
	font-weight: bold;
	float: left;
	clear: left;
	margin-bottom: .5rem;
}
.wd-content .wd-nav > li span
{
	padding: 0;
}
.wd-content .wd-nav > li:first-of-type span
{
	padding-left: 0;
}
.wd-content .wd-nav > li:hover,
.wd-content .wd-nav .dropdown-menu label:hover
{
	cursor: pointer;
}
.wd-content .wd-nav .dropdown-menu li
{
	padding: 0 .15em 0;
}
.wd-content .wd-nav .dropdown-menu li:hover,
.wd-content .wd-nav .dropdown-menu li.selected
{
	background: #f5f5f5;
}
.wd-content .wd-nav .dropdown-menu li.nohover:hover
{
	background: transparent;
}
.wd-content .wd-nav > li label
{
	margin-bottom: 0;
}
.wd-content .wd-nav .dropdown-menu label
{
	display: block;
	font-weight: lighter;
	padding: .55rem;
}
.wd-content .wd-nav .dropdown-menu label input
{
	position: relative;
	top: 1px;
	margin-right: .15rem;
}
.wd-content .wd-table
{
	display: none;
	width: 100%;
	margin-bottom: 1rem;
}
.wd-content .wd-table th,
.wd-content .wd-table td
{
	padding: .25rem;
	height: 47px;
}
.wd-content .wd-table.selected
{
	display: table;
}
.wd-content .wd-table thead
{
	font-weight: bold;
	background: #ff9800;
}
.wd-content .wd-table thead th,
.wd-content .wd-table tbody tr:first-of-type th
{
	text-align: center;
	padding: .45rem .25rem;
}
.wd-content .wd-table tbody tr:nth-of-type(2) td
{
	padding: .25rem;
	text-align: center;
}
.wd-content .wd-table tbody tr:first-of-type th:first-of-type,
.wd-content .wd-table tbody td.notexists,
.wd-content .wd-table tbody td.hideMethod
{
	background: #f2f2f2;
	color: transparent;
}
.wd-content table [data-info]
{
	display: block;
	text-align: center;
}

.wd-content .wd-nav > li span:after
{
	display: inline-block;
	content: "\203A";
	width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	margin: 0 1.5em 0 .5em;
	background: #f8f8f8;
	color: #838383;
	border: 1px solid #e8e8e8;
	font-weight: bold;
	border-radius: 100%;
	transform: rotate(90deg);
}
.wd-content .wd-nav > li span[aria-expanded="true"]:after
{
	transform: rotate(-90deg);
}

.checkbox-wrapper {
	width: 40px;
	height: 40px;
	border: 2px solid gray;
	margin: 30px auto;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: white;
}

.checkbox-wrapper input {
	display: none;
}

.checkbox-wrapper label {
	width: 100%;
	height: 100%;
	display: block;
	background: transparent;
	cursor: pointer;
	visibilty: hidden;
	position: absolute;
	z-index: 10;
}

.checkbox-wrapper span {
	width: 25px;
	height: 25px;
	display: inline-block;
	border-radius: 25px;
}

.checkbox-wrapper #modern-checkbox:checked+span {
	background: #0095ff;
}

.wd-nav input[type="checkbox"],
.wd-nav input[type="radio"]
{
	width: 0;
	float: left;
	display: none;
}
.wd-nav input[type="checkbox"] + i,
.wd-nav input[type="radio"] + i
{
	display: block;
	font-style: normal;
	padding-left: 18px;
}
.wd-nav input[type="checkbox"] + i:before
{
	content: "";
	margin-left: -21px;
	margin-right: 5px;
	display: inline-block;
	width: 17px;
	height: 17px;
	background: #f2f4f7;
	border: 1px solid #bec5c9;
	border-radius: 2px;
	cursor: pointer;
	visibility: visible;
	float: left;
}
.wd-nav input[type="checkbox"]:checked + i:before
{
	background: #f2f4f7 url('/images/icons/check.jpg') no-repeat center center;
	border-color: #8bc34a;
}
.wd-nav input[type="radio"] + i:before
{
	content: "";
	margin: -1px 5px 0 -21px;
	display: inline-block;
	width: 9px;
	height: 9px;
	background: #fff;
	border: 5px solid #fff;
	box-shadow: 0 0 1px rgba(0,0,0,0.35);
	border-radius: 100%;
	cursor: pointer;
	visibility: visible;
	float: left;
}
.wd-nav input[type="radio"]:checked + i:before
{
	background: #4b4b4b;
}
table.wd-table tr:nth-of-type(even),
table.wd-table tr:nth-of-type(odd)
{
	background: transparent;
}
table.wd-table td
{
	text-align: center;
}
@media screen and (min-width:576px)
{
	.wd-content .wd-nav
	{
		display: inline-flex;
	}
	.wd-content .wd-nav > li
	{
		float: none;
		clear: none;
		margin-bottom: 0;
	}
}
@media screen and (min-width:992px)
{
	.wd-content .wd-nav #wd-right
	{
		margin-left: auto;
		margin-right: 0;
	}
}
@media screen and (max-width:576px)
{
	.wd-content .wd-nav .open > .dropdown-menu
	{
		position: relative;
		min-width: auto;
	}
}