/** VARIABLES **/
:root {
  --alya-white: #ffffff;
  --alya-white-hover: #d5d5d5;
  --alya-lightgrey: #f5f5f5;
  --alya-lightgrey-hover: #cbcbcb;
  --alya-grey: #2a2a2a;
  --alya-grey-hover: #434343;
  --alya-grey-active: #1a1a1a;
  /* Couleur primaire du Hub (cyan). NB: la classe utilitaire `.red` est un
     nom hérité — elle s'appuie sur --alya-blue, pas sur le rouge ci-dessous. */
  --alya-blue: #34bcde;
  --alya-blue-active: #096dd9;
  --alya-blue-hover: #f0feff;
  /* Rouge de marque, réservé aux états danger/erreur (ex: alertes destructives). */
  --alya-red: #ed253c;
  --alya-red-active: #c4162a;
  --alya-footer-color-background: #2a2a2a;
  --alya-footer-color-text: #f5f5f5;
  --alya-intranet-module-padding-bottom: 50px;
  --alya-footer-margin-left: 0px;
}

* {
  transition: all 0.3s ease;
}

a.red:hover {
  color: var(--alya-blue-hover) !important;
}

a.red:active {
  color: var(--alya-blue-active) !important;
}

body {
  background-color: var(--alya-lightgrey);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

textarea:focus,
input:focus {
  outline: none;
}

a.red {
  color: var(--alya-blue) !important;
}
a.big {
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 20px;
  display: flex;
  border-bottom: 1px solid var(--alya-blue);
  width: fit-content;
}
h3 {
  color: var(--alya-grey);
  font-size: 24px;
  font-weight: normal;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
}

h3.light {
  color: var(--alya-white);
}

.debug_container {
  background: var(--alya-white);
  padding: 20px;
}

.accordion .accordion-body p {
  margin: 0;
}
.accordion .accordion-body .accordion-item-title {
  margin-top: 20px;
  font-weight: bold;
}

a.alya-btn,
a.wp-element-button {
  background: var(--alya-blue);
  color: var(--alya-white);
  text-decoration: none;
  padding: 10px 30px;
}
a.alya-btn:hover,
a.wp-element-button:hover {
  background: var(--alya-blue-hover);
}

#hub .navbar {
  z-index: 50;
  height: 100px;
  padding: 0;
  margin: 0;
  background-color: var(--alya-grey);
}
#hub .navbar .container-fluid {
  padding: 0;
  margin: 0;
}

#hub .navbar .navbar-brand {
  margin: 0 50px;
  max-width: 250px;
}

#hub .navbar .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
}

#hub .navbar .navbar-menu {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: flex-end;
}

#hub .navbar .navbar-menu .navbar-search {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
  position: relative;
}

#hub .navbar .navbar-menu .navbar-search.active .navbar-search-input {
  width: 100%;
  opacity: 1;
}

#hub .navbar .navbar-menu .navbar-search .navbar-search-input {
  width: 0;
  display: flex;
  justify-content: flex-end;
  position: relative;
  opacity: 0;
}

#hub .navbar .navbar-menu .navbar-search.active .navbar-search-input input {
  padding: 10px 60px;
  width: 100%;
}

#hub .navbar .navbar-menu .navbar-search .navbar-search-input input {
  font-size: 20px;
  font-weight: 600;
  color: var(--alya-grey);
  padding: 10px 0;
  height: 60px;
  width: -webkit-fill-available;
  width: 0;
}

#hub .navbar .navbar-menu .navbar-search.active .navbar-search-submit {
  min-width: 60px;
}
#hub .navbar .navbar-menu .navbar-search .navbar-search-submit {
  background: var(--alya-blue);
  height: 60px;
  width: 0;
  min-width: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#hub .navbar .navbar-menu .navbar-search .navbar-search-submit:hover {
  background: var(--alya-blue-hover);
}

#hub .navbar .navbar-menu .navbar-search.active #search-loader {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 30px;
  height: 30px;
  opacity: 0.5;
}
#hub .navbar .navbar-menu .navbar-search.active #search-loader img {
  max-width: 100%;
}

#hub .navbar .navbar-menu .navbar-search.active .clear-search-input {
  width: 30px;
  right: 20px;
}
#hub .navbar .navbar-menu .navbar-search .clear-search-input {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 0;
  height: 30px;
  opacity: 0.5;
}

#hub .navbar .navbar-menu .navbar-search.searching .navbar-search-results {
  display: block;
}

#hub .navbar .navbar-menu .navbar-search .navbar-search-results {
  background: var(--alya-white);
  position: absolute;
  left: 0;
  top: 60px;
  width: 100%;
  border: none;
  padding: 20px 60px 40px 60px;
  display: none;
}

#hub
  .navbar
  .navbar-menu
  .navbar-search
  .navbar-search-results
  .navbar-search-results-summary {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.5;
}

#hub
  .navbar
  .navbar-menu
  .navbar-search
  .navbar-search-results
  .navbar-search-results-list {
  border-top: 1px solid var(--alya-grey);
  margin-top: 20px;
  padding-top: 20px;
}

#hub
  .navbar
  .navbar-menu
  .navbar-search
  .navbar-search-results
  .navbar-search-results-list
  ul {
  list-style: none;
}

#hub
  .navbar
  .navbar-menu
  .navbar-search
  .navbar-search-results
  .navbar-search-results-list
  ul
  li {
}

#hub
  .navbar
  .navbar-menu
  .navbar-search
  .navbar-search-results
  .navbar-search-results-list
  ul
  li
  a {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  padding: 10px 0;
}

#hub
  .navbar
  .navbar-menu
  .navbar-search
  .navbar-search-results
  .navbar-search-results-list
  ul
  li
  a:hover {
  background-color: var(--alya-lightgrey);
}

#hub
  .navbar
  .navbar-menu
  .navbar-search
  .navbar-search-results
  .navbar-search-results-list
  ul
  li
  a
  .navbar-search-results-category {
  font-size: 16px;
  font-weight: bold;
  color: var(--alya-blue);
}

#hub
  .navbar
  .navbar-menu
  .navbar-search
  .navbar-search-results
  .navbar-search-results-list
  ul
  li
  a
  .navbar-search-results-category
  ol {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
}

#hub
  .navbar
  .navbar-menu
  .navbar-search
  .navbar-search-results
  .navbar-search-results-list
  ul
  li
  a
  .navbar-search-results-category
  ol
  li {
  margin-right: 20px;
}

