#events .eventname{
  color: #00aa70;
  font-family: Monaco, Andale Mono, Courier New, monospace;
  padding: 4px 5px;
  font-size: 14px;
  cursor: pointer;
}

#filterEvents {
  border-color: #cacdcf;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  padding: 6px;
  cursor: pointer;
  background-color: #fff;
  margin-top: 10px;
}

#filterEvents .icon-chevron-down {
  width: 12px;
  height: 12px;
  border-color: #333;
  border-style: solid;
  border-width: 4px 4px 0px 0px;
  transform: rotate(135deg);
  margin-right: 5px;
}

#eventsListContainer {
  width: 368px;
  border-width: 1px;
  border-color: #cacdcf;
  border-top: 0px;
  border-style: solid;
  border-radius: 3px;
  padding-bottom: 8px;
  background-color: #ffffff;
  position: absolute;
  margin-left: 0px;
  z-index: 1000;
  scrollbar-width: none;
}

#eventsList {
  padding: 6px;
  width: 100%;
}

#eventsList label {
  display: inline-block;
  margin: 4px 40px 4px 0px;
  width: calc(48% - 35px);
  cursor: pointer;
}

#noEvents {
  margin-left: 6px;
}

#eventLog {
  height:250px;
  overflow-y: auto;
  margin-bottom: 10px;
  clear:both;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: ns-resize;
}

#eventLog table {
  margin-bottom: 5px;
}

input[type="checkbox"] {
  margin-right: 5px;
}

#events .selectedEvent {
  background-color: #ddd;
}

@media (max-width: 979px) {
  #eventsListContainer {
    width: 326px;
  }

  #eventsList label {
    margin-right: 11px;
    width: calc(50% - 11px);
  }
}

@media (max-width: 767px) {
  #eventsListContainer {
    width: 266px;
  }

  #eventsList label {
    margin-right: 10px;
    width: calc(50% - 10px);
    font-size: 11px;
  }
}

#eventDetails {
  height: 250px;
  width: 100%;
  overflow-y: auto;
}

#modifier-keys {
  opacity: 0;
}

.key {
  background-color: #b2df8a;
  border: 2px solid #ffffff;
  display: inline-block;
  color: #5E5E5E;
  font: 14px arial;
  text-decoration: none;
  text-align: center;
  margin: 3px 3px;
  padding: 6px 6px;
}

.key.active {
  border-color: #ffaf00;
  background-color: #ffaf00;
}
