.table th.dropdown>button {
	align-content:space-between;
	align-items:center;
	background-color:transparent;
	border:0 #ddd;
	display:flex;
	text-align:left;
	width:100%
}
.table th.dropdown>button,.table th>span {
 line-height:1.25;
 white-space:nowrap;
}
.table th.dropdown>button>span {
	width:100%;
}
.table th.dropdown>button:focus {
	outline:0;
}



.dropdown-menu {
	position:absolute;
	top:100%;
	left:0;
	z-index:1000;
	display:none;
	float:left;
	min-width:10rem;
	margin:.125rem 0 0;
	font-size:1.25rem;
	font-weight: 400;
	padding:0;
	overflow:hidden;
	color:#292b2c;
	text-align:left;
	list-style:none;
	background-color:#fff;
	background-clip:padding-box;
	border:1px solid rgba(0,0,0,.15);
	border-radius:.25rem;
}

.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu.open {
	display:block;
}
.dropdown-menu.right {
	left:initial;
	right:0
}
.dropdown-menu>.divider {
	margin:0;
}
.dropdown-divider {
	height:1px;
	margin:2rem 0;
	overflow:hidden;
	background-color:#eceeef
}
.dropdown-item {
	display:block;
	width:100%;
	clear:both;
	color:#292b2c;
	text-align:inherit;
	background:0 0;
	border:0;
	cursor: pointer !important;
}
.dropdown-item.active:hover,.dropdown-item:focus {
	background-color:rgba(0,0,0,.065);
	color:#373a3c;
}
.dropdown-item,.dropdown-item.active {
	padding:3px 1rem;
}
.dropdown-item.active {
	display:block;
	width:100%;
	clear:both;
	font-weight:400;
	line-height:1.5;
	color:#373a3c;
	text-align:inherit;
	white-space:nowrap;
	background:rgba(0,0,0,.065);
	border:0;
}
.dropdown-toggle::after {
	display:inline-block;
	width:0;
	height:0;
	margin-left:.3em;
	vertical-align:middle;
	content:"";
	border-top:.3em solid;
	border-right:.3em solid transparent;
	border-left:.3em solid transparent;
}
.dropdown-toggle:focus {
	outline:0;
}
.dropup .dropdown-toggle::after {
	border-top:0;
	border-bottom:.3em solid;
}

.open>.dropdown-menu {
    display: block;
}
