@charset "UTF-8";
/* Fonts */
/* Couleurs */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  to {
    transform: translateY(-10px);
  }
}
html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #4a4a4a;
}

a {
  text-decoration: none;
  color: #226679;
}
a:hover {
  color: #e6007e;
}
a.form-button {
  display: inline-block;
  padding: 8px 15px 8px 15px;
  font-size: 18px;
  background-color: #a9cf53;
  color: #4a4a4a;
  border-radius: 4px;
}

p {
  line-height: 22px;
}
p.empty-box {
  padding-left: 22px;
  background: url("../../img/icon/empty-box-icon.svg") 3px 2px no-repeat;
  background-size: 16px 16px;
}
p.small-note {
  font-size: 13px;
  font-style: italic;
}

h1 {
  color: #004c59;
  font-weight: normal;
  font-size: 28px;
  margin: 30px 0px 40px 0px;
}

h2 {
  color: #004c59;
  font-size: 18px;
  border-bottom: #e6007e 1px solid;
  font-weight: normal;
}

h3 {
  font-size: 18px;
  font-weight: normal;
  color: #e6007e;
  margin: 10px 1px 10px 1px;
}

.strong {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.small {
  font-style: italic;
  font-size: 12px;
}

.magenta {
  color: #e6007e;
}

.grey {
  color: #727274;
}

.dark-green {
  color: #5c722c;
}

.orange {
  color: #f3a630;
}

.dark-red {
  color: rgb(189, 2, 2);
}

.brown {
  color: #5e2a07;
}

.strike {
  text-decoration: line-through;
}

.very-big {
  font-size: 24px;
  line-height: 28px;
}

.stretch {
  width: 98%;
  height: 80vh;
  margin: auto;
}

.clipboard-copy {
  cursor: pointer;
  color: #915f19 !important;
}

p.page-info {
  font-size: 14px;
  font-style: italic;
  margin: 2px 0px 2px 0px;
}

p.bottom-info {
  background-color: #e8e9ec;
  font-size: 14px;
  text-align: center;
  margin: 3px 0px 3px 0px;
}

ul.filelist {
  padding-left: 15px;
}
ul.filelist li {
  list-style-type: none;
  padding-left: 20px;
  background-image: url("../../img/icon/file-icon.svg");
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

span.tools-tag {
  display: inline-block;
  color: #915f19;
  cursor: help;
}

div.tools-tag-popup {
  position: absolute;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  color: #f5f5f5;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 2px 2px 3px #99999b;
}
div.tools-tag-popup div.loading {
  border-radius: 50%;
  border: solid 6px #f5f5f5;
  border-top-color: #99999b;
  width: 20px;
  height: 20px;
  margin: auto;
  animation: spin 2s linear infinite;
}
div.tools-tag-popup p {
  margin: 2px 0px 2px 0px;
}

div.message-box {
  margin: 10px 0px 10px 0px;
  border-style: solid;
  border-width: thin;
  border-left-width: 3px;
}
div.message-box.error {
  background-color: rgb(253, 207, 207);
  border-color: rgb(177, 54, 54);
}
div.message-box.success {
  background-color: rgb(191, 255, 191);
  border-color: rgb(33, 129, 33);
}
div.message-box.warning {
  background-color: rgb(253, 226, 176);
  border-color: rgb(165, 107, 0);
}
div.message-box a {
  color: #b00064;
}

div.link-section {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  border-bottom: solid thin #e8e9ec;
}
div.link-section a {
  display: block;
  padding: 5px 5px 5px 22px;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: 2px 5px;
}
div.link-section a.a-add {
  background-image: url("../../img/icon/add-icon.svg");
}
div.link-section a.a-back {
  background-image: url("../../img/icon/back-icon.svg");
}
div.link-section a.a-clone {
  background-image: url("../../img/icon/clone-icon.svg");
}
div.link-section a.a-valid {
  background-image: url("../../img/icon/ok-icon.svg");
}
div.link-section a.a-edit {
  background-image: url("../../img/icon/edit-icon.svg");
}
div.link-section a.a-delete {
  background-image: url("../../img/icon/delete-icon.svg");
}
div.link-section a.a-home {
  background-image: url("../../img/icon/home-icon.svg");
}
div.link-section a.a-security {
  background-image: url("../../img/icon/security-icon.svg");
}
div.link-section a.a-view {
  background-image: url("../../img/icon/display-icon.svg");
}
div.link-section a.a-box {
  background-image: url("../../img/icon/empty-box-icon.svg");
}
div.link-section a.a-export {
  background-image: url("../../img/icon/export-icon.svg");
}

a.valid {
  padding: 5px 5px 5px 22px;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: 2px 5px;
  background-image: url("../../img/icon/ok-icon.svg");
}

div.keywords-list {
  background: url("../../img/icon/keyword-search-icon.svg") 2px 2px no-repeat;
  background-size: 20px 20px;
  padding-left: 24px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
div.keywords-list div.keyword {
  display: flex;
  gap: 2px;
}
div.keywords-list div.keyword a, div.keywords-list div.keyword button[type=button] {
  display: block;
  color: #4a4a4a;
  background-color: #e8e9ec;
  padding: 3px 10px 3px 10px;
  border-radius: 3px;
  border: none;
}
div.keywords-list div.keyword a.subscribe-button, div.keywords-list div.keyword button[type=button].subscribe-button {
  cursor: pointer;
  padding: 10px;
}
div.keywords-list div.keyword a.subscribe-button.subscribe, div.keywords-list div.keyword button[type=button].subscribe-button.subscribe {
  background: url("../../img/icon/subscribe-icon.svg") 0px 2px no-repeat;
  background-size: 20px 20px;
}
div.keywords-list div.keyword a.subscribe-button.subscribed, div.keywords-list div.keyword button[type=button].subscribe-button.subscribed {
  background: url("../../img/icon/success-icon.svg") 0px 2px no-repeat;
  background-size: 20px 20px;
}

table.data-table {
  width: 100%;
}
table.data-table thead td {
  background-color: #004c59;
  padding: 4px;
  color: #ffffff;
}
table.data-table tbody tr td {
  padding: 4px;
}
table.data-table tbody tr:hover, table.data-table tbody tr.selected-row {
  background-color: #ecf9fc;
}
table.data-table tbody tr:nth-child(odd) {
  background-color: #f5f5f5;
}

div.collapsible-item .collapsible-item-title {
  font-size: 20px;
  color: #e6007e;
  padding-left: 30px;
  cursor: pointer;
  border-bottom: solid 2px #e8e9ec;
  background: url("../../img/icon/up-icon-orange.svg") no-repeat;
  background-size: 24px 24px;
}
div.collapsible-item .collapsible-item-title.expanded {
  background: url("../../img/icon/down-icon-orange.svg") no-repeat;
  background-size: 24px 24px;
}
div.collapsible-item div.collapsible-item-content {
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  height: 0;
}
div.collapsible-item div.collapsible-item-content p {
  margin: 0px;
}

div.message-board {
  position: fixed;
  top: 30px;
  left: 50%;
  padding-left: 50px;
  transform: translateX(-50%);
  width: 80vw;
  max-width: 600px;
  border-style: solid;
  border-width: 2px;
  border-radius: 4px;
  box-shadow: 2px 2px 3px #888888;
}
div.message-board p {
  font-family: "Helvetica Neue", Arial, sans-serif;
}
div.message-board.info {
  border-color: #4a4a4a;
  color: #4a4a4a;
  background: url("../../img/icon/info-icon.svg") no-repeat 12px 12px #e8e9ec;
  background-size: 30px 30px;
}
div.message-board.success {
  border-color: rgb(33, 129, 33);
  color: rgb(33, 129, 33);
  background: url("../../img/icon/success-icon.svg") no-repeat 12px 12px rgb(191, 255, 191);
  background-size: 30px 30px;
}
div.message-board.warning {
  border-color: rgb(165, 107, 0);
  color: rgb(165, 107, 0);
  background: url("../../img/icon/warning-icon-orange.svg") no-repeat 12px 12px rgb(253, 226, 176);
  background-size: 30px 30px;
}
div.message-board.error {
  border-color: rgb(177, 54, 54);
  color: rgb(177, 54, 54);
  background: url("../../img/icon/error-icon.svg") no-repeat 12px 12px rgb(253, 207, 207);
  background-size: 30px 30px;
}

div.flex-table {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
div.flex-table p {
  margin: 0px;
}
div.flex-table div.flex-table-row {
  width: 45%;
  min-width: 350px;
  display: flex;
  gap: 10px;
}
div.flex-table div.flex-table-row p:first-child {
  width: 180px;
}

div.loading-widget {
  border-radius: 50%;
  border: solid 6px #e6007e;
  border-top-color: #b00064;
  width: 30px;
  height: 30px;
  margin: auto;
  margin-top: 20px;
  animation: spin 2s linear infinite;
}

div.loading-dots {
  margin: 1px 0px 0px 15px;
}
div.loading-dots span {
  padding-left: 4px !important;
  display: inline-block;
  width: 1px;
  height: 5px;
  margin: 0 1px;
  background-color: #e6007e !important;
  background-image: none !important;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}
div.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
div.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

div.search-keyword-autocomplete, div.search-user-autocomplete {
  display: none;
  position: absolute;
  border: solid thin #99999b;
  background-color: #ffffff;
  min-height: 25px;
  max-height: 400px;
  overflow-y: auto;
  width: 190px;
  padding: 4px 0px 0px 4px;
}
div.search-keyword-autocomplete a, div.search-keyword-autocomplete p, div.search-user-autocomplete a, div.search-user-autocomplete p {
  color: #4a4a4a !important;
  display: block;
  margin: 0px 0px 3px 0px;
  font-size: 14px;
}
div.search-keyword-autocomplete a:hover, div.search-user-autocomplete a:hover {
  color: #e6007e !important;
}

div.masquerade-exit {
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 50%;
  box-shadow: 2px 2px 3px #99999b;
  background-color: rgba(0, 0, 0, 0.8);
}
div.masquerade-exit p {
  color: #f5f5f5;
  padding-left: 20px;
  font-weight: bold;
}
div.masquerade-exit p a {
  color: #e6007e;
}

@media print {
  body * {
    visibility: hidden;
  }
  section.content, section.content *, div.header-branding * {
    visibility: visible;
  }
  footer.footer {
    display: none;
  }
}
header#header {
  background-color: #ecf9fc;
  border-bottom: solid thin #4ccbf2;
}
header#header a {
  color: #004c59;
}
header#header section#header-content {
  display: flex;
  max-width: 1000px;
  margin: auto;
}
header#header section#header-content div#header-branding {
  flex-grow: 3;
}
header#header section#header-content div#header-branding div#branding {
  height: 140px;
  padding-left: 180px;
  background: url("../../img/cessoc_logo.webp") 10px 10px no-repeat;
}
header#header section#header-content div#header-branding div#branding h1 {
  font-size: 19px;
  line-height: 20px;
  font-weight: normal;
  padding-top: 60px;
  margin-top: 0px;
}
header#header section#header-content div#logged-navigation {
  flex-grow: 2;
}
header#header section#header-content div#logged-navigation ul {
  font-size: 14px;
}
header#header section#header-content div#logged-navigation ul li {
  list-style-type: none;
  padding-left: 16px;
  padding-bottom: 8px;
  background-size: 14px 14px;
  background-repeat: no-repeat;
}
header#header section#header-content div#logged-navigation ul li a:hover {
  color: #e6007e;
}
header#header section#header-content div#logged-navigation ul li.nav-account {
  background-image: url("../../img/icon/account-icon.svg");
}
header#header section#header-content div#logged-navigation ul li.nav-security {
  background-image: url("../../img/icon/security-icon.svg");
}
header#header section#header-content div#logged-navigation ul li.nav-logout {
  background-image: url("../../img/icon/logout-icon.svg");
}
header#header div#main-navigation-section {
  display: flex;
  border: solid thin #4ccbf2;
  border-bottom: solid thin #ffffff;
  background-color: #ffffff;
  max-width: 1000px;
  margin: auto;
  transform: translateY(1px);
}
header#header div#main-navigation-section nav#main-navigation {
  flex-grow: 5;
}
header#header div#main-navigation-section nav#main-navigation label.burger {
  cursor: pointer;
  display: none;
  width: 50px;
  height: 43px;
  padding-top: 7px;
}
header#header div#main-navigation-section nav#main-navigation label.burger span {
  display: block;
  height: 6px;
  margin: 4px;
  background-color: #99999b;
}
header#header div#main-navigation-section nav#main-navigation label.burger:hover > span {
  background-color: #e6007e;
}
header#header div#main-navigation-section nav#main-navigation input#menu-toggle {
  display: none;
}
header#header div#main-navigation-section nav#main-navigation ul.menu {
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
  padding-left: 5px;
  margin: 0px 0px 1px 0px;
  color: #555555;
}
header#header div#main-navigation-section nav#main-navigation ul.menu a {
  color: #555555;
  font-size: 0.98em;
}
header#header div#main-navigation-section nav#main-navigation ul.menu li.menu-item {
  list-style-type: none;
  padding: 8px 6px 3px 6px;
}
header#header div#main-navigation-section nav#main-navigation ul.menu li.menu-item:hover > a {
  color: #e6007e;
}
header#header div#main-navigation-section nav#main-navigation ul.menu li.first-menu-item:hover {
  border-top: solid 3px #4ccbf2;
  padding-top: 5px;
}
header#header div#main-navigation-section nav#main-navigation ul.menu li.nav-home a {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../../img/icon/home-icon.svg") no-repeat;
  background-size: 20px 20px;
}
header#header div#main-navigation-section nav#main-navigation ul.menu ul.menu {
  z-index: 1000000;
  display: none;
  position: absolute;
  border: solid thin #4ccbf2;
  background-color: #ffffff;
  border-top: none;
  box-shadow: 3px 3px 0px #dedede;
  margin-top: 3px;
  padding: 8px;
}
header#header div#main-navigation-section nav#main-navigation ul.menu ul.menu li.menu-item {
  color: #4ccbf2;
  padding: 0px;
}
header#header div#main-navigation-section nav#main-navigation ul.menu ul.menu li.menu-item::before {
  content: " - ";
}
header#header div#main-navigation-section div#navigation-search {
  flex-grow: 1;
  margin-top: 2px;
}
header#header div#main-navigation-section div#navigation-search div.form-item {
  margin-top: 4px;
}
header#header div#main-navigation-section div#navigation-search div.form-item input {
  width: 150px;
  padding-left: 20px;
  background: url("../../img/icon/search-icon.svg") 1px 1px no-repeat;
  background-size: 18px 18px;
  color: #4a4a4a;
}
header#header div#main-navigation-section div#navigation-search div.form-item label {
  display: block;
  font-size: 10px;
  font-style: italic;
  padding-top: 1px;
  color: #555555;
}