#hub
  .navbar
  .navbar-menu
  .navbar-search
  .navbar-search-results
  .navbar-search-results-list
  ul
  li
  a
  .navbar-search-results-category
  ol
  li:not(:first-child) {
  padding-left: calc(50px + 20px);
  position: relative;
}

#hub
  .navbar
  .navbar-menu
  .navbar-search
  .navbar-search-results
  .navbar-search-results-list
  ul
  li
  a
  .navbar-search-results-category
  ol
  li:not(:first-child):before {
  content: url("../img/icons/breadcrumb_arrow_dark.svg");
  position: absolute;
  width: 50px;
  height: auto;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
}

#hub
  .navbar
  .navbar-menu
  .navbar-search
  .navbar-search-results
  .navbar-search-results-list
  ul
  li
  a
  .navbar-search-results-category
  ol
  li:not(:last-child) {
  margin-right: 20px;
}

#hub
  .navbar
  .navbar-menu
  .navbar-search
  .navbar-search-results
  .navbar-search-results-list
  ul
  li
  a
  .navbar-search-results-title {
  padding-left: calc(50px + 20px);
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: var(--alya-grey);
}

#hub
  .navbar
  .navbar-menu
  .navbar-search
  .navbar-search-results
  .navbar-search-results-list
  ul
  li
  a
  .navbar-search-results-title:before {
  content: url("../img/icons/breadcrumb_arrow_dark.svg");
  position: absolute;
  width: 50px;
  height: auto;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
}

#hub
  .navbar
  .navbar-menu
  .navbar-search
  .navbar-search-results
  .navbar-search-results-seeall {
  margin-top: 20px;
}

#hub
  .navbar
  .navbar-menu
  .navbar-search
  .navbar-search-results
  .navbar-search-results-seeall
  a {
  text-decoration: none;
  background-color: var(--alya-blue);
  color: var(--alya-white);
  font-size: 16px;
  font-weight: bold;
  padding: 10px 30px;
}

#hub
  .navbar
  .navbar-menu
  .navbar-search
  .navbar-search-results
  .navbar-search-results-seeall
  a:hover {
  background-color: var(--alya-blue-hover);
}

.clear-search-input:hover {
  opacity: 1;
}

.clear-search-input span {
  background: var(--alya-grey);
  height: 4px;
  width: 30px;
  top: 50%;
  left: 0;
}

.clear-search-input span:first-child {
  transform: rotate(-45deg);
  position: absolute;
}
.clear-search-input span:last-child {
  transform: rotate(45deg);
  position: absolute;
}

#hub .navbar .navbar-menu .navbar-search-btn {
}
#hub .navbar .navbar-menu .navbar-search.active .navbar-search-btn {
  position: absolute;
  z-index: 50;
  left: 0;
}
#hub
  .navbar
  .navbar-menu
  .navbar-search.active
  .navbar-search-btn
  .navbar-search-btn-link {
  background: transparent;
  width: 60px;
  height: 60px;
}
#hub
  .navbar
  .navbar-menu
  .navbar-search.active
  .navbar-search-btn
  .navbar-search-btn-link
  .icon {
  background-color: var(--alya-grey);
}

#hub .navbar .navbar-menu .navbar-search-btn .navbar-search-btn-link {
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--alya-grey);
  cursor: pointer;
}

#hub .navbar .navbar-menu .navbar-search-btn .navbar-search-btn-link:hover {
  background: var(--alya-grey-hover);
}

#hub .navbar .navbar-menu .navbar-profile {
}

#hub .navbar .navbar-menu .navbar-profile a {
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--alya-grey);
}

#hub .navbar .navbar-menu .navbar-profile a:hover {
  background: var(--alya-grey-hover);
}

#hub .navbar .navbar-menu .navbar-profile a.active {
  background: var(--alya-grey-active);
}

#alya_header {
  position: absolute;
  z-index: -1;
  background: var(--alya-white);
  width: 100vw;
  min-height: 400px;
}
#alya_header .mask_overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 400px;
  width: 100%;
  position: absolute;
  z-index: 2;
}
#alya_header .background {
  background-image: url("../img/alya_ai_cover.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  height: 400px;
  width: 100%;
  position: absolute;
}
content {
  position: relative;
  margin-bottom: 150px;
}
/* I would change this elsewhere but tied in multiple files - J */
#intranet-module {
  padding-top: 50px;
  padding-bottom: var(--alya-intranet-module-padding-bottom);
  margin-top: 100px;
  min-height: 50vh;
  position: relative;
  z-index: 1;
}
#intranet-module .page-header {
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--alya-white);
}

.post_like {
  width: 30px;
  height: 30px;
  background-color: var(--alya-grey);
  -webkit-mask: url("../img/icons/heart_empty.svg") no-repeat center;
  mask: url("../img/icons/heart_empty.svg") no-repeat center;
  cursor: pointer;
}
.post_like:hover {
  transform: scale(1.2);
}
.post_like[data-status="liked"] {
  background-color: var(--alya-blue);
  -webkit-mask: url("../img/icons/heart.svg") no-repeat center;
  mask: url("../img/icons/heart.svg") no-repeat center;
}

/*** SIDEBAR ***/
#sidebar {
  display: flex;
  position: sticky;
  position: -webkit-sticky;
}

#sidebar ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

#sidebar .module {
  width: 80px;
  height: 80px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#sidebar .module.active a {
  background-color: var(--alya-blue-active) !important;
}

#sidebar .module a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--alya-blue);
  transition: all 0.3s ease;
}

#sidebar .module a:hover {
  background-color: var(--alya-blue-hover);
}

#sidebar .module a.red {
  background-color: var(--alya-blue);
}
#sidebar .module a.red:hover {
  background-color: var(--alya-grey-hover);
}
#sidebar .module a.grey {
  background-color: var(--alya-grey);
}
#sidebar .module a.grey:hover {
  background-color: var(--alya-grey-hover);
}

#sidebar .module .module_icon {
  max-height: 30px;
  max-width: 30px;
  width: 100%;
  height: 100%;
}

