html { 
	height:100%; 
}
body {
	height:100%; 
	overflow:hidden; 
	margin:0; 
	padding:0; 
	font-family:Arial, Helvetica, sans-serif; 
	font-size:16px; 
	color:#FFFFFF; 
	background-color:#000000; 
}
.sticky-bar{
	position:fixed;
	left:0; bottom:30px;
	z-index:2;
	width:100%;
	height:42px;
}
.sticky-nav {
	display:inline-flex;
	border-radius:5px;
	background:rgba(255,255,255,0.8);
}
.btn{
	padding: .25rem .95rem;
}
.btn-outline-default{
	outline:none;
    font-size: 18px;
    color: #333;
}
.btn-outline-default:focus{
	outline:none !important;
	box-shadow: none !important
}
@media screen and (max-width:575px){
	.sticky-bar{
		bottom:20px !important;
	}
	.btn-outline-default{
		padding:.25rem .55rem !important;
		font-size:14px !important;
	}
}
.dropdown-menu{
	background:rgba(255,255,255,0.8);
}