nav#main-navigation ul.menu li.menu-item:hover > ul.menu {
  display: block !important;
}

nav#main-navigation input#menu-toggle:checked ~ ul.main-menu {
  display: block !important;
  flex-direction: column;
}

@media (max-width: 897px) {
  div#branding h1 {
    display: none;
  }
  div#main-navigation-section {
    border-bottom: solid thin #4ccbf2 !important;
    border-top: solid thin #4ccbf2 !important;
    border-left: none !important;
    border-right: none !important;
  }
  div#main-navigation-section nav#main-navigation label.burger {
    display: block !important;
  }
  div#main-navigation-section nav#main-navigation ul.main-menu {
    display: none !important;
  }
  div#main-navigation-section nav#main-navigation ul.main-menu ul.menu {
    position: relative !important;
  }
  div#navigation-search {
    display: none !important;
  }
}
main#main {
  margin: 10px 0px 10px 0px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
}
main#main input#sub-menu-toggle {
  display: none;
}
main#main input#sub-menu-toggle:checked ~ section#sub-nav {
  display: block !important;
}
main#main label.burger {
  display: none;
  height: 35px;
  width: 40px;
  position: fixed;
  padding-top: 5px;
  right: 0;
  background-color: #e8e9ec;
  cursor: pointer;
  z-index: 1100;
}
main#main label.burger span {
  display: block;
  margin: auto;
  margin-top: 5px;
  margin-bottom: 5px;
  height: 3px;
  width: 80%;
  background-color: #e6007e;
  margin-bottom: 4px;
}
main#main section#sub-nav {
  margin-right: 10px;
  width: 16vw;
  min-width: 200px;
  padding-top: 23px;
}
main#main section#sub-nav div.sub-navigation-content {
  width: 90%;
  padding: 4px;
  margin: auto;
  position: sticky;
  top: 0px;
}
main#main section#sub-nav div.sub-navigation-content h3 {
  font-size: 16px;
  color: #b00064;
  border-bottom: solid thin #e8e9ec;
}
main#main section#sub-nav div.sub-navigation-content ul {
  padding-left: 10px;
}
main#main section#sub-nav div.sub-navigation-content ul li {
  list-style-type: none;
  font-size: 14px;
}
main#main section#page-content {
  width: 100%;
  max-width: 1300px;
  min-height: 600px;
  margin-right: 10px;
  margin-left: 10px;
  overflow-x: auto;
  overflow-y: hidden;
}
main#main section#page-content div.flex-content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

