:root {
  --gris: #444;
  --rouge: #ff0000;
  --noir: #111111;
  --vert: #80BC00;
  --blanc: #F8F8FF;
}

/** 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: Arial, Helvetica, 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;
}

/*********************
        MENU
*********************/
body>header {
  height: 52px;
  box-shadow: 0.1rem 0.2rem 0.4rem #ccc;
}

.navbar.is-white .navbar-brand .navbar-link, .navbar.is-white .navbar-brand>.navbar-item {
  color: var(--rouge) !important;
}

main {
  margin: 0px;
  padding: 0.75rem 0.75rem 0 0.75rem;
  min-height: calc(100vh - 52px);
}

#dsi-com {
  background-color: var(--gris);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/** MODULE */
h1.title {
  color: var(--rouge);
}

h2.titre {
  margin-bottom: .5rem;
  margin-top: .5rem;
  color: var(--rouge);
  font-weight: bolder;
}

.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: var(--gris);
  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;
}

.tabs ul li:not(.is-active) {
  opacity: 0.5;
}

/** 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(--gris);
}

.icon-desc {
  width: 0;
  height: 0;
  border-left: 0.4rem solid transparent;
  border-right: 0.4rem solid transparent;
  border-top: 0.4rem solid var(--gris);
}

input:invalid {
  border-color: var(--rouge);
}

/*************************************************************************************
    BUTTONS RADIO avec Bulma Group (https://bulma.io/documentation/elements/button/)
**************************************************************************************/
.buttonsradio input[type="radio"] {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.buttonsradio input:checked+label {
  background-color: var(--noir);
  color: #fff;
}

.buttonsradio label:first-of-type {
  border-top-left-radius: .375em !important;
  border-bottom-left-radius: .375em !important;
}

.column>label:first-of-type {
  opacity: .7;
}

/*******************
    PATCH BULMA
*******************/
.message-header {
  background-color: var(--gris);
}

.navbar-burger {
  color: var(--rouge);
}

.navbar-menu.is-active {
  background-color: var(--gris);
}

.input, .select select, .textarea, .tabs ul, .tabs a, .button.is-static {
  border-color: var(--gris);
}

.tabs a:hover {
  border-bottom-color: var(--vert);
}

.tabs li.is-active a {
  background-color: rgba(150, 150, 250, 0.1);
  border-top-left-radius: .5em;
  border-top-right-radius: .5em;
}

input:read-only {
  background-color: #eee;
  border: none;
}

/*******************
    PATCH JQUERY
*******************/
.ui-widget-header {
  background: var(--gris) !important;
  color: #fff !important;
}