@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
  background: #f6f6f6;
  overflow: hidden;
}

h1 {
  text-align: center;
}

a {
  text-decoration: none;
  color: #0b3c61;
}
a:hover {
  text-decoration-line: underline;
}

body {
  font-family: "Raleway", "Roboto", sans-serif;
  color: #0b3c61;
  font-size: 2rem;
  font-weight: 100;
  line-height: 1.7;
  font-weight: bold;
}

h1 {
  font-family: "Raleway", "Roboto", sans-serif;
  font-weight: 900;
  font-size: 5rem;
  font-weight: bold;
}

textarea {
  font-family: "Raleway", "Roboto", sans-serif;
  font-weight: 100;
  font-size: 2rem;
}

button {
  font-family: "Raleway", "Roboto", sans-serif;
  font-weight: 900;
  font-size: 2.75rem;
}

.btn {
  border-radius: 30px;
  padding: 16px 32px;
  background-color: #0b3c61;
  border: 2px solid #0b3c61;
  color: #f6f6f6;
  cursor: pointer;
  transition: all 200ms;
}
.btn:hover {
  background-color: #f6f6f6;
  color: #0b3c61;
}

.dashboard {
  width: 100%;
  background-color: #aaaaaa17;
}
.dashboard__settings {
  background-color: #0b3c61;
  position: sticky;
  top: 0px;
  width: 99%;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.dashboard__dashboards {
  background-color: #aaaaaa17;
}

.dashboards__site {
  margin: 10px;
  border-radius: 10px;
  background-color: #f6f6f6;
  -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}

.site__data {
  display: flex;
  justify-content: space-around;
}
.site__kpis {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.kpi__chart {
  width: 45%;
}

.settings__form {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.settings__form > div {
  height: 100%;
  color: #f6f6f6;
  padding: 10px;
}
.settings__period {
  display: flex;
}
.settings__period > div {
  width: 150px;
}
.settings__validationButton {
  border-radius: 30px;
  padding: 16px 32px;
  background-color: #0b3c61;
  border: 2px solid #f6f6f6;
  color: #f6f6f6;
  cursor: pointer;
  transition: all 200ms;
}
.settings__validationButton:hover {
  background-color: #f6f6f6;
  color: #0b3c61;
}

.settings__selectClient > div {
  display: flex;
  flex-direction: column;
}

.homepage__titre {
  text-align: center;
}

.grid-history {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}

.history__graph {
  grid-column: 2/10;
}
.history__listKw {
  grid-column: 10/12;
  text-align: center;
  border: 1px solid #b3d03d;
  text-decoration: none;
}
.history__table {
  grid-column: 2/12;
}
.history__table table {
  width: 100%;
}
.history__table table th, .history__table table td {
  text-align: center;
}

.listKw__button {
  display: block;
  border: none;
  color: #f6f6f6;
  background: #b3d03d;
  width: 100%;
  text-decoration: none;
}
.listKw__list {
  list-style: none;
}

.container {
  height: 100vh;
  width: 100vw;
  display: grid;
  grid-gap: 2px;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 30px;
}

.body {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr 7fr;
}

.content {
  overflow-y: scroll;
}

.navbar {
  background-color: #0b3c61;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-width: 200px;
}
.navbar__header {
  width: 100%;
  padding: 20px 0;
  border-bottom: 2px #b3d03d solid;
  text-align: center;
}
.navbar__header img {
  width: 60%;
}
.navbar__links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: baseline;
  font-size: 2rem;
  line-height: 60px;
  height: 100%;
  width: 100%;
  margin-left: 50px;
}
.navbar__logout {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.navbar__logout svg {
  transition: all 0.3s ease;
}
.navbar__logout svg:hover {
  border-radius: 100px;
  background-color: #E87C79;
  transform: rotate(1turn);
}
.navbar a {
  color: #f6f6f6;
  text-align: center;
  transition: transform 0.3s ease;
}
.navbar a:hover {
  transform: scale(1.1);
}
.navbar a i {
  width: 25px;
  margin-right: 20px;
}

.footer {
  background-color: #0b3c61;
  color: white;
  text-align: center;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

input {
  width: 100%;
  color: #0b3c61;
  padding: 10px 0px;
}

table {
  border-collapse: collapse;
  font-size: 0.9em;
  min-width: 400px;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(11, 60, 97, 0.15);
}
table thead tr {
  background-color: #0b3c61;
  color: #f6f6f6;
  font-weight: bold;
}
table tbody tr:nth-of-type(even) {
  background-color: rgba(11, 60, 97, 0.15);
}
table tbody tr:last-of-type {
  border-bottom: 2px solid #0b3c61;
}
table tbody tr:hover {
  background-color: rgba(11, 60, 97, 0.15);
}
table tbody tr td {
  border: 1px dashed #b3d03d;
}
table th, table td {
  padding: 0px 10px;
  text-align: center;
}
table th a, table td a {
  text-decoration: none;
}

.table-sortable th {
  cursor: pointer;
}
.table-sortable .th-sort-asc, .table-sortable .th-sort-desc {
  background: rgba(255, 255, 255, 0.1);
}
.table-sortable .th-sort-asc::after {
  content: "▴";
}
.table-sortable .th-sort-desc::after {
  content: "▾";
}
.table-sortable .th-sort-asc::after, .table-sortable .th-sort-desc::after {
  margin-left: 5px;
}

.top3 {
  background-color: #99ff33;
}

.top10 {
  background-color: #66cc00;
}

.top20 {
  background-color: #ff9966;
}

.top30 {
  background-color: #ff6600;
}

.evolutionPositive {
  background-color: #99ff33;
}
.evolutionPositive::after {
  content: "▴";
}

.evolutionNegative {
  background-color: #81f7d8;
}
.evolutionNegative::after {
  content: "▾";
}

/*# sourceMappingURL=style.css.map */