div.admin-content {
  border: solid thin #99999b;
  padding: 6px 6px 6px 40px;
  width: 210px;
  border-radius: 4px;
  box-shadow: 2px 2px 3px #888888;
}
div.admin-content.admin-content-entity {
  background: url("../../img/icon/gear-icon.svg") 5px 5px no-repeat;
  background-size: 30px;
}
div.admin-content.admin-content-content {
  background: url("../../img/icon/content-icon.svg") 5px 5px no-repeat;
  background-size: 30px;
}
div.admin-content h3 {
  margin: 0px;
  font-weight: normal;
  font-size: 16px;
}
div.admin-content p {
  font-size: 14px;
  font-style: italic;
}

div.quill-editor-content ol li {
  list-style-type: none;
}
div.quill-editor-content ol li::before {
  content: "• ";
}

div.organize-by-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: solid thin #4ccbf2;
}
div.organize-by-tabs ul.tabs li {
  padding: 4px 10px 4px 10px;
  display: block;
  font-weight: bold;
  cursor: pointer;
}
div.organize-by-tabs ul.tabs li.displayed {
  border-bottom: solid 2px #4ccbf2;
}
div.organize-by-tabs div {
  display: none;
}
div.organize-by-tabs div div {
  display: block;
}

div.index-table div.index-table-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
div.index-table div.index-table-row div.row-name {
  padding: 2px 10px 10px 10px;
  width: 60px;
}
div.index-table div.index-table-row div.row-name p {
  margin: 0px;
  font-size: 35px;
  color: #e6007e;
}
div.index-table div.index-table-row div.row-content {
  columns: 5 210px;
}
div.index-table div.index-table-row div.row-content a {
  display: block;
  break-inside: avoid;
}