.module_icon.dashboard {
  background-color: #fff;
  -webkit-mask: url("../img/icons/dashboard.svg") no-repeat center;
  mask: url("../img/icons/dashboard.svg") no-repeat center;
}
.module_icon.nouvelles {
  background-color: #fff;
  -webkit-mask: url("../img/icons/nouvelles.svg") no-repeat center;
  mask: url("../img/icons/nouvelles.svg") no-repeat center;
}
.module_icon.application {
  background-color: #fff;
  -webkit-mask: url("../img/icons/application.svg") no-repeat center;
  mask: url("../img/icons/application.svg") no-repeat center;
}
.module_icon.documents {
  background-color: #fff;
  -webkit-mask: url("../img/icons/documents.svg") no-repeat center;
  mask: url("../img/icons/documents.svg") no-repeat center;
}
.module_icon.videos {
  background-color: #fff;
  -webkit-mask: url("../img/icons/videos.svg") no-repeat center;
  mask: url("../img/icons/videos.svg") no-repeat center;
}
.module_icon.annuaire {
  background-color: #fff;
  -webkit-mask: url("../img/icons/annuaire.svg") no-repeat center;
  mask: url("../img/icons/annuaire.svg") no-repeat center;
}
.module_icon.gestionnaire {
  background-color: #fff;
  -webkit-mask: url("../img/icons/gestionnaire.svg") no-repeat center;
  mask: url("../img/icons/gestionnaire.svg") no-repeat center;
}
.module_icon.key {
  background-color: #fff;
  -webkit-mask: url("../img/icons/key.svg") no-repeat center;
  mask: url("../img/icons/key.svg") no-repeat center;
}
.module_icon.triple {
  background-color: #fff;
  -webkit-mask: url("../img/icons/triple.svg") no-repeat center;
  mask: url("../img/icons/triple.svg") no-repeat center;
}
.module_icon.ticket {
  background-color: #fff;
  -webkit-mask: url("../img/icons/ticket.svg") no-repeat center;
  mask: url("../img/icons/ticket.svg") no-repeat center;
}
.module_icon.coins {
  background-color: #fff;
  -webkit-mask: url("../img/icons/coins.svg") no-repeat center;
  mask: url("../img/icons/coins.svg") no-repeat center;
}
.module_icon.archive {
  background-color: #fff;
  -webkit-mask: url("../img/icons/archive.svg") no-repeat center;
  mask: url("../img/icons/archive.svg") no-repeat center;
}
.module_icon.tool_gear {
  background-color: #fff;
  -webkit-mask: url("../img/icons/tool_gear.svg") no-repeat center;
  mask: url("../img/icons/tool_gear.svg") no-repeat center;
}
.module_icon.link {
  background-color: #fff;
  -webkit-mask: url("../img/icons/link.svg") no-repeat center;
  mask: url("../img/icons/link.svg") no-repeat center;
}
.module_icon.file {
  background-color: #fff;
  -webkit-mask: url("../img/icons/file.svg") no-repeat center;
  mask: url("../img/icons/file.svg") no-repeat center;
}
.module_icon.copy {
  background-color: #fff;
  -webkit-mask: url("../img/icons/copy.svg") no-repeat center;
  mask: url("../img/icons/copy.svg") no-repeat center;
}
.module_icon.contract {
  background-color: #fff;
  -webkit-mask: url("../img/icons/contract.svg") no-repeat center;
  mask: url("../img/icons/contract.svg") no-repeat center;
}
.module_icon.filter {
  background-color: #fff;
  -webkit-mask: url("../img/icons/filter.svg") no-repeat center;
  mask: url("../img/icons/filter.svg") no-repeat center;
}
.module_icon.copy:hover {
  transform: scale(1.1);
  background-color: #444 !important;
}

/*** TOOLTIP ***/
.tooltip-inner {
  background-color: var(--alya-blue);
  padding: 20px;
}

.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before,
.bs-tooltip-end .tooltip-arrow::before {
  border-right-color: var(--alya-blue) !important;
}
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: var(--alya-blue) !important;
}
.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
  border-left-color: var(--alya-blue) !important;
}
.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
  border-bottom-color: var(--alya-blue) !important;
}

.tooltip .tooltip-inner .tooltip_module_title {
  text-align: left;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
}
.tooltip .tooltip-inner .tooltip_module_description {
  text-align: left;
  font-size: 12px;
  padding-top: 5px;
}

@media (max-width: 992px) {
  #sidebar ul {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  #sidebar .module {
    width: auto;
    height: auto;
    flex: 1;
  }
}

/*** ERROR PAGE ***/
.error_page_links {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.error_page_links a {
  background: var(--alya-blue);
  color: var(--alya-white);
  padding: 10px 30px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

.error_page_links a:hover {
  background: var(--alya-blue-hover);
}

/*** LOGIN PAGE ***/

#login {
  width: 100%;
  min-height: 90vh;
  padding: 40px 0;
  background-color: var(--alya-grey);
  display: flex;
  align-items: center;
  justify-content: center;
}

#login img {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}

#login .login-container {
  width: 100%;
}

#login .input-container {
  position: relative;
}

#login form .input_icon {
  background: var(--alya-blue);
  width: 36px;
  height: 36px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
}

#login form .input_icon .icon {
  width: 100%;
  height: 100%;
  padding: 5px;
}

#login form .input_icon .user {
  background-color: #fff;
  -webkit-mask: url("../img/icons/user.svg") no-repeat center;
  mask: url("../img/icons/user.svg") no-repeat center;
}

#login form .input_icon .key {
  background-color: #fff;
  -webkit-mask: url("../img/icons/key.svg") no-repeat center;
  mask: url("../img/icons/key.svg") no-repeat center;
}

#login form .form-group {
  margin-bottom: 20px;
}

#login form label {
  color: #fff;
  margin-bottom: 10px;
}

#login form input[type="text"],
#login form input[type="password"] {
  border-radius: 0;
  border: none;
  background: var(--alya-white);
  margin-bottom: 10px;
}

#login form input[type="text"]:focus,
#login form input[type="password"]:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem var(--alya-blue);
}

#login form .form-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 20px;
}
#login form .form-info a {
  color: var(--alya-white);
}

#login form .form-submit button {
  background: var(--alya-blue);
  color: var(--alya-white);
  text-align: center;
  border: none;
  border-radius: 0;
  padding: 10px 30px;
  transition: all 0.3s ease;
}

#login form .form-submit {
  display: flex;
  justify-content: center;
}

#login form .form-submit button:hover {
  background: var(--alya-blue-hover);
}

