#cover-spin, .cover-spin {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(0,0,0,0.5);
    z-index:9999;
    display: none;
}

input[type="checkbox"], input[type="radio"] {
	margin-top: 0px;
}

.vcenter {
	display: inline-block;
	vertical-align: middle;
	float: none;
 }

.active-menu-item,
.dropmenudiv a.active-menu-item,
.dropdown-menu > li > a.active-menu-item {
    color: #94C619;
}

#menu .menu-item {
    padding: 8px 1px 8px 20px;
    border-bottom: 1px solid #D1D1D1;
    margin-bottom: 3px;
}

#menu .menu-item ul.dropdown-menu {
    left: 20px;
}

@-webkit-keyframes spin {
	from {-webkit-transform:rotate(0deg);}
	to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
	from {transform:rotate(0deg);}
	to {transform:rotate(360deg);}
}

#cover-spin::after, .cover-spin::after {
    content:'';
    display:block;
    position:absolute;
    left:48%;top:40%;
    width:40px;height:40px;
    border-style:solid;
    border-color:blue;
    border-top-color:transparent;
    border-width: 4px;
    border-radius:50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

.nl2br {
	white-space: pre-wrap;
}

table.win-loss-report thead tr.head1 th {
    background-color: #7D7D7D;
    color: white;
}

table.play thead tr {
    background-color: grey;
    color: white;
}