div.masonry {
  columns: 4 280px;
  column-gap: 20px;
}
div.masonry div.masonry-item {
  break-inside: avoid;
  width: 300px;
  margin-bottom: 40px;
}
div.masonry div.masonry-item h2 {
  border: none;
  margin: 0px;
}
div.masonry div.masonry-item div.date p {
  font-size: 13px;
  margin: 0px;
}
div.masonry div.masonry-item div.illustration {
  text-align: center;
  margin-top: 10px;
}
div.masonry div.masonry-item div.illustration img {
  max-width: 250px;
}
div.masonry div.masonry-item div.keywords div.keywords-list {
  padding-left: 0px;
  background-image: none;
}
div.masonry div.masonry-item div.keywords div.keywords-list a {
  font-size: 13px;
}

div.cessoc-intro {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
div.cessoc-intro div.intro-block {
  width: 340px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-repeat: no-repeat;
}
div.cessoc-intro div.intro-block h3 {
  text-align: center;
  margin: 0px;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.9);
}
div.cessoc-intro div.intro-block h3 a {
  display: block;
}
div.cessoc-intro div.intro-block.service {
  background-image: url("../../img/home/bg_service.webp");
}
div.cessoc-intro div.intro-block.secteur {
  background-image: url("../../img/home/bg_infographic.webp");
}
div.cessoc-intro div.intro-block.suivre {
  background-image: url("../../img/home/bg_social.webp");
}