#login .alya_welcome_message {
  background: var(--alya-blue);
  color: var(--alya-white);
  padding: 20px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

#login .alya_welcome_message:hover {
  opacity: 1;
}

#login .alya_welcome_message a {
  color: var(--alya-lightgrey);
  text-decoration: underline;
}

/*** GENERAL ***/
.alya_breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  color: var(--alya-lightgrey);
  flex-direction: row;
  margin-bottom: 20px;
}

.alya_breadcrumb li {
  position: relative;
}

.alya_breadcrumb li:not(:first-child) {
  padding-left: calc(50px + 10px);
}
.alya_breadcrumb li:not(:last-child) {
  padding-right: 10px;
}

.alya_breadcrumb li:not(:first-child):before {
  content: url("../img/icons/breadcrumb_arrow.svg");
  position: absolute;
  width: 50px;
  height: auto;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.alya_breadcrumb li a {
  color: var(--alya-lightgrey);
  font-weight: 600;
}

.alya_breadcrumb li a:hover {
  color: var(--alya-lightgrey-hover);
}

.alya_breadcrumb li a.active {
  color: var(--alya-blue);
}

.alya_breadcrumb li a.active:hover {
  color: var(--alya-blue-hover);
}

.alya_col {
  background: var(--alya-white);
  padding: 30px;
}

ul {
  margin: 0;
  padding: 0;
}

ul.link_list {
  list-style: none;
  position: relative;
}

ul.link_list li:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--alya-white);
  border-right: 1px solid var(--alya-white);
  left: 7px;
  top: 50%;
  transform: rotate(45deg) translateX(-50%);
  z-index: 2;
}

ul.link_list li {
  position: relative;
  padding-left: 30px;
  border-bottom: 1px solid var(--alya-grey);
  padding-bottom: 10px;
  padding-top: 10px;
}

ul.link_list li:after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--alya-blue);
  top: 50%;
  transform: translate(0%, -50%);
}

ul.link_list li:hover {
  padding-left: 40px;
  color: var(--alya-blue);
}

ul.link_list li:last-child {
  border-bottom: 0px;
}

ul.link_list li a {
  color: var(--alya-grey);
}
.alya_item_col {
  margin-bottom: 20px;
}
.alya_item_col a {
  background-color: var(--alya-white);
  color: var(--alya-grey);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 25px;
}

.alya_item_col a:hover {
  color: var(--alya-grey);
  -webkit-box-shadow: 0px 1px 25px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 1px 25px 0px rgba(0, 0, 0, 0.25);
}

.alya_item_col_title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.alya_item_col_description {
  font-size: 14px;
  font-weight: normal;
  text-align: center;
}

.alya_list_item_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.alya_list_item {
  background-color: var(--alya-white);
}

.alya_list_item.red {
  background-color: var(--alya-blue);
}

.alya_list_item a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.alya_list_item a:hover {
  -webkit-box-shadow: 0px 1px 25px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 1px 25px 0px rgba(0, 0, 0, 0.25);
}

.alya_list_item:hover {
  transform: scale(1.1);
}

.alya_list_item a .alya_list_item_icon {
  padding: 80px 40px 20px 40px;
}
.alya_list_item a .alya_list_item_title {
  padding: 20px 40px 60px 40px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: var(--alya-grey);
}
.alya_list_item.red a .alya_list_item_title {
  color: var(--alya-white);
}

.alya_post_categories {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  background: var(--alya-white);
  list-style: none;
  padding: 10px;
  margin-bottom: 20px;
}

.alya_post_categories li {
  cursor: pointer;
  color: var(--alya-grey);
  font-size: 18px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background-color: var(--alya-blue);
  margin-right: 20px;
}

.alya_post_categories li a {
  color: var(--alya-white);
}
.alya_post_categories li:hover {
  background: var(--alya-blue-active);
}

.alya_post_categories li.active {
  background: var(--alya-grey);
}

/*** TABLE ***/

#alya_document_preview {
  z-index: 48;
  position: fixed;
  width: 100vw;
  height: calc(100vh - 130px);
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.75);
  top: 130px;
  left: 0;
  display: none;
}

#alya_document_preview .alya_document_container {
  height: calc(100vh - 170px);
}

#alya_document_preview #alya_document_preview_close {
  position: fixed;
  z-index: 49;
  left: 0%;
  bottom: 50px;
  background-color: var(--alya-blue);
  color: var(--alya-white);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  padding: 10px 30px;
  cursor: pointer;
}
#alya_document_preview #alya_document_preview_close:hover {
  background-color: var(--alya-blue-active);
}

#alya_document_preview iframe {
  width: 100%;
  height: calc(100vh - 170px);
}
#alya_document_preview .image_preview {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 50px;
}

.alya_table_container {
  background: var(--alya-white);
  padding: 20px;
}

.alya_table tbody td.document_category {
  color: var(--alya-blue);
  font-weight: 600;
}

.alya_table thead th {
  height: 75px;
}

.alya_table thead th.sort {
  cursor: pointer;
  position: relative;
}

.alya_table thead th.sort:after {
  content: "";
  position: absolute;
  right: 20px;
  border: solid black;
  border-width: 0 2px 2px 0;
  padding: 3px;
  display: none;
}

