#featured-event-checklist-wrap::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
#featured-event-checklist-wrap::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

#featured-event-checklist-wrap .tablenav.top {
   display:none;
}

#featured-event-checklist-wrap input[type=radio] {
   margin-top: 5px;
}

.show-events-by div {
	display: inline;
}

.eb-spinner {
   height: 60px;
   width: 60px;
   margin: 0 auto;
   position: relative;
   -webkit-animation: rotation .6s infinite linear;
      -moz-animation: rotation .6s infinite linear;
        -o-animation: rotation .6s infinite linear;
           animation: rotation .6s infinite linear;
   border: 6px solid rgba(0,174,239,.15);
   border-radius: 100%;
}

.eb-spinner:before {
   content: "";
   display: block;
   position: absolute;
   left: -6px;
   top: -6px;
   height: 100%;
   width: 100%;
   border-top: 6px solid rgba(0,174,239,.8);
   border-left: 6px solid transparent;
   border-bottom: 6px solid transparent;
   border-right: 6px solid transparent;
   border-radius: 100%;
}

@-webkit-keyframes rotation {
   from {-webkit-transform: rotate(0deg);}
   to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
   from {-moz-transform: rotate(0deg);}
   to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
   from {-o-transform: rotate(0deg);}
   to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
   from {transform: rotate(0deg);}
   to {transform: rotate(359deg);}