@media (max-width: 897px) {
  main#main section#sub-nav {
    display: none;
    order: 2;
    position: fixed;
    right: 0;
    background-color: #e8e9ec;
  }
  main#main section#page-content {
    order: 1;
  }
  main#main label.burger {
    display: block !important;
  }
}
footer#footer section#first-footer {
  background-color: #e8e9ec;
  min-height: 40px;
  padding-top: 10px;
}
footer#footer section#first-footer div#first-footer-content {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
footer#footer section#first-footer div#first-footer-content a {
  padding: 6px 6px 6px 20px;
  display: block;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: 3px 7px;
  cursor: pointer;
}
footer#footer section#first-footer div#first-footer-content a.starred-link {
  background-image: url("../../img/icon/star-icon.svg");
}
footer#footer section#first-footer div#first-footer-content a.unstarred-link {
  background-image: url("../../img/icon/unstar-icon.svg");
}
footer#footer section#first-footer div#first-footer-content a.warning-link {
  background-image: url("../../img/icon/warning-icon-yellow.svg");
}
footer#footer section#second-footer {
  background-color: #213c43;
  padding-top: 20px;
  padding-bottom: 20px;
}
footer#footer section#second-footer div#footer-navigation {
  max-width: 1270px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
footer#footer section#second-footer div#footer-navigation div.footer-nav-block {
  padding: 5px;
  width: 23%;
  min-width: 200px;
}
footer#footer section#second-footer div#footer-navigation div.footer-nav-block h1 {
  color: #fafafa;
  font-size: 15px;
  margin-bottom: 8px;
  padding-left: 2px;
  font-weight: bold;
}
footer#footer section#second-footer div#footer-navigation div.footer-nav-block div.footer-nav-block-links {
  padding-left: 10px;
}
footer#footer section#second-footer div#footer-navigation div.footer-nav-block div.footer-nav-block-links a {
  font-size: 13px;
  color: #fafafa;
  display: block;
  margin-bottom: 8px;
}
footer#footer section#second-footer div#footer-navigation div.footer-nav-block div.footer-nav-block-links a:hover {
  color: #f3a630;
}
footer#footer section#second-footer div#footer-navigation div.footer-nav-block div.footer-nav-block-links label {
  color: #fafafa;
  font-weight: normal;
  padding-top: 0px;
  font-size: 13px;
}
footer#footer section#second-footer div#footer-navigation div.footer-nav-block div.footer-nav-block-text {
  padding-left: 10px;
}
footer#footer section#second-footer div#footer-navigation div.footer-nav-block div.footer-nav-block-text p {
  font-size: 13px;
  line-height: 18px;
  color: #f5f5f5;
  margin-top: 0px;
}
footer#footer section#second-footer div#footer-navigation div.footer-nav-block div.footer-nav-block-text a {
  color: #f5f5f5;
}
footer#footer section#second-footer div#footer-navigation div#block-federations div.footer-nav-block-links {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 5px;
  padding-left: 0px;
  max-width: 250px;
}
footer#footer section#second-footer div#footer-navigation div#block-federations div.footer-nav-block-links a {
  margin-bottom: 0px;
}
footer#footer section#second-footer div#footer-navigation div#block-federations div.footer-nav-block-links div.block-federation {
  width: 50px;
  height: 45px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
