@charset "UTF-8";
@import "variables.css";

/*--------------------------------------------------------------
BODY
--------------------------------------------------------------*/
html,
body {
  font-family: var(--font-primary);
  color: var(--gray-600);
  font-weight: 500;
  margin: 0;
}

main p {
  color: var(--gray-600);
}

/*--------------------------------------------------------------
LINKS
--------------------------------------------------------------*/

a {
  font-family: var(--font-primary);
  color: var(--primary-600);
}
a:hover {
  color: var(--gray-600);
  opacity: 0.8;
}

/*--------------------------------------------------------------
HEADING
--------------------------------------------------------------*/
h1.titre-page {
  text-align: center;
  margin-top: 2rem;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary-500);
  /*border-bottom: 8px solid var(--primary-100);*/
  margin-bottom: 2rem;
}
/*--------------------------------------------------------------
SÉPARATEUR
--------------------------------------------------------------*/
hr {
  border: 0.5px solid #dedede;
}
header {
  background-color: var(--secondary-100);
}
/*--------------------------------------------------------------
TOP MENU
--------------------------------------------------------------*/
.topnav {
  background-color: var(--primary-700);
}
.topnav .navbar {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0;
  height: 60px;
  align-self: center;
  align-items: center;
  align-content: center;
  padding-top: 0 !important;
}
.topnav .navbar .branding img {
  width: 120px;
}
.topnav .navbar .container-connexion {
  flex-grow: 0;
}
.topnav .navbar .container-toggle {
  flex-grow: 0;
}
/*--------------------------------------------------------------
MENU
--------------------------------------------------------------*/
.head-home .module-first-menu .first-nav {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
}
.head-home .module-first-menu ul.first-nav {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.head-home .module-first-menu .first-nav li {
  text-align: center;
}
.head-home .module-first-menu .first-nav li a {
  text-decoration: none;
  color: var(--primary-500);
  list-style: none;
  margin-left: 12px;
}

.head-home .main-nav {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
}
.head-home ul.main-nav {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.head-home .topnav {
  position: relative;
  -webkit-box-shadow: 0px 12px 15px -9px #bfbfbf;
  box-shadow: 0px 12px 15px -9px #bfbfbf;
}
.head-home .topnav a.nav-links {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
}
.head-home .topnav .main-nav li {
  text-align: center;
}
.head-home .topnav .main-nav li a {
  text-decoration: none;
  color: #fff;
  list-style: none;
  margin-left: 12px;
}
.head-home ul.main-nav a.btn.btn-contour-gris {
  font-size: 12.9px;
  padding: 2px 6px;
  margin-right: 6px;
}
.head-home .topnav ul.main-nav li:last-child {
  font-size: 14px;
  font-weight: 600;
  color: #20ad9f;
}

/*--------------------------------------------------------------
MENU MOBILE
--------------------------------------------------------------*/
.hamburger {
  background: none;
  color: #fff;
  padding: 0;
  border: 0;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
  outline: none;
}
.cross {
  background: none;
  color: #fff;
  padding: 0;
  border: 0;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  outline: none;
}
.menu-ouvert {
  z-index: 1000000;
  font-weight: bold;
  width: 100%;
  background: #f3f3f3;
  position: absolute;
  text-align: center;
  font-size: 12px;
}
.menu-ouvert ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-image: none;
}
.menu-ouvert li {
  display: block;
  padding: 15px 0 15px 0;
  border-bottom: #dddddd 1px solid;
}
.menu-ouvert li:hover {
  display: block;
  background: #ffffff;
  padding: 15px 0 15px 0;
  border-bottom: #dddddd 1px solid;
}
.menu-ouvert ul li a {
  text-decoration: none;
  margin: 0px;
  color: var(--primary-800);
}
.menu-ouvert ul li a:hover {
  color: var(--primary-800);
  text-decoration: none;
}
.menu-ouvert a {
  text-decoration: none;
  color: var(--primary-800);
}
.menu-ouvert a:hover {
  text-decoration: none;
  color: var(--primary-800);
}
.menu-ouvert input[type="text"] {
  height: 26px;
  color: gray;
  width: 200px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 1px;
  font-size: 12px;
  margin: 0 !important;
  padding: 1px 6px;
}
.glyphicon-home {
  color: white;
  font-size: 1.5em;
  margin-top: 5px;
  margin: 0 auto;
}
.container-toggle {
  display: none;
}
/*.container-search {
	color: var(--white);
}*/
/*--------------------------------------------------------------
ALIGN
--------------------------------------------------------------*/
#bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
.gradient-box {
  height: 40px;
  background: rgb(250, 155, 5);
  background: linear-gradient(90deg, rgba(250, 155, 5, 1) 0%, rgba(255, 233, 51, 1) 73%);
}
/*--------------------------------------------------------------
ASIDE
--------------------------------------------------------------*/
aside {
  background-color: var(--gray-100);
  border: 1px solid var(--gray-200);
}
/*--------------------------------------------------------------
BOUTONS
--------------------------------------------------------------*/
.btn.btn-primary {
  color: var(--white) !important;
  background-color: var(--primary-400) !important;
}
.btn.btn-secondary {
  color: var(--white) !important;
  background-color: var(--primary-600) !important;
}
.btn.btn-outline-primary {
  border: 1px solid var(--primary-400) !important;
  color: var(--primary-400) !important;
}
a.btn.btn-primary {
  color: var(--white0) !important;
  background-color: var(--primary-400) !important;
}
a.btn.btn-secondary {
  color: var(--white) !important;
  background-color: var(--primary-600) !important;
}
a.btn.btn-outline-primary {
  border: 1px solid var(--primary-400) !important;
  color: var(--primary-400) !important;
}

/*--------------------------------------------------------------
TABLE
--------------------------------------------------------------*/
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 3rem;
  font-size: 12px;
  color: var(--gray-500);
}
table tr,
th {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
}
table tr,
th a {
  color: var(--white);
}
table tr,
th a:hover {
  color: var(--white);
}
table td,
table th {
  border: 1px solid #ddd;
  padding: 8px;
}
table td,
table th {
  border: 1px solid var(--gray-700);
  padding: 12px;
}
table td a.titre {
  color: var(--primary-600);
  font-size: 1.2rem;
  font-weight: 800;
}
table td a.user {
  color: var(--gray-700);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: underline;
}
table td span.numb {
  color: var(--gray-700);
  font-size: 1.4rem;
  font-weight: 500;
}
table td,
p {
  color: var(--gray-700);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

table tr:nth-child(even) {
  background-color: #f5f5f5;
}

table tr:hover {
  background-color: #ddd;
}

table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  color: white;
  background: rgb(0, 100, 183);
  background: linear-gradient(180deg, rgba(0, 100, 183, 1) 0%, rgba(1, 79, 122, 1) 35%);
}
/*--------------------------------------------------------------
ACCORDION
--------------------------------------------------------------*/
.accordion-button {
  color: var(--primary-900);
  background-color: var(--secondary-100);
  border-bottom: 1px solid var(--primary-100);
}
.accordion-button:not(.collapsed) {
  color: var(--white);
  background-color: var(--primary-700);
}