.alya_table thead th.sort[data-order="ASC"]:after {
  top: 50px;
  display: inline-block;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.alya_table thead th.sort[data-order="DESC"]:after {
  top: 54px;
  display: inline-block;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.alya_table tbody .document_action {
  display: flex;
  flex-direction: row;
}
.alya_table tbody .document_action a {
  background: var(--alya-blue);
  display: inline-block;
  padding: 5px;
}

.alya_table .document_action a:hover {
  background: var(--alya-blue-hover);
}

.alya_table tbody .document_action div.action.view {
  background: var(--alya-blue);
  display: inline-block;
  padding: 5px;
  margin-right: 10px;
  cursor: pointer;
}

.alya_table tbody .document_action div.action.view:hover {
  background: var(--alya-blue-hover);
}

.alya_table_search {
  position: relative;
  margin-bottom: 20px;
}

.alya_table_search input {
  background: var(--alya-lightgrey);
  color: var(--alya-grey);
  font-size: 20px;
  font-weight: 600;
  border: 0.5px solid var(--alya-grey);
  width: 100%;
  padding: 20px 20px 20px 60px;
  position: relative;
}

.alya_table_search .icon {
  position: absolute;
  z-index: 2;
  background: var(--alya-grey);
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}

.alya_table_category_filter {
  border-bottom: 2px solid var(--alya-blue);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.alya_table_category_filter .alya_table_category_filter_title {
  font-weight: 600;
  margin-bottom: 20px;
  margin-right: 20px;
}

.alya_table_category_filter ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.alya_table_category_filter ul li {
  background: var(--alya-lightgrey);
  padding: 10px;
  cursor: pointer;
  margin-bottom: 20px;
}
.alya_table_category_filter ul li:hover {
  background: var(--alya-lightgrey-hover);
}

.alya_table_category_filter ul li.active {
  background: var(--alya-blue);
}

.alya_table_category_filter ul li.active:hover {
  background: var(--alya-blue-hover);
}

.alya_table_category_filter ul li:not(:last-child) {
  margin-right: 10px;
}

.alya_table_category_filter ul li .icon {
  background: var(--alya-lightgrey-hover);
}

.alya_table_category_filter ul li:hover .icon {
  background: var(--alya-lightgrey);
}

.alya_table_category_filter ul li.active .icon {
  background: var(--alya-white);
}

.alya_table_type_filter {
}
.alya_table_type_filter ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  flex-wrap: wrap;
}

.alya_table_type_filter ul li {
  cursor: pointer;
  color: var(--alya-grey);
  font-size: 18px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background-color: var(--alya-lightgrey);
  margin-bottom: 20px;
}

.alya_table_type_filter ul li.active {
  background: var(--alya-blue);
  color: var(--alya-white);
}

.alya_table_type_filter ul li:not(:last-child) {
  margin-right: 20px;
}

.alya_table_type_filter ul li.active:first-child {
  color: var(--alya-white);
  background-color: var(--alya-grey);
}
.alya_table_type_filter ul li.active:first-child:hover {
  color: var(--alya-white);
  background-color: var(--alya-grey-hover);
}

.alya_table_pagination .pods-pagination-advanced,
.alya_table_pagination .pods-pagination-paginate {
  display: flex;
  justify-content: center;
  align-items: center;
}

.alya_table_pagination .pods-pagination-advanced span.current,
.alya_table_pagination .pods-pagination-advanced span.pods-pagination-current,
.alya_table_pagination .pods-pagination-paginate span.current {
  color: var(--alya-white);
  background: var(--alya-blue);
  font-weight: bold;
  font-size: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
}

.alya_table_pagination .pods-pagination-advanced a,
.alya_table_pagination .pods-pagination-paginate a {
  color: var(--alya-grey);
  font-weight: bold;
  font-size: 20px;
  min-width: 30px;
  width: fit-content;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.alya_table_pagination .pods-pagination-advanced a:hover,
.alya_table_pagination .pods-pagination-paginate a:hover {
  background: var(--alya-lightgrey);
}

.alya_table_pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.alya_table_pagination ul li.active {
  color: var(--alya-white);
  background: var(--alya-blue);
  font-weight: bold;
  font-size: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  cursor: default;
}
.alya_table_pagination ul li.active:hover {
  color: var(--alya-white);
  background: var(--alya-blue);
}

.alya_table_pagination ul li {
  color: var(--alya-grey);
  font-weight: bold;
  font-size: 20px;
  min-width: 30px;
  width: fit-content;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  cursor: pointer;
  aspect-ratio: 1/1;
}

.alya_table_pagination ul li:hover {
  background: var(--alya-lightgrey);
}

.alya_table_summary {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-style: italic;
}

.alya_table_loader {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
}

/*** BLOG ***/
.alya_latest_posts .alya_last_post {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--alya-blue);
  margin-bottom: 30px;
}

.alya_latest_posts .alya_last_post:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.alya_latest_posts .alya_last_post:first-child .alya_last_post_thumbnail {
  flex: 2;
}

.alya_latest_posts .alya_last_post .alya_last_post_thumbnail {
  display: flex;
  flex: 1;
  width: 100%;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.alya_latest_posts .alya_last_post .alya_last_post_thumbnail a {
  width: 100%;
  height: 100%;
  max-height: 300px;
  max-width: 300px;
  overflow: hidden;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
}
.alya_latest_posts .alya_last_post .alya_last_post_thumbnail a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alya_latest_posts .alya_last_post:first-child .alya_last_post_content {
  flex: 3;
}
.alya_latest_posts .alya_last_post .alya_last_post_content {
  display: flex;
  flex-direction: column;
  flex: 4;
  margin-left: 20px;
}

.alya_latest_posts
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info {
  display: flex;
  flex-direction: row;
}

.alya_latest_posts
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_categories {
  display: flex;
  flex-direction: row;
  position: relative;
  flex-wrap: wrap;
  border-right: 1px solid var(--alya-blue);
}
.alya_latest_posts
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_categories
  a {
  color: var(--alya-blue);
  font-weight: 600;
  text-transform: uppercase;
  padding-right: 10px;
  align-self: center;
  display: flex;
}
.alya_latest_posts
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_categories
  a:hover {
  color: var(--alya-blue-hover);
}
.alya_latest_posts
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_categories
  a:not(:first-child) {
  padding-left: 10px;
}
.alya_latest_posts
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_categories
  a:not(:last-child) {
  border-right: 1px solid var(--alya-blue);
}
.alya_latest_posts
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_tags {
  display: flex;
  flex-direction: row;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  flex-wrap: wrap;
  border-right: 1px solid var(--alya-blue);
  display: none;
}
.alya_latest_posts
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_tags
  span {
  color: var(--alya-blue);
  font-weight: 600;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  padding-right: 5px;
  display: flex;
  align-self: center;
}
.alya_latest_posts
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_tags
  span:last-child {
  padding-right: 0px;
}
.alya_latest_posts
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_date {
  color: var(--alya-blue);
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 10px;
}
.alya_latest_posts
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_title {
}
.alya_latest_posts
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_title
  a {
  text-decoration: none;
  color: var(--alya-grey);
  font-size: 24px;
  font-weight: 600;
}
.alya_latest_posts
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_description {
  color: var(--alya-grey);
  font-size: 16px;
  font-weight: normal;
}

.alya_last_post_container .alya_last_post {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--alya-blue);
  margin-bottom: 30px;
}

.alya_last_post_container .alya_last_post:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.alya_last_post_container
  .alya_last_post:first-child
  .alya_last_post_thumbnail {
  flex: 2;
}

.alya_last_post_container .alya_last_post .alya_last_post_thumbnail {
  display: flex;
  flex: 1;
  width: 100%;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.alya_last_post_container .alya_last_post .alya_last_post_thumbnail a {
  width: 100%;
  height: 100%;
  max-height: 400px;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.alya_last_post_container .alya_last_post .alya_last_post_thumbnail a img {
  width: 100%;
  height: 100%;
}

.alya_last_post_container .alya_last_post .alya_last_post_content {
  display: flex;
  flex-direction: column;
  flex: 4;
  margin-top: 20px;
}

.alya_last_post_container
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info {
  display: flex;
  flex-direction: row;
}

.alya_last_post_container
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_categories {
  display: flex;
  flex-direction: row;
  position: relative;
  flex-wrap: wrap;
  border-right: 1px solid var(--alya-blue);
}
.alya_last_post_container
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_categories
  a {
  color: var(--alya-blue);
  font-weight: 600;
  text-transform: uppercase;
  padding-right: 10px;
  align-self: center;
  display: flex;
  position: relative;
}
.alya_last_post_container
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_categories
  a:hover {
  color: var(--alya-blue-hover);
}

.alya_last_post_container
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_categories
  a:not(:first-child) {
  padding-left: 10px;
}
.alya_last_post_container
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_categories
  a:not(:last-child) {
  border-right: 1px solid var(--alya-blue);
}

.alya_last_post_container
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_tags {
  display: flex;
  flex-direction: row;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  flex-wrap: wrap;
  border-right: 1px solid var(--alya-blue);
  display: none;
}
.alya_last_post_container
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_tags
  span {
  color: var(--alya-blue);
  font-weight: 600;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  padding-right: 5px;
  display: flex;
  align-self: center;
}
.alya_last_post_container
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_tags
  span:last-child {
  padding-right: 0px;
}
.alya_last_post_container
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info
  .alya_last_post_date {
  color: var(--alya-blue);
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 10px;
}
.alya_last_post_container
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_title {
}
.alya_last_post_container
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_title
  a {
  text-decoration: none;
  color: var(--alya-grey);
  font-size: 24px;
  font-weight: 600;
}
.alya_last_post_container
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_description {
  color: var(--alya-grey);
  font-size: 20px;
  font-weight: normal;
}

.blog_page
  .alya_latest_posts
  .alya_last_post:first-child
  .alya_last_post_thumbnail {
  flex: 1;
}
.blog_page
  .alya_latest_posts
  .alya_last_post:first-child
  .alya_last_post_content {
  flex: 3;
}

.blog_page
  .alya_latest_posts
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_description {
  font-size: 14px;
}

.blog_page
  .alya_latest_posts
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_info {
  font-size: 12px;
}

.blog_page
  .alya_latest_posts
  .alya_last_post
  .alya_last_post_content
  .alya_last_post_title
  a {
  font-size: 18px;
}

.blog_page .alya_latest_posts .alya_last_post .alya_last_post_content {
  flex: 3;
}

.blog_list_page .alya_last_post_container .alya_last_post {
  flex-direction: row;
}

.blog_list_page
  .alya_last_post_container
  .alya_last_post
  .alya_last_post_content {
  margin-left: 20px;
}

.blog_list_page
  .alya_last_post_container
  .alya_last_post:first-child
  .alya_last_post_thumbnail {
  flex: 1;
}

.single_post_header {
  background: var(--alya-white);
  display: flex;
  flex-direction: row;
  padding: 0;
  align-items: center;
}

.single_post_header .single_post_thumbnail {
  display: flex;
  flex: 1;
  overflow: hidden;
  max-width: 50%;
  aspect-ratio: 1/1;
}

.single_post_header .single_post_thumbnail img {
  display: flex;
  flex: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single_post_header .single_post_header_content {
  display: flex;
  flex: 1;
  margin-left: 50px;
  margin-right: 50px;
  flex-direction: column;
}

.single_post_header .single_post_header_content .single_post_title {
  font-size: 40px;
  font-weight: bold;
  color: var(--alya-grey);
}

.single_post_header .single_post_header_content .single_post_info {
  display: flex;
  flex-direction: row;
}

.single_post_header
  .single_post_header_content
  .single_post_info
  .single_post_categories {
  display: flex;
  flex-direction: row;
  padding-right: 10px;
  position: relative;
  flex-wrap: wrap;
}

.single_post_header
  .single_post_header_content
  .single_post_info
  .single_post_categories
  a {
  color: var(--alya-blue);
  font-weight: 600;
  text-transform: uppercase;
  padding-right: 5px;
  align-self: center;
  display: flex;
}

.single_post_header
  .single_post_header_content
  .single_post_info
  .single_post_categories
  a:last-child {
  padding-right: 0px;
}

.single_post_header
  .single_post_header_content
  .single_post_info
  .single_post_categories
  a:not(:first-child) {
  padding-left: 5px;
}

.single_post_header
  .single_post_header_content
  .single_post_info
  .single_post_tags {
  display: flex;
  flex-direction: row;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  flex-wrap: wrap;
  border-left: 1px solid var(--alya-blue);
}

.single_post_header
  .single_post_header_content
  .single_post_info
  .single_post_tags
  span {
  color: var(--alya-blue);
  font-weight: 600;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  padding-right: 5px;
  display: flex;
  align-self: center;
}
.single_post_header
  .single_post_header_content
  .single_post_info
  .single_post_tags
  span:last-child {
  padding-right: 0px;
}

.single_post_header .single_post_header_content .single_post_date {
  font-weight: 600;
  margin-top: 30px;
}
.single_post_header .single_post_header_content .single_post_date .author {
  color: var(--alya-blue);
}

.single_post_content {
  background: var(--alya-white);
  padding: 50px 20%;
  margin-top: 50px;
}

.single_post_header .single_post_header_content .single_post_likes {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
  position: relative;
}

.single_post_header
  .single_post_header_content
  .single_post_likes
  .post_like_text {
  margin-left: 10px;
}

.single_post_header .single_post_header_content .single_post_comments_summary {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
  color: var(--alya-grey);
  text-decoration: none;
}

.single_post_header
  .single_post_header_content
  .single_post_comments_summary
  .single_post_comments_count {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 10px;
}
.single_post_header
  .single_post_header_content
  .single_post_comments_summary
  .single_post_comments_count
  .single_post_comments_count_label {
  margin-left: 5px;
}

.single_post_header
  .single_post_header_content
  .single_post_likes:hover
  .post_like_users {
  display: flex;
}

.single_post_header
  .single_post_header_content
  .single_post_likes
  .post_like_users:hover {
  display: flex;
}

.single_post_header
  .single_post_header_content
  .single_post_likes
  .post_like_users {
  width: auto;
  display: none;
  position: absolute;
  top: 30px;
  left: 40px;
  background: var(--alya-lightgrey);
  border-radius: 5px;
  border-top-left-radius: 0px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 7px -2px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 7px -2px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.single_post_header
  .single_post_header_content
  .single_post_likes
  .post_like_users.empty {
  display: none !important;
}

.single_post_header
  .single_post_header_content
  .single_post_likes
  .post_like_users
  ul {
  list-style: none;
  padding: 10px;
  margin: 0;
}

.single_post_header
  .single_post_header_content
  .single_post_likes
  .post_like_users
  ul
  li.default {
  font-size: 12px;
}

.article h3 {
  font-size: 24px;
  text-transform: uppercase;
  color: var(--alya-grey);
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

.article .comments_section {
  margin-top: 100px;
}

.article .single_post_comment_writting_title {
  border-bottom: 1px solid var(--alya-grey);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.article .single_post_comments {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.article .single_post_comments .single_post_comments_title {
  border-bottom: 1px solid var(--alya-grey);
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.article .single_post_comments .single_post_comments_count_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 600;
}
.article
  .single_post_comments
  .single_post_comments_count_container
  .single_post_comments_count {
  margin-left: 10px;
}
.article
  .single_post_comments
  .single_post_comments_count_container
  .single_post_comments_count
  .single_post_comments_count_label {
  margin-left: 5px;
}

.single_post_comment_item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.single_post_comment_item .single_post_comment_info {
  display: flex;
  flex-direction: row;
}
.single_post_comment_item
  .single_post_comment_info
  .single_post_comment_author {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.single_post_comment_item
  .single_post_comment_info
  .single_post_comment_author
  .single_post_comment_author_avatar {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single_post_comment_item
  .single_post_comment_info
  .single_post_comment_author
  .single_post_comment_author_avatar
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single_post_comment_item
  .single_post_comment_info
  .single_post_comment_author
  .single_post_comment_author_name {
  font-weight: 600;
  margin-left: 10px;
}
.single_post_comment_item
  .single_post_comment_info
  .single_post_comment_author
  .single_post_comment_date {
  font-weight: 600;
  opacity: 0.5;
  margin-left: 20px;
}

.single_post_comment_item .single_post_comment_content {
  background: var(--alya-white);
  border-radius: 0px 10px 10px 10px;
  padding: 10px;
  margin-left: 50px;
}

.single_post_comment_item .single_post_comment_content.edit {
  padding: 0;
}

.single_post_comment_item .single_post_comment_content textarea {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  padding: 10px;
}

.single_post_comment_item .single_post_comment_content .comment_edit_actions {
  display: none;
}

.single_post_comment_item
  .single_post_comment_content.edit
  .comment_edit_actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  font-size: 12px;
  padding: 10px 0;
  align-items: center;
}

.single_post_comment_item
  .single_post_comment_content.edit
  .comment_edit_actions
  .comment_edit_validate {
  cursor: pointer;
  margin-right: 20px;
  background: var(--alya-blue);
  padding: 5px;
  color: var(--alya-white);
  border-radius: 5px;
}

.single_post_comment_item
  .single_post_comment_content.edit
  .comment_edit_actions
  .comment_edit_validate:hover {
  background: var(--alya-blue-active);
}

.single_post_comment_item
  .single_post_comment_content.edit
  .comment_edit_actions
  .comment_edit_cancel {
  opacity: 0.5;
  color: var(--alya-grey);
  cursor: pointer;
  margin-right: 20px;
}

.single_post_comment_item
  .single_post_comment_content.edit
  .comment_edit_actions
  .comment_edit_cancel:hover {
  opacity: 1;
}

.single_post_comment_item .single_post_comment_footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-left: 50px;
  margin-top: 10px;
}

.single_post_comment_item
  .single_post_comment_footer
  .single_post_comment_likes {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.single_post_comment_item
  .single_post_comment_footer
  .single_post_comment_likes
  .post_like {
  width: 20px;
  height: 20px;
}

.single_post_comment_item
  .single_post_comment_footer
  .single_post_comment_likes
  .post_like_text {
  margin-left: 10px;
}

.single_post_comment_item
  .single_post_comment_footer
  .single_post_comment_likes_first {
  font-size: 14px;
  opacity: 0.5;
}

.single_post_comment_writting {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.single_post_comment_writting .single_post_comment_writting_user_informations {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.single_post_comment_writting
  .single_post_comment_writting_user_informations
  .single_post_comment_writting_user_avatar {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
}

.single_post_comment_writting
  .single_post_comment_writting_user_informations
  .single_post_comment_writting_user_avatar
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single_post_comment_writting
  .single_post_comment_writting_user_informations
  .single_post_comment_writting_user_name_logout {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}

.single_post_comment_writting
  .single_post_comment_writting_user_informations
  .single_post_comment_writting_user_name_logout
  .single_post_comment_writting_user_name_infos {
  font-weight: bold;
  color: var(--alya-grey);
}
.single_post_comment_writting
  .single_post_comment_writting_user_informations
  .single_post_comment_writting_user_name_logout
  .single_post_comment_writting_user_name {
  font-weight: bold;
  color: var(--alya-blue);
}

.single_post_comment_writting
  .single_post_comment_writting_user_informations
  .single_post_comment_writting_user_name_logout
  a.single_post_comment_writting_logout {
  font-size: 12px;
  opacity: 0.5;
  color: var(--alya-grey);
  font-weight: 600;
}

.single_post_comment_writting .single_post_comment_writting_form_container {
  display: flex;
  flex-direction: column;
}

.single_post_comment_writting
  .single_post_comment_writting_form_container
  textarea {
  margin-top: 20px;
  margin-bottom: 20px;
  border: none;
  box-shadow: none;
  padding: 20px;
  border-radius: 0 10px 10px 10px;
}

.single_post_comment_writting
  .single_post_comment_writting_form_container
  .btn {
  font-weight: bold;
  cursor: pointer;
  background-color: var(--alya-blue);
  color: var(--alya-white);
  width: fit-content;
  align-self: flex-end;
}

.related_section {
  margin-top: 50px;
}

.related_section h3 {
  border-bottom: 1px solid var(--alya-grey);
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}

.related_section .related_article {
  text-decoration: none;
  color: var(--alya-grey);
  display: flex;
  flex-direction: row;
  align-items: center;
}

.related_section .related_article .related_article_thumbnail {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  flex: 1;
}

.related_section .related_article .related_article_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related_section .related_article .related_article_content {
  flex: 3;
  margin-left: 20px;
}
.related_section .related_article .related_article_details {
}

.related_section
  .related_article
  .related_article_details
  .related_article_categories {
}

.related_section
  .related_article
  .related_article_details
  .related_article_categories
  ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  padding: 0;
}

.related_section
  .related_article
  .related_article_details
  .related_article_categories
  ul
  li {
  color: var(--alya-blue);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  position: relative;
}

.related_section
  .related_article
  .related_article_details
  .related_article_categories
  ul
  li:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
}

.related_section
  .related_article
  .related_article_details
  .related_article_categories
  ul
  li:not(:last-child):after {
  content: "|";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.related_section
  .related_article
  .related_article_details
  .related_article_title {
  font-weight: 600px;
  font-size: 20px;
}

.submit_idea {
  width: 100%;
  padding: 20px 0;
  padding-top: 0;
  display: flex;
  justify-content: center;
}

.submit_idea a {
  background: var(--alya-blue);
  color: var(--alya-white);
  border-radius: 99px;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: bold;
}

.submit_idea a:hover {
  background: var(--alya-blue-active);
}

/*** ALERTER ***/
#alya_alerter {
  position: fixed;
  top: 100px;
  z-index: 50;
  width: 100%;
  height: fit-content;
}

#alya_alerter .alya_alert {
  position: relative;
  background: var(--alya-blue);
  width: 100%;
  height: auto;
  color: var(--alya-white);
  display: flex;
  flex-direction: row;
  padding: 10px;
}

#alya_alerter .alya_alert .alya_alert_content {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#alya_alerter .alya_alert .alya_alert_content .alya_alert_description {
  color: var(--alya-white);
  font-size: 15px;
}

#alya_alerter .alya_alert .alya_alert_content a {
  color: var(--alya-white);
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  margin-left: 10px;
}

#alya_alerter .alya_alert .alya_alert_close {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  right: 20px;
  cursor: pointer;
  transform: translate(0, -50%);
}

#alya_alerter .alya_alert .alya_alert_close:before,
#alya_alerter .alya_alert .alya_alert_close:after {
  content: "";
  width: 25px;
  height: 2px;
  background: var(--alya-white);
  position: absolute;
  transform-origin: center;
  top: 11px;
  right: 0;
  transition: all 0.3s ease;
}

#alya_alerter .alya_alert .alya_alert_close:before {
  transform: rotate(45deg);
}

#alya_alerter .alya_alert .alya_alert_close:after {
  transform: rotate(-45deg);
}

#alya_alerter .alya_alert .alya_alert_close:hover:before,
#alya_alerter .alya_alert .alya_alert_close:hover:after {
  height: 3px;
}

#alya_alerter .alya_alert.greffe {
  background: var(--alya-white);
  color: var(--alya-grey);
}

#alya_alerter .alya_alert.greffe .alya_alert_description {
  color: var(--alya-grey);
}