footer#footer section#second-footer div#footer-navigation div#block-federations div.footer-nav-block-links div.block-federation img {
  max-width: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
footer#footer section#second-footer div#footer-navigation div#block-federations div.footer-nav-block-links div.block-federation:hover img {
  filter: none;
  opacity: 1;
}
footer#footer section#second-footer div#footer-bottom {
  border-top: solid thin #42595f;
  max-width: 1000px;
  margin: auto;
  padding-bottom: 130px;
  background-image: url("../../img/wallonie_fwb_bottom_logo.webp");
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 70px;
}
footer#footer section#second-footer div#footer-bottom a {
  color: #fafafa;
}
footer#footer section#second-footer div#footer-bottom a:hover {
  text-decoration: underline;
}
footer#footer section#second-footer div#footer-bottom p {
  color: #fafafa;
  font-size: 14px;
  text-align: center;
  margin: 2px 10px 2px 10px;
}

@media (max-width: 897px) {
  section#second-footer div#footer-navigation div.footer-nav-block {
    width: 80% !important;
  }
}
button {
  padding: 6px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
button.print-button {
  padding-left: 24px;
  color: #111111;
  background-color: #f3a630;
  background-image: url("../../img/icon/print-dark-icon.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 4px 4px;
}

input {
  outline: none;
}

input[type=text], input[type=password], input[type=number], input[type=date], input[type=datetime-local], input[type=email], select, textarea {
  border: solid thin #99999b;
  padding: 3px;
  border-radius: 3px;
}

input[type=text]:focus, input[type=password]:focus, input[type=number]:focus, input[type=date]:focus, input[type=datetime-local]:focus, input[type=email]:focus, select:focus, textarea:focus {
  border-color: #f3a630;
}

input[type=checkbox] {
  appearance: none;
  position: relative;
  display: inline-block;
  background: lightgrey;
  height: 1.1rem;
  width: 1.75rem;
  vertical-align: middle;
  border-radius: 2rem;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2) inset;
  transition: 0.25s linear background;
}
input[type=checkbox]::before {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background: #fff;
  border-radius: 1.2rem;
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  transition: 0.25s linear transform;
  transform: translateX(0rem);
}
input[type=checkbox]:checked {
  background: #f3a630;
}
input[type=checkbox]:checked::before {
  transform: translateX(0.7rem);
}

fieldset.form-fieldset {
  border: solid thin #99999b;
  margin-top: 10px;
}
fieldset.form-fieldset legend {
  padding: 3px 5px 3px 5px;
  background-color: #4ccbf2;
  color: #4a4a4a;
  box-shadow: 2px 2px 2px #99999b;
}
fieldset.form-fieldset a {
  cursor: pointer;
}
fieldset.form-fieldset div.form-fieldset-content {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  flex-wrap: wrap;
}
fieldset.form-fieldset div.form-fieldset-content.baseline-align {
  align-items: baseline !important;
}
fieldset.form-fieldset div.form-fieldset-content div.form-clear-search {
  padding: 3px 4px 5px 4px;
  margin-bottom: 5px;
}
fieldset.form-fieldset div.form-fieldset-content div.form-clear-search a {
  display: block;
  padding: 8px 15px 8px 15px;
  font-size: 18px;
  background-color: #99999b;
  color: #4a4a4a;
  border-radius: 4px;
}
fieldset.form-fieldset div.form-fieldset-content div.form-item {
  max-width: 300px;
}
fieldset.form-fieldset div.form-fieldset-content div.form-item label {
  display: block !important;
}
fieldset.form-fieldset img {
  display: block;
  max-width: 95%;
  margin: auto;
}

form.form {
  width: 100%;
}
form.form label.form-label.required-field::before {
  content: "[*]";
}
form.form div.form-item.search-form-field div.search-field-auto-container {
  border: solid thin #99999b;
  border-top-color: #f3a630;
  min-height: 30px;
  width: 100%;
  max-width: 350px;
  position: absolute;
  z-index: 1000;
  background-color: #f5f5f5;
  display: none;
  transform: translateY(-1px);
  max-height: 300px;
  overflow-y: auto;
}
form.form div.form-item.search-form-field div.search-field-auto-container p {
  margin: 0px;
  padding: 4px;
}
form.form div.form-item.search-form-field div.search-field-auto-container p:hover {
  cursor: pointer;
  color: #226679;
}
form.form div.form-item.search-form-field div.article-collection div.article-collection-item {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 3px;
}
form.form div.form-item.search-form-field div.article-collection div.article-collection-item p.article-collection-item-label {
  margin: 0px;
  padding: 3px;
}
form.form div.form-item.search-form-field div.article-collection div.article-collection-item p.article-collection-item-button {
  margin: 0px;
  padding: 3px;
  height: 14px;
  width: 14px;
  background: url("../../img/icon/remove-tag-icon.svg") no-repeat;
  background-size: contain;
  cursor: pointer;
}
form.form div.form-item.search-form-field div.keyword-collection {
  margin-bottom: 5px;
  max-width: 800px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
form.form div.form-item.search-form-field div.keyword-collection div.keyword-collection-item {
  border: solid thin #99999b;
  background-color: #e8e9ec;
  border-radius: 2px;
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 3px;
}
form.form div.form-item.search-form-field div.keyword-collection div.keyword-collection-item p.keyword-collection-item-label {
  margin: 0px;
  padding: 3px;
}
form.form div.form-item.search-form-field div.keyword-collection div.keyword-collection-item p.keyword-collection-item-button {
  margin: 0px;
  padding: 3px;
  height: 14px;
  width: 14px;
  background: url("../../img/icon/remove-tag-icon.svg") no-repeat;
  background-size: contain;
  cursor: pointer;
}
form.form div.form-item {
  padding: 5px;
  margin-bottom: 5px;
}
form.form div.form-item.form-hidden {
  padding: 0px;
  margin-bottom: 0px;
}
form.form div.form-item p.form-field-description {
  margin: 1px 0px 1px 0px;
  font-size: 14px;
  font-style: italic;
}
form.form div.form-item.highlight-item {
  border: solid 2px rgb(165, 107, 0);
  background-color: rgb(253, 226, 176);
}
form.form div.form-item.no-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
form.form div.form-item input[type=text], form.form div.form-item input[type=password], form.form div.form-item input[type=email], form.form div.form-item textarea {
  max-width: 450px;
  display: block;
  width: 95%;
  padding: 6px;
  color: #4a4a4a;
  background-color: #f5f5f5;
  resize: none;
}
form.form div.form-item input[type=date], form.form div.form-item input[type=datetime-local] {
  display: block;
  padding: 6px;
  color: #4a4a4a;
  background-color: #f5f5f5;
}
form.form div.form-item label {
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  padding: 5px 2px 5px 2px;
}
form.form div.form-item label.radio-label {
  background-color: #4ccbf2;
  padding: 6px;
  box-shadow: 2px 2px 3px #99999b;
}
form.form div.form-item select, form.form div.form-item input[type=number] {
  padding: 6px;
  color: #4a4a4a;
  background-color: #f5f5f5;
}
form.form div.form-item input[type=number] {
  width: 100px;
}
form.form div.form-item button.input-submit {
  border: none;
  padding: 8px 15px 8px 15px;
  font-size: 18px;
  background-color: #a9cf53;
  color: #4a4a4a;
  border-radius: 4px;
}
form.form div.form-item.has-error {
  border: solid 2px rgb(177, 54, 54);
}
form.form div.form-item.has-error div.field-error ul {
  margin: 0px;
  padding: 5px;
  background-color: rgb(253, 207, 207);
}
form.form div.form-item.has-error div.field-error ul li {
  list-style-type: none;
  font-size: 14px;
}
form.form div.form-item.form-select.multiple label {
  display: inline-block;
}
form.form div.form-item.form-select.multiple select {
  max-width: 300px;
  overflow: auto;
}
form.form div.form-item div.expanded-select.column {
  column-width: 300px;
  column-gap: 1em;
}
form.form div.form-item.space-between {
  max-width: 600px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
form.form div.form-quill-editor {
  max-width: 1000px;
}
form.form div.form-entity-table p.bottom-text {
  font-size: 14px;
}
form.form div.form-entity-table table.entity-table {
  width: 100%;
}
form.form div.form-entity-table table.entity-table thead td {
  background-color: #004c59;
  padding: 4px;
  color: #ffffff;
}
form.form div.form-entity-table table.entity-table thead td a {
  color: #ffffff;
}
form.form div.form-entity-table table.entity-table thead td a:hover {
  color: #f3a630;
}
form.form div.form-entity-table table.entity-table thead td a.order-by-desc {
  padding-left: 16px;
  color: #f3a630;
  background: url("../../img/icon/down-icon-orange.svg") 2px 2px no-repeat;
  background-size: 16px 16px;
}
form.form div.form-entity-table table.entity-table thead td a.order-by-asc {
  padding-left: 16px;
  color: #f3a630;
  background: url("../../img/icon/up-icon-orange.svg") 2px 2px no-repeat;
  background-size: 16px 16px;
}
form.form div.form-entity-table table.entity-table tbody tr td {
  font-size: 14px;
  padding: 4px;
}
form.form div.form-entity-table table.entity-table tbody tr td a {
  color: #e6007e;
}
form.form div.form-entity-table table.entity-table tbody tr td.td-checkbox {
  width: 40px;
}
form.form div.form-entity-table table.entity-table tbody tr:hover, form.form div.form-entity-table table.entity-table tbody tr.selected-row {
  background-color: #f8ebe0 !important;
}
form.form div.form-entity-table table.entity-table tbody tr.tr-even {
  background-color: #f5f5f5;
}
form.form div.form-entity-table div.page-counter {
  text-align: center;
  margin-top: 10px;
}
form.form div.form-file-upload label {
  padding-left: 0px;
}
form.form div.form-file-upload div.file-upload-container {
  border-left: solid 1px #cccccc;
}
form.form div.form-file-upload div.file-upload-container div.form-file label {
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  border-radius: 4px;
  padding: 6px 12px 6px 28px;
  margin-bottom: 5px;
  background: url("../../img/icon/upload-file-icon.svg") 4px 5px no-repeat #f3a630;
  background-size: 20px 20px;
}
form.form div.form-file-upload div.file-upload-container div.form-file input[type=file] {
  display: none;
}
form.form div.form-file-upload div.file-upload-container div.form-file div.file-upload-preview {
  margin: 2px 0px 2px 0px;
}
form.form div.form-file-upload div.file-upload-container div.form-file div.file-upload-preview img {
  max-width: 100px;
}
form.form div.form-file-upload div.file-upload-container div.form-file div.file-upload-preview span {
  font-size: 13px;
  padding-left: 18px;
  background: url("../../img/icon/success-icon.svg") no-repeat;
  background-size: 14px 14px;
}
form.form div.form-file-upload div.file-upload-container div.loading-widget {
  width: 14px;
  height: 14px;
  margin: 0px 0px 0px 10px;
  border-width: 2px;
}
form.form div.form-file-upload div.file-upload-container div.file-upload-spec p {
  margin: 0px;
  font-size: 12px;
  font-style: italic;
  padding-left: 10px;
}
form.form div.form-datetime div.date-fieldset {
  display: flex;
  align-items: baseline;
}
form.form div.form-datetime div.date-fieldset input[type=text] {
  max-width: 30px;
  text-align: center;
}
form.form div.form-dropzone label.dropzone {
  display: block;
  border: dashed 3px #4a4a4a;
  background-color: #e8e9ec;
  text-align: center;
  background-image: url("../../img/icon/upload-file-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  padding: 60px 5px 5px 5px;
}
form.form div.form-dropzone label.dropzone.drag-over {
  background-color: #a9cf53;
}
form.form div.form-dropzone input[type=file] {
  display: none;
}
form.form div.form-dropzone div.filelist div.file-info {
  margin-top: 20px;
}
form.form div.form-dropzone div.filelist div.file-info div.file-title {
  display: flex;
  gap: 10px;
}
form.form div.form-dropzone div.filelist div.file-info div.file-title p {
  margin: 0px;
  font-size: 14px;
}
form.form div.form-dropzone div.filelist div.file-info div.file-title progress {
  width: 100px;
}
form.form div.form-dropzone div.filelist div.file-info div.file-status p {
  font-size: 13px;
  font-style: italic;
}
form.form div.form-dropzone div.filelist div.file-info div.file-status p.error {
  color: rgb(177, 54, 54);
}
form.form div.form-dropzone div.filelist div.file-info div.file-status p.success {
  color: rgb(33, 129, 33);
}
form.form div.form-dropzone div.filelist div.file-info a {
  font-size: 14px;
}
form.form div.form-dropzone div.file-upload-spec p {
  margin: 0px;
  font-size: 12px;
  font-style: italic;
  padding-left: 10px;
}
form.form div.collection-form-collection div.collection-add-button a.form-button {
  border-radius: 4px;
  display: inline-block;
  padding: 8px 15px 8px 15px;
  background-color: #e6007e;
  color: #f5f5f5;
}
form.form div.collection-form-collection div.collection-form-field div.collection-item {
  display: flex;
}
form.form div.collection-form-collection div.collection-form-field div.collection-item button.delete-button {
  background-color: transparent;
  background-image: url("../../img/icon/delete-icon.svg");
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position: center;
  height: 20px;
  width: 20px;
  border: none;
  cursor: pointer;
}
form.form div.collection-form-collection div.collection-form-field div.form-date input[type=date] {
  display: inline;
}

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