/*
* Bootstrap overrides
*/
.modal-header {
	border-bottom: 0;
	background-color: #5a6268;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	color: #f7f7f7;
	text-transform: uppercase;
}
.modal-header h5,
.modal-header h4,
.modal-header h3 {
}
.modal-content {
	border-radius: 0;
}
.modal-footer {
	border-top: 0;
	background-color: #f7f7f7;
}
.modal-header .close {
	color: #fff;
	text-shadow: none;
}
/*
* Pagination styles
*/
.pagination {
    border-radius: 0;
}
.page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.page-item.active .page-link {
	background-color: #5a6268;
	border-color: #5a6268;
}
.page-link {
    color: #5a6268;
}
.page-link:hover {
    color: #222;
}
/*
* Custom dropdown
*/
.dropdown-custom {
	left: 50% !important;
	transform: translateX(-50%) !important;
	top: 100% !important;
}
.dropdown-custom {
	padding: 6px;
	margin-top: 12px !important;
	border-radius: 0;
}
.dropdown-custom:after, 
.dropdown-custom:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.dropdown-custom:after {
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #ffffff;
	border-width: 6px;
	margin-left: -6px;
}
.dropdown-custom:before {
	border-color: rgba(221, 221, 221, 0);
	border-bottom-color: #dddddd;
	border-width: 7px;
	margin-left: -7px;
}