#alya_alerter .alya_alert.greffe .alya_alert_close:before,
#alya_alerter .alya_alert.greffe .alya_alert_close:after {
  background: var(--alya-grey);
}

#alya_alerter .alya_alert.greffe .alya_alert_content a {
  color: var(--alya-grey);
}

#alya_alerter .alya_alert.ti {
  background: #161616;
  color: var(--alya-white);
}

#alya_alerter .alya_alert.finances {
  background: var(--alya-grey-hover);
  color: var(--alya-white);
}

/*** FOOTER ***/
footer {
  bottom: 0;
  position: relative;
  width: 100%;
  background: var(--alya-footer-color-background);
  color: var(--alya-footer-color-text);
  margin: 0;
  margin-left: var(--alya-footer-margin-left);
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

footer .footer_logo {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

footer .footer_logo img {
  height: 50px;
  width: auto;
}

footer .footer_socials {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}

footer .footer_socials ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

footer .footer_socials li {
  margin: 10px;
}

footer .footer_socials li a {
  position: relative;
}

footer .footer_socials li a:after {
  content: "";
  background-color: var(--alya-blue);
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 1;
  transition: all 0.3s ease;
}

footer .footer_socials li a:hover:after {
  transform: translate(-50%, -50%) scale(1) rotate(45deg);
}

footer .footer_socials li a img {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 2;
}

footer .footer_socials li a:hover img {
  transform: scale(1.4);
}

footer .footer_copyrights {
  font-size: 10px;
  text-transform: uppercase;
  text-align: center;
  color: var(--alya-footer-color-text);
  padding-bottom: 20px;
}

footer .footer_author {
  background-color: var(--alya-grey-active);
  text-align: center;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  padding-bottom: 50px;
}

footer .footer_author p {
  margin: 0;
  padding: 0;
}

/* Add CSS for loading indicator */
.loading {
  position: relative;
  opacity: 0.5;
}
.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  border: 0.3rem solid #ccc;
  border-top: 0.3rem solid var(--alya-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* MODULE | REPORT */
#select-all-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  text-align: center;
}
.adv-label {
  cursor: pointer;
  text-decoration: underline;
}
.adv-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  text-align: center;
}
.report-advertiser-footer {
  margin-top: 20px;
}

.report-advertiser-footer .card {
  border: 2px solid #007bff; /* Customize the border color */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add subtle shadow for depth */
}

.report-advertiser-footer .card-body {
  padding: 20px; /* Adjust padding for a better layout */
}

.report-advertiser-footer .card-title {
  font-size: 1.5rem; /* Increase font size for emphasis */
}

.report-advertiser-footer .card-text {
  font-size: 2rem; /* Increase the size of the total spend amount */
  color: #007bff; /* Customize color (Bootstrap primary color) */
  font-weight: bold;
}
