:root {
  --noir: #000;
}

/** BASE */
kbd {
  margin: 0px 0.1em;
  padding: 0.1em 0.6em;
  border-radius: 3px;
  border: 1px solid rgb(204, 204, 204);
  color: rgb(51, 51, 51);
  line-height: 1.4;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  display: inline-block;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2), inset 0px 0px 0px 2px #ffffff;
  background-color: rgb(247, 247, 247);
  box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
  border-radius: 3px;
  text-shadow: 0 1px 0 #fff;
}

/** LAYOUT */
html {
  overflow: auto;
}

body {
  overflow: hidden;
}

body>header {
  height: 52px;
  box-shadow: 0.1rem 0.2rem 0.4rem #ccc;
}


.navbar-item,
.navbar-link {
  color: var(--noir);
}

a.navbar-item:hover,
.navbar-link:hover,
a.navbar-item:focus,
.navbar-brand a.navbar-item:not(.is-brand):hover,
.navbar-item.has-dropdown.is-active .navbar-link,
.navbar-item.has-dropdown:focus .navbar-link,
.navbar-item.has-dropdown:hover .navbar-link {

  color: #fff;
  background-color: var(--noir);
}

.navbar-link:not(.is-arrowless)::after {
  border-color: #000 !important;
}

.navbar-dropdown a.navbar-item:focus, .navbar-dropdown a.navbar-item:hover {
  background-color: var(--noir);
  color: #fff;
}

main {
  margin: 0px;
  padding: 0.75rem 0.75rem 0 0.75rem;
  min-height: calc(100vh - 52px);
}

#dsi-com {
  background-color: var(--noir);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/** MODULE */
.std>header>p {
  box-shadow: none;
  background-color: DimGray;
  padding: 1%;
  color: #fff;
  font-weight: bold;
  text-shadow: 2px 2px 8px #000;
}

.table_standard {
  border-collapse: collapse;
}

.table_standard th:first-of-type {
  border-radius: 4px 0px 0px 0px;
}

.table_standard th:last-of-type {
  border-radius: 0px 4px 0px 0px;
}

.table_standard thead th {
  background-color: #4a4a4a;
  padding: 1%;
  color: #fff;
  text-shadow: black 0.1em 0.1em 0.2em;
}

.table_standard td {
  padding: 2px;
}

.table_standard td:first-lettr {
  text-transform: uppercase;
}

/** SORTS CSS */
.classSortColumn {
  display: flex;
  justify-content: space-between;
  line-height: 2rem;
  cursor: pointer;
}

.icon-asc {
  width: 0;
  height: 0;
  border-left: 0.4em solid transparent;
  border-right: 0.4em solid transparent;
  border-bottom: 0.4em solid var(--noir);
}

.icon-desc {
  width: 0;
  height: 0;
  border-left: 0.4rem solid transparent;
  border-right: 0.4rem solid transparent;
  border-top: 0.4rem solid var(--noir);